cancel
Showing results for 
Search instead for 
Did you mean: 

Fields as Radio Button on View

Former Member
0 Kudos

Hi Experts,

My requirement is to add to fields (Flags X & Y) on the Quotation screen BT115QH_SLSQ/Details

as radio buttons so that out of these two I can select only one of them.

I can add these Z* fields using EEWB or append CRMD_ORDERADM_H.

But how to display those as radio button in CRM Web UI (2007) using component workbench?

Thanks in advance!

Regards,

Spiarte

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

go to the page where u wanna add ur fields in the browser. Press f2.

u can get the view name and the component of it.

go to the worbench now.

enhance the specific view u identified .

click on cofiguration tab in the right side.

edit configuration. check in "Available fields"( for the two fields u created thru EEW).

It will be available the click on the position where u wanna add this.

save the configuration. now run the browser and see the changes in the corresponding view u have.

Hope it solves ur problem

thanks

Jgds

Former Member
0 Kudos

Hi Jgds,

Ya I know how to add fields in a view.

These flags/flieds are of type say Char1.

And I specifically wants them as readio botton (not checkbaox) - so that I can choose any one of them at a time.

Is there any option of Radio button in the Component workbench?

Rgds,

Spirate

Former Member
0 Kudos

Hi,

First of all, you can achieve this by creating just one field on EEWB. You dont need to create 2 fields.

Here is what you do.

1. In EEWB, As you already did, add a field of type char with length 1. Based on the radio button selected, the value that gets stored in this field can be controlled through your code.

2. Do not add your field yet to the Web UI.

3. Open your view in component workbench, navigate to your attribute in the context node and right click and regenerate get_i methods first.

4. Double click and create GET_P method for your custom field.

Within this method, add the following code:

CASE iv_property.

WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.

rv_value = cl_bsp_dlc_view_descriptor=>field_type_radio. "This is to display field as Radio button

WHEN if_bsp_wd_model_setter_getter=>fp_radio_cols.

rv_value = 2. "This will display 2 radio buttons on screen

WHEN if_bsp_wd_model_setter_getter=>fp_group.

rv_value = 'R1'. "This is to set the radio button group so that the radio button selection is mutually exclusive

ENDCASE.

5. Add a global attribute GR_RADIO_DDLB of type ref to CL_CRM_UIU_DDLB to the context class.

6. Double click and create GET_V method for your custom field. Within this method add the following code.

DATA: lt_ddlb TYPE bsp_wd_dropdown_table,

ls_ddlb TYPE bsp_wd_dropdown_line.

IF gr_radio_ddlb IS NOT BOUND.

CREATE OBJECT gr_radio_ddlb

EXPORTING

iv_source_type = 'T'.

CLEAR : ls_ddlb.

ls_ddlb-key = 'P'. "Value for the First Radio button

ls_ddlb-value = 'Radio 1'. "Label for first radio button

APPEND ls_ddlb TO lt_ddlb.

CLEAR : ls_ddlb.

ls_ddlb-key = 'A'. "Value for the Second Radio Button

ls_ddlb-value = 'Radio 1'. "Label for second radio button

APPEND ls_ddlb TO lt_ddlb.

gr_radio_ddlb->set_selection_table( lt_ddlb ).

ENDIF.

rv_valuehelp_descriptor = gr_radio_ddlb.

7.Now try to add the field to the Web UI and you can see that the field type is already displayed as "Radio button group".

Hope this helps.

Regards

Krishna

Edited by: kkp on May 10, 2009 10:04 AM

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks Krishna