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

Launchpad - No valid target content area found

$
0
0

Hi,

I created a FPM component configuration with two pages.

 

On the first page I defined a UIBB with the view LPD_MAIN_WINDOW and 3 buttons for the map, directory and index. Also I created a configuration for this UIBB.

 

On the second page I defined a UIBB with the view LPD_AREA_WINDOW and assigned the same UIBB configuration.

 

When starting the application all seems ok. I have defined one top level folder in my launchpad role (transaction LPD_CUST).

This folder is displayed in the Launchpad as link. When I execute this link I expect that the second page is being displayed, to see the applications of the top level folder.

Instead I get the message "No valid target content area found" and the navigation to the second page is not executed.

 

I compared my configuration with the example configuration of FPMGB_TEST_LAUNCHPAD but I can't see a difference.

 

Could anyone help?

 

BR, Edgar


Lead Selection Functionality in FPM GUIBB List

$
0
0

Hi Experts,

 

   In my feeder class i am using Search, List and Form GUIBBs first i am search flights using search guibb and getting result in list guibb when i select a row in list (lead selection) in which method i can grab that lead selection data and can i display that selected row in form guibb.

 

Thanks & Regards,

Ramesh.

Capture FPM Event in another WDC

$
0
0

Hello Friends,

 

I trying to capture the name of event liek EDIT,CLOSE,NEXT etc.. that are defined in FPM in a std WDC.

 

I need this because based on the ID of the button , i need to process some information.

 

Could you pls let me know how to handle this or any code would be fine. ?

 

Regards,

Vinay

Benefits enrollment FPM roadmap - Action is not being triggered for Edit/Display button

$
0
0

Hi,

 

I am facing an issue in the HRESS_CC_BENF_ENR_GAF in steps 1 and 2 where the Edit or Display (when configured in V_T7XSSPERSUBTY) button does not work in the CCs HRESS_CC_BEN_OVR_PERSDATA_US, HRESS_CC_PER_OVR_ADDRESS_XX or HRESS_CC_PER_OVR_FAMILY_XX.

 

The button 'Edit personal data' from the tollbar is working fine. I could not find any custom configuration or development that might be causing this issue.

 

Has anyone faced this issue?

 

Regards,

Felipe

FPM URL ,paramter passing

$
0
0

Hi All ,

 

I have to open FPM URL on button click ,which is fine ,I can achieve it . But I need to open URL with some predefine information e.g PO number .

 

In order to pass PO number from one FPM application to another ,I am using Export to Database indx(p/) ID 'XX" and import from DB indx and then delete DB indx.

 

 

But this solution is not consistent.Export and import does not work properly every time .

Can any one please advice , how can we pass information  from one URL to another .

 

I tried using singleton class as well,but data is cleared up .

UIBB with panel is always collapsing when an ui action is triggered

$
0
0

Hello all,

 

I am new to FPM and I need some help with a problem which could be trivial to some.

I have a UIBB inside a component configuration displayed using a panel. On this UIBB I have two checkboxes a dropdown list and a text area which should be displayed for a specific value of the dropdown.

 

The problem is that whatever action I make inside the panel (I check one of the two checkboxes or I select a value in the dropdown) my panel is always getting collapsed. I don't want it to be collapsed but to stay expanded.

 

Could any of you guys please help me?

 

Best Regards,

 

Mihai Dipsan

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( ).

How to create Drop-Down List in FPM, with values from intenal table?

$
0
0

Hi Experts!

 

I need to create a Drop-Down List Box in from UIBB. Drop-Down should contain values from an internal table. I know, that this is possible for Web Dynpro, but how can I manage values for FPM's Drop-Down list?


FPM OVP pop-up

$
0
0

Hi All

 

I´m trying to call a pop-up when click on radio-button.

 

I´m using FPM OVP. I have made a Dialog Box, but  do not know if this is correct.

 

When click on radio button in MOBILE Page, I need to launch a POP up .

 

 

 

 

Thanks

Open a popup on standard FPM buttons - FPM dialog box

$
0
0

Hi gurus,

 

a "simple" requirement: I have to open a confirmation popup ("Are you sure?" with yes/no buttons) on some FPM buttons for a standard application (view/edit of an RFx).

I've seen that FPM Dialog Boxes are often suggested as solution that meets my desiderata, but I have some doubts.

First of all: following this tutorial:

http://scn.sap.com/docs/DOC-2322

 

I created an enhancement over the proper configuration for FPM_OIF_COMPONENT, in which i created a Dialog Box referring to a custom (and empty, for now) WD Component.

 

The problem is: how to associate this Dialog box to existing, standard FPM buttons?

 

In the tutorial a custom button has been created and an FPM Event ID called "FPM_OPEN_DIALOG" has been set for this button; as parameter, an entry with:
Parameter name: DIALOG_BOX_ID

