Quantcast
Channel: SCN: Message List - Floorplan Manager for Web Dynpro ABAP
Viewing all 2665 articles
Browse latest View live

FPM_OPEN_DIALOG Event is not populated in the Event Dropdown

$
0
0

Hi ,

 

I have created a Button on the Sap Toolbar and now want to assign the FPM_OPEN_DIALOG  event but cannot see this option for the button created on the Standard Sap toolbar screen .  Is there any specific interface needs to be added in the feeder class ?

 

However FPM_OPEN_DIALOG option is populated in the dropdown if I create a button on the GUIBB and then assign an event for it . I am clueless why it is not populated when the button is created in the standard sap toolbar .

 

Here is the screenshot :

 

opendialog.jpg

 

Regards,

Vicky


Re: FPM_OPEN_DIALOG Event is not populated in the Event Dropdown

$
0
0

Hello Vicky,

 

Try with this code, hope it will workout.

 

In GET_DEFINITION, no need to set the visibility property.

 

* Prepare actions

  li_action_line-id            = 'ACTION_NAME'.  " You can give whatever name you want to the action ID

  li_action_line-enabled  = abap_true.


  APPEND li_action_line TO et_action_definition.

 

Regards,

Naga

Re: FPM_OPEN_DIALOG Event is not populated in the Event Dropdown

$
0
0

Hi Nagendra,

 

I tried with the following code still no luck .

 

I need to trigger Search Action in the screen everytime to enable the button and then the button gets disabled once an event is fired from it.


Here is the Code :

 

 

DATA: LS_ACTION_DEFN   TYPE fpmgb_s_actiondef.

 

LS_ACTION_DEFN-ID = 'Action_Btn'.

LS_ACTION_DEFN-text = 'Test PROC Data'.

LS_ACTION_DEFN-ENABLED = abap_true.

append LS_ACTION_DEFN to ET_ACTION_DEFINITION.



Screenshot :


Untitled.png
Regards,

VIcky

FPM_LIST_UIBB_ATS button dont work.

$
0
0

Hi

I'm working with NWBC

And i include a new tab in screen with a FPM_COMPOSITE_UIBB AND  inside it i put 2 FPM_LIST_UIBB_ATS

now the first FPM_LIST_UIBB_ATS  works but the second dont allow insert data .

 

Somebody know why and how correct it.

 

OBS:I'm a beginner in this FPM.

Thanks.

 

tela nwbc 05.png

Re: FPM_LIST_UIBB_ATS button dont work.

$
0
0

Hi Ronaldo,
I think the fact that you embedded two List ATS UIBBs into a Composite UIBB is not relevant whether
the toolbar buttons in the List ATS UIBB is active or not (or maybe not directly, there migth occur a kind of side effect of course, e. g. if both list uibb use the same feeder class object instance).

 

Anyway, what you need to check is the feeder class of that list uibb. There method get_data, parameter ct_action_usage and ev_action_usage_changed.

 

 

Kind regards,
Ulrich

Re: FPM_LIST_UIBB_ATS button dont work.

$
0
0

Hi ulrich

Ok i change by the class /SCMTMS/CL_FBI_GUIBB_LIST and now the buttons appears but doesn´t allow type in new line , it appears not editable.

terlna nwbc 06.png

Re: FPM_LIST_UIBB_ATS button dont work.

$
0
0

Hello Ronaldo,

 

Check the Display type in attribute of column section under standard attributes. The display type should be 'Input Field'.So that you can enter the data in list uibb.

 

Regards,

Naga

FPM Close button is not visible

$
0
0

Hi Experts,

 

I have an FPM OVP application which does not have any setting done for the parameter FPM_HIDE_CLOSE.

I am not seeing the FPM_HIDE_CLOSE parameter also in my application.

When we are calling the application from portal, the close button is not visible.

Can you please tell me why?

 

Thanks,

Shilpa


Re: FPM_OPEN_DIALOG Event is not populated in the Event Dropdown

$
0
0

Hello Vicky,

 

The ideal place to add this button and set this to enabled is get_definition only.

 

The way this works is

1. Before the page gets loaded, it'll loop across all the get_definitions in the feeder classes the columns are picked up from field catalog and actions from action definition.

