2010 May 24 5:26 AM
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 .
2010 May 24 7:38 AM
2010 May 24 7:56 AM
2010 May 24 8:03 AM
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.
2010 May 24 8:14 AM
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
2010 May 24 8:17 AM
Agree with Gautam
NOBIEND Means
No batch input mode after BDC data has been read
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |