‎2008 Jun 20 8:37 AM
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 )
‎2008 Jun 20 8:54 AM
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