Row Select without making editable ALV

You dont need to make editable the ALV for making it selectable.

Just use;
 ps_layout-sel_mode   = c_a.


Not need anymore;

    CALL METHOD alv1->set_ready_for_input
      EXPORTING
        i_ready_for_input 1.

Before Release Request Check


SE38: RS_STREE_OBJECTS_TO_REQ_GET

if you get lock error while releasing request, run this programme.

Where Used List Problem

To fix the where used list problem;

Run SAPRSEUC to rebuild customer object indexes (Y & Z) and
        SAPRSEUB to rebuild SAP object indexes.


MM : MIGO Dynamic User Settings


 To set Action & Ref.doc , you should update "ESDUS" table for batch inputs...

SET THE ACTION LINE AND SET THE LINE WHICH ELEMENT IS THE ACTION VALUE..

MBIS MIGO_FIRSTLINE A01 R01
MBIS MIGO_FIRSTLINE A02 R03
MBIS MIGO_FIRSTLINE A03 R02
MBIS MIGO_FIRSTLINE A04 R02
MBIS MIGO_FIRSTLINE A07 R10
MBIS MIGO_FIRSTLINE A08 R10
MBIS MIGO_FIRSTLINE A10 R02
MBIS MIGO_FIRSTLINE ACTION A01
MBIS MIGO_FIRSTLINE ACTION_HISTORY A02 A08 A07 A03 A04 A01 A10

MIGO


Document : http://scn.sap.com/docs/DOC-42838

SE78 Color Logo

Save the Picture using "PAINT"  
not Photoshop or any other Program ..
Save as type: ( 256 color bitmap )

Automatic Absence Quota Generation


Transaction PT_QTA00

SM31                   V_T559L

SM31                   : V_T559E : Age Customizing

Save a variant for the program and with the help of jobs (sm36) I work it automatically every day or week or every year according to the client's will.

Automatic Absence Quota Generation


Transaction PT_QTA00

SM31                   V_T559L

SM31                   : V_T559E : Age Customizing

Save a variant for the program and with the help of jobs (sm36) I work it automatically every day or week or every year according to the client's will.

SAP Leave Request Delete - PTARQ


Transaction : PTARQ

Select Delete Documents.

Enter the personnel number....

Make sure you remove the tick mark from Test .

Excluding Buttons From GUI PF Status

  DATA fcode TYPE TABLE OF sy-ucomm.

  refresh 
fcode.
  APPEND 'CHANGE' TO fcode.
  APPEND 'SAVE' TO fcode. 


  SET PF-STATUS 'STATUS_0100' EXCLUDING fcode.