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

active statement starting with *

Former Member
0 Likes
792

Hi expert,

    I have seen following in ABAP function, those statements are active, but start with comments sign *, are they comments or not?

                       FFUNCTION ....

*"                    IMPORTING

*"                                      REFERENCE....

Many Thanks,                   

andy

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
753

Hello,

Those commented line inform you about Local Interface which are used in your function, these might be exporting and importing type, for your reference the gave in commented form so that u can use in your function.

BR

Chandra..

4 REPLIES 4
Read only

Former Member
0 Likes
754

Hello,

Those commented line inform you about Local Interface which are used in your function, these might be exporting and importing type, for your reference the gave in commented form so that u can use in your function.

BR

Chandra..

Read only

0 Likes
753

if they exist in comment style, they should be inactive. do you mean for those importing and exporting stuff. comments out and no-comments-out are the same?

Read only

0 Likes
753

i was talking about.

Function module..

once you call a Function_module.

All exporting parameter of FM are optional so they will come in commented format if you want to use them you can comment-out those and use but for importing parameter if something is optional then only you can keep that commented other wise you have to pass some value to them.

Chandra,,

Read only

keyur_pawar
Active Participant
0 Likes
753

Hi,

Here Comments specifies that, those commented importing or exporting parameters are optional,

i.e. not mandatory.

Those parameters are not in comment are compulsory to specify to run that particular

function. But as per your requirement you can use those commented parameters by uncommenting them.

Regards,

Keyur.