cancel
Showing results for 
Search instead for 
Did you mean: 

shipping instruction text

Former Member
0 Kudos

Hi,

i want to display the shipping instruction from PO header in my form. How can i retrieved the shipping instruction text?in what table?

thanks a lot.

regards.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member

Hi ,

u need to use FM READ_TEXT

exporting

Text Name 4400000000--->PO number

Language EN--->Lang

Text ID K06->shipping(cross check with Tcode SE75>EKKO)

Text Object EKKO Purchasing doc. header texts

steps to find out all these data

ME23N->TEXTS tab/view->Double Click on Text ID--->in this case Shipping ->take Option SAP Editor->It will opens MS word->in that screen GOTO(menu option)->Header.

regards

Prabhu

Former Member
0 Kudos

CALL FUNCTION 'READ_TEXT'

EXPORTING

CLIENT = SY-MANDT

id =

language =

name =

object =

ARCHIVE_HANDLE = 0

LOCAL_CAT = ' '

IMPORTING

HEADER =

tables

lines = i_tab

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8

So you want to know how get the parametrs right. This is how"

In PO shipping instruction text goto goto menu -> header here u will find all the required parametrs.

The text lines will be returned in the i_tab.

U can loop at this itab and display the data.

ALSO,

you can use an include text instead of the read_text fm.

goto the general attributes of a text element. From the drop down menu, convert the text type to include text.

The just as in read_text fm pass the parameters

text name, text object, text id and language.

Every thing will be handled automatically

Former Member
0 Kudos

HI,

You have to use FM 'READ_TEXT' by passing object id,text name and language parameters for that shipping instruction text.

Thanks,

Phani Diwakar.

Former Member
0 Kudos

Hi

get the details from MEPO1313 table for shipping instructions

field name is EVERS

T027A is ccheck table for EVERS

T027B is ccheck table for EVERS-texts

And for the given PO we can get the shipping instrctions from tables -

EINE or EKPO

we have EVERS in EKPO and EINE.

Get all PO from the EKKO.

Get all items icluding the EVERS for the given PO from the prevous query.

And get the EVERS and relevant texts from table T027B (Texts)

This way we can do it.

Thanks & Regards,

Chandralekha.