‎2007 Jun 22 10:39 PM
I have performed a bdc for enjoy transaction for deleting data...
However when i pass the data to the program..
only the first entry of the data is deleted
that too when i enter 2-3 three times.
I am using BDC CALL Transaction.
How to fix this error.
‎2007 Jun 23 5:16 AM
Are you remembering to CLEAR / REFRESH the BDCDATA internal table between each CALL TRANSACTION.
Logic should be:
LOOP through transactions
CLEAR BDCDATA[]
FILL BDCDATA with data for current transaction
CALL TRANSACTION using BDCDATA
Handle return / errors
ENDLOOP
Andrew
‎2007 Jun 22 10:46 PM
Which Transaction ? do not use BDC for Enjoy Transaction unless you do not have BAPI
‎2007 Jun 22 10:54 PM
‎2007 Jun 22 10:55 PM
‎2007 Jun 23 5:16 AM
Are you remembering to CLEAR / REFRESH the BDCDATA internal table between each CALL TRANSACTION.
Logic should be:
LOOP through transactions
CLEAR BDCDATA[]
FILL BDCDATA with data for current transaction
CALL TRANSACTION using BDCDATA
Handle return / errors
ENDLOOP
Andrew
‎2007 Jun 24 2:59 AM
Thanx Andrew..
I forgot to refresh the BDCDATA...
Awarded points