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: 

avoiding popup window while running in back ground

Former Member
0 Kudos

Hi all,

I have done one program for updating the basic salary using BDC. salaries are updating correctly for some people. but for people it is not updating. The reason for this is it is throwing one information with popup window saying "Entered Salary is greater than Salary Band Maximum". i want to avoid this popup window and update the salary. I dont want to change any data in any table like T510n. but the salary must be updated. how to overcome this situation.

Thanks and regards,

Giri.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

best way is create & populate two BDC data, one with popup & 2nd without popup.

in program decide which one to use for each record.

5 REPLIES 5

former_member223537
Active Contributor
0 Kudos

Hi,

If this is a standard information message, then check whether there is any standard sap note available for the transaction.

Best regards,

Prashant

Former Member
0 Kudos

best way is create & populate two BDC data, one with popup & 2nd without popup.

in program decide which one to use for each record.

0 Kudos

But i am trying to create the recording with popup message but it is not showing the popup message.

how it is possible to create BDC data with popup. any idea.

Thanks and regards,

Giri.

Former Member
0 Kudos

Hi,

if you want to avoid the pop-up in background run, use the following check while calling pop-up FM

IF sy-batch IS INITIAL.

Pop-up

ENDIF.

Regards,

Seema

Former Member
0 Kudos

Hi,

In your BDC you can check for the condition when

SALARY > Max Band Salary.

In such a case, add BDC_OKCODE command with ENTER in the BDC.

I had faced similar problems in BDC before.

Hope this helps,

Raj