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

CPU PARAMETER in ABAP for BDC

Former Member
0 Likes
1,563

how to fix the CPU PARAMETER to particular user id .

Or how to use CPU PARAMETER in BDC .

how to fix the CPU PARAMETER to particular user id .

Or how to use CPU PARAMETER in BDC .

5 REPLIES 5
Read only

Former Member
0 Likes
1,174

u mean CTU_PARAMS in BDC?

Read only

Former Member
0 Likes
1,174

yes...typing mistake ..it will be CTU_PARAMS

Read only

0 Likes
1,174

If you SEARCH in SCN you will get lot of information about CTU_PARAMS structure.

You can put simple condition for restricting to specific user.


  DATA: batch_params LIKE ctu_params.

 If sy-uname = 'TABAP1'.

 batch_params-nobiend = 'X'.
 batch_params-dismode = 'N'.

endif.

 CALL TRANSACTION 'FK01' USING bdcdata
 OPTIONS FROM batch_params
 MESSAGES INTO itab_messages.

Read only

Former Member
0 Likes
1,174

In ctu_params what is bdc_options u can check using following link

http://help.sap.com/abapdocu_70/en/ABAPCALL_TRANSACTION_BDC_OPTIONS.htm

Read only

Former Member
0 Likes
1,174

Agree with Gautam

NOBIEND Means

No batch input mode after BDC data has been read