Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to create SD contracts(va41) using BDC

Former Member
0 Likes
443

hie all i need help with uploading SD contracts using BDC. The data is from an existing sales organisation to a new sales organisation . On entering multiple items for a contract on the table screen for items, how can i alter my code to move from row to row as it enters a different item for the contract.(e.g a contract can have 10 items that go in different rows on the table screen )

1 REPLY 1
Read only

Former Member
0 Likes
326

Hi,

In VA41/42 transactions we have table control for Items. just below the table control we have som buttons for Create Item, delete item..

In your bdc, make use of this Create Item button, if you click this the cursor always be in second row.

what you have to do is, record the transaction in the following way

Loop at header.
*  enter header details
   Loop at item.
*  Click on the create item button.
*   enter the item in second row 
   endloop.
*  Save the data
endloop.

Thanks,

Rajinikanth