Quantcast
Channel: SCN : Popular Discussions - Floorplan Manager for Web Dynpro ABAP
Viewing all 1726 articles
Browse latest View live

Adding a custom button to FPM - how to manage the custom event

$
0
0

Hello experts,

 

I'm dealing with a simple task, that is, adding a custom button to FPM (OIF) in a standard application.

 

So; I found that the standard application (RFx process in SRM) uses FPM_OIF_COMPONENT with the configuration /SAPSRM/WDCC_FPM_OIF_RFQ_PR_PU.

 

I then used the Component Configurator on /SAPSRM/WDCC_FPM_OIF_RFQ_PR_PU , enhancing that in order to add a custom button, say FOO.
The element ID is the set to "FOO" while FPM Event ID is set to "FOO_BAR" (I have to implement this, right?).

 

Now, starting from the point that the button is visible thru the application but obviously, it doesn't work...Searching in SDN I found that I should write my own code into the PROCESS_EVENT of ComponentController... but which ComponentController?

 

As the application uses FPM_OIF_COMPONENT, it has a lot a subordered MainView, and each one of these contains a WD Component. Each one has its own ComponentController.

 

This makes me thinking that once I add to identify what's called "appCC" for a certain configuration. I used to do it via Configurator on a SAP SRM 700.

 

Is this the right direction or I'm missing something?

 

If I'm following the right path... there's a problem. I'm now dealing with a SAP SRM 702 and the Component Configurator layout has been modified a bit; I cannot locate the option to see what's the appCC reference for that configuration.

 

Could you please help me? Thanks!


Drag and Drop in FPM from List to Form GUIBBs

$
0
0

Hi Gurus,

 

I am trying drag and drop functionality in FPM between two GUIBBS(List & Form). I have set drag and drag properties in Feeder classes of both GUIBBs, when I tried with LIst & List GUIBBS it is working fine. But not with different GUIBBS like Form and List.

 

Can any suggest me where I am going wrong.

 

Code for enabling Drag & Drop

*** In Drag Source Feeder class get_defination()

 ls_dnd_def-type = 'DRAG'.
  ls_dnd_def-tags = 'TEST*'.  ls_dnd_def-scope = 'G'.  ls_dnd_def-enabled = 'X'.  append ls_dnd_def TO et_dnd_definition.

*** In Drop Target Feeder class get_defination()

 ls_dnd_description-tags  = 'TEST*'.  ls_dnd_description-scope = 'G'.  ls_dnd_description-enabled = 'X'.  ls_dnd_description-type = 'DROP'.  INSERT ls_dnd_description INTO TABLE et_dnd_definition.

 

Thanks & Regards

Venkat

FPM interview Question

$
0
0

Hi,

 

I want set of  important  of webdynpro FPM. so Please send me as well as soon !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Global Toolbar in FPM_OVP_COMPONENT is disabled in leave application

$
0
0

Hello Experts,

 

We have recently upgraded our development system to EHP7 from EHP6. We are facing issue in ESS leave request where Send Button on global toolbar is in disabled mode. I checked the component configuration and found all parameters are in place for send button which is under global toolbar setting of OVP. Any idea how to make it enable?

 

Regards,

Sagar

Rename Application & Component configurataion name

$
0
0

Hi all,

Please let me know , is there any way to Rename Application & Component configuration name's.

(OR)

any way to copy Application & Component configuration's then renaming them.

 

Thanks in advance

 

RKV

Copy Component Configuration and Customizing configuration

$
0
0

Hi,

 

I have a requirement where I have to create a copy of existing application.

The issue is when I create a copy Component configuration, there are a few screens tabs/elements which are present customizing configuration but not in component configuration.

 

Can anyone please tell how to combine the two in one configuration.

 

Thanks in Advance

How to enhance the standard FPM application

$
0
0

Hi Experts,

 

 

How to enhance the standard FPM application ?

Please suggest me any document or thread so that i can understand the process.

 

Regards,

Prakhar

Buttons in FPM OIF

$
0
0

Hi all

 

We are working on EHP6 and EP 7.3 .

I want to create some tabs on my webdynpro applcaition .

I am using OIF component .

 

the problem is i want to add a few new buttons in the toolbar and based on the button selected various operations need to be performed.
How can i do this ?

 

note : I hjave created the applciation cinfiguration and comoent configuration successfully.

in CC i can see an option to add button to toolbar but how to link it to my event and add icons to this button

 

Please suggest

 

regards

Vaibhav


Code to call for saving the data in WDC - DPR_PROJECT_VIEW

$
0
0

Hi Experts,

 

I have enhanced the view of standard component DPR_DET_DATA_PROJECT_O and added my custom fields. Now I need to save that fields in my local Ztable.

 

I know it is a FPM OIF component and tried to check the method process_event in WDC(DPR_PROJECT_VIEW).

 

I tried to debug and ofcourse the method process_event is being triggered at clicking on SAVE button, but still not able to get the logic as where they are calling the table to save the data.

 

Now my requirement is I need to save my custom fields in ztable, in the same place where the standard view data is being called to save the entries in SAP table.

 

