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

FPM OVP: How to select a stacked UIBB

$
0
0


Hey experts,

 

I created an FPM OVP with a stack of 4 UIBBs, so each UIBB is represented by a tab.

 

I would like to select a tab in my coding, e. g. when data is wrong on the third tab and another tab is active right now, I want to select the third tab.

 

I tried to achive this by firing the same event than the FPM runtime environment (FPM_PANEL_SELECTED with corresponding event parameters for the target UIBB), but this event is unfortunalety ignored. Is there another way to select a specific tab?

 

Thanks,

Karsten


How to rename text toolbar in OIF?

$
0
0

Dear experts,

 

How can I change button text in FPM OIF?

 

Please see attachment below:

 

abc.png

 

Could anyone help me to fix this problem?

 

Thanks advance.

 

Regards,

 

Keu

Make Visible FPM Toolbar Button(Add->'Other bank') on Bank Data Delete

$
0
0

Hi Experts,

 

I have implemented the requirement to restrict a user's other bank data to 2.

 

I have used the feeder class (CL_HRESS_PER_OVERVIEW) IF_FPM_GUIBB_LIST~GET_DATA method to implement the same.

 

But When I delete the bank data the get data method is not getting called.

 

I read that the visibility of FPM toolbar in ESS can only controlled by that method.

 

So during delete how can I make it visible.

 

The method is called on toggle the toolbar tray. If it is not possible to make visible the FPM Toolbar is it possible to toggle the tray by code.

 

Please help me I am stuck on this for almost a month.

 

 

Regards,

Porselvan

FPM_OIF_COMPONENT - how to bind action to selection of matnr using FPM?

$
0
0

Hi All,

 

We're using ECC6.

 

I want to make a change to application MMPUR_UI_PR_APP which is in FPM_OIF_COMPONENT.  This is the purchased req creation application.  I am totally new to FPM so am not sure how to go about making a change.

 

Basically I want to attach an action to when the user selects a material.

 

I have found the material field in the component configiration editor but not sure how to achieve my goal.

 

If anyone could point me in the right direction, i'd be most grateful.

 

Many thanks,

Liz.

FLOOR PLAN MANAGER WITH WEBDYNPRO ABAP

$
0
0

Hi All,

 

How to learn FPM , please help me....and please send some doc's...

 

 

 

Regards.

Sunil B

How to add a button in the FPM application..?

$
0
0

Here is my FPM application for MDG(Material data governance)

Anybody please tell me how to add it.

Is there any thing to do with the feeder class because it is bassically built by using the feeder classes.

MDG_2.JPG

 

I that screen, near to the CHECK Button i have to add another button and wanted to do some event for that.


It will be realy helpfull if some could tell me the answer.

Assignment of Component Configuration

$
0
0

Hi,

 

As you see in the screenshot, the Comp.Conf /.../GRC_GRAC_ERM_OIF is assigned to Component FPM_OIF_COMPONENT:

cust.png

 

But I think this is the cause for some errors in my application. The standard looks like this:

cust2.png

 

I want to set up the configuration to the standard, but I have no idea how to assign the component configuration GRAC_ERM_OIF (which is the standard for this application) to the component FPM_OIF_COMPONENT.

 

The configuration is standard:

cust3.png

 

Any ideas how this could be configured?

 

Thanks and regards

Peter

Custom button events in FPM

$
0
0

Hello ladies and gentlemen,

 

Please forgive my ignorance, as I'm on old-school procedural developer who is new to FPM? I was wondering if someone could explain to me the mechanism by which a custom event is triggered from a custom bottom added to the component toolbar in FPM. 

 

I have added the button and created the custom event against the button, can't determine where the event is coded (i.e. in FPM_GAF_COMPONENT object, in the custom WDA view or elsewhere) and how the FPM button event is linked to the WDA or FPM process.

 

I would appreciate any assistance you could offer in clarifying this.

 

Regards,

 

Steve


Hi, I want to add a new column in the standard table in FPM UIBB.

$
0
0

FPM-Doubt.jpg

 

I have created a Z application and Z feeder class (ZCL_EHHSS_RAS_OIF_PER_LST) for this purpose.

Inside Get definition method I have inserted a row with the name Department.

 

method IF_FPM_GUIBB_LIST~GET_DEFINITION.

  super->if_fpm_guibb_list~get_definition(

    importing

      es_message               = es_message

      eo_field_catalog         = eo_field_catalog

      et_field_description     = et_field_description

      et_action_definition     = et_action_definition

      et_special_groups        = et_special_groups

      ev_additional_error_info = ev_additional_error_info

      et_dnd_definition        = et_dnd_definition

      es_options               = es_options ).

 

  data: lr_s_field_descr_ID type ref to fpmgb_s_listfield_descr,

        lr_s_field_descr_ROLE type ref to fpmgb_s_listfield_descr.

 

  read table et_field_description with key name  = 'PERSON_ID' reference into lr_s_field_descr_ID.

  lr_s_field_descr_ID->mandatory = abap_true.

 

  read table et_field_description with key name  = 'ROLE' reference into lr_s_field_descr_ROLE.

  lr_s_field_descr_ROLE->mandatory = abap_true.

 

************************************************************************************************************************************************* 

***Code written for appending a custom row in field descriptiom

  DATA: wa_field TYPE FPMGB_S_LISTFIELD_DESCR.

  wa_field-name = 'Department'.

  insert wa_field into table et_field_description.

 

