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

HOTSPOT

Former Member
0 Likes
649

When I want to enable the hotspot property one of the fields, I am confronted with two fields are hotspotted. If I do 2 of the fields hotspot-enabled, 3 are enabled?

I did not undertand that, I want to make just one of the fields, not I want 'once twice'...

Thanks in advance.

Deniz.

Hi Deniz,

i'm not sure if you mean this?

write: / 'test1' hotspot on,

'test2',

'test3'.

When i'm not right, can you explane it a little bit more?

Regards, Dieter

4 REPLIES 4
Read only

Former Member
0 Likes
625

Hi,

In the corresponding write state,ment of the field write HOTSPOT ON.

Write 😕 itab-matnr hotspot on.

reward points if it is helpful.

regards,

sangeetha.a

Read only

Former Member
0 Likes
625

Hello,

Please check ur fieldcatalogue.

make the FIELDCAT-HOTSPOT = 'X'


See the code:
START-OF-SELECTION.
  WRITE 'Now comes a'.
  FORMAT HOTSPOT ON COLOR 5 INVERSE ON.
  WRITE 'HOTSPOT'.
  FORMAT HOTSPOT OFF COLOR OFF.
 
AT LINE-SELECTION.
  WRITE / 'New list AT-LINE-SELECTION'.
  SKIP.
  WRITE 'This is also a hotspot:'.
  WRITE ICON_LIST AS ICON HOTSPOT.


REPORT zdemoab.
 
TYPE-POOLS: slis.
TABLES: mara.
 
TYPES: BEGIN OF t_itab,
       matnr TYPE mara-matnr,
       mtart TYPE mara-mtart,
       END OF t_itab.
 
DATA: itab TYPE TABLE OF t_itab,
      wa_itab like line of itab.
 
DATA: i_fieldcat TYPE slis_t_fieldcat_alv,
      wa_fieldcat LIKE LINE OF i_fieldcat,
      i_layout TYPE slis_layout_alv,
      g_repid TYPE sy-repid.
 
 
SELECT matnr mtart INTO TABLE itab FROM mara UP TO 10 ROWS.
 
 
CLEAR: wa_fieldcat.
wa_fieldcat-col_pos = 0.
wa_fieldcat-fieldname = 'MATNR'.
wa_fieldcat-tabname = 'MARA'.
wa_fieldcat-hotspot = 'X'.
APPEND wa_fieldcat TO i_fieldcat.
CLEAR: wa_fieldcat.
 
wa_fieldcat-col_pos = 1.
wa_fieldcat-fieldname = 'MTART'.
wa_fieldcat-tabname = 'MARA'.
APPEND wa_fieldcat TO i_fieldcat.
CLEAR: wa_fieldcat.
 
 
i_layout-colwidth_optimize = 'X'.
i_layout-hotspot_fieldname = 'MATNR'.
 
g_repid = sy-repid.
 
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
 EXPORTING
   i_callback_program                = g_repid
   I_CALLBACK_USER_COMMAND           = 'USER_COMMAND '
   is_layout                         = i_layout
   it_fieldcat                       = i_fieldcat[]
  TABLES
    t_outtab                          = itab
 EXCEPTIONS
   program_error                     = 1
   OTHERS                            = 2
          .
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
 
FORM user_command USING r_ucomm LIKE sy-ucomm
                        rs_selfield TYPE slis_selfield.
 
*   Check field clicked on within ALVgrid report
    IF rs_selfield-fieldname = 'MATNR'.
*     To pass the material no in ME22 transaction
      READ TABLE itab INTO wa_itab INDEX rs_selfield-tabindex.
*     Set parameter ID for transaction screen field
      SET PARAMETER ID 'BES' FIELD wa_itab-matnr.
*     Sxecute transaction ME23N, and skip initial data entry screen
      CALL TRANSACTION 'MM03'.
*
    ENDIF.
ENDFORM.

Regards,
Deepu.K

.

Read only

Former Member
0 Likes
625

can u plz put the code here?

Read only

Former Member
0 Likes
625

Hi Deniz,

i'm not sure if you mean this?

write: / 'test1' hotspot on,

'test2',

'test3'.

When i'm not right, can you explane it a little bit more?

Regards, Dieter