cancel
Showing results for 
Search instead for 
Did you mean: 

How to configuration repeat component with Floorplan?

Former Member
0 Kudos

Dear Expert,

I'm a newer with floorplan configuration.

I want to configure floorplan that can repeat the result.

Please guide me the step for solve this problem.

With best regards,

Chenna

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Chenna,

Could you please describe your problem in details.??

I doesn't make understad " i want to configure floorplan that can repeat the result".

In the result list how you want to appear the result as a row of the list or in the form of row repeater(Form Design).

Thanks

Praveen Gupta

Former Member
0 Kudos

Dear Praveen Gupta,

I want to search employee name in the search box(use text Be*) and click search button.

The result I need is displayed by persons that begin with Be character in list.

I want to organize floorplan like image below:

How can I solve this problem with floorplan?

Best regards,

Chenna

Former Member
0 Kudos

Hi Chenna,

As per my understanding you have to search all the employee start with name Be*.

For that you need to handle you search criteria explicitely by below code in the process event method of search feeder.

   TRY.

      cl_fpm_guibb_search_conversion=>to_abap_select_where_tab( EXPORTING it_fpm_search_criteria = ct_search_criteria
                     iv_table_name          = '<TABLE_NAME>'
                     io_field_catalog       = '<Field_catalog>'

IMPORTING et_abap_select_table   = lt_where_string ).

    CATCH cx_fpmgb INTO lo_exc.
  ENDTRY.

<TABLE_NAME> = Which hold your screen field.

<field_catalogue> = instance attribute of your get_definition of search attribute

lt_where_string = it will construct a where search string.

It will have value ( field name      like   'Be%' ).

So directly you can place this where string with loop to get the result data.

Hope this will help.

Thanks

Praveen Gupta

Former Member
0 Kudos

Hi Chenna,

If you don't want to implement this complex process. Then one more option is available at the time of configuring the field into field catalogue by filling FREE_TEXT_SEARCH field in

ET_FIELD_DESCRIPTION_ATTR.

Thanks

PraveenGupta

.