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

Call transaction background mode + error message DC006 Control framework

Former Member
0 Likes
3,998

Hello,

I have a problem with a call transaction in background mode, I get the error message "DC006: Control Framework: Fatal error - GUI cannot be reached". But I used the flag NOBINPT = X, and it doesn't work.

See the coding below :

LS_CPU_PARAMS-DISMODE = 'N'

LS_CPU_PARAMS-UPMODE = 'S'

LS_CPU_PARAMS-NOBINPT = 'X'

LS_CPU_PARAMS-NOBEND = ''

LS_CPU_PARAMS-DEFSIZE = ''

CALL TRANSACTION 'MIR4' USING GT_BDCDATA

OPTIONS FROM LS_CPU_PARAMS

MESSAGES INTO LT_MESSTAB.

Thanks for your help,

Jean-Olivier

3 REPLIES 3
Read only

Former Member
0 Likes
2,036

Pass CTU parameters like

LS_CPU_PARAMS-DISMODE = 'N'
LS_CPU_PARAMS-UPMODE = 'S'
LS_CPU_PARAMS-BINPT = ' '
LS_CPU_PARAMS-NOBEND = ''
LS_CPU_PARAMS-DEFSIZE = ''

Thanks and Regards,

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
2,036

SAP CFW needs a GUI to work. And as you must be aware in BG mode GUI isn't available. Hence you get this error message.

BR,

Suhas

Read only

Former Member
0 Likes
2,036

Moderator message - Welcome to SCN. Please see note 381593. Rob