cancel
Showing results for 
Search instead for 
Did you mean: 

Fields from Outbound delivery header

Former Member
0 Kudos

Hi

In transaction VL03N (R/3),in header details we have text tab. Under that we can find differant fields like Railcar-number,Truck-Nr.,Flight-number.

I want these fields in my report. Can anybody tell me in which table are these stored and how to extract them

Regards,

Niraj

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

this might be tricky.....

It looks like these are SAPScript text and you'll have to write ABAP to read these clusters....

You can go to table STXH (Header) with

TDOBJECT = 'VBBK';

TDNAME = delivery number

TDID = I guess this is the type of text you are looking for...

SPRAS = language

perform the same in STXL (text itself) with

RELID = TX

same TDOBJECT, TDNAME, SPRAS and you'll get the clusters....

I don't if this is really helpfull but these are your tables...

regards,

Olivier.

Former Member
0 Kudos

Hi Olivier,

Thanks for the solution.

Assigned points.

Regards,

Niraj