2007 May 29 4:38 PM
Hi all,
I have a problem with my BDC, I am using a CALL transaction to update few fields. When I do a Call transaction using 'A'(all screen mode) the values which I am passing are getting updated.But when I do the same thing using 'N'(No screen mode) the values are not getting updated.
Please help me with this.
Thanks
JM
Hi all,
I have a problem with my BDC, I am using a CALL transaction to update few fields. When I do a Call transaction using 'A'(all screen mode) the values which I am passing are getting updated.But when I do the same thing using 'N'(No screen mode) the values are not getting updated.
Please help me with this.
Thanks
JM
2007 May 29 4:49 PM
2008 Jun 05 6:02 AM
uses NOBINPT = 'X' its work.
eg.
DATA : opt LIKE ctu_params .
opt-nobinpt = 'X' .
opt-dismode = mode1.
CALL TRANSACTION tcode USING bdcdata OPTIONS FROM opt
2008 Jun 05 6:29 AM
Hi
Try using the ctu param structure in call transaction statement.
DATA opt TYPE ctu_params.
opt-UPDMODE = 'N'.
opt-RACOMMIT = 'X'.
CALL TRANSACTION 'TCODE' USING bdcdata_tab OPTIONS FROM opt.
If this solves your issue rewards the points,
With Regards,
Dwarakanath.S
2008 Jun 05 6:34 AM
Hi,
What is the exact error message that you are getting when you run your program in 'N' mode?
Rgds,
sandeep