Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to view an object or standard text like this?

Former Member
0 Kudos
790

I have encountered an object which I'm not sure how to view it. Since it can't be viewed on SO10

4 REPLIES 4

SimoneMilesi
Active Contributor
738

It's a text on the invoice header.
VF03 to see the invoce (VBKDR-VBELN) and check text Z925.

FredericGirod
Active Contributor
0 Kudos
738

simone.milesi I think you answer the question

Sandra_Rossi
Active Contributor
0 Kudos
738

You may search the forum for these terms: VBBK STANDARD TEXT SO10.

thierryricard
Explorer
0 Kudos
662

Hello, 

you can use the function module :

    CALL FUNCTION 'READ_TEXT'
      EXPORTING
        id                      = gs_stxh-tdid
        language                = gs_stxh-tdspras
        name                    = gs_stxh-tdname
        object                  = 'KNVV'
      TABLES
        lines                   = gt_tline
      EXCEPTIONS
        id                      = 1
        language                = 2
        name                    = 3
        not_found               = 4
        object                  = 5
        reference_check         = 6
        wrong_access_to_archive = 7
        OTHERS                  = 8.
    IF sy-subrc <> 0.
    ENDIF.

Best regards.

Thierry