2006 May 10 4:08 AM
hi,
in my screen how to set the cursor position by default?
(e.g. field with name NAME)
2006 May 10 4:15 AM
Hi Lana,
Please check this link for sample code.
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac0b35c111d1829f0000e829fbfe/content.htm
Hope this will help.
Regards,
Ferry Lianto
Please reward points if helpful.
2006 May 10 4:11 AM
Hi,
Try this.
DATA f(5) TYPE C VALUE 'MODUS'.
DATA MODUS(10) TYPE C VALUE '1234567890'.
SET CURSOR FIELD F.
or
SET CURSOR FIELD 'MODUS'.
Regards,
SImha.
2006 May 10 4:14 AM
Hi,
If you are using for Screen, then define a module in the PBO event.
PROCESS BEFORE OUTPUT.
MODULE CURSOR.
MODULE CURSOR OUTPUT.
IF DEF NE 'X'.
SET CURSOR FIELD NAME OFFSET POS.
ENDIF.
SET PF-STATUS 'SCREEN_100'.
ENDMODULE.
Cheers
VJ
2006 May 10 4:15 AM
Hi Lana,
Please check this link for sample code.
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac0b35c111d1829f0000e829fbfe/content.htm
Hope this will help.
Regards,
Ferry Lianto
Please reward points if helpful.