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: 

radio button added but screen error after clik ok. why?

Former Member
0 Kudos

thanks for the solution for the radion button

in the screen layout.

i have another problem , when i clik ok after keyin the

record, one message appear -invalid field format(screen)

message no 00084.

i try to find the error which used this message no

but the error like this Message 00 084 not found

in Programs (possibly dynamic calls!).

which part i should change the program? after i add this

radio button?

i just changed the screen and still not yet modified the program

and the error displayed

1 ACCEPTED SOLUTION

former_member1245113
Active Contributor
0 Kudos

Hi,

Are you using single radio button or more than one.

if you are using single radio button system might through error (Possibly)

Please go through your earlier post

Regards

Ramchander Rao.K

5 REPLIES 5

former_member1245113
Active Contributor
0 Kudos

Hi,

Are you using single radio button or more than one.

if you are using single radio button system might through error (Possibly)

Please go through your earlier post

Regards

Ramchander Rao.K

0 Kudos

i have 2 radio button and have group both it. and it still same.. when should i put my breakpoint..

CHAIN.

FIELD : VBRK-VBELN. ", YSUR-MBRNO.

FIELD : PA_CHK1. -radio button 1

FIELD : PA_CHK2. -radio button 2

MODULE CHECK_VALID_ENTRY. - i set at this module my breakpoint

ENDCHAIN.

0 Kudos

Check consistency of your flow logic and screen layout. Also check if they are active.

Regards,

Mohaiyuddin

0 Kudos

Hi,

Try adding ON INPUT/ ON REQUEST at the end of module name..

Please take the help of KEY word documentaion for more info

Regards

Ramchander Rao.K

Former Member
0 Kudos

Hi,

You go through this program.

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

*SELECT-OPTIONS : s_werks1 FOR vbrp-werks OBLIGATORY MODIF ID aaa,"Plant

s_erdat1 FOR sy-datum OBLIGATORY MODIF ID aaa.

SELECT-OPTIONS : s_werks1 FOR vbrp-werks MODIF ID aaa,"Plant

s_erdat1 FOR sy-datum MODIF ID aaa.

"Document Date

SELECT-OPTIONS : s_vbeln FOR vbrp-vbeln MODIF ID bbb.

SELECTION-SCREEN END OF BLOCK b1 .

SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.

PARAMETERS : rb1 RADIOBUTTON GROUP grp1 USER-COMMAND uk,"Sales Register

rb2 RADIOBUTTON GROUP grp1,"Purchase Register

rb3 RADIOBUTTON GROUP grp1,"Sales To Purchase link

rb4 RADIOBUTTON GROUP grp1 ,"Stock Transfer

rb5 RADIOBUTTON GROUP grp1."Purchases

SELECTION-SCREEN END OF BLOCK b2 .

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF rb4 = 'X'.

IF screen-group1 = 'AAA'.

If you want to disable input field

screen-input = 0.

if you want to hide input field

screen-active = 0.

MODIFY SCREEN.

ENDIF.

ELSE.

IF screen-group1 = 'BBB'.

If you want to disable input field

screen-input = 0.

if you want to hide input field

screen-active = 0.

MODIFY SCREEN..

ENDIF.

ENDIF.

ENDLOOP.

AT SELECTION-SCREEN.

IF rb4 = ' '.

IF s_werks1[] IS INITIAL.

message error

ENDIF.

IF s_erdat1[] IS INITIAL.

message error

ENDIF.

ENDIF.

Regards,

Flavya

Edited by: Flavya on Dec 10, 2008 9:06 AM