Exit from FPM application to non-FPM application

Hi Experts,
In my custom project (ABAP Webdynpros), I have created homepage screen using non-FPM webdynpro application. When I click any link on homepage, Iu2019m calling 2nd screen (FPM application) using exit plugs and this is working fine.
In FPM application I have [EXIT] button. When I click [EXIT] button I want to call homepage in the same screen. How can I do this? Exit plugs are not working in FPM application. 
There is a similar post I have seen in SDN, but it was not answered.
Exit from ABAP FPM application to anothor WD application (W/O FPM)
[Exit from ABAP FPM application to anothor WD application (W/O FPM) ]

You are right, it is a simillar post as you already mentioned. I am afraid there is not much beter answer available from me than already posted in that other thread.
I am not sure in 7.02 the navigation api's are expanded such a way that you can supply window as inplce or new.

Similar Messages

  • SSO implementation from SAP EP to non SAP application (JAVA Appln)

    I want to implement the SSO from SAP EP to java application i.e. on oracle 10g application server. For this i have downloaded ssoexample with relevant libraries and jsp aswell as java file. But where i need these files to be placed in java application and what all things i have to do on portal as well.
    Regards
    Ashwani

    i don't know, but what i see is, the calling application shd try to do the following... this is the sample code from the blog which i posted earlier.  This application shd have reference for your .so  files.  Now you will get the user details to authenticate.  You can use your API in .so files with these details.
            String systemalias = "system";
             // get user from request
             IUser iuser = request.getUser ();
             // get usermapping service
             IUserMappingService iums = (IUserMappingService)
                PortalRuntime.getRuntimeResources()
                   .getService(IUserMappingService.KEY);
             IUserMappingData iumd = iums
                 .getMappingData (systemalias, iuser);
             Map map = new HashMap ();
             try {
                iumd.enrich (map);
             catch (NoLogonDataAvailableException nldae)   {  
                // ... Error handling
    this is the max i can think.

  • Data transfer from FPM component to non FPM component error

    Hello,
    I have component A which is created using FPM .In this there is a interface node.
    Now there is a component B .This not FPM based .Now i reused component A into component B.Since the node of component A is interface ,so i can see the node in B .
    But when i am trying to read the node i am getting dump of null object reference .
    Is it because both the components are of different type ?
    How to resolve it ?
    Edited by: pr@t on Oct 28, 2009 2:00 PM

    Hi,
    you can always use the same abap class as assistance class
    and pass the data that way.
    grtz,
    Koen

  • How to call the RFC's from the third party applications or Non SAP applicat

    Hi,
    For calling RFC's from the wedynpro , SAP has provided the modeling concept.
    In the same way, if i want to access or call the RFC 's from the third applications or Non SAP applications what is the procedure and what is the methodoligy.
    As per my knowledge, we need to expose those RFC's as webservices . Then we must be able to acces in hetrogeous environment from any third party applications..
    Please revert back soon, It is very urgent.
    Regards
    Vijay

    Ayyappa Raj,
    Thanks for the reply.
    Please let me the detailed information for implementing.
    AS you said . I need expose the RFC's as webservice. This point is clear to me.
    2) Use tthe JCo to connect and create client proxy.
    Can u please elabrate the above point?
    If u have any steps created in the document or url to refer. Please forward it to me.
    Please forwar the document to this id "vijay00" in yahoo.
    AS the sdn is not allowing to give  the maill id i have given only the id details in yahoo.
    I am new to this procedure.
    Regards
    Vijay

  • Exit from ABAP FPM application to anothor WD application (W/O FPM)

    Hi Experts,
    I am working on a custom ABAP FPM application using roadmap pattern. I have anothor WD application w/o FPM application which calls my second FPM application. I do the navigation from my first application to FPM application using an exit plug in the window of first app. This navigation works fine. Now FPM component has following steps.These views are embed from a WD component ZFPM.
    EDIT  View - WD Comp ZFPM
    REVIEW View - WD Comp ZFPM
    CONFIRMATION View - WD Comp ZFPM
    I want a button on the EDIT screen and confirmation screen which will lead me to first application (ZCOMP1). For this I created an exit plug in the EDIT window and Confirmation window. But when I debug the application i find that even though control goes to respective exit plugs navigation does not happen. I think thats because of FPM. Can anybody please suggest the posible approach for it or is it just that this navigation is not possible?
    Thanks in Advance
    Umnag
    Edited by: Umang Mathur on May 31, 2011 1:36 AM

    Hi Baskaran,
    Thanks for a reply. I have done following things. I added a toolbar button in EDIT step and  I have given  its FPM ID "EMP_PRF_BACK".
    Then on the process event method I have coded as following.
    if io_event->mv_event_id = 'BACK_EMP_PRF'.
    DATA: lv_launch TYPE FPM_S_LAUNCH_URL.
    DATA: lo_navigate_to TYPE REF TO if_fpm_navigate_to.
    lo_fpm = cl_fpm_factory=>get_instance( ).
    lo_navigate_to = lo_fpm->get_navigate_to( ).
    lv_launch-HEADER_TEXT = ''.
    lv_launch-URL = 'http://www.google.com/'.
    *USE_SUSPEND_RESUME = ''.
    *PARAMETER
    lo_navigate_to->LAUNCH_URL( is_url_fields = lv_launch ).
    endif.
    for the test purpose I am trying to open google. It open the link but It opens in a separate window. I want it to open in the same window. Please suggest how to do it.
    Thanks in advance
    Umang

  • Navigation from FPM application to another FPM application

    Hello Experts,
    I have a requirement where there are two different applications with FPM configuration. On click of a button in one of those applications, i should close that application and open the other FPM application in the same window.
    I tried using the exit plug and it worked when the FPM was not configured for the first application alone (and 2nd application has FPM enabled). But, when i use the FPM configuration for the first application, the navigation is not happening.
    Is it possible to navigate between two FPM applications in a single wondow? If so please tell me how to do it.
    Thanks in advance,
    Seshadri

    Hello Sheshadri and Toolika,
    Here is a code snippet, which might help you:
    ON BUTTON ACTION:
    DATA : ls_navigation_key   TYPE             fpm_s_navigation_key,
                lr_navigation          TYPE REF TO IF_FPM_NAVIGATION,
                lv_target                LIKE LINE OF mr_navigation->mt_targets,
                ls_app_param        TYPE             apb_lpd_s_params,
          ls_navigation_key-key1 = lc_role.
          ls_navigation_key-key2 = lc_instance_a.
          lr_navigation = mr_fpm->get_navigation( ls_navigation_key ).
          READ TABLE lr_navigation->mt_targets
               INTO lv_target WITH KEY alias = (You can give a alias name in the LPD customizing)
          IF sy-subrc = 0.
            ls_app_param-key   = (Application Parameter Key).
            ls_app_param-value = (Application Parameter value).
            APPEND ls_app_param TO lt_app_param.
            CALL METHOD mr_navigation->navigate
              EXPORTING
                iv_target_key             = lv_target-key
                it_application_parameters = lt_app_param.
    Hope this helps !
    Regards
    Rohan

  • Call an applications 'user exit' from a PL/SQL procedure

    My question is a technical PL/SQL question related to Oracle Applications. I need to call a standard applications 'user exit' from a stored PL/SQL procedure. Can anyone tell me if this is possible and how to do it?
    (i.e. I am attempting to call the AR user exit SALESTAX)
    Thanks,
    Michelle Dodge

    Hi,
    Read this thread, perhaps is there your response :
    Host...
    Nicolas.

  • SSO from non sap application server to SAP systems

    Mysapsso2 cookie has been generated after we are login into the portal https://FQDN/irj/portal for all the backend systems in client browser. Since it is working fine. After login into the portal , while clicking the URL iview of external JBoss application sever in portal home page and it is shows the new windows pop up login page. After login into this external JBoss application server, we have configured work item for SAP ITS WEBGUI login page of the backend system inside this JBoss appliaction. Here we need to pass the mysapsso2 cookie information in SAP WEBGUI, so that login page is bypassed using SSO. Kindly do give some suggestion for fixing this issue. Kind Regards, R Rajavelu

    Try to use it Appsintegrator to access the non sap application from SAP Application

  • SSO from non-SAP application to EP system

    Hi all,
    Is it possible to configure the Single sign-on from non-SAP application to SAP Enterprise portal?
    My requirement is
    I have a link to "Enterprise Portal" in my company's website home page. If I click on the link, it should directs to EP portal with out asking for logon.
    Please suggest, is it possible??
    Regards,
    Sujoy

    Hi Sujoy,
    SSO implementation to non-browser applications i.e non-SAP systems is possible in 3 ways which are listed .Can find useful info in the below links.
    http://help.sap.com/saphelp_nw70/helpdata/EN/12/9f244183bb8639e10000000a1550b0/frameset.htm
    among the non-browser applciation if it is an MS dotnet system then the below article will give a clear understanding of SSO implementation.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f05ae0f0-bf93-2b10-ed9e-a7320c012841
    Regards
    Supraja

  • Re: [iPlanet-JATO] from a non jato application to jato application

    Without getting into the details, the session id is passed around in a
    cookie, but once you leave your JATO app "sandbox", you no longer have
    access to the same session. This is not a JATO limitation, but a J2EE
    spec constraint. The war file creates a Servlet Context. Other servlet
    contexts have separate session sandboxes. If you deployed all your apps
    within the same war file, your sessions would be mutually accessible.
    or
    You could do something like use a Session EJB and pass its reference
    between apps I suppose.
    Also, see JATO Tip #0011 for forwarding to a "non-JATO" target.
    Hopefully, my reply will open up a conversation for more solutions,
    ideas, if what I have proposed is insufficient.
    craig
    raju_jato wrote:
    how can we forward a request from a non jato application(build using
    jsp and servlet) to a jato application and back and have only one
    session for both the applications.
    thanks
    For more information about JATO, including download information, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    Without getting into the details, the session id is passed around in a
    cookie, but once you leave your JATO app "sandbox", you no longer have
    access to the same session. This is not a JATO limitation, but a J2EE
    spec constraint. The war file creates a Servlet Context. Other servlet
    contexts have separate session sandboxes. If you deployed all your apps
    within the same war file, your sessions would be mutually accessible.
    or
    You could do something like use a Session EJB and pass its reference
    between apps I suppose.
    Also, see JATO Tip #0011 for forwarding to a "non-JATO" target.
    Hopefully, my reply will open up a conversation for more solutions,
    ideas, if what I have proposed is insufficient.
    craig
    raju_jato wrote:
    how can we forward a request from a non jato application(build using
    jsp and servlet) to a jato application and back and have only one
    session for both the applications.
    thanks
    For more information about JATO, including download information, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

  • Retrieve data from a non-peoplesoft application using HTTP Get

    I need to retrieve data from a non-peoplesoft application. They want us to submit a HTTP GET request to their URL with a series of parameters. I am thinking about using HTTP Targert connector to accomplish this. Does anyone have sample peoplecode?
    Currently we are on 8.51.10 Tools...
    If there is any better way .. please let me know ..

    I have used HTTP Get to get XML file from a government sanction list by hitting URL http://www.treasury.gov/ofac/downloads/sdn.xml
    There is a delivered PS program that does that for vendor sanctions. I had to get the online setup correctly by creating a new custom Node with HTTP Target Connector. The program name is BSP_IMPORT. The below code is responsible for the calling the node and retrieving the data. Play around with the code below see if you can get it to meet your needs.
    BSP_IMPORT_AET.BANKNODE.Value is just the custom external code that I created.
    PMT_FLAT_FILE_INBOUND message is just a none rowset based message to use the web service call.
    Local TR:FileUtilities:FTP &oFTPUtil = create TR:FileUtilities:FTP();
    +/* HTTP */+
    +/*******************************************************************************/+
    Local Message &msgHTTP;
    Local Message &msgResult;
    +&msgHTTP = CreateMessage(Message.PMT_FLAT_FILE_INBOUND);+
    +&oFTPUtil.PopulateFTPGetIBInfo(&msgHTTP, BSP_IMPORT_AET.BANKNODE.Value);+
    +&msgResult = %IntBroker.ConnectorRequest(&msgHTTP);+
    +/* check to see if the file is wrapped */+
    +&strAllLines = &msgResult.GenXMLString();+
    +&strAllLines = Substitute(&strAllLines, Char(26), " "); /* Added this line to remove invalid characters */+
    +/*******************************************************************************/+
    Edited by: Maher on Mar 20, 2012 3:28 PM

  • Invoking SOLMAN WS from a NON-SAP application

    Hello All,
    Has any one accessed the SAP SolMan web services from a non-sap application ? For my project, I need to talk to solman through its exposed operations as defined in the WSDL file
    http://mycompany.com:8003/sap/bc/srt/rfc/sap/ict_service_desk_api?wsdl
    When I invoke this WS through eclipse, after taking in the UID & PWD, it is returning appropriate values for:
    RequestSystemGuid
    RequestGuid
    Getpossiblevalues
    It fails for all other operations. For e.g. ListUnclosedIncidents returns and error called :
    ErrorCode (unsignedByte):  13 
    Similary for the operation 'ReadCompleteIncident'
    What is it that needs to be done to surmount this error ? Any pointers, suggestions ?
    Thanks
    Karthik

    Hi, did you accomplish to solve your problem using the list unclosed incidents operation?
    Best Regards
    Nasoft

  • Exiting from ABAP Web Dynpro application

    Hi,
    In ESS portal we have one tab Personal info, there I have created one link and integrated my ABAP web dynpro application.
    I want to exit from the application and go back to the Personal info sub area. created one exit button in my application on press of that i need take this action.
    Please guide me with this
    Thanks!
    Piyush

    Piyush,
    I am not sure whether it works or not just get the navigation url of personalinfo subarea and using portal APIs navigate to that url when you click on exit button
    Thanks
    Bala Duvvuri

  • Import repository from Designer concerning non-versioned applications (EA2)

    Hello
    I've downloaded last version of Data Modeler -> v3.0 EA2 because correcting bug about import from designer for non-versioned applications.
    I tried to import from my Designer connection but I can see only versionned applications ! I would like to see all the applications (like in Data Modeler v2). Version 3 EA2 is supposed to correct the problem ?!
    The exact version is V3.0.0.653 ! Is that right ????
    Thanks to all!

    Hello,
    On our designer we have ; one workarea and 22 Applications system and several sub-application system. Only a couple on these applications systems are versionned.
    I would like to import the 20 applications and sub-applications in Data Modeler but even if I have the Data modeler EA2 I cannot see them ! I was talking about the Data modeler version lattest version (EA2). Is it the V3.0.0.653 ?
    thanks regards,
    Rocco

  • How to assure tht javaw.exe exits from taskbar on application exit

    Hi all,
    My java application acquires a license when it runs.
    The problem arises when the application terminates abnormally,sometimes its javaw.exe doesnt stop.This doesnt lead to the release of license by tht application.
    How can i assure tht the javaw.exe file has stopped?
    Thanks & Regards
    Mansi

    MansiSachar wrote:
    Hi all,
    My java application acquires a license when it runs.
    The problem arises when the application terminates abnormally,sometimes its javaw.exe doesnt stop.This doesnt lead to the release of license by tht application.At worst that is nonsensical at best you left out information.
    If the application terminated, regardless of how, then it cannot still be running.
    A thread in java, such as the main thread, might exit, fall out of main(), via several methods. That however doesn't mean that the application has terminated. The java app will only terminate when all non-daemon threads have exited.
    "Abnormal" is less than informative. If an OS system exception occurs then the app will be terminated (see above) by the OS. Nothing in java can prevent that.
    If a java exception occurs and the main thread is exited then the app might or might not be terminated (see above.)
    Best I can suppose is that your main() is exiting but there are still non-daemon threads running. So you must find them and stop them. A common source of that problem is incorrectly exiting a java GUI. Because the java GUI creates a thread which must be stopped. That might or might not be relevant to what you are doing. There are other sources of non-terminated threads including of course the ones that you explicitly created but which might also exist via other third party libraries that you might be using. The same applies for those however, you must terminate them for the application to exit.

Maybe you are looking for

  • G5 10.5.8 Combo Update codec overrun - install fails

    Hi, I still have my first mac, a Power Mac G5, but it has been acting as a center speaker stand for some time now. A couple of years ago it started playing up, I spent hours and pounds trying to fix it, gave up and bought a shiny new iMac. So with th

  • I have lost all my headings, like bookmarks, facebook etc. What happened and how do I get them back?

    At the top of the screen it might say bookmarks, I would click on that and book marks would all be listed. I have lost the top part of my home page with all the things i need like my bank website etc.

  • Passing parameters to subroutine

    Hi, I have a subroutine which is being called from the 2 PAI modules of the different screens.The subroutine has two queries which are the same for both the modules , the only difference I want is that after the queries there is a call to a new scree

  • Edit data using OEM grid

    Hi Friends, I want to edit tale data using the grid (view-edit contents) of tables of OEM 10g(cleant console) but the update/edit button is disabled. How do I enable it please. You know its very handy for dba/apps dev to use this feature (like toad).

  • Can't install Acrobat CC

    Good afternoon, I cannot install Acrobat CC. When nearly finished, (87%) the installer stops and writes "cannot find drive N:". Drive N: is the drive for my documents, but it's fine if Acrobat is installed on C: How can I influence that? Best, Kees