Show TOC

Holding Data DynamicallyLocate this document in the navigation structure

Use

In the attributes of a screen, you can enable the following standard menu entries by setting the Hold data attribute:

  • Start of the navigation path System Next navigation step User profile Next navigation step Hold data End of the navigation path

    Hold data allows users to retain values that they have entered on a screen so that they appear the next time they start the same transaction. Only values actually entered by the user are retained. These values are again set as default values in the corresponding input fields every time the screen is reprocessed. In this process, the values transported from the ABAP program at PBO are overwritten.

  • Start of the navigation path System Next navigation step User profile Next navigation step Set data End of the navigation path

    The Set Data menu option has the same effect as Hold Data. Additionally, when the held data is placed in the screen fields, these fields are no longer ready for input.

  • Start of the navigation path System Next navigation step User profile Next navigation step Delete data End of the navigation path

    The Delete Data menu option deletes the held data and makes the relevant fields on the screen ready for input again.

If Hold data is not activated in the screen attributes, the above menu entries have no effect.

In the PBO event of a screen, you can overwrite the Hold data attribute dynamically using the statement

SET HOLD DATA ON|OFF.

The ON addition activates the attribute, OFF deactivates it.

Example

Hold data

        
REPORT demo_dynpro_set_hold_data.
        
DATA field(10) TYPE c.
        
CALL SCREEN 100.
        
field = 'XXXXXXXXXX'.
        
CALL SCREEN 100.
        
MODULE hold_data OUTPUT.
        
SET HOLD DATA ON.
        
ENDMODULE.
         

The statically-defined next screen for screen 100 is 0, and it contains a single input/output field called field.

The flow logic is as follows:

        
PROCESS BEFORE OUTPUT.
        
MODULE hold_data.
        
PROCESS AFTER INPUT.
         

In the PBO event, the Hold data attribute is activated dynamically. If the user enters a value and then chooses Start of the navigation path System Next navigation step User profile Next navigation step Hold data End of the navigation path or Set data, the same value is displayed in the field when the screen is next displayed. This value is displayed each time the screen is called until the user chooses Delete data. This overwrites any value assigned to the field field in the ABAP program.