cancel
Showing results for 
Search instead for 
Did you mean: 

long texts

deepu_p2
Active Participant
0 Kudos

Hi guys

i have a problem.

in the sales order item data. there is a field called texts.

and in those fields there is a sub field called Item - Production Note.

if i write anything over there.will it be pulled to the production order. when i convert the sales order in to a production order.

If yes. where can i see that data in the production order.

if no.

where is that data stored. in any table.

where is the data stored in the long text of the production order stored.can i print that data when i print my production order.

how do i do that?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Deepu,

If you are talking about the field "Production Memo", this text will be displayed as a tab in the production order display (CO03).

Regards,

DB49

Former Member
0 Kudos

You will have to use the function module READ_TEXT to fetch and read the LONGTEXT that you have maintained.

Below is the sample that I used in one of my Functional Spec:

==============================================

Use "READ_TEXT" function module to retrieve the Prodn Order Text.

Use inputs as

Client=SY-MANDT,

ID = KOPF,

Language = SY-LANGU,

Name = CONCATENATE SY-MANDT & AUFK-aufnr,

Object = AUFK.

In the same way, you have to find the ID and Name to be used for Sales Order line Item text.

To find the details, go in the change mode in the long text and click on "GoTo" --> HEADER. This will display you all the information required by you to fetch the text using READ_TEXT.

You can use table SXTH to see in what language the text is maintained. Sometimes the Sales Text is maintained in a different language (not necessarily in English).

Please try and revert back.