2022 Mar 03 10:54 AM
I have encountered an object which I'm not sure how to view it. Since it can't be viewed on SO10
2022 Mar 03 10:58 AM
It's a text on the invoice header.
VF03 to see the invoce (VBKDR-VBELN) and check text Z925.
2022 Mar 03 11:20 AM
2022 Mar 03 3:19 PM
You may search the forum for these terms: VBBK STANDARD TEXT SO10.
2024 Jul 01 3:54 PM
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