ā2012 Nov 23 8:23 AM
hi, i got problem in bdc program in call transaction method.I am maping itab records into it_bdcdata .call transaction 'tcode' ,bdcdata,mode,update,msgis given.error is not there.but the updated records are not present in DB table in abao dictionary?
ā2012 Nov 23 8:27 AM
hi,
first change the mode to A 'All screen Mode' and see what happens.
dont forget to refresh bdcdata inside the loop.
hope it helps,
Vinoth
ā2012 Nov 23 8:29 AM
Hi,
If possible post your code here.
Also try using mode 'A' and check where the records are displaying as required.
Syntax: call transaction 'TCODE' using it_bdcdata mode 'A' update 'S'.
Regards,
Madhumahesh.
ā2012 Nov 23 8:40 AM
Hello,
Please provide your code as its difficult to understand where exactly is the issue.
Also as others suggested, try to debug your code in Mode 'A' to see where is the issue.
Regards,
Deepti
ā2012 Nov 23 10:14 AM
Hi Sree,
Whatever mode you are using, just put a breakpoint after following Statement and see if any 'E' type message appears in 'messtab'.
CALL TRANSACTION tcode USING bdcdata
MODE var
UPDATE update
MESSAGES INTO messtab.
You will get the error. Error might be for the format in which data is provided.
Regards,
Dipesh