endmethod.

 

However, when I go in the component configuration for adding the column in UIBB element it gives me an error stating that field needs to added in field catalog also. Please explain how this can be achieved. Also If there is a way by which I can insert the new field in initial structure directly this process can be avoided.

 

FPM-Doubt2.jpg

basics for FPM in webdynpro abap

$
0
0

Hi Experts,

 

I am new to webdynpro know some basic concepts.

 

I want to learn the FPM. what exactly FPM and why need FPM.

 

what is ehp4,we have to install any patches for using eph4 or any version we have to isntall.I have ecc6.0.

 

I know package ABP_FPM_DEMO in that some application using FPM are there.But I ma not understaing taht can you please give me small hello world application from step by step how to configure,what is configuration and what is the use of FPM.

 

 

 

Thanks

How to raise popup in OIF?

$
0
0

Hi All,

 

I have a requirement where on enter of a material number , i need to display a popup having plants and user could select the plants out of it.

 

So the popup will be as follows :

 

1st Column     2nd Column

Check box      Plants

 

 

All the plants selected i need to get those in my Z feeder class.

 

So how can we create popup's in OIF feeder classes ? Just to clarify, It's not a confirmation box, it's something where we need to first fetch the plants and then need to pass it to feeder class.

 

Please explain with steps.

 

 

Thanks,

Vimal

How to display leading space in POWL?

$
0
0

Dear Experts,

 

How could display space or tab indentation for member in POWL below?

 

Capture.JPG

Could anyone help to solve above problem?

 

Thanks advance.

 

Regards,

 

Keu

FPM: Issue while navigating for second time

$
0
0

Hello Experts,

 

I've created 2 FPM applications, one displays the list of POs created by the user through a List UIBB and the other displays the Header and Item of the PO when selected.

 

My both Configurations are purely UIBB based and I'm not using webdynpro at all for designing any views, everything is designed using FPM UIBBs and feeder classes only.

 

I'm able to navigate between two applications and display details as required, thanks to CL_FPM_NAVIGATE and LPD_CUST.

 

On my PO display screen, I have provided a 'BACK' button to go back to the PO List. When I clicks on any other PO number then, it is navigating to the Display screen but displaying the details of the first PO number clicked, always.


I also tried to put a breakpoint at INITIALIZE method of Display screen feeder class, it stops there when I execute for the first time.

But when I go BACK and clicks on any other PO, it simply displays the details of the previous PO without stopping at the breakpoint. It seems it is not executing the code on second time and displaying me the same screen from some cache or static instance.


I'm not using Suspend and Resume feature as I'm not getting SAP-WD-RESUMEURL parameter from portal, thus on BACK button, I'm again navigating to the PO List.


In LPD_CUST, navigation mode is 'INPLACE' as i want to display screen in the same window.



Kindly advice.

Let me know if any other information is required.



--

Best Regards

Jitin Kharbanda

FPM : Table POPIN

$
0
0

Hi All,

 

Is it possible to build table POPIN (ROW or CELL ) functions in FPM application. I don't want to create webdynpro component and then call in FPM.

Please share any document on this.

 

Thanks In Advance,

P$G.

How to hide the standard Help button in FPM

$
0
0


Dear Experts,

 

I want to hide the standard Help button choice coming along with the FPM.

 

I am in EHP7 with SAP net weaver 7.4

 

Kindly suggest how to do the same.

 

 

Thanks in advance.

 

Nalla B.


Execption handling in data feeder class

$
0
0

Hi All ,

 

I am calling some class methods inside the data class. So i am using the statement catch exe in lo_exe1.

 

After how can i display the execption , I  mean the message manger will be initial inside the data class, So how can i handle the exceptions from data feeder class.

 

Please share your ideas!

 

Thanks,

Pradeep.

FPM ALV Table rendering expands and constricts - How do we disable this?

$
0
0

Hi All,

 

We are using a table using FPM list GUIBB  rendered as ALV table.

 

When we fix the number of columns displayed on the table, with horizontal scrolling the table shrinks or expands as per the length of the columns displayed.

 

This would confuse the user.

 

Is there any way to stop the ALV from doing this?

 

Thanks,

Vin.

Unable to See any field in General Setting panel of List UIBB

$
0
0

Hi Guys,

 

I am facing a problem of seeing nothing (not able to expand) in General setting panel of list UIBB after creating it with feeder class entry in component configuration editor. (as attached screen shot)

 

Please help me whether this an authorization issue or some setting problem.

 

Thanks

 

Param

selection option using form uibb

$
0
0

Hi experts,

 

I would like to build the select-option in form uibb. It is possible in the search uibb. Is this possible in the form uibb?

 

Thanks and regards,

Clark

How to raise popup in OIF?

$
0
0

Hi All,

 

I have a requirement where on enter of a material number , i need to display a popup having plants and user could select the plants out of it.

 

So the popup will be as follows :

 

1st Column     2nd Column

Check box      Plants

 

 

All the plants selected i need to get those in my Z feeder class.

 

So how can we create popup's in OIF feeder classes ? Just to clarify, It's not a confirmation box, it's something where we need to first fetch the plants and then need to pass it to feeder class.

 

Please explain with steps.

 

 

Thanks,

Vimal

Viewing all 1726 articles
Browse latest View live


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