Deep Link (FSP_AFTER_LOGIN_URL) Not Working in APEX 4.1

Hi all,
We recently migrate from APEX 3.2 to 4.1. The deep link (FSP_AFTER_LOGIN_URL) does not work.
We have two applications, say 100 and 200. Application 100 is the central login application. Application 200 refers to application 100 for authentication. Both applications share the same cookie name.
When accessing via http://..../f?p=200:1, the request is redirected to application 100 login page. This is the expected behavior. However, after login, the APEX doesn't take us back to 200:1. It goes to the app 100 home page.
Do any of you have the same issue?
Thanks,
Avon

Looking forward to 4.1.1 !
In the meantime, the solution above seems to work just fine when the deep link includes just a App ID, APP PAGE ID, even a clear cache set of pages.
What would be the best method for also putting into the Login Link Item Values that are passed from deep link as I don't think they get set from the URL.
In your example, if the link also contained item name/value combinations I don't think the following will work.
Original URL : f?p=300:3::::::P3_ITEM1,P3_ITEM2:123,ABC
and the Login URL is:
f?p=970:101:&SESSION.::&DEBUG.::FSP_AFTER_LOGIN_URL:/f?p=&APP_ID.|&APP_PAGE_ID.||NO||P3_ITEM1,P3_ITEM2|&P3_ITEM1.,&P3_ITEM2./
Final URL: f?p=970:101:<session#>.::NO::FSP_AFTER_LOGIN_URL:/f?p=300|3||NO||P3_ITEM1,P3_ITEM2|, < No Values here>
as P3_ITEM1 and P3_ITEM2 don't get set to pass them along to the authentication application.
Any thoughts?
--Andy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Reply link does not work on ipad

    After logging in to this group, the reply link does not work on either my ipad 2  running IOS 8.1.3 nor my iphone 4 running 7.1.2. Not helpful really. I have had to switch on my old laptop.Also I never know which group to post a new question in, The names like Snow Leopard dont really give me a clue, so if the key word does not find an existing topic, i just end up guessing.

    You seem to have double posted, Lynne.   I have replied on the other one.
    Snow Leopard is one of the Apple operating Systems (OS X) as opposed to iOS 

  • Dashboard link is not working from BI Publisher

    Dashboard link is not working from BI Publisher. Please let me know How to fix this problem.

    Please somebody guide me.
    Dashboard link is working fine from the Apps Server Machine. But the link is not working from other machines. Do I need to setup machine.domain:<port_number> any where.
    Thanks,
    Vara

  • Oracle dbms.set_role does not work in APEX application

    Hi, in our j2ee applications, we use secure application role. Basically, the data source use the app user schema to connect to the database. the app user only has create session privileges. the database logon trigger will copy a set of attribute to the local secure context. (ip address, session user, client id, application name). The applications explicitly invoke the stored procedure sec_mgr.set_role before any DMLs are executed.
    the sec_mgr.set_role will check the local context attribute , authorize the ip, application name, and set an appreciated role to this session based on session user.
    we want to apply the same framework to the APEX application. First, we change the paring schema to the app schema which only has create session privilege. then we put the plsql code in which sec_mgr.set_role is called in the application builder --> shared components ---> edit security attribute ---> Virtual Private Database (VPD).
    however, we got the error ORA-06565: cannot execute SET ROLE from within stored procedure
    the sec_mgr.set_role is defined as invoker's right(AUTHID CURRENT_USER)
    do i missing something in APEX to get it work?
    Thanks

    Please explain it does not work in APEX? Is the application updating tables that have a trigger? APEX does NOT override trigger actions. Is it possible the values your trigger is looking for are NOT available in your APEX application? Can you post the trigger code here for review?
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • I'M AN AMERICAN ON TEMPORARY ASSIGNMENT IN ITALY AND CANNOT GET TO ANY HELP SOURCE ONLINE OR BY THE PHONE NUMBERS LISTED ONLINE.  I'M TRYING TO RENEW MY ONE TO ONE SUPPORT PROGRAM AND THE "RENEW NOW" LINK DOES NOT WORK!  HELP!

    APPLE SENT ME AN E-MAIL WITH A LINK TO RENEW MY ONE TO ONE SUPPORT.  THE LINK DOES NOT WORK.  AFTER I LOG INTO MY APPLE ACCOUNT AND CLICK "RENEW NOW" FOR ONE TO ONE, AN ERROR MESSAGE APPEARS SAYING "PAGE NOT FOUND".  AMAZING.  WHEN I TRY TO CALL THE TOLL FREE APPLE SUPPORT NUMBER FROM MILAN, ITALY WHERE I AM NOW LIVING, IT DOESN'T WORK. THE ITALIAN SUPPORT DESK APPEARS TO BE AVAILABLE ONLY ON WEEKDAYS DURING NORMAL BUSINESS HOURS.  HOW CAN I REACH A LIVE APPLE SUPPORT PERSON?

    Start by going here - https://expresslane.apple.com/GetproductgroupList.action?locale=it_IT
    Best of luck.

  • A/R Invoice linked object not working all the time

    I have a LinkedButton that is set to SAPbouiCOM.BoLinkedObject.lf_Invoice. When the selected A/R Invoice has a Document Type of Service the link works. When the selected A/R Invoice has a Document Type of Items the link does not work and I get the following error:
    "No matching records found 'A/R Invoice' (ODBC -2028)"
    I there another property that I should be setting? I could not find anything.

    Hi,
    I've added a code sample that works fine for me.
    add this code to a simple vb project with the correct references....
    1. Enter a number of the Invoice you want
    2. click on the second EditText to set the linkedButton
    3. click the LinkedButton
    <i>Public WithEvents m_App    As SAPbouiCOM.Application
    Private Sub Class_Initialize()
    Dim oForm As SAPbouiCOM.Form
    Dim oDBDS As SAPbouiCOM.DBDataSource
    Dim oItem As SAPbouiCOM.Item
    Dim oLB As SAPbouiCOM.LinkedButton
    Dim oST As SAPbouiCOM.StaticText
    Dim oET As SAPbouiCOM.EditText
        Set m_App = getCurrentApplication()
       ' m_App.MessageBox "You have COM UI connection"
        'form
        Set oForm = m_App.Forms.Add("UUID")
        oForm.Height = 150
        oForm.Width = 400
        oForm.Top = 100
        oForm.Left = 400
        Set oDBDS = oForm.DataSources.DBDataSources.Add("OINV")
        'Edittext
        Set oItem = oForm.Items.Add("EditT", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 50
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        'static
        Set oItem = oForm.Items.Add("StaticT", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 50
        oItem.Height = 15
        oItem.LinkTo = "EditT"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Code"
        Set oItem = oForm.Items.Add("EditT2", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 80
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        Set oItem = oForm.Items.Add("StaticT2", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 80
        oItem.Height = 15
        oItem.LinkTo = "EditT2"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Decs"
        'linked button
        Set oItem = oForm.Items.Add("Linked", it_LINKED_BUTTON)
        oItem.Left = 180
        oItem.Top = 50
        oItem.LinkTo = "EditT"
        Set oLB = oItem.Specific
        oLB.LinkedObject = lf_Invoice
        oForm.Visible = True
    End Sub</i>
    Regards,
    Yaniv G.
    SDK Consultant,
    SAP Manage Israel.

  • After updating to V 15.0 I have the issue that suddenly many but not all of the functions do not work anymore. Menues and download links do not work.

    I have updated my firefox to version 15.0. After this I have the effect that at some unspecified time during use many of the functions stop working. Menu's do not open, download links do not work anymore and so on. Opening new tab's or windows still works. Links on pages partly work partly not. Copy and paste does not work anymore on webpages. It takes ending the firefox process and restarting to correct the issue until it happens again. I have those effects on totally different webpages. At this time it happens every time after I start Firefox but not right away. Firefox first works for some time and then it suddenly doesn't anymore without me having done anything special

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Link is not working for one role. how to check please guide.

    Hi Expert,
    I have a simple question but as don;t aware of some of the techincal area not able to understand where to check.
    I have a link under document flow in offer( opportunity) where for one role sales support user the link is not happening. I have checked for other role its working fine.I understand that for this role the link  will not work as per the role maintianed.
    But where this link got maintained and how i will be able to check which link is tagged to which profile.
    rolewise mappeing with link.
    Please guide.
    Prem.

    Hello Prem,
    Please check the navigation bar profile from your business role.
    Then go to the navigation bar profile settings, you can find the details settings there.
    If it is a link under some work center, you need to start from the work center.
    If it is a direct link, then start from the derect link group.
    Hope this could be helpful.
    Best regards,
    'Maggie

  • Importing bookmarks I go to file and the IMPORT link is not working ... not Illuminated ... what can I do?

    I want to import bookmarks from Explorer and I go to File Tab and the IMPORT link is not working or not illuminated?

    Make sure that you not run Firefox in permanent [[Private Browsing]] mode.
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Permanent Private Browsing mode"

  • I have a Excel file which has lots of PDFs embed as a link.  When i converting to PDF the embed links are not working. Please help to slove this issue.

    I have a Excel file which has lots of PDFs embed as a link.  When i converting to PDF the embed links are not working. Please help to slove this issue.e

    I am also looking alternative way using inDesign to create the embed link as like as excel. is there any possible? Thanks for you reply

  • This link is not working. Please if you can access this l...

    this link is not working. Please if you can access this link send me the text from it (as an attachement by email)

    Is the SQL being passed to Access valid for Access:
    SELECT Orders.*, Tickets_detail.OrderID2 AS T2, Tickets_detail.Price, Tickets_detail.ticketname FROM Orders JOIN Tickets_detail ON Orders.OrderID = Tickets_detail.OrderID2 WHERE EventID =24 AND AuthNetCode =1 AND OrderType IS NULL ORDER BY orderID2 DESC
    (that's from your error msg)
    Can you run that on Access?
    I suspect the JOIN syntax might be different.
    Any reason why you're running SQL Server on live, and Access on dev? You're making a bit of a rod for yourself there.
    Adam

  • In P6 P6 Help link is not working

    Hi,
    My P6 help link is not working in help menu.
    P6 Library and Support link are working.
    As suggested in another discussion i tried to update link in Admin>Application setting and restarted weblogic, But system is still taking some other link than i defined in application setting.
    Can anybody help?

    Hi,
    We worked on this issue ,
    Solution:
    In the P6 EPPM Admin application in the corresponding configuration, In P6 Help url we have modified the url from  http://hostname:8203/p6help/help to http://hostname:8203/p6help/ and we restarted the P6 server in weblogic console.
    Then everything fine now,
    Regards
    Kumar

  • The figure links are not working

    The figure links are not working in the latest ADE 4.0.3. The same ePUB figure links are worked perfectly in ADE 3.0.

    Your navigation is covering some of your links. You should send the image to the back & or crop it to just the red box.
    How I create navigation menus:
    http://jeffnitschke.com/Video.html

  • When I link to an external site, the link does not work, if I right click "Open in new tab" the link works.

    When I link to an external site, the link does not work, if I right click "Open in new tab" the link works.

    I have not changed any of my preferences and they look like they are as I would have left them.
    I tried resetting Firefox and deleting the preference file, no change.
    By the way, I hate that the tabs are on top and not where they belong above the pages they are for. There should still be a way in Firefox to put them back without having to use an add-in.

  • Authentication function not working in APEX but works in pl/sql

    Greetings, Jim here.
    I have written a very simple authentication funtion which uses the dbms_ldap package to authenticate using the userid and password from the login page.
    I've tested this function thru pl/sql and it returns true and false accordingly.
    I've created a custom authentication schema and in the authentication function I have return myfunction;
    The problem is, when called thru APEX, it appears to always return true and lets the login proceed, even if the password is correct. I know its using the function due to the fact that if I enter a bogus function as the authentication function, APEX spits up a message saying so.
    So, I know the function works, but I don't know why it does not work with APEX. Posting function below.
    CREATE OR REPLACE FUNCTION ODBS.CUSTAPEXLOGIN (p_username IN VARCHAR2,p_password IN VARCHAR2)
    RETURN BOOLEAN AS
    retval PLS_INTEGER;
    emp_session DBMS_LDAP.session;
    ldap_host VARCHAR2(256);
    ldap_port VARCHAR2(256);
    ldap_user VARCHAR2(256);
    ldap_passwd VARCHAR2(256);
    ldap_base VARCHAR2(256);
    BEGIN
    ldap_host := 'oraldap';
    ldap_port := '389';
    ldap_user := p_username;
    ldap_passwd := p_password;
    ldap_base := 'cn=users,dc=company,dc=com';
    emp_session := DBMS_LDAP.init(ldap_host,ldap_port);
    retval := DBMS_LDAP.simple_bind_s(emp_session,('cn=' || ldap_user || ',' || ldap_base),ldap_passwd);
    if retval = 0 then
    return true;
    else
    return false;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    begin
    if sqlcode = -31202 then
    return false;
    end if;
    end;
    END;
    /

    Hi Jim,
    Can you clarify this -
    The problem is, when called thru APEX, it appears to always return true and lets the login >proceed, even if the password is correctThat implies you're saying your authentication function ALWAYS returns true? Is that correct? Also 'even if the password is correct' doesn't read correctly to me, did you mean 'even if the password is incorrect'?
    You then say -
    now the function works, but I don't know why it does not work with APEX.So by 'does not work' you mean in APEX it is always returning true therefore allowing you to login regardless of the username/password you use? Is that correct?

Maybe you are looking for

  • How to Download a PDF file from Webdynpro ABAP Screen

    Hi, I have developed a input form in webdynpro - ABAP(Not Adobe), As I am not using above services here, but would like to download the information I am capturing into a PDF file. can I do it without using adobe interactive forms ? thanks Siddharth

  • Oracle reports 3.0 (chart) on unix

    Hi, I am using Reports 3.0 on sun systems. I am trying to create a simple chart using to fields using the chart wizard in reports. But I am getting following errors. Please help. I am getting following errors when I try to save the chart: ORA-06502:

  • Imp/exp stdout language

    Hi all, I am interested in changing language in exp and/or imp log files? Oracle version is 10.2.0.4.0, OS version is Win 2k3R2. I have Oracle DB installed on hungarian-language OS, and when issue an exp command, I get log file on hungarian language.

  • X-Fi Mode Switching and XP File Permissi

    I have my file permissions locked down pretty tightly for all accounts except the Administrator. This is great for preventing major file system meltdowns whenever my wife picks up an email virus, but it can also make trouble now and then. The X-Fi ap

  • Migration from BRIO 8.5  to OBIEE 10x

    Hi, We have an requirement to convert BRIO report tom OBIEE which is currently at 8.5 version. We have got a utility own by Oracle named Translation workbench 11.1.x http://www.oracle.com/technetwork/middleware/bi-foundation/downloads/hyperion-intera