‎2006 Aug 28 5:24 PM
hi!
when the screen resolution changes visible lines in table control changes.we handle this using ctu_params in call transaction method.how do we achieve this in session method?
‎2006 Aug 28 6:54 PM
Yes. The code is perfect.
Award points if my replies are helpfull.
‎2006 Aug 28 5:42 PM
When you use BDC_INSERT function module there is an import parameter CTUPARAMS. Pass CTU_PARAMS to this import parameter.
‎2006 Aug 28 6:28 PM
hi sudhir!
thanq. how do we pass value to that parameter.see below.is it right?
data: ctup like ctu_params.
ctup-defsize = 'X'.
call function 'BDC_INSERT'
exporting
ctuparams = ctup
....
.
‎2006 Aug 28 6:03 PM
Hi nani,
do you mean the ctu_params in CALL TRANSACTION?
i do it like this:
...
DATA: CTU_PARAMS_0 LIKE CTU_PARAMS.
...
More Information
look at SE11 with CTU_PARAMS
MOVE 'E ' TO CTU_PARAMS_0.
CALL TRANSACTION 'FB03' USING BDCDATA OPTIONS FROM CTU_PARAMS_0.
Regards, Dieter
‎2006 Aug 28 6:07 PM
HI,
See the link for example program, how to handle table control in Session method:-
http://www.sap-basis-abap.com/abap/handling-table-control-in-bdc.htm
<b>also, refer this thread:</b>
Regards
Sudheer
‎2006 Aug 28 6:54 PM
Yes. The code is perfect.
Award points if my replies are helpfull.