Self secured page not working in multiple sessions of same browser

Hi
I have created a selfsecured page by making security mode of page 'selfsecured' and adding validateParameter() in page controller.I didnt do guest user/resp setup as I want user to manually provide user id and choose responsibility,XLA_LINESINQ_GL_DRILLDOWN is a seeded function so no changes there.
I am seeing very inconsistent behavior.
1)At some times when I invoke function through url
http://rws60180rems.us.oracle.com:8049/OA_HTML/RF.jsp?function_id=XLA_LINESINQ_GL_DRILLDOWN&jeHeaderId=64524&jeLineNum=1&jeSource=Payables&searchType=customize
I get error "You are not authorized to access the function SLA: View Subledger Journal Entry Linesfrom a GL Journal Line. Please contact your System Administrator."
2)On other times url works and user is taken to Ebs R12 login page,after providing login credentials user is able to view the page.But If I invoke same url or url with different parameters in different tab of browser or different window of same browser,get following error.Basically user can invoke this function and use this url only one at a time which is not practical in real world
"You are trying to access a page that is no longer active.
- You may have attempted to access to this page directly by bookmarking the page or copying the URL. This page does not support bookmarking.
- The referring page may have come from a previous session. Please select Home to proceed."
Am I missing something in my implementation?Are there any fnd profiles which control page behavior.Does OAF support that self secured pages successfully open in multiple browser windows.
Preeti

Hi,
Is there any specific requirement to make the page as self secured, as most of the self selcured pages are build for guest user account. If there is any, kindly share.
Now lets talk about the behaviour of the pages in different scenarios
1) I get error "You are not authorized to access the function SLA: View Subledger Journal Entry Linesfrom a GL Journal Line. Please contact your System Administrator."
Comment: As OAF pages does certain initialization like setting org_id, language etc based on the login user. But as you are trying to access the page by directly hitting the URL on browser, this might be one of the reason that you are getting above error.
2) On other times url works and user is taken to Ebs R12 login page,after providing login credentials user is able to view the page.But If I invoke same url or url with different parameters in different tab of browser or different window of same browser,get following error.Basically user can invoke this function and use this url only one at a time which is not practical in real world
Comment: As there is an active transaction and session for the browser, so it won't allow you to start with another transaction. But still can you try to do the same in another machine. Some of the browser allows you to have different session.
Regards,
Gyan