value: <mycustomDialogBoxID>

has been created.

 

The problem is that each standard FPM button has its own FPM Event ID, so the first question is: should I override that event with FPM_OPEN_DIALOG?

And then, how can the Dialog Box know what's the correct FPM Event ID that should be triggered by the pressure of the OK button?

 

Could anyone suggest me the best approach to this task? I'm kinda confused, I guess there should be a kind of parameter's passing system, probably my custom WD Component which is used as UIBB for the popup has to implement a specific interface.

 

Any help will be appreciated, thanks

Launchpad - No valid target content area found

$
0
0

Hi,

I created a FPM component configuration with two pages.

 

On the first page I defined a UIBB with the view LPD_MAIN_WINDOW and 3 buttons for the map, directory and index. Also I created a configuration for this UIBB.

 

On the second page I defined a UIBB with the view LPD_AREA_WINDOW and assigned the same UIBB configuration.

 

When starting the application all seems ok. I have defined one top level folder in my launchpad role (transaction LPD_CUST).

This folder is displayed in the Launchpad as link. When I execute this link I expect that the second page is being displayed, to see the applications of the top level folder.

Instead I get the message "No valid target content area found" and the navigation to the second page is not executed.

 

I compared my configuration with the example configuration of FPMGB_TEST_LAUNCHPAD but I can't see a difference.

 

Could anyone help?

 

BR, Edgar

Session time out in FPM applications - Problem

$
0
0

Hi Experts,

 

I am trying to find a solution to the session time out problem in my FPM applications. When the application is left inactive for long, even though it has timed out the user only gets to know when he/she clicks on a button or something. I have to find something to address this issue.

 

Now, I know that I cannot increase the timeout value( greater than the ICM setting) for a particular application and increasing the ICM setting timeout value wont be possible in my project.

So, the users want a warning message (lets say "Session will time out in 1 minute" )  if the application is going to time out. Now, this is FPM and I am on a lower system ( SAP_BASIS 702) so I don't have the TimeTrigger UI element.

 

Any idea how this can be achieved in my OVP FPM application.

 

Many thanks in advance.

 

Saikat

Chart UIBB FPM_CHART_UIBB

$
0
0

Hello Consultants,


I have followed the blog written by Simon Hoeg and created application using FPM_CHART_UIBB. Can anyone tell me how to capture the values from List GUIBB and transfer it to Chart component.


Your replies will be highly appreciated..



Thanks,

Riz..



FPM POWL GUIBB - column width

$
0
0

Hi guys - does anyone know if it is possible to allow the user to change the column widths of fields when accessing a GUIBB POWL ?

 

I have a report with a maintainable dropdown field and I cannot for the life of me get to to display the full text, or enable the user to be able to resize the columns, or manually set the size of the column in the GET_FIELD_CATALOG method of the feeder class so that the whole text is displayed.

 

FYI the largest text in that field would be about 40 chars. I thought it might be because I have the wrapping flags set, but turning them off doesn't make a difference.

 

I'm calling it from an application against FPM_OVP_COMPONENT.

 

Any pointers would be VERY helpful.

 

thanks in advance.

Sean

PI 7.1 - Java System Reports - java.lang.NullPointerException

$
0
0

Hello,

 

We have a PI 7.1 system on Oracle 10g. OS is HP-UX.

 

 

In NWA, when I click on Java System Reports, I get a java.lang.NullPointerException as below:

 

 

500   Internal Server Error  SAP NetWeaver Application Server/Java AS

   

 

The initial exception that caused the request to fail, was:

 

 

java.lang.NullPointerException

 

    at com.sap.webadmin.monitor.complib.selection.impl.TreeController.bindMonitors(TreeController.java:781)

    at com.sap.webadmin.monitor.complib.selection.impl.wdp.InternalTreeController.bindMonitors(InternalTreeController.java:508)

    at com.sap.webadmin.monitor.complib.selection.impl.MonitorNodeSelectionImplInterface.preselectView(MonitorNodeSelectionImplInterface.java:414)

    at com.sap.webadmin.monitor.complib.selection.impl.wdp.InternalMonitorNodeSelectionImplInterface.wdInvokeMethod(InternalMonitorNodeSelectionImplInterface.java:438)

    at com.sap.tc.webdynpro.progmodel.generation.ExternalControllerPI$ExternalInterfaceInvocationHandler.invoke(ExternalControllerPI.java:339)

    ... 79 more

 

See full exception chain for details.

 

Failed to process request. Please contact your system administrator.

 

While processing the current request, an exception occured which could not be handled by the application or the framework.

 

 

If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).

 

 

For further information about the Web Dynpro error page, error analysis and a description of well-known error situations, see SAP note 1113811.

 

 

System Environment

 

Client

 

Web Dynpro Client Type HTML Client

 

User agent Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

 

Client Type msie7

 

