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

Regarding Sy-ucomm value for Enter.

Former Member
0 Likes
1,425

Hi All, In PAI of screen i have the following code, BUt when i press enter , the conttrol did not go in the following case .

case sy-ucomm

WHEN 'ENTR' OR ''.

IF b_unit IS NOT INITIAL.

CLEAR wa_tbgl.

SELECT SINGLE * FROM zf112409gl_map INTO wa_tbgl

WHERE b_unit = b_unit.

glaccount = wa_tbgl-l_gl_acc .

gldesc = wa_tbgl-desc_lgl .

b_unit = wa_tbgl-b_unit .

sapglaccount = wa_tbgl-saknr .

SELECT SINGLE txt50 FROM skat INTO txt50

WHERE saknr = sapglaccount

AND spras = 'EN'.

sapgldesc = txt50.

else .

MESSAGE 'Please enter the required field' type 'I'.

endif.

Please give me the step to follow.

rgds,

Premraj

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
874

Try as;

When 'ENTER' OR SPACE.

Regards

Karthik D

Hi All, In PAI of screen i have the following code, BUt when i press enter , the conttrol did not go in the following case .

case sy-ucomm

WHEN 'ENTR' OR ''.

IF b_unit IS NOT INITIAL.

CLEAR wa_tbgl.

SELECT SINGLE * FROM zf112409gl_map INTO wa_tbgl

WHERE b_unit = b_unit.

glaccount = wa_tbgl-l_gl_acc .

gldesc = wa_tbgl-desc_lgl .

b_unit = wa_tbgl-b_unit .

sapglaccount = wa_tbgl-saknr .

SELECT SINGLE txt50 FROM skat INTO txt50

WHERE saknr = sapglaccount

AND spras = 'EN'.

sapgldesc = txt50.

else .

MESSAGE 'Please enter the required field' type 'I'.

endif.

Please give me the step to follow.

rgds,

Premraj

4 REPLIES 4
Read only

Former Member
0 Likes
874

Hi,

Remove the OR after the ENTR in When

and conclude using Endcase with others.

and check.

Regards,

Nandha

Read only

Former Member
0 Likes
875

Try as;

When 'ENTER' OR SPACE.

Regards

Karthik D

Read only

Former Member
0 Likes
874

Hi Prem,

Have you created the FCT code for activating your ENTR pushbutton or not check back once. And replace '' with SPACE.

Cheers!!

VEnk@

Read only

Former Member
0 Likes
874

IT OK