Similar Messages

  • Rendering a blank page not working for multiple xdp's in assembler

    Hi,
    we are trying to append different .xdp's witht he assembler service to get the resultant .pdf
    Main xdp :docin.xdp
    2nd .xdp : doci2n.xdp
    there are multiple xdp's that would be combined together with the ddx,
    the main xdp (pdf from the main .xdp) should always end with an even page, i have a blank page that fires up when the pdf ends with an odd number , when tested just the main xdp with the assembler service it works fine (it ends with even page)
    but when other xdp's are sent with the main xdp in the assembler, the assembler prints the .pdf from the second .xdp on the even page (which is supposed to be blank- with the incorporated logic in the main .xdp), is there a way that the .pdf from main xdp (docin.xdp) can end with even pages and the .pdf from other .xdp(doci2n.xdp) can start on an odd page.
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/">
      <PDF result="result3.pdf">
        <XDP>
          <XDP source="docin.xdp"/>
          <XDPContent insertionPoint="header" source="Header.xdp"/>
            <XDP source="doci2n.xdp"/>
          <XFAData source="data.xml"/>
        </XDP>
      </PDF>
    </DDX>

    I have to correct what I just said. I don't POST to another
    page. I go from page 1 to page 2 (which renders blank) via
    cflocation.

  • Sound system not working for multiple programs at same time.

    So first off I have an HP Envy m6 Notebook Windows 8 laptop with an AMD10 processor, no added in cards or anything.
    I am using headphones and the first program I run after starting up my computer (WoW, itunes, winamp, youtube video, etc) is the only program that will work with my headphones until I again restart my computer. Everything else after that just won't output sound at all. I have no idea why this is, when I got to device managers > sound and try to set my headset as default device, I'm not allowed to do that either. Along with this it even says sound is coming out of my computer's speakers when its actually coming out of the headset. Anyone know why and can help?

    Hello Archen5,
    I see that you are having problems with the sound on your computer only working with the first program you open. I would like to help with this issue but I need some information.
    Can you provide the full model and product number of the computer? Here is a link that shows how to find that information.
    How long have you been having the problem?
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Why is scrolling not working with multiple youtube embeds layed out vertically in a stack on one page?

    Why is scrolling not working with multiple youtube embeds layed out in a stack on one page?

    Hi ,  
      This is a sort of performance issue , because your program takes more than the max time set for the program to execute in foreground.
    There are many stuff in program which will hamper your performance.
    I will list down a few
    1. SELECT *
    FROM konp
    INTO CORRESPONDING FIELDS OF TABLE konp_itab
    FOR ALL ENTRIES IN a363_itab
    WHERE knumh EQ a363_itab-knumh
    in this statement you are using for all entries a363_itab , but before this statement you are not checking if the table has any entry or not , please do remember that for all entries has this characterstic , that if you internal table does not contain any record , then all the records are selected from the database table. So in this case if you table a363_itab is empty , so what you want is no data must be seelcted from table konp , but what will happen is all the records in KONP will be seelcted.
    2. While retreiving data you are using seelct * even though you do not require all the fields , an example is
    <b>SELECT *
    FROM mkpf
    INTO CORRESPONDING FIELDS OF TABLE mkpf_itab
    FOR ALL ENTRIES IN mseg_itab
    WHERE mblnr EQ mseg_itab-mblnr.</b>
    in this your internal table contains only 2 fields
    <b>mblnr LIKE mkpf-mblnr, "Number of Material Document
    bldat LIKE mkpf-bldat, "Document Date in Document</b> , but to get these 2 fields you are selecting all the fields of the table.
    3. In select you are using into corresponding fields of table , it is not a good practice., so please avoidd it.
    Please understand that you must try to reduce the access to your database tables and try to keep it minimal , because this same thing may happen becasue data in DEV is very less compared to the volume of data in production , so a program working in DEV will take much more time in PRD if not written properly and may result in timeouts , as in your case.
    Please try to make chanegs to the prorgam and see if it works.
    In case you have more queries , please do revert back.
    Regards
    Arun
    *Reward points if replay is helpful

  • Login page not working in EBS R12 after autoconfig.

    Hi,
    We are using EBS R12 on windows 2003 server 32 on a test machine. As we were making some changes using autoconfig,
    as the Login page not working in EBS R12 after running autoconfig.
    Kindly help us.
    Thanks in advance.

    Hi,
    Rollback the changes and run AutoConfig, see if you get the same error or not then -- See (Note: 387859.1 - Using AutoConfig to Manage System Configurations in Oracle E-Business Suite Release 12) for details "2.5. Rolling Back an AutoConfig Session".
    Regards,
    Hussein

  • Form is not working of multiple form check boxs, source posted. HELP.

    Form is not working of multiple form check boxs, source posted. HELP.
    I'm trying to have golive form be able to check one, two or all of the options in Graphics field.
    As is it will only post results from the last checked box.
    Here's the page
    http://www.perfection-press.com/Pages/ContactForm.html
    Here's where source in golive has scanning,design,filesupplied.
    [code removed to fix forum topic display]

    Since the checkboxes all have the same name, the values are over-writing each other when being passed to the PHP script. The best way to fix that is to add a pair of empty square [] brackets after the checkbox names, so make the names "graphics[]" instead of "graphics". That tells PHP that the values are being passed as a list (an array) instead of a single value. As long as your processing script knows what to do from there (and it does), should solve the problem.
    By the way, I noticed that two of the checkboxes were named "graphics" and the other was "graphic" (singular). You'll want to fix that too so they're all the same.

  • OAF Self Secured Page

    hi,
    In OAF Self Secured custom Page how to handle the session
    i mean if the session expires then the page is navigating to the error page instead of my custom oaf self secured page
    Thanks in Advance
    regards
    Venkat

    The issue is fixed. The reason of the problem that I missed overwriting of the validateParameters() in the custom controller class and the custom parameter was missed from the parameter list and it effected parameter validation error.

  • WSUS "Self-update is not working" after new certificate

    After creating a new self-signed certificate in SBS 2008 wizard we get the following error:
    Text: Self-update is not working
    Source: Windows Server Update Service
    Event id: 13042
    I know that it must be something simple. But I can not find the solution.
    Can anyone help me with this problem?
    Thanks

    Hi,
    Based on your description and this error message, this issue may be caused by:
    The Default Web Site is not running and/or has a site binding for SSL (HTTPS).
    The Selfupdate virtual directory has the "Require SSL" checked under the SSL settings.
    For more details, please refer to the following KB and check if can help you to solve this issue.
    WSUS 3.0 Self-update is not working on Windows Small Business
    Server and Event ID 13042 is generated
    If anything I misunderstand or any update, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Dimension security is not working if user have two roles in SSAS while connecting from Excel

    Hello Genius,
    I am facing the issue when user trying to connect the cube from excel if user have more than one role in ssas db.
    Role 1: Countryuser, I have implemented the dimension security with country
    dimension and  countrycode attribute.
    Role 2: CityUser,   I have implemented the dimension security with
    city dimension and  citycode attribute.
    If user is mapped to any one of above role dimension security is working perfectly according to the logic but mapped to both role, cube is exposing all the data in this case dimension security is not working.
    Please give me the solution to fix this issue or incase I am wrong kindly advice.
    Thanks
    Ganesh

    This is the expected behaviour as allowed sets in roles are unioned together.
    This is not a problem when your roles are restricting across a single attribute.
    eg.
    US_role = {[Geography].[Country].[USA]
    France_role = {[Geography].[Country].[France] }
    as someone in both roles ends up seeing {[Geography].[Country].[USA], [Geography].[Country].[France] }
    But when you have different attributes:
    NY_role = {[Geography].[City].[New York] }
    France_role = {[Geography].[Country].[France] }
    The first role is unrestricted on countries and the second is unrestriced on cities which is effectively:
    NY_role = {[Geography].[Country].AllMembers , [Geography].[City].[New York]  }
    France_role = {[Geography].[Country].[France], [Geography].[City].AllMembers }
    And when you union those two sets together you end up with:
    {[Geography].[Country].AllMembers , [Geography].[City].AllMembers }
    Which means that someone in both roles can see everything.
    So if you want to restrict someone to City = New York and Country = France you have to create a
    single role where both attributes are restricted. So if you have a lot of these combinations you will either have to create a lot of "combination" roles or look at dynamic security.
    The other thing that might work is make sure that you only give some users access to certain cities and others access to certain countries. It's the mixing of the two for a single person that causes the issues.
    http://darren.gosbell.com - please mark correct answers

  • Self secure page always displaing Login User Name as GUEST

    Hi,
    We need a self secure page which doesn't prompt for oracle username and password in OAF
    We devloped such page in OAF but every time it is displaying Login User Name As Guest.
    By using below site i did developed self secure page
    https://blogs.oracle.com/manojmadhusoodanan/entry/self_secured_page_creation_in
    I want to find out my OSUSER Name from OAF .my requiremnet is based on login user i need to restrisct or display data on page.
    If i execute below query from database is giving my OSUSER name but same is giving Server name if i execute same sql through OAF.
    SELECT sys_context('USERENV', 'OS_USER') BUN FROM dual;
    SYS_CONTEXT('USERENV','OS_USER')         IN OAF   ------------  oracusd(Server name)
    prkaduri
    Please guide me on this .Its very urgent requiremnet.
    Regards
    Panduranga reddy

    If you are using BIP11g and using the default installation then BIP11g security mode is set to Fusion Middleware.
    All users and groups are controlled by Fusion Middleware Security.
    Any authenticated user will be able to run reports as in former BIP releases "guest".
    But also noticed the authenticated user will also have a privilege you want to remove
    as for example permission to delete report.
    Take a look at this link:
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10543/authentication.htm
    Cheers
    Jorge
    p.s
    1. In 11g you will have to read a lot before you can properly use the software, sorry.
    2. If this answers your question please grant the points and close the thread
    Edited by: Jorge Anicama on Mar 23, 2011 10:15 AM

  • Auto-Detect Screen Resolution Does Not Work Across Multiple Monitors With Different Resolutions

    Hi,
    The Acrobat Pro DC (15.007.20033.2203) auto-detect screen resolution feature does not work with multiple monitors at different resolutions.  Acrobat looks fine on my hidpi primary laptop display (Razr 14" 2014) but is completely unusable if I drag or extend the application to a standard HD resolution secondary monitor. Dragging Acrobat from my primary desktop display to the secondary display causes the UI elements to become 2x as large as they should be and makes Acrobat unusable. 
    Is there a way to make Acrobat auto-detect the display that it is currently on? 
    Thanks!
    -Donald

    To prevent it from happing again, you can
    1. go to the Mouse preference and turn off the scroll zoom feature.
    2. go to the Universal Access preference and disable the zoom features.

  • Adobe CC Education Eligibility Page Not Working!

    I work for a university and bought the educational version of CC.  When I clicked the link in the email provided by Adobe to upload verification of my employment... I filled out the form and when I click the button at the bottom that says "Review and Submit" I get a page not found error.  Someone at Adobe please help!

    Different regions may have slightly different processes. Take a look at the following document: http://helpx.adobe.com/x-productkb/policy-pricing/education-faq.html
    I hope that this will help you get going.
    If you still get that Page Not Working error, try the same with a different browser and check.

  • I'm having constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. I can, however, work well in Explorer.

    For the last few weeks I have had constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. It does seem to be a browser issue, because I can work well in Explorer.

    Both the Yahoo! Toolbar extension and the Babylon extension have been reported to cause an issue like that. Disable or uninstall those add-ons.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Is the update page not working for  of our devices.

    Is the update page not working for apps? I cannot get it to load with any of our devices. iPhones or iPads?

    There have been numerous reports on the forum today regarding this issue. It seems to be an issue at Apple, but no information has been posted on the status site.
    http://www.apple.com/support/systemstatus/

  • Secure boot not working with MSI Z77a-G45 And system reserve not showing

    Ok so i re did my windows after i did a zero fill on my hard drive as it was showing a corrupted sector on my disk that seemed to fix it for now, until it comes back if it does crossing my fingers it gone for good. But now i can't seem to get Secure boot to work i mean i did not have it before as i just slapped the motherboard in with a existing windows, that was to be expected but this is a clean install of windows 8.1 and i even have secure boot on but its not working and reports as off in windows.  Is it because i have my bios set to legacy+UEFI??? would that make secure boot not work??. i even went as far as turning it off and back on again the secure boot setting nothing made a difference.  I mean its not a big deal bit would be nice to know why its not working, also another wired thing and i will post pictures of it, as i cant see my system reserved partition in disk management but diskpart says it there, i will post those pictures any ideas??. 

    fixed it is my legacy+uefi another forum got back to me.

Maybe you are looking for

  • Planning using a collective purchase order (pull)

    Dear all, Could anyone please give me a little bit of details for this 'pull' process? How do we create a Warehouse Order? How do we create a Collective PO with reference to the Warehouse Order? And how do we distribute the merchandise at GR with ref

  • Oracle apps Financial Data

    hi all, what are tables have to be used for the preparation of P&L statement in oracle apps?

  • Cisco ISE 1.1.2.145 Admin Authentication using LDAP

    I have configured the LDAP and able to retrive our LDAP directory structure. Now, I am trying to point the 'Admin Access' authentication to "External Identity" Source which is the new LDAP IS I created. But I couldn't find an option to authenticate l

  • PSD to Tiff or EPS

    Hi All, I have an artwork with so many PSD links. Now i converted all the psd links to EPS.  i didnt change the file name. File name is same as psd only. Now i want to relink all the psd with EPS link. Manual relinking makes time consuming. Is thr an

  • How to get back up your programs up for leopard like ilife 08 and i work 08

    i am planning to upgrade/ clean install to leopard this week and i was wondering how to keep ilife 08 and iwork 08 as they came with my laptop and the only place i have them are on the mac os x 10.4 discs what can i do apart from buying them from the