ecsin-equnr = lr_data->equnr1.CALLFUNCTION'CSAI_BOM_READ'EXPORTINGecsin=ecsinIMPORTINGfl_warning=fl_warningTABLESt_stpob=t_stpobEXCEPTIONSerror=1OTHERS=2. t_stpob=VALUE #( BASE t_stpob ( posnr= lv_posnr postp = lr_data->postp idnrk = lr_data->idnrk menge = lr_data->menge ...
ecsin-equnr = lr_data->equnr1.CALLFUNCTION'CSAI_BOM_READ'EXPORTINGecsin=ecsinIMPORTINGfl_warning=fl_warningTABLESt_stpob=t_stpobEXCEPTIONSerror=1OTHERS=2. t_stpob=VALUE #( BASE t_stpob ( posnr= lv_posnr postp = lr_data->postp idnrk = lr_data->idnrk menge = lr_data->menge ...
SAP Managed Tags: ABAP Development Hi, I need to join 3 tables VBRK,VBAK,VBRP Tables.Actually to improve the performance first i retrieved matnr and belnr(billing records) from VRPMA Table into I_VRPMA where s_vkorg,s_fkdat,s_fkart.(selection screen) Now i need to fetch billing re...
Simplification of Document Flow tableVBFA 简化了凭证流表VBFA Field length extension of SD...
SAP Managed Tags: ABAP Development Hi friends, Here I am facing one problem in one of my report in that i am first match delivery no with likp and vbfa table then i am take vbeln from vbfa table like that SELECT SINGLE * FROM vbfa WHERE vbelv = likp-vbeln AND vbtyp_n = 'M...
SAP Managed Tags: SD Sales Hello All, What is the link between table VBAK and VBRK? I have requirement where I need to find out the sales document number from the billing document number. I can see the relation in the relationship browser but I couldn't find the columns which link th...
SAP Managed Tags: ABAP Development hi friends, i requirement is this i have to select the vbeln from the vbak and find the corresponding deliveries. i have added values to an 1st internal table from VBAK and now, i m moving the corresponding items from posnr into the internal table. ...
SAP Managed Tags: SD (Sales and Distribution) Hi Experts, I have a requirement to create a report by joining tables VBAK & VBRK from SQVI by table join. I am able to create one but when I am executing it, it does not give me any data/ value. Here I want to input a series of...
SAP Managed Tags: ABAP Development Hi U can find the link between VBRK and VBAK without to use VBFA table, this improves the performance of the program: SELECT SINGLE * FROM VBRK WHERE VBELN = P_VBELN. WRITE: 'Nr. bill:', VBRK-VBELN. SELECT * FROM VBRP WHERE VBELN = VBRK-VBEL...
SAP Managed Tags: ABAP Testing and Analysis As BSEG is a cluster your program performance will be very bad (full table scan). To get link between SD invoice (VBRK-VBELN) and FI accounting document (BKPF-BUKRSBELNRGJAHR) use the link to original document which is stored in FI : - BKP...