Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CTU_PARAMS

Former Member
0 Likes
592

Hi all,

To handle screen resolution while working on BDCs in 40B version what can be used in place of CTU_PARAMS ?

Regards,

Himanshu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
455

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.

2 REPLIES 2
Read only

Former Member
0 Likes
456

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.

Read only

0 Likes
455

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