The New Extensibility Model from the S/4HANA Sales Perspective in Enterprise Resource Planning Blogs by Members yesterday Select Query Logic For Driver Program For Smart Forms in Enterprise Resource Planning Q&A 2 weeks ago Decoding SAP Fields: VBAK-BSTNK vs. VBKD-BSTKD 🕵️♀️ in...
Now i need to fetch billing records from vbrk join with vbrp and join with vbak tables into internal table I_VBRP for all records fetched from I_VRPMA with billing documents. Key Fields are:sales doc order type-AUART. To join VBRP with VBAK i am using VBRP-AUBEL = VBAK = VBELN. ...
SAP Managed Tags: ABAP Development Hello Experts, I want to get the details of few fields like KUNNR,LAND1,NAME1 from Table KNA1. But as an user input, i only have the VBELN field of VBRK table. SO, please help me to make a connection between these two so that i can have the...
In either of the above fields, you can see sale order reference but it depends on your copy control VTFL at header level where you can see these two fields. There if you maintain B, you can see sale order reference in VBRK table. thanks G. Lakshmipathi You must be a registered user...
SAP Managed Tags: ABAP Testing and Analysis Creating new indexes will increase the performance in the reports build that select on these table fields. Creating new indexes will decrease the overall performance as updating these indexes will take some time. So creating new indexes should an in a...
3,699 SAP Managed Tags: ABAP Development Hi I have two tables : VBRK and BKPF My main table´s is VBRK, but i need to search some information in the BKPF. How can i do it?? Which is the relations between VBRK and BKPF?? Thanks GregoryReply...
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...