cancel
Showing results for 
Search instead for 
Did you mean: 

layout editor

Former Member
0 Kudos

i hv book 4 learning script based on ides 4.6. but i m practising on 4.7e so the layout editor illustration in my book differs. plz give me the exact steps 4 defining text elements in 4.7e

Edited by: Mathew Parera on Jun 10, 2008 8:19 AM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Please check this link

http://help.sap.com/saphelp_nw04/helpdata/en/d6/0db38b494511d182b70000e829fbfe/frameset.htm

Text Elements of a Form

http://help.sap.com/saphelp_nw04/helpdata/en/d6/0db400494511d182b70000e829fbfe/content.htm

Text Elements

You can define text elements (window texts) for each window. On the Form: Request screen, choose Edit  Text elements.

The print program accesses text elements by name, formats them and prints them in the respective window. That is, the program can decide which text elements should be printed in a particular window. It calls these text elements by name to print them. You must therefore change text element names in the print program if you make any changes to text element names in a form.

In the layout of a text element, you can use only the paragraph and character formats defined in the form.

Example of a text element in an order confirmation:

/E ITEM_LINE
IL &VBDPA-POSNR&,,&VBDPA-MATNR&,,&VBDPA-ARKTX&
/  &'Customerarticlenumber 'VBDPA-IDNKD' '&&'Position
/  'VBDPA-POSEX&

This example shows a section of a main window of a form, with an item line of an order confirmation. The /E in the tag column is used to identify the text as a text element, ITEM_LINE is the name of the text element.

If you require a complete list of all the Page Windows and the Text Elements used inside an SAPScript; follow the steps given below:

Activate the SAPScript debugger

Run the transaction and/ or issue the output that will trigger the concerned print program of that SAPScript.

Get into the debugger.

While in debugger; use menu Goto -> Text Elements -> Form Elements.

Best regards,

raam