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

F4 symbol

Former Member
0 Likes
1,124

hai friends,

After designing my sel-screen, For one radio button i am not getting the F4 symbol at the end of my text box.of-course F4 functionality is working when i double click on my radui button.but as it's not a feasible solution.anybody have solution for this.if u want check my code also.

SELECT-OPTIONS : s_date FOR ztbukxxin003-z_manufdate NO-EXTENSION.

SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-006.

PARAMETERS : p_rad1 RADIOBUTTON GROUP rad1.

PARAMETERS : p_file LIKE rlgrap-filename.

PARAMETERS : p_rad2 RADIOBUTTON GROUP rad1 DEFAULT 'X'.

PARAMETERS : p_lopath LIKE filename-pathintern.

PARAMETERS : p_lofile LIKE filename-fileintern DEFAULT 'ZTBUKXXIN008'

.

SELECTION-SCREEN END OF BLOCK blk1.

AT SELECTION-SCREEN.

PERFORM validate.

*AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.

IF p_rad1 EQ 'X'.

PERFORM get_local_file USING p_file.

ELSEIF p_rad2 EQ 'X'.

PERFORM get_appl_file USING p_lofile.

ENDIF.

the code for perform local file is

CALL FUNCTION 'WS_FILENAME_GET'

EXPORTING

  • DEF_FILENAME = p_file

def_path = 'C:\'

mode = ' '

IMPORTING

filename = p_file

EXCEPTIONS

inv_winsys = 1

no_batch = 2

selection_cancel = 3

selection_error = 4

OTHERS = 5.

Note : Here the reason for commenting the line atsel-screen on value-request is bcz the cursor is not going forward if i select the application server button

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,082

hiii mahesh

you can not have F4 help with radio button..with text box you just uncomment at selection screen on value request..like below.it will display symbol with text box only

SELECT-OPTIONS : s_date FOR sy-datum NO-EXTENSION.

SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-006.
PARAMETERS : p_rad1 RADIOBUTTON GROUP rad1.
PARAMETERS : p_file LIKE rlgrap-filename.
PARAMETERS : p_rad2 RADIOBUTTON GROUP rad1 DEFAULT 'X'.
PARAMETERS : p_lopath LIKE filename-pathintern.
PARAMETERS : p_lofile LIKE filename-fileintern DEFAULT 'ZTBUKXXIN008'
.
SELECTION-SCREEN END OF BLOCK blk1.

AT SELECTION-SCREEN.
*PERFORM validate.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
IF p_rad1 EQ 'X'.
PERFORM get_local_file USING p_file.
ELSEIF p_rad2 EQ 'X'.
*PERFORM get_appl_file USING p_lofile.
ENDIF.


*the code for perform local file is

*&---------------------------------------------------------------------*
*&      Form  get_local_file
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      -->P_P_FILE  text
*----------------------------------------------------------------------*
form get_local_file  using    p_p_file.

CALL FUNCTION 'WS_FILENAME_GET'
EXPORTING


DEF_FILENAME = p_file
def_path = 'C:\'
mode = ' '
IMPORTING
filename = p_file
EXCEPTIONS
inv_winsys = 1
no_batch = 2
selection_cancel = 3
selection_error = 4
OTHERS = 5.

endform.                    " get_local_file

regards

twinkal

hai friends,

After designing my sel-screen, For one radio button i am not getting the F4 symbol at the end of my text box.of-course F4 functionality is working when i double click on my radui button.but as it's not a feasible solution.anybody have solution for this.if u want check my code also.

SELECT-OPTIONS : s_date FOR ztbukxxin003-z_manufdate NO-EXTENSION.

SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-006.

PARAMETERS : p_rad1 RADIOBUTTON GROUP rad1.

PARAMETERS : p_file LIKE rlgrap-filename.

PARAMETERS : p_rad2 RADIOBUTTON GROUP rad1 DEFAULT 'X'.

PARAMETERS : p_lopath LIKE filename-pathintern.

PARAMETERS : p_lofile LIKE filename-fileintern DEFAULT 'ZTBUKXXIN008'

.

SELECTION-SCREEN END OF BLOCK blk1.

AT SELECTION-SCREEN.

PERFORM validate.

*AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.

IF p_rad1 EQ 'X'.

PERFORM get_local_file USING p_file.

ELSEIF p_rad2 EQ 'X'.

PERFORM get_appl_file USING p_lofile.

ENDIF.

the code for perform local file is

CALL FUNCTION 'WS_FILENAME_GET'

EXPORTING

  • DEF_FILENAME = p_file

def_path = 'C:\'

mode = ' '

IMPORTING

filename = p_file

EXCEPTIONS

inv_winsys = 1

no_batch = 2

selection_cancel = 3

selection_error = 4

OTHERS = 5.

Note : Here the reason for commenting the line atsel-screen on value-request is bcz the cursor is not going forward if i select the application server button

7 REPLIES 7
Read only

Former Member
0 Likes
1,083

hiii mahesh

you can not have F4 help with radio button..with text box you just uncomment at selection screen on value request..like below.it will display symbol with text box only

SELECT-OPTIONS : s_date FOR sy-datum NO-EXTENSION.

SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-006.
PARAMETERS : p_rad1 RADIOBUTTON GROUP rad1.
PARAMETERS : p_file LIKE rlgrap-filename.
PARAMETERS : p_rad2 RADIOBUTTON GROUP rad1 DEFAULT 'X'.
PARAMETERS : p_lopath LIKE filename-pathintern.
PARAMETERS : p_lofile LIKE filename-fileintern DEFAULT 'ZTBUKXXIN008'
.
SELECTION-SCREEN END OF BLOCK blk1.

AT SELECTION-SCREEN.
*PERFORM validate.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
IF p_rad1 EQ 'X'.
PERFORM get_local_file USING p_file.
ELSEIF p_rad2 EQ 'X'.
*PERFORM get_appl_file USING p_lofile.
ENDIF.


*the code for perform local file is

*&---------------------------------------------------------------------*
*&      Form  get_local_file
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      -->P_P_FILE  text
*----------------------------------------------------------------------*
form get_local_file  using    p_p_file.

CALL FUNCTION 'WS_FILENAME_GET'
EXPORTING


DEF_FILENAME = p_file
def_path = 'C:\'
mode = ' '
IMPORTING
filename = p_file
EXCEPTIONS
inv_winsys = 1
no_batch = 2
selection_cancel = 3
selection_error = 4
OTHERS = 5.

endform.                    " get_local_file

regards

twinkal

Read only

0 Likes
1,082

Hi Patel,

But if i use the at sel-screen on value-request then i am getting the problem in other radio button.that's why i am not using it.

Read only

0 Likes
1,082

hii mahesh

tell me about your requirement and what problem you are getting with second radiobutton?

regards

twinkal

Read only

0 Likes
1,082

for ur question u can see my other thread as mentioned below.

.

Read only

Former Member
0 Likes
1,082

The same and similar Question posted by you

Read only

0 Likes
1,082

hi,

that questuon is for the button not wroking.this is for F4 symbol.can u tell me how it became same. please read the question once again.

Read only

Former Member
0 Likes
1,082

thanks for ur response