Skip to main content

Replacement of obsolete F.M. POPUP_TO_CONFIRM_STEP

The obsolete Function Module : 

  CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'

       EXPORTING

*          DEFAULTOPTION  = 'Y'

            textline1      = text-003

*          TEXTLINE2      = ' '

 

             titel          = 'Mengenbereitstellung'

*          START_COLUMN   = 25

*          START_ROW      = 6

            cancel_display = ' '

       IMPORTING

            answer         = lf_answer.

 

 

 Replacement by 'POPUP_TO_CONFIRM'

 

CALL FUNCTION 'POPUP_TO_CONFIRM'

  EXPORTING

   TITLEBAR                    = 'Mengenbereitstellung'(005)

*   DIAGNOSE_OBJECT             = ' '

    TEXT_QUESTION               = text-003

*   TEXT_BUTTON_1               = 'Ja'(001)

*   ICON_BUTTON_1               = ' '

*   TEXT_BUTTON_2               = 'Nein'(002)

*   ICON_BUTTON_2               = ' '

*   DEFAULT_BUTTON              = '1'

*   DISPLAY_CANCEL_BUTTON       = 'X'

*   USERDEFINED_F1_HELP         = ' '

*   START_COLUMN                = 25

*   START_ROW                   = 6

*   POPUP_TYPE                  =

*   IV_QUICKINFO_BUTTON_1       = ' '

*   IV_QUICKINFO_BUTTON_2       = ' '

IMPORTING

   ANSWER                      = lf_answer.

* TABLES

*   PARAMETER                   =

* EXCEPTIONS

*   TEXT_NOT_FOUND              = 1

*   OTHERS                      = 2

          .

IF SY-SUBRC <> 0.

* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Comments

Popular posts from this blog

SPDD and SPAU in Upgrade projects

In upgradiation project SPDD and SPAU Aare the main transactions. Upgradiation project are like 1.Technical Upgrade 2.Functional Upgrade In technical project process steps like 1.System preparation and stack level patch upgrade – Basis Team 2.SPDD Phase – ABAP and Functionals 3.Up gradation of the system – Basis Team 4.SPAU Phase – ABAP and Functionals 5.DBACOCKPIT for indexing – ABAP TEAM 6.Issue resolution and error tracking – ABAP and Functionals 7.Zprograms corrections – obsolete function modules and objects In SPDD Phase This transaction code SPDD is the core step in an upgrade project. The system compares all the dictionary objects – data elements, database tables and structures of the latest system (say ECC) with the previous or the old system (Say 4.6c). These all elements are present under two nodes – with modification assistant and without modification assistant. Objects present under with modification assistant have the mo...