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

Problem in HIDE statement

Former Member
0 Likes
496

Hi Guys,

I have a query in <b>HIDE</b>, This is up gradation project 4.5B to ECC 6.0, but in the 4.5B it is working fine,When it come to the ECC 6.0 it is giving error like " you can not use <b>HIDE</b> for a read only field.

This is my statement: "HIDE ICON_DISPLAY_MORE", please suggest me, is this statement correct?

Thanks,

Gourisankar.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
471

Try this...

data: sym type ICON_D value '@1E@'.

hide sym.

3 REPLIES 3
Read only

Former Member
0 Likes
472

Try this...

data: sym type ICON_D value '@1E@'.

hide sym.

Read only

0 Likes
471

HI Muthurajan,

I am not understand your statement, Can you please elaborate?

Thanks,

Gourisankar.

Read only

0 Likes
471

Try executing this program....

you can understand...

data: sym type ICON_D value '@1E@'.

START-OF-SELECTION.

FORMAT HOTSPOT.

WRITE / 'ShowIcon'.

HIDE: sym.

AT LINE-SELECTION.

WRITE: sym.

And if i am not wrong, i hope you want to hide the "Display more" icon in the Select-options input. If that case, then use NO-EXTENSION keyword.

Could you please tell me the exact requirement, why you want to hide that icon?