Please help me.

 

 

Thanks and Regards,

Ramakrishnan.

FPM interview Question

$
0
0

Hi,

 

I want set of  important  of webdynpro FPM. so Please send me as well as soon !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

How to get text into the toolbar of (tree) UIBB?

$
0
0

Hi everyone,

 

I´ve come to a new point where I need advice and hints. I finally managed to create my Tree UIBB (thanks again to the developers who helped me there). I also added a button in the toolbar to call a transaction. Now there is a new requirement I have no solution for yet.

 

The customer wants text in the toolbar (system date and time). Right next to it is the already created button.

 

2014-01-22_161902.jpg

How can I insert text into the toolbar? Right now my workaround would be a deactivated link, but of course this is not nice. Moreover is there a chance in getting the text on the left side and the button (Bestandsübersicht) on the right side of the toolbar?

 

Any advices or hints would be appreciated.

 

Best regards,

Dominik

Close Popup window in webdynpro abap.

$
0
0

Hi,

Can anyone tell me ...how to close the popup window through the action in webdynpro abap . In my popup window there is a button(i.e 'UPDATE') apart from that  default 'OK' button , I want that when 'UPDATE' button is pressed, along with the action window should be closed. I dont want to close the window by pressing 'OK' button at the botton

 

I have used following code to open the popup window.

 

data lo_window_manager type ref to if_wd_window_manager.

data lo_api_component  type ref to if_wd_component.

data lo_window         type ref to if_wd_window.

 

lo_api_component  = wd_comp_controller->wd_get_api( ).

lo_window_manager = lo_api_component->get_window_manager( ).

lo_window         = lo_window_manager->create_window(

                   window_name            = 'POP_UP  WINDOW'

                   title                  = ''

  •                   close_in_any_case      = abap_true

                   message_display_mode   = if_wd_window=>co_msg_display_mode_selected

  •                  close_button           = abap_true

                   button_kind            = if_wd_window=>co_buttons_ok

                   message_type           = if_wd_window=>co_msg_type_none

                   default_button         = if_wd_window=>co_button_ok

                   ).

 

lo_window->open( ).

Navigation Linked to "Link To Action"

$
0
0

Dear all,

   I am currently facing an issue. The requirement here is I am displaying a list in list UIBB. One of column in this list is hyper-link "Link-to-action", if user clicks on any value in this column. I have to open another form UIBB which will have the details. This detail screen has to replace the first screen.

Request you all to help me out with this scenario.

Search Event in Floorplan Manager

$
0
0

How I can check which event (button) was pressed, when working with floor plan manager. The  standard buttons is defined on the top.I must handle some stuf when the button was pressed. I tried something like this but can't finde the event.

 

DATA: lo_idr TYPE REF TO if_fpm_idr,

lo_fpm TYPE REF TO if_fpm.

lo_fpm = cl_fpm_factory=>get_instance( ).

lo_idr ?= lo_fpm->get_service(

cl_fpm_service_manager=>gc_key_idr ).

data: lv_1 type string,

      lv_2 type string.

CALL METHOD LO_IDR->GET_APPLICATION_TITLE

  IMPORTING

    EV_TITLE         = lv_1

    EV_TITLE_TOOLTIP = lv_2

    .

 

 

thanks in advanced

 

Edited by: Ofer Fritz on Aug 17, 2010 8:19 AM

FPM interview Question

$
0
0

Hi,

 

I want set of  important  of webdynpro FPM. so Please send me as well as soon !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


How to enhance the standard FPM application

$
0
0

Hi Experts,

 

 

How to enhance the standard FPM application ?

Please suggest me any document or thread so that i can understand the process.

 

Regards,

Prakhar

specific button on FPM toolbar to call methods of component controller/view controller

$
0
0

Hello,

 

How to call the webdynpro methods in action event handler of fpm.

 

In my senario am placing a button on FPM toolbar,when am click on this button my alv need to be modified.

 

Regards

Chidiri

Global Toolbar in FPM_OVP_COMPONENT is disabled in leave application

$
0
0

Hello Experts,

 

We have recently upgraded our development system to EHP7 from EHP6. We are facing issue in ESS leave request where Send Button on global toolbar is in disabled mode. I checked the component configuration and found all parameters are in place for send button which is under global toolbar setting of OVP. Any idea how to make it enable?

 

Regards,

Sagar

ANNOUNCEMENT:***New Video from FPM Team***

FPM LIST GUIBB - 1st Dropdown value sel. sets the value for 2nd dropdown enumeration

$
0
0

Hi All,

 

I have 2 dropdowns in my LIST view configuration and they are working fine.

Problem I am having:

When user selects the 1st dropdown in row X, I want the values of 2nd dropdown in row X to change.

 

If I update CT_FIELD_USAGE-FIXED_VALUES in GET_DATA it obviously updates the entire table dropdown values. I want to be able to change only the row values for 2nd dropdown.

 

I can do this easily in WebDynpro ALV but I want to achieve this by using IF_FPM_GUIBB_LIST.

 

Regards,

Abhinav

Viewing all 1726 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>