Skip to Content
0
Former Member
Nov 12, 2009 at 09:42 AM

Parameters passing for alternate FM POPUP_TO_DECIDE in upgrade

51 Views

Hi Everyone,

I am working on upgrade from 4.6c to ECC6.0.

I came across one function module POPUP_TO_DECIDE

call function 'POPUP_TO_DECIDE'
             exporting
                  defaultoption = '1'
                  textline1     = 'Wollen Sie die Verarbeitung für'(701)
                  textline2     = 'alle noch nicht bearbeiteten'(702)
                  textline3     = 'selektierten Objekte abbrechen?'(703)
                  text_option1  = 'Nein  '(705)
                  text_option2  = 'Ja    '(706)
                  titel         = 'Abbrechen in Listverarbeitung '(704)
             importing
                  answer        = answer.
        if answer = '2'.
          return_code = 12. exit.
        else.
          clear return_code.
        endif.

The alternate FM is POPUP_TO_CONFIRM.

I am facing difficult in passing the parameters to the FM POPUP_TO_CONFIRM against the FM POPUP_TO_DECIDE which is stated above.

Regards

Jai