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
381

What is meant by ctu_params.

Rgrds.

2 REPLIES 2
Read only

RaymondGiuseppi
Active Contributor
0 Likes
351

CTU_PARAMS is a structure used to control processing of CALL_TRANSACTION.

> CALL TRANSACTION (...) OPTIONS FROM opt.

Look at [CALL TRANSACTION - Calling a Transaction|http://help.sap.com/saphelp_46c/helpdata/en/34/8e73a86df74873e10000009b38f9b8/content.htm] or other threads like [CTU_PARAMS|;

Regards

Read only

Former Member
0 Likes
351

Hi Dixit,

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.

Kiran Kumar.G.A

Have a Nice Day..