cancel
Showing results for 
Search instead for 
Did you mean: 

text elements

Former Member
0 Kudos

Hi,

is it possible make comment on the following script which is defined on form main window.

<b>WE3LVSMAT</b> <b>where this comes from?</b>

PERFORM GET_WEIGHT IN PROGRAM ZMM_IRS_CIKTI

USING &MSEG-MATNR&

USING &MSEG-MENGE&

USING &MSEG-MEINS&

USING &MSEG-ZEILE&

CHANGING &V_MAKTX&

CHANGING &V_MENGE&

CHANGING &V_MEINS&

ENDPERFORM

&MSEG-MATNR& &V_MAKTX& &V_MENGE(C)& &V_MEINS&

<b>WE3VERBRMAT</b> <b>ALSO THIS</b>

PERFORM GET_WEIGHT IN PROGRAM ZMM_IRS_CIKTI

USING &MSEG-MATNR&

USING &MSEG-MENGE&

USING &MSEG-MEINS&

USING &MSEG-ZEILE&

CHANGING &V_MAKTX&

CHANGING &V_MENGE&

CHANGING &V_MEINS&

ENDPERFORM

Thanks,

Kubilay

Accepted Solutions (0)

Answers (1)

Answers (1)

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

You simply want to make a line in the sapscript editor as a comment line? If yes, then use the paragraph format /*

Regards,

RIch Heilman

Former Member
0 Kudos

No, I mean ; I was reviewing following scripts but could not understand bold statements. is it possible to explain what purpose the bold statements stand for?

Former Member
0 Kudos

What SAPScript is it?

Rob

Former Member
0 Kudos

<b>WE3LVSMAT</b> -


> what does this means please?

PERFORM GET_WEIGHT IN PROGRAM ZMM_IRS_CIKTI

USING &MSEG-MATNR&

USING &MSEG-MENGE&

USING &MSEG-MEINS&

USING &MSEG-ZEILE&

CHANGING &V_MAKTX&

CHANGING &V_MENGE&

CHANGING &V_MEINS&

ENDPERFORM

Former Member
0 Kudos

Is it a standard SAP form or custom? If SAP, which one?

Rob

Former Member
0 Kudos

custom one. I think bold one is Text element. but how can I see these text elements. when &#305; change bold one with 'Kubi' (for instance) system raise an error message saying could not find 'WE3LVSMAT'. So 'WE3LVSMAT' is defined some where else too? but where it can be?

Regards,

Former Member
0 Kudos

When a missing text element is being called, the program will generate error.

Text element is a block of SAPscript that will be triggered from the print program. This is the ensure its flow.

I guess you can see something like following in your SAPscript:-

/E WE3LVSMAT

Hope this helps 😃