Posts

Showing posts with the label Programming Knowledge

Using BAPI upload excel file for t-code AS02 in SAP

Using BAPI " BAPI_FIXEDASSET_CHANGE " create a zprogram to upload excel file for mass change fixed asset in SAP. REPORT  ZAS02_ASSET_CHANGE_UPLOAD . TYPE-POOLS :  truxs . " Structure for Excel data TYPES :  BEGIN  OF  ty_excel ,          anln1  TYPE  anln1 ,          bukrs  TYPE  bukrs ,          kostl  TYPE  kostl ,          werks  TYPE  werks ,          prctr  TYPE  prctr ,         END  OF  ty_excel . DATA :  lt_excel     TYPE  TABLE  OF  ty_excel ,       ls_excel     TYPE  ty_excel ,     ...

About Programming & SQL query Introduction

Image
Hello Everyone !!! I am trying to help you for sharing some programming problem.Programming is a part of life.Sometimes its changed.Like life is valueless without programming.So,don't be upset. Don't be hopeless.There are lots of hope.If you can take it as a part of your life. I am talking too much.Now come to the point. if I asked anybody say something about programming language,I sure most of them give me a vast description about specific language.How many programming language we have,I am just mentioning some of these: C,C++,C#,Java,Python,Ruby,PHP,JavaScript,Perl,CSS and so and. I am trying to give some idea about a few of these. Today I am describing SQL query language. SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL stands for Structured Query Language. SQL lets you access and manipulate databases. SQL is an ANSI (American National Standards Institute) standard. What Can SQL do? SQL can execute querie...