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

How to diasable pop-up window from standard function module...?

Former Member
0 Likes
1,420

Hello All,

  I am using standard function module SD_SALES_DOCUMENT_SAVE to update  payment terms, my payment terms were updating properly,but before updating the payment term the information  pop-up window is getting displaying, suppose if 10 item are having problem then 10 pop-ups are displaying one after another. so is there any parameter or anything so that the pop-up should not display.

below is the pop -up message..

ITEM 000010 Contains delivery schedules without schedule line quantities.

any one can pls how to avoid pop-up window...

Thanks in advance...!

regards,

ram



Hello All,

  I am using standard function module SD_SALES_DOCUMENT_SAVE to update  payment terms, my payment terms were updating properly,but before updating the payment term the information  pop-up window is getting displaying, suppose if 10 item are having problem then 10 pop-ups are displaying one after another. so is there any parameter or anything so that the pop-up should not display.

below is the pop -up message..

ITEM 000010 Contains delivery schedules without schedule line quantities.

any one can pls how to avoid pop-up window...

Thanks in advance...!

regards,

ram



3 REPLIES 3
Read only

rob_postema
Participant
0 Likes
985

try this

         EXCEPTIONS
            error_message              = 1
            OTHERS                       = 2.

I had it once with FM: L_TO_CREATE_DN_MULTIPLE.

added the two lines (in my case it was

   error_message         = 12

    OTHERS                = 13.

and it did the trick.

Read only

Former Member
0 Likes
985

Hi,

Try passing the value "X" (or SPACE) to the import parameter MESSAGE_POPUP and I_CALL_BAPI.

I think this might be useful in supressing the POPUP.

Cheers

~Niranjan

Read only

Former Member
0 Likes
985

try setting:

importing parameter

I_NO_MESSAGES = 'X'.