You can try the below piece of code.

 

*----- add button

    APPEND INITIAL LINE TO et_action_definition ASSIGNING <ls_actiondef>.

    <ls_actiondef>-id = <button_id>.

    <ls_actiondef>-imagesrc = <image>.

    <ls_actiondef>-enabled = abap_true.

    <ls_actiondef>-tooltip = text-XXX.


2. GET_DATA is something like PBO, it'll be called again in sequece for all the UIBBs. Yes, we can do some manipulations of buttons and actions here. But the right thing would be to in get_definition.


In case you still want to go ahead with putting the code in get_data, please check if your code is reached before the launch as well.

Hope this helps.


Best Regards,

Avinash Bolisetty


Re: FPM_LIST_UIBB_ATS button dont work.

Wire Schema Missing

$
0
0

Hi  Guys.

 

I was working  with NWBC changing a customizing component, but now the tab WIRE dont show the wires .SOmebody know how to solve it?

 

6.png

Thanks

Creation of Component configuration asking access key in IDES System

$
0
0

Hi Webdynpro FPM mentors,

 

When I am trying to create Component configuration (7.31  version ) it is asking access key in the IDES system.

Previously I was able to created Component configuration for ( 7.2 Version ) without being asked access key.

 

I am not able understand why system asking access key for  Creating Component configuration in the local system (IDES SYSTEM) for 7.31 Version.

 

Could you please suggest me to create component configuration in 7.31 version  without giving access key in the IDES system.

 

Thank you in advance.

 

Regards,

Shivajiraju.

Re: Creation of Component configuration asking access key in IDES System

$
0
0

Hi Shiva,

 

Check if there are entries in table DEVACCESS if your developer keys are in place.

Also ask your Basis guy to see if any settings in SCC4 could be the reason.

 

Thanks.

Vipin

Re: Creation of Component configuration asking access key in IDES System

$
0
0

Hi Vipin,

 

Thanks for your replay.

 

I have checked and found entries in Table DEVACCESS.

Given that Value for Access key but still is not allowing to create.

 

Thank you.

 

Regards,

Shivajiraju.

Re: Creation of Component configuration asking access key in IDES System

$
0
0

Hi Shivajiraju,


is the namespace you are trying to create the configuration in is modifiable in your system?


Regards,

Peter




Re: Wire Schema Missing

$
0
0

Hi Ronaldo,

please try to delete your personalization for component FPM_HCT_MAIN with WD application WD_ANALYZE_CONFIG_USER.

Regards, Jens

FPM_LIST_UIBB change the Query name

$
0
0

Hi Folks,

 

I am facing an issue with Benefit enrollment application customization, we have one confirmation screen which is FPM_LIST_UIBB which is based on HRBENF BOL. The configuration is as below have connector class as CL_HRESS_BEN_CONNECTOR_QUERY and the query as QUERY_ENROLLED_PLANS, I want to change the query to QUERY_PARTICIPATING_PLANS(which exists as Query object in standard HRBENF BOL) but there is no option(Drop-down consists only one entry which is QUERY_ENROLLED_PLANS). The standard configuration contains the correct entry but some how it is an issue with custom configuration only.

Untitled.png

 

 

Can you please help to modify this value.

 

Thank you,

Krishna Kishore T.

Re: Creation of Component configuration asking access key in IDES System

$
0
0

Hi Shivajiraju,


can you please use report WD_CFG_ACCESSKEY, as described in SAP note 1595724.


Best Regards,

Simon




Display message raised at the user exit level in Web dynpro screen

$
0
0

Hi Experts,

 

in a requirement, the message raised at the user exit level has to be displayed at floor plan screen.

 

Any guidance to this will be appreciated.

 

Thanks and Regards,

Shitanshu Sahai

Wire Values From Custom GUIBB to MDG Screen Fields

$
0
0

Hi,

 

 

I have a user defined DIALOG GUIBB in the MDG Customer search screen . I need to transport or wire the values entered in the DIALOG guibb of


Customer search  to screen fields present in Maintainence Window using abap. IS there any way I can transport values from one screen to other


screen using feeder class.




Regards,

Vicky

Viewing all 2665 articles
Browse latest View live


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