Ansicht
Dokumentation

POPUP_TO_DECIDE - Do not use! Please use POPUP_TO_CONFIRM.

POPUP_TO_DECIDE - Do not use! Please use POPUP_TO_CONFIRM.

Vendor Master (General Section)   Fill RESBD Structure from EBP Component Structure  
This documentation is copyright by SAP AG.
SAP E-Book

This function module is obsolete.

Use the function module POPUP_TO_CONFIRM instead. Only then can parameters be included in such a way that is suitable for translation.

Functions

The function module provides a dialog box where the user can decide on one of two offered action options.

In order to make the variable text translatable note the following points (also see example):

  • Use sequentially numbered text symbols, so that the translator can recognize which texts belong together.
  • Do not use sentence parts again in other places. Create them anew in the text pool each time.
  • When adjusting the text pool you must specify the maximum permitted text length. There is a length of 70 characters per line.
  • You can also indicate the permitted length with a double semicolon (see example).
  • It is preferable when you indicate corresponding sentence parts for the translator (see example)
Examples:

Example call:

DATA: ANTWORT(1) TYPE C.

CALL FUNCTION 'POPUP_TO_DECIDE'
EXPORTING
TITEL = 'plan costs' ;;'(A01)
TEXTLINE1 = 'should the costs be planned' ;;->B02'(B01)
TEXTLINE2 = 'dependent on or independent' ;;->B03'(B02)
TEXTLINE3 = 'of the activity types?' ;;'(B03)
TEXT_OPTION1 = 'dependent' ;;'(C01)
TEXT_OPTION2 = 'independent' ;;'(C02)
IMPORTING ANSWER = ANTWORT.

CASE ANTWORT.
WHEN 'A'.
* the end user wants to cancel.
WHEN '1'.
* the costs are to be planned depending on
* the activity types.
WHEN '2'.
* the costs are to be planned independent of
* the activity types.
ENDCASE.





Parameters

ANSWER
CANCEL_DISPLAY
DEFAULTOPTION
ICON_TEXT_OPTION1
ICON_TEXT_OPTION2
START_COLUMN
START_ROW
TEXTLINE1
TEXTLINE2
TEXTLINE3
TEXT_OPTION1
TEXT_OPTION2
TITEL

Exceptions

Function Group

SPO2

ROGBILLS - Synchronize billing plans   BAL Application Log Documentation  
This documentation is copyright by SAP AG.

Length: 3255 Date: 20240523 Time: 144439     sap01-206 ( 40 ms )