By use of VBFA table you will be able to get all the document (quotation, sales, billing & delivery ) numbers related to sales. Thanks, Abhijit You must be a registered user to add a comment. If you've already
Simplification of Document Flow tableVBFA 简化了凭证流表VBFA Field length extension of SD...
SAP Managed Tags: ABAP Development hi gurus; I want to read data from VBFA table nd pass its VBELV to VBAK table to get VBAK values, Iam using FM SD_DOCUMENT_FLOW_GET ND RV_ORDER_FLOW_INFORMATION, BUT i am not getting desire result. WHEN iam using FM SD_DOCUMENT_FLOW_GET, it ...
SAP Managed Tags: ABAP Testing and Analysis Hello, First 10 offset of awkey has to copmare with seelcted value of VBFA-VBELN so we need to write AWKEY+0(10) = t_link_inv-vbeln in WHERE clause while reading the table BKPF but in WHERE clause on left hand side we can not write...
SAP Managed Tags ABAP Development Hi, for an sales order i found some entries in the VBFA and have will fill this data in an internal table. I have to select only delivery, goods movement and Invoice for an sales order. Finding this data is no problem but i have problems to fill the...
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...