Application Development 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: 

BDC running successfully in foreground,but not in background on Quality ser

Former Member
0 Kudos

Hello Experts,

I have developed BDC(for craeting Vendor code),which is running successfull in background as well as in foreground on DEV server.

My problem is when i transported it on Quality server,it is running in background as well as in foreground ,but in background it is noy creating(displaying) Vendor code, rest is ok.

Can anybody tell what can be the problem

Ravi

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

Ur mode declaration s problem..U have chk ur declaration.

U have do like that:

PARAMETERS: P_MODE LIKE CTU_PARAMS-DISMODE OBLIGATORY DEFAULT 'E'.

"A: show all dynpros

"E: show dynpro on error only

"N: do not display dynpro.

CALL TRANSACTION 'TX01' USING T_BDCDATA

MODE P_MODE

UPDATE 'S'

MESSAGES INTO LT_BDCMSG.

3 REPLIES 3

Former Member
0 Kudos

Hi

Ur mode declaration s problem..U have chk ur declaration.

U have do like that:

PARAMETERS: P_MODE LIKE CTU_PARAMS-DISMODE OBLIGATORY DEFAULT 'E'.

"A: show all dynpros

"E: show dynpro on error only

"N: do not display dynpro.

CALL TRANSACTION 'TX01' USING T_BDCDATA

MODE P_MODE

UPDATE 'S'

MESSAGES INTO LT_BDCMSG.

0 Kudos

Hello Prabhu,

My problem get resolved

But can u tell me in detail,ehat is the diff b/w mode E & N.

Regards,

Ravi

0 Kudos

Hi

In Error mode mean when u r run rhe program when error occured when oly appear. All mode mean stepl by step execution displyed.No mode mean directely executed.

But u have do one thing Error message write carefully..Then u have handle lot of problem

Regards:

Prabu