Category: ABAP

Smart forms multiple language

Question: hi I have to display multiple languages in same page in smartfroms I have to display like Customer Name: &kna1-name1& <Customer Name in japaneese> <Customer Name in Fench> the output should be like Customer Name: John Smith Japaneese french The point is John Smith should be printed only in English but ‘Customer Name’ should …

[ Continue Reading... ]

ABAP Tips-ebook

ABAP Tips-ebook

There is ABAP Tips(eBook version) for you, if you need it , pls download it. abap-tips

[ Continue Reading... ]

Retrieving Accounting Document number based on PO numbers

BSEG will contains all items data. try to make use of this FM AC_DOCUMENT_RECORD. or 1 2 3 4 5 6 7 8 9 10 11 12 call function ‘FI_DOCUMENT_RECORD’ exporting i_awtyp = ‘RMRP’ i_awref = w_awref1 —&gt;IR number of PO i_aworg = w_gjahr1—-.year   I_AWSYS = ‘ ‘ I_AWTYP_INCL = ‘ ‘ I_AWTYP_EXCL = …

[ Continue Reading... ]

ABAP Tips download(MS Word version)

There is an ABAP program tips document(157 pages) to download. I think it is very useful for ABAP developer. Download abap program tips-v3

[ Continue Reading... ]

BAPI to Copy Materials from one Plant to Another

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 …

[ Continue Reading... ]

ABAP Program-Upload and download HR photo

Below is ABAP upload and download HR photo program.(via web) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 …

[ Continue Reading... ]

ABAP interview questions and answers(1)

1. What is an ABAP data dictionary?- ABAP 4 data dictionary describes the logical structures of the objects used in application development and shows how they are mapped to the underlying relational database in tables/views. 2. What are domains and data element?- Domains:Domain is the central object for describing the technical characteristics of an attribute …

[ Continue Reading... ]

ABAP ALV Report- SD FLOW ALV

ABAP ALV Report- SD FLOW ALV *&amp;———————————————————————* *&amp; Report ZJACKTEST *&amp; *&amp;———————————————————————* *&amp; *&amp; *&amp;———————————————————————*   REPORT ZJACKTEST.   TYPE-POOLS: slis. TABLES: vbak,vbap, knvv, kna1, mara ,lips, vbrp. TYPES: BEGIN OF record, sdoc LIKE vbak-vbeln, sitem LIKE vbap-posnr, mcode LIKE mara-matnr, mname LIKE vbap-arktx, oquanti LIKE vbap-kwmeng, ovalue LIKE vbap-netwr, ocurrency LIKE vbap-waerk, ddoc LIKE …

[ Continue Reading... ]