Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Somebody please help

Former Member
0 Kudos

Hi Everyone.

I have been working on a SAPSCRIPT. I have donemost of it but left out few changes. If you go to transaction QM02 and enter a notification, a page will be openned.

Below in the subject, there is a description.

Now i have to bring this text from here and put it in the form.

I have tried to put an include and pull out the text but i could not do that.

Can anyone please send me a sample code that you have for this scenario?

Thanks

Deepthi

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Description will be there in QMEL - QMTXT. If u want to get the long text after that description button use the FM READ_TEXT with the following data.

<b>CLIENT </b> 120

<b>ID</b> LTQM

<b>LANGUAGE</b> EN

<b>NAME</b> 000200000001

<b>OBJECT</b> QMEL

Regards,

Prakash.

6 REPLIES 6

Former Member
0 Kudos

Hi,

i would write a perform statement for that.Find out the fiield name and read that value from the table based on the notification

Thanks

Venki

Former Member
0 Kudos

Description will be there in QMEL - QMTXT. If u want to get the long text after that description button use the FM READ_TEXT with the following data.

<b>CLIENT </b> 120

<b>ID</b> LTQM

<b>LANGUAGE</b> EN

<b>NAME</b> 000200000001

<b>OBJECT</b> QMEL

Regards,

Prakash.

0 Kudos

Hey Prakash,

I have called that FM read_text and got the data ..but what do i do to wrie this text onto the script.

I put this

INCLUDE &QMEL-LTXT& OBJECT QMEL ID LTQM LANGUAGE &SYST-LANGU&

But still the text is not displayed.

Do we have to read the function module where you do the write_form???

Thanks

Deepthi

0 Kudos

In the form give the internal table name say '&i_lines1-tdline&'.

use the read text fm in the script program and get the value into a internal table,then loop at that internal table and use the write form.

LOOP AT i_lines1.

PERFORM write_forms USING ws_element_name ws_window_name.

ENDLOOP.

Regards,

Prakash.

Former Member
0 Kudos

Hi, deepthi ..

go through the code ..

All the long text can be retrieve using this method.

You have to used the READ_TEXT functions to read the SAP long text. e.g. Sales Order, Purchase Order Item text etc.

To check your long text header, go into the long text. Click Goto -> Header

Example of READ_TEXT functions reading tables PBIM - Independent requirements for material.

REPORT ZTEXT .

TABLES: PBIM.

  • stxh, stxl, stxb - trans tables for text

  • ttxit - text on text-ids

  • ttxot - Short texts on text objects

  • Transaction MD63

SELECT-OPTIONS: S_MATNR FOR PBIM-MATNR,

S_WERKS FOR PBIM-WERKS.

DATA: BEGIN OF HTEXT.

INCLUDE STRUCTURE THEAD.

DATA: END OF HTEXT.

DATA: BEGIN OF LTEXT OCCURS 50.

INCLUDE STRUCTURE TLINE.

DATA: END OF LTEXT.

DATA: BEGIN OF DTEXT OCCURS 50.

DATA: MATNR LIKE PBIM-MATNR.

INCLUDE STRUCTURE TLINE.

DATA: END OF DTEXT.

DATA: TNAME LIKE THEAD-TDNAME.

SELECT * FROM PBIM WHERE WERKS IN S_WERKS.

MOVE PBIM-BDZEI TO TNAME.

CALL FUNCTION 'READ_TEXT'

EXPORTING

  • CLIENT = SY-MANDT

ID = 'PB'

LANGUAGE = 'E'

NAME = TNAME

OBJECT = 'PBPT'

  • ARCHIVE_HANDLE = 0

IMPORTING

HEADER = HTEXT

TABLES

LINES = LTEXT

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8.

LOOP AT LTEXT.

IF LTEXT-TDLINE NE ''.

MOVE LTEXT-TDLINE TO DTEXT-TDLINE.

MOVE PBIM-MATNR TO DTEXT-MATNR.

APPEND DTEXT.

ENDIF.

ENDLOOP.

ENDSELECT.

LOOP AT DTEXT.

WRITE:/ DTEXT-MATNR, DTEXT-TDLINE.

ENDLOOP.

hope this helps ,

Regards,

Vijay

Former Member
0 Kudos

deepthi,

first of all try to get the values in ur driver program/

second transfers the content into variables ..

now use these variables in ur form by passing it to the form editor sap script ..

you cannot use include to get this ..

regards,

vijay.