cancel
Showing results for 
Search instead for 
Did you mean: 

Delivery Header text table and feild

Former Member
0 Kudos

Hi all,

Can any one guide me where delivery header text is saving i check table STXH ( STXD SAPscript text file header) and field TDID but while i am checking in table i am not getting any text data either based on text or any other combination

can any one guide me which table its saves .. so

Thanks

Rajesh

Accepted Solutions (1)

Accepted Solutions (1)

Former Member

Hi Rajesh,

You can get delivery text from text objects VBBK. The header texts for Sales orders, delivery and Billing will be saved in Text Object VBBK. Similarly for Item texts you can refer text objects VBBP.

To read the text values use function module READ_TEXT.

with input parameters

ID = text ID

LANGUAGE = lang

NAME = delivery order number

OBJECT = VBBK (for header texts).

Check T-Code VOTXN for maintaining text objects and text IDs

Hope this helps.

Regards,

Arun.S

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello,

In general the Text from DELIVERY to SMARTFORM are populated using the Function module READ_TEXT

The Key fields are from the STXH, STXL for the Function module

We will pass the Values of Object key and Text id to the function module and get the values.

The Logic will be

Use the function READ_TEXT passing the text id and object

and then pass the table parameter to the editor defined in the container

call method editor->set_readonly_mode

exporting readonly_mode = '1'.

call method editor->set_text_as_r3table

exporting table = i_lines1

exceptions others = 1.

call method cl_gui_cfw=>flush.

Thanks,

santosh