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

urgent

Former Member
0 Likes
347

Hi Experts,

I declared a field like this

f2code LIKE sy-ucomm VALUE '&ETA',

what is the functionality of '&ETA'.

Thanks & Regards,

B.Venkata Rathnam.

Hi Experts,

I declared a field like this

f2code LIKE sy-ucomm VALUE '&ETA',

what is the functionality of '&ETA'.

Thanks & Regards,

B.Venkata Rathnam.

1 REPLY 1
Read only

Former Member
0 Likes
323

hi,

Th '&ETA' is not a standard as such.

You want to assign the standard ALV function 'Detail' ('&ETA') to F2.

=> LAYOUT-F2CODE = '&ETA'

Meaning if a self-defined interface is used:

Case 1:

You leave the standard ALV function code for F2 '&IC1' in the copied interface of the application. However, you want to have a function executed with F2 that is not assigned to F2 in the interface (standard ALV function or application function). You must communicate this function code to the ALV using parameter F2CODE.

Case 2:

You remove the standard ALV function code for F2 '&IC1' from the interface of the application and use another function code instead (standard ALV function or application function). You must communicate this function code to the ALV using parameter F2CODE. This is required if you want to allow columns to be selected.

follow this link for moredetails.

/people/pere.diaz/blog/2005/07/14/broadcasting-reports-via-mail-with-pdf-attachment

http://sapabap.iespana.es/sap/reports/zinventory.htm

regards,

AshokReddy.