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

Disable a POPUP

Former Member
0 Likes
626

Hello forum,

I have a copy Z of the report RCNMASSCHANGE standard,

When I execute the F8 appears a popup with a subscreen .

I want to disable this popup and the process continue whitout this.

I 've Debuged and I saw the popup is activated when this function is executed:

CNMASS_CALL_MASS_CHANGE_DATA

Any idea to disable the popup?

Thanks



CALL FUNCTION 'CNMASS_CALL_MASS_CHANGE_DATA'
       EXPORTING
            I_FLG_NO_DIALOG       = FLG_NO_DIALOG
            I_FLG_MAINTAIN_TABLES = FLG_MAINTAIN_TABLES
            I_FLG_COMMIT          = CON_YES
            I_FLG_TEST            = FLG_TEST
            I_FLG_ONLINE          = FLG_ONLINE
            I_FLG_BATCH           = FLG_BATCH
            I_FLG_SAVE            = FLG_SAVE
            I_FLG_COPY            = FLG_COPY
            I_CURRENT_TABNAME     = CURRENT_TABNAME
       IMPORTING
            E_FLG_TEST            = FLG_TEST
            E_FLG_ONLINE          = FLG_ONLINE
            E_FLG_BATCH           = FLG_BATCH
            E_FLG_SAVE            = FLG_SAVE
            E_CURRENT_TABNAME     = CURRENT_TABNAME
       TABLES
            I_PROJ                = PROJ_TAB
            I_PRPS                = PRPS_TAB
            I_PRTE                = PRTE_TAB
            I_PSMLST              = PSMLST_TAB
            I_AUFK                = AUFK_TAB
            I_AFKO                = AFKO_TAB
            I_AFPO                = AFPO_TAB
            I_AFVGD               = AFVGD_TAB
            I_AFABD               = AFABD_TAB
            I_MLSTD               = MLSTD_TAB
            I_RESBD               = RESBD_TAB
            T_CHANGES             = P_MASPAR
            T_DETAILED_CHANGES    = P_MASCNG
       EXCEPTIONS
            CANCEL                = 1.


1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
511

Hi,

try commenting out the EXPORTING flag_commit.

and if that does not work try using SUPPRESS keyword....

Rgds/Abhi

2 REPLIES 2
Read only

Former Member
0 Likes
512

Hi,

try commenting out the EXPORTING flag_commit.

and if that does not work try using SUPPRESS keyword....

Rgds/Abhi

Read only

0 Likes
511

Hi, I bet that it is EXPORTING parameter I_FLG_NO_DIALOG which needs to be commented out

BR

m./