Client Type Profile ie6

 

ActiveX enabled

 

Java Applets enabled

 

Accessibility mode disabled

 

Rendering engine: Lightspeed

 

Inline CSS:  disabled

 

Validate by rendering:  enabled

 

Server

 

Web Dynpro Runtime vendor: 'sap.com', name: 'tc/wd/webdynpro', location: 'SAP AG', counter: '7.1103.20090714135859.0000', change number: '57570', codeline: NW711_03_REL

 

J2EE Engine 7.11.3710.48555.20090609090212

 

System ID (SID) PIS

 

Server Node ID |5422050|54220|Server 00 00_54220|hpdasbxpd301/10.21.40.146|SERVER|RUNNING

 

Java VM SAP Java Server VM, version:5.1.038, vendor: SAP AG

 

Operating system HP-UX, version: B.11.31, architecture: ia64

 

Application

 

Java EE Application (deployable object) sap.com/tclmitsamuimainframe~wd

 

Web Dynpro Application FloorPlanApp

 

Request URI /webdynpro/dispatcher/sap.com/tclmitsamuimainframe~wd/FloorPlanApp

 

Version vendor: 'sap.com', name: 'tc/lm/itsam/ui/mainframe/wd', location: 'SAP AG', counter: '7.1103.20090707123908.0000', change number: '60'

 

Session & Other

 

Session Locale en_US

 

Session Timezone Greenwich Mean Time

 

Time of Failure Tue Apr 26 06:53:26 GMT 2011 (Java Time: 1303800806640)

 

Session User ClientUser(id=USER.R3_DATASOURCE.USDOSA00, name=USDOSA00)

 

Client Session Id yqWcR3O367tC7DV3ZPDpsIh3-ocD8WOQLwHiu1IA_SAP

 

Client Window Id e1a946106fd111e0bd1b001e0bfcdfda

 

Application Session Id e1a946116fd111e0911d001e0bfcdfda

 

Web Dynpro Code Generation Infos

 

sap.com/tclmitsamuimainframe~wd

 

*WD web module webdynpro/resources/sap.com/tclmitsamuimainframe~wd: SapDictionaryGenerationCore 7.1103.20090703134135.0000 (release=NW711_03_REL, buildtime=2009-07-07T21:18:180000, changelist=45493, host=pwdfm285, is-central=true)*+

 

*WD web module webdynpro/resources/sap.com/tclmitsamuimainframe~wd: SapDictionaryGenerationTemplates 7.1103.20090703134135.0000 (release=NW711_03_REL, buildtime=2009-07-07T21:18:510000, changelist=45493, host=pwdfm285, is-central=true)*+

 

 

............................

 

 

 

*WD web module webdynpro/resources/sap.com/tcwdrestricted: SapWebDynproGenerationCore 7.1103.20090703134135.0000 (release=NW711_03_REL, buildtime=2009-07-11T16:51:050000, changelist=46048, host=pwdfm285, is-central=true)*+

 

*WD web module webdynpro/resources/sap.com/tcwdrestricted: SapWebDynproGenerationTemplates 7.1103.20090703134135.0000 (release=NW711_03_REL, buildtime=2009-07-11T16:51:170000, changelist=46048, host=pwdfm285, is-central=true)*+

 

*WD web module webdynpro/resources/sap.com/tcwdrestricted: SapWebDynproRuntimeGen 7.1103.20090703134135.0000 (release=NW711_03_REL, buildtime=2009-07-11T16:47:290000, changelist=46052, host=pwdfm285, is-central=true)*+

 

 

 

Detailed Error Information

 

Detailed Exception Chain

 

