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: 

scipt elements

Former Member
0 Kudos

Hi Experts,

can anyone explain me what the below formats will do in scripts in detail.

Formats are /: /* /E

1 ACCEPTED SOLUTION

Former Member
0 Kudos

/E Is a text element label, they are referred to in the controlling ABAP program to output the details contained within the element.

/: Is a command line, you can include ABAP code within your SAP Script

/* Is a comment

Darren

4 REPLIES 4

Former Member
0 Kudos

You can open editor and check yourself or search in help.sap.com

Former Member
0 Kudos

hi you can find it in this table

TTDTG

hi this table includes all the standard symbols that we use in scripts

Edited by: janagar sundaramoorthy on Oct 7, 2008 9:55 AM

Former Member
0 Kudos

/E Is a text element label, they are referred to in the controlling ABAP program to output the details contained within the element.

/: Is a command line, you can include ABAP code within your SAP Script

/* Is a comment

Darren

Former Member
0 Kudos

/: is Command Line

/* is Comment line

/E Text Element

example is below

/: SET SIGN LEFT

/: SET SIGN RIGHT