Application Development 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: 

Set Cursor on custom field in Co11n

Former Member
0 Kudos

Hi all,

I am doing a screen development for CO11n transaction where we have added few custom fields on screen as well as in AFRU table. We are using the exit CONFPP07 with required PP customization.

The exit is working fine with all required details going into AFRU table, now client requirement is to have a cursor on custom field which is presently on a standard field. I tried using Set cursor command in PBO of screen exit but still i am not getting required output.I even tired enhancement spot but still it didn't worked.

Kindly help if anyone has encountered the same problem.

Anil.

6 REPLIES 6

Former Member
0 Kudos

Hi,

MODULE CURSOR OUTPUT.

IF DEF NE 'X'.

SET CURSOR FIELD NAME OFFSET POS.

ENDIF.

SET PF-STATUS 'SCREEN_100'.

ENDMODULE.

0 Kudos

Hi,

I cannot set PF-Status since I am working on a screen exit.Calling pf-status may create a problem in standard flow.

Anil.

0 Kudos

Hi,

sorry, just use this code .

SET CURSOR FIELD NAME OFFSET POS.

0 Kudos

already tried that.How does offset will help in changing the position. As far as I know, position will help to give the position in the field.

Anil

0 Kudos

Hi,

ok just use this one

SET CURSOR FIELD NAME.

0 Kudos

areee...m already using the same thing but thats not working therefore I have posted in the forum.

Anil.