java.lang.NullPointerException

  at com.sap.webadmin.monitor.complib.selection.impl.TreeController.bindMonitors(TreeController.java:781)

  at com.sap.webadmin.monitor.complib.selection.impl.wdp.InternalTreeController.bindMonitors(InternalTreeController.java:508)

  at com.sap.webadmin.monitor.complib.selection.impl.MonitorNodeSelectionImplInterface.preselectView(MonitorNodeSelectionImplInterface.java:414)

  at com.sap.webadmin.monitor.complib.selection.impl.wdp.InternalMonitorNodeSelectionImplInterface.wdInvokeMethod(InternalMonitorNodeSelectionImplInterface.java:438)

  at com.sap.tc.webdynpro.progmodel.generation.ExternalControllerPI$ExternalInterfaceInvocationHandler.invoke(ExternalControllerPI.java:339)

  at $Proxy3024.preselectView(Unknown Source)

  at com.sap.webadmin.monitor.state.MonitoringView.initPlugin(MonitoringView.java:535)

  at com.sap.webadmin.monitor.state.MonitoringView.wdDoModifyView(MonitoringView.java:168)

  at com.sap.webadmin.monitor.state.wdp.InternalMonitoringView.wdDoModifyView(InternalMonitoringView.java:639)

  at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doModifyView(DelegatingView.java:89)

  at com.sap.tc.webdynpro.progmodel.view.View.modifyView(View.java:569)

  at com.sap.tc.webdynpro.progmodel.window.ViewController.modifyView(ViewController.java:251)

  at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doModifyView(ClientComponent.java:430)

  at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doModifyView(ClientComponent.java:443)

  at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doModifyView(ClientComponent.java:443)

  at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doModifyView(ClientComponent.java:443)

  at com.sap.tc.webdynpro.clientserver.phases.ModifyViewPhase.execute(ModifyViewPhase.java:70)

  at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequestPartly(WindowPhaseModel.java:162)

  at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doProcessRequest(WindowPhaseModel.java:110)

  at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:97)

  at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:512)

  at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:52)

  at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doExecute(ClientApplication.java:1549)

  at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doProcessing(ClientApplication.java:1363)

  at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToApplicationDoProcessing(AbstractExecutionContextDispatcher.java:154)

  at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForAppProcessing.doService(DispatchHandlerForAppProcessing.java:35)

  at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)

  at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)

  at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToApplicationDoProcessing(ExecutionContextDispatcher.java:114)

  at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:80)

  at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:618)

  at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:649)

  at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessingStandalone(ApplicationSession.java:570)

  at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:309)

  at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:743)

  at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:258)

  at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:259)

  at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToRequestManager(AbstractExecutionContextDispatcher.java:202)

  at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForRequestManager.doService(DispatchHandlerForRequestManager.java:38)

  at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)

  at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)

  at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToDispatcherContext(ExecutionContextDispatcher.java:146)

  at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:92)

  at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:104)

  at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)

  at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doGet(AbstractDispatcherServlet.java:54)

  at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)

  at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)

  at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:140)

  at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:37)

  at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:486)

  at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:298)

  at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:396)

  at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:385)

  at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:48)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:76)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:243)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:78)

  at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)

  at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)

  at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)

  at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:43)

  at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:42)

  at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)

  at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)

  at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:428)

  at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:247)

  at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:45)

  at com.sap.engine.core.thread.execution.Executable.run(Executable.java:115)

  at com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)

  at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)

 

I checked all the services mentioned above and they are working fine.

Could someone please help how I can go about this issue.

(Sorry I could not post the entire exception message due to letter restriction)

 

Regards,

AD


FPM OVP Feeder Class Parameters

$
0
0

Hi Experts.

For each feeder class in FPM different feeder parameters are there, where exactly this parameters are defined? or for a custom feeder class if we want to giving parameters how to do that...

Thanks in advance. Kp

How to create Drop-Down List in FPM, with values from intenal table?

$
0
0

Hi Experts!

 

I need to create a Drop-Down List Box in from UIBB. Drop-Down should contain values from an internal table. I know, that this is possible for Web Dynpro, but how can I manage values for FPM's Drop-Down list?

How to add a button in a list uibb

$
0
0

Hello Volks,

 

I need help.

 

I have to add a Button ( or just events to a button ) to a list uibb dynamically at runtime, which means I can't use the ~get-definition method.

 

This means I have to do it in ~get-data. I can define my actions there and add them to ct_action_usage but I can't come up with a way

to assign them to the button.

 

Does anyone have any idea how that might work?

 

Thanks in advance.

Mike

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.

Open a popup on standard FPM buttons - FPM dialog box

$
0
0

Hi gurus,

 

a "simple" requirement: I have to open a confirmation popup ("Are you sure?" with yes/no buttons) on some FPM buttons for a standard application (view/edit of an RFx).

I've seen that FPM Dialog Boxes are often suggested as solution that meets my desiderata, but I have some doubts.

First of all: following this tutorial:

http://scn.sap.com/docs/DOC-2322

 

I created an enhancement over the proper configuration for FPM_OIF_COMPONENT, in which i created a Dialog Box referring to a custom (and empty, for now) WD Component.

 

The problem is: how to associate this Dialog box to existing, standard FPM buttons?

 

In the tutorial a custom button has been created and an FPM Event ID called "FPM_OPEN_DIALOG" has been set for this button; as parameter, an entry with:
Parameter name: DIALOG_BOX_ID

value: <mycustomDialogBoxID>

has been created.

 

The problem is that each standard FPM button has its own FPM Event ID, so the first question is: should I override that event with FPM_OPEN_DIALOG?

And then, how can the Dialog Box know what's the correct FPM Event ID that should be triggered by the pressure of the OK button?

 

Could anyone suggest me the best approach to this task? I'm kinda confused, I guess there should be a kind of parameter's passing system, probably my custom WD Component which is used as UIBB for the popup has to implement a specific interface.

 

Any help will be appreciated, thanks

Viewing all 1726 articles
Browse latest View live


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