cancel
Showing results for 
Search instead for 
Did you mean: 

Standard text elements in Sap Script

former_member565381
Participant
0 Kudos

Hi,

I am checking the standard Driver programs used in 'Payment print programs' in FI, there are some standard text elements used in those programs with numbers, such as '505',..etc,..How to find them ? I mean how to find those standard text elements to check what data is there in them ?

Rgds,

Khadeer Basha,

Accepted Solutions (1)

Accepted Solutions (1)

eduardo_hinojosa
Active Contributor
0 Kudos

Hi

Look for the function modules WRITE_FORM. For instance, for report RFFOUS_T, in the include RFFORI06, see this sample (the variable ELEMENT in the exporting interface)

            CALL FUNCTION 'WRITE_FORM'
              EXPORTING
                element = '676'
              EXCEPTIONS
                OTHERS  = 4.

I hope this helps you

Regards

Eduardo

Answers (0)