SAP INSERT TEXTPOOL INTERNAL ABAP Statements

Get Example source ABAP code based on a different SAP table
  



INSERT TEXTPOOL - Internal addition
ABAP Code Snippet
• STATE INSERT TEXTPOOL - internal

ABAP Addition
... STATE state

What does it do? Determines whether the text elements are stored in the repository in an active or an inactive state. state can have the values 'A' (for active) and 'I'(for inactive ). Inactively stored text elements are only visible to the user currently editing them. All other users work with the active version of the text elements.

Without the STATE addition, the inactive state is used implicitly for the inactive text elements of the current user, and the active state is used for the text elements of all other programs.



Runtime Exceptions
Non-catchable Exceptions
Reason for error:
state has a value other than 'A' or 'I'.
Runtime error:
INSERT_REPORT_ILLEGAL_STATE

Return to menu