Application Development and Automation 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: 
Read only

SYNTAX MEANING

Former Member
0 Likes
915

PARCOM_LOC IS AN INTERNAL TABLE

TABL IS ALSO AN INTERNAL TABLE.

WHAT THIS SYNTAX MEANS.....

CALL 'SYSTEM' ID 'COMMAND' FIELD PARCOM_LOC

ID 'TAB' FIELD TABL-SYS.

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
781

Hi,

you're calling a system command:

If a formal parameter expects an internal table, the latter is passed in the form "FIELD tabl-sys".

it's for the output of your function

A.

Message was edited by: Andreas Mann

5 REPLIES 5
Read only

FredericGirod
Active Contributor
0 Likes
781

It's a call of SAP Kernel function, there is no documentation of these kinds of functions.

Fred

Read only

0 Likes
781

thanks fred,but what you told to me actually that i already know thats why i am looking for some kind of help..please describe me this if you know this..

Read only

Former Member
0 Likes
781

hi

good

PARCOM_LOC IS AN INTERNAL TABLE

TABL IS ALSO AN INTERNAL TABLE.

CALL 'SYSTEM' ID 'COMMAND' FIELD PARCOM_LOC

ID 'TAB' FIELD TABL-SYS.

I dont think all the above line ll work, it is giving error after IS statement.

and the below line also giving the syntax error.

so you can't use these syntax.

thanks

mrutyun^

Read only

Former Member
0 Likes
781

More info:

Read only

andreas_mann3
Active Contributor
0 Likes
782

Hi,

you're calling a system command:

If a formal parameter expects an internal table, the latter is passed in the form "FIELD tabl-sys".

it's for the output of your function

A.

Message was edited by: Andreas Mann