Entering content frameProcedure documentation Modify navigation subscreen title and position text Locate the document in its SAP Library structure

The navigation subscreen title and position text are set by the view cluster maintenance transaction to Navigation by default. You can modify the title using the function module VIEWCLUSTER_SET_SUBSCREEN_TITL.

  1. Create a FORM routine that calls the function module VIEW CLUSTER_SET_SUBSCREEN_TITL.
  2. Pass the the navigation subscreen title and position text as export parameters to your FORM routine.
  3. Enter the FORM routine at event 01.

Example

Modification of the navigation subscreen title:

CALL FUNCTION 'VIEW CLUSTER_SET_SUBSCREEN_TITL'

     EXPORTING

          SUBSCREEN_TITLE = 'New title'

          POSITION_TEXT = 'Entry'

     EXCEPTIONS

          OTHERS = 1.

 

 

Leaving content frame