‎2008 Mar 18 9:22 AM
Hi all,
To handle screen resolution while working on BDCs in 40B version what can be used in place of CTU_PARAMS ?
Regards,
Himanshu
‎2008 Mar 18 9:38 AM
CTU_PARAMS is a structure used to control processing of CALL_TRANSACTION.
CALL TRANSACTION (...) OPTIONS FROM opt.
Look at CALL TRANSACTION - Calling a Transaction or other threads like CTU_PARAMS
Generally CTU_PARAMS Is used to avoid unnecessary screens,even though they will not appear in the recording.i also send a sample code for that to avoid this problem check it once ok..
we have to add the below code in ur bdc program at the begin of ur code.
SYNTAX AND CODE:
-
For Elimination Of Illegal Screens
-
DATA: opt TYPE ctu_params.
START-OF-SELECTION.
opt-nobinpt = 'X'.
opt-defsize = 'X'.
opt-updmode = 'A'.
Reward points if helpful.
‎2008 Mar 18 9:38 AM
CTU_PARAMS is a structure used to control processing of CALL_TRANSACTION.
CALL TRANSACTION (...) OPTIONS FROM opt.
Look at CALL TRANSACTION - Calling a Transaction or other threads like CTU_PARAMS
Generally CTU_PARAMS Is used to avoid unnecessary screens,even though they will not appear in the recording.i also send a sample code for that to avoid this problem check it once ok..
we have to add the below code in ur bdc program at the begin of ur code.
SYNTAX AND CODE:
-
For Elimination Of Illegal Screens
-
DATA: opt TYPE ctu_params.
START-OF-SELECTION.
opt-nobinpt = 'X'.
opt-defsize = 'X'.
opt-updmode = 'A'.
Reward points if helpful.
‎2008 Mar 18 9:44 AM
Thanks for the reply..but my friend I know that just to make my question more clear I am working on 40B version which does not have CTU_PARAMS so i wanted to know if we had a substitute for the same in 40B.
Regards,
Himanshu Verma
Edited by: Himanshu Verma on Mar 18, 2008 9:37 PM