e business Suite User "Push" with sub Forms object

e business Suite user RO has two forms, 1 item and 1 process

I want to configure access policies to automatically supply EBS RO to IOM users (especially for full-time staff).

The configuration of the object resource, I checked The Auto-Save. This allows my form object is automatically saved in the auto supply. I pre-fill adapters attached to my sub form of such object for auto supply, the fields are pre-populated from profile to the IOM.

However, my problem is, my pre-fill adapters always get xelsysadm attributes and not the user of (whose demand is created for).

You may wonder why I need the shape of the object? I could just throw my shape of the object of the resource object and directly fill the values in the form of process.
However, I have a requirement of the company, eBusiness Suite User can also stand alone asked for some users (contractor, contingent) that are not part of the strategy of service/access self-introduction. This is why I still need my shape of the object.

Is it possible that Automatic supply and stand-alone application works both ways under a resource object?

Well, that's something decisive with the IOM demand model. As far as I know in such cases, information related to the applicant are filled, and given that the invocation of access policy is through sysadmin so XELSYSADM information are met.

Rather what I would say is that they attach pre-fill adapters to your process and skip the data flow object-> process of form. If your model application remains intact and the information you want to pre-fill will do, too. Hope it should work and is viable for you.

Thank you

Sunny

Tags: Fusion Middleware

Similar Questions

  • The two problems with sub form of table, associated with check boxes

    Hi all -
    Jari already helped me thereby once last week, but I'm running into some new questions.

    http://Apex.Oracle.com/i/index.html
    workspace: Leppard
    username: Guest
    PW: app_1000
    Application: MyTestApp

    Maybe I need to split these into two questions, if so just let me know.

    Question 1: On the first tab (tab 1 report) I have a simple tabular presentation based on the EMP table. The column of the box on the far right, when checked restores the Ename column readonly. The problem is that it only works one way. Unchecking the checkbox is not cancel the read-only.

    It is javascript code that I have on the page:
    function test(pThis) {
     //get the current row index on change
     var currIndex = $('input[name="'+pThis.name+'"]').index(pThis);
    
     // check current items value (return value of lov)
     if (pThis.value=='Y') {
      $('input[name="f02"]')[currIndex].style.backgroundColor = "LightGrey";
      $('input[name="f02"]')[currIndex].readOnly=true;
    }
    else if (pThis.value=='N') {
      $('input[name="f02"]')[currIndex].style.backgroundColor = "Red";
      $('input[name="f02"]')[currIndex].readOnly=false;
    }
    }
    The attribute of the element on the checkbox column is
    onClick="javascript:test(this);" 
    (It seems to work although I use onClick or onChange so I don't know if that makes a difference).

    But the main problem is that the code does not recognize the value of "n" in the column. I checked with firebug and columns I have untick are definitely on 'n', but I can't get javascript code to recognize this value. Even if I take the "ElseIf" code and just change the first part to (pThis.value ==' no) still does not work. There seems to be something with the value "n" recognize themselves do not, but I can not understand.

    Question 2: on the second tab - tab report 2. The same report but this time, I use a javascript character counter similar to that described in the sample application of the Dene (page 276 > http://apex.oracle.com/pls/otn/f?p=31517:276:19207673535900:NO). The counter of characters on the Ename field include javascript and an expression of HTML on the Ename column. The counter works fine, but now, the javascript code to make the column readonly work over all.

    Any ideas on these are much appreciated!

    Thanks in advance,
    John


    • Please please understand what HTML is generated and how to inspect. Once you do this, you can easily eliminate many problems with selectors not seeming to work. A text box is not an input for example element.
    • Boxes rely on the checked, not the value property. Apex circumvents this by creating a hidden extra element which will get the value based on the checked property of the visible checkbox
    • Do not use these horrible onchange and onclick attributes :( Use a dynamic action or jQuery to bind events.
    • Do not apply a style via javascript. Use CSS for this drive as with jQuery, you can easily add, remove, or toggle the classes too. And if you know jQuery selectors, you can understand css selectors because they are substantially the same.
    • I don't know why people insist on using rowIndex or substringing ID. I find it unnecessary and more complex that the alternative (crosses with jQuery)
    • The difficulty also in things into action through pagination. Running on just the visible page it of a trifle, but through paging requires more work than just check "fire on loading the page" is not enough. I'm sure you'd want your ENAME either red or gray column and readonly as soon as the page is loaded, and not when you start typing in the box...

    Form 1 tab: copied to Page 12 and made my changes here:_


    • OnChange on ENAME. This removed. No idea why you would need it there seems a crutch for not having the field in the desired state when the page is loaded.
    • OnClick on CHECKBOX. Removed what I hate these attributes. Replaced by a dynamic action.
    • Dynamic action "checkbox: ENAME readonly value."

      • Event: After refresh
      • Selection type: region
      • Region: Form of tab 1
      • No condition
      • Scope of the event: static
      • Real Action

        • Run the JavaScript Code
        • Fire on loading the Page: YES
        • Code:

          //at page load and after each region refresh:
          //each: check all checkboxes and set readonly on ename accordingly
          //click: when the checkbox changes, change ename accordingly
          $("td[headers='CHECKBOX'] input[type='checkbox']:visible")
          .each(function(){checkReadonly(this);})
          .click(function(){checkReadonly(this);});
          



  • Page > function and global variables declaration

    function checkReadonly(pCheck){
       var lCheck = $(pCheck);
       lCheck.closest("tr")
       .find("td[headers='ENAME'] input:visible").each(function(){
          $(this).prop("readonly", lCheck.prop("checked"));
       });
    };
    

  • Page > CSS Inline

    td[headers='ENAME'] input{
    background-color: red;
    }
    td[headers='ENAME'] input[readonly]{
    background-color: lightgrey;
    }
    

    CSS works so much better for this than the application of style through js...

  • Form 2 tab: copied to Page 13 and made my changes here:_


    • OnChange on ENAME. This removed. No idea why you would need this.
    • OnClick on CHECKBOX. Removed what I hate these attributes. Replaced by a dynamic action.
    • Dynamic action: identical to page 12, just modified trigger area
    • Changed input to TEXTAREA when it is required:
    • Page > function and global variables declaration

      function checkReadonly(pCheck){
         var lCheck = $(pCheck);
         lCheck.closest("tr")
         .find("td[headers='ENAME'] textarea:visible").each(function(){
            $(this).prop("readonly", lCheck.prop("checked"));
         });
      };
      

    • Page > CSS Inline

      td[headers='ENAME'] textarea{
      background-color: red;
      }
      td[headers='ENAME'] textarea[readonly]{
      background-color: lightgrey;
      }
      

    • The f_set_counter function, I changed a bit: there are 2 straps too, put a semicolon at the end of each line.
      -Change $x (node) .value $s (node, value) and $v (node)
      -changed $x (node) .innerHTML to $(node) .text)
      I know: it worked. I like this better. OCD? :/

    function f_set_counter(pThis,pLength,pMaxLength,pReset)
    {
       if (pLength>pMaxLength){
          alert('The maximum length of '+pMaxLength+' exceeded.');
          $s(pReset, $v(pReset).substring(0,pMaxLength));
          $("#"+pThis).text(pMaxLength);
       }else{
          $("#"+pThis).text(pLength);
       };
    };
    

    Published by: Tom on February 15, 2013 12:48
    Made a mistake in the case of dynamic action :->, click after refresh!

  • Intelligence with sub form table and filtering of Ajax

    Hi all

    I manually built a tabular presentation with a client, registration and a checkbox to select those whom we want to choose for a given operation. It is very good and works fine, however, the customer list is very long and I am wanting to get a little clever with it and put in place Ajax filtering with a search field.
    This works also very well - I used the method described in the book 'Pro Oracle Application Express' (for those who don't have it, someone's blog the exact method, Word for Word, here) and the filtering works brilliantly, but the problem is with the checkboxes.
    I want users to be able to filter the list, a few boxes, re - filter the list and check a little more and then submit with all the parts retained and submitted.
    As is the nature of the Ajax call, all the boxes are deleted whenever you update the search filter string.

    Can someone suggest a method to achieve what I'm trying to do here?

    Thank you!

    Hello

    You may have a hidden page element (one that "saves the State") which contains a list of values for the checkboxes checked and updated immediately before the Ajax call. This article begins with a ': ' then add the value like ":" for each checked item - that would give you a string like ': 1:2:3: ' when the page is sent, you can then use STRING_TO_TABLE to get your list.

    The javascript code would be something like:

    function updateCheckedItems()
    {
      var x = document.getElementsByName("f01");
      var xx = document.getElementById("P1_CHECKED_ITEMS");
      var c;
      var v;
      if (x)
      {
        for (c = 0; c < x.length; c++)
        {
          if (x[c].checked)
          {
            v = x[c].value;
            if (xx.value.indexOf(":" + v + ":") == -1)
            {
              xx.value += v + ":";
            }
          }
        }
      }
    }
    

    This assumes that your boxes have a name of "f01" attribute, and the hidden item is P1_CHECKED_ITEMS

    Andy

  • Steps to integrate the suite oracle E-business R12.1.3 with 11g OID.

    Hi all

    Can someone let me know the document Metalink ID/steps to integrate the suite oracle E-business R12.1.3 with 11g OID.

    Thank you
    Dinesh.

    Edith says:
    Hi all

    Can someone let me know the document Metalink ID/steps to integrate the suite oracle E-business R12.1.3 with 11g OID.

    Thank you
    Dinesh.

    Please visit the following links/docs.

    With the help of Oracle Internet Directory 11 GR 1 material the patch 4 (11.1.1.5.0) and Single Sign-on with Oracle eBusiness Suite [ID 1286596.1]
    Integration of Oracle E-Business Suite Release 12 with Access Manager Oracle 11 GR 1 material (11.1.1.5) using Oracle E-Business Suite AccessGate [1309013.1 ID]

    https://blogs.Oracle.com/stevenChan/entry/oracle_access_manager_11_11
    https://blogs.Oracle.com/stevenChan/entry/why_does_ebs_integration_with

    Thank you
    Hussein

  • deploy the web basic page in e-Business suite

    Hi all
    I can build new form by form generator and deploy it in e-Business suite r2
    I'll build page with jdeveloper (web-based) and deploy it with e-Business suite that compatible with another web page
    How do I it?

    Published by: user8886847 on Sep 25, 2010 02:30

    Published by: user8886847 on Sep 25, 2010 02:30

    Visit this link

    http://oracleanil.blogspot.com/p/how-to-start-learning-OAF.html

    Thank you
    -Anil

  • I have recently upgraded my MacBook Pro and Adobe creative suite 6.0 on the former. It of maybe a stupid question, but how do I get the software on my new MacBook Pro? My understanding is that my serial number only works with one computer at a time?

    I have recently upgraded my MacBook Pro and Adobe creative suite 6.0 on the former. It of maybe a stupid question, but how do I get the software on my new MacBook Pro? My understanding is that my serial number only works with one computer at a time?

    Hello

    You can install a copy of the software on the second machine it's just you are authorized to use on one machine at a time.

    You can check: how many computers can you install or run Adobe software on? ProDesignTools

    End user FAQ license contracts

    Please visit the given link to download CS6: applications download Creative Suite 6

    Concerning

    Bianka Attre

  • How to disable the direct access of forms in Oracle E-Business Suite R12.1.3

    @Hussein snoussi


    Hi Hussein.


    I don't know if I have well formulated in the title of this discussion. But I'll try to explain.


    I have a problem on my TEST Oracle E-Business Suite R12.1.3 instance. Once the connection in the homepage, some forms are starting automatically opening. I don't know why, last week the system worked very well. This TEST instance is used by users to form.


    How can I make sure that forms are open only when someone clicks on them? I don't want the forms to be bulging out automatically after someone connects.


    Thanks in advance.


    Clamarion.

    Hi Clamarion,

    Connect as these users and check preferences, or you can check the value of backend (thanks to the FND_USER_PREFERENCES table).

    On profile option 'Page of starting Applications' (Doc ID 729375.1)

    https://forums.Oracle.com/thread/940401

    Thank you

    Hussein

  • OID/OAM with Oracle E-Business Suite

    Hello world

    OID is integrated successfully with Oracle E-Business Suite. Administrator as SYSADMIN, COMMENTS are able to login and access E-Business Suite with the redirected OID/SSO login Page. These users are migrated under OU = Finance, OU = employees, dc = myorg, dc = com via the load utility bulk OID.

    Via the OIDDAS Console (http:// < myorg >: 7777/oiddas), under Setup tab-> add an entry for OU = Finance, or = employees, dc = myorg, dc = com for the basis of creating users. OID administrator created a new user (i.e. the user fintest) under finance container through the console of OIDDAS and the same user is implemented in E-Business Suite Database under table FND_USER provided with a Globally Unique Identifier.

    (1) user created through the OIDDAS console will launch and access E-Business Suite URL (http:// < myorg >: 8000)
    (2) page of redirect OID/SSO Login appears.
    (3) fintest user will provide required login and password value to connect.
    (4) E-Business Suite homepage will be displayed for users fintest.

    I had a UI presentation layer where Oracle Access Manager is installed with the Server LDAP OID. Created a new workflow user finance Molok (OU = Finance, OU = employees, dc = myorg, dc = com). OAM administrator has created a new user (i.e. the user fintest2) under Finance container through workflows OAM and the same user is not supplied with E-Business Suite Database under table FND_USER provided with a Globally Unique Identifier.

    (1) user created through Workflows OAM will launch and access E-Business Suite URL (http:// < myorg >: 8000)
    (2) page of redirect OID/SSO Login appears.
    (3) fintest2 the user will provide required login and password value to connect.
    (4) in E-Business Suite oracle has not been linked with the Single-Sign-On account in place and place the homepage of E-Business.

    Note: We do not expect to make integration with OAM with Oracle E-Business Suite.

    Has anyone faced this kind of question. Please let me know your pointers.

    Thank you
    Ajay

    Hello

    Connect to Oracle Internet Directory, search EBusiness provisioning profile, remove the attribute of orclisenabled user profile in IDENTITY and SUBSCRIPTION list of areas for the properties of the parameter orclodipprovisioningeventsubscription.

    Thank you
    Ajay Babu Pentela

  • How to get the user name of the user logged into the E-Business Suite in OFA

    Hi all

    I developed a few screens in OPS and recorded also in Oracle applications. I need to enter the user name of the user who has logged in to the E - Business Suite to access my Application OFA, so that depends on his user name I will post a welcome Message on my screen.

    Can someone please suggest how to achieve?

    With our thanks
    Gerber

    Use pagecontext.getuserId or pageContext.getUserName in your controller

    Thank you
    Kassy

  • Integration of the OPA 10.4 with Oracle E-business Suite

    We have a requirement for the integration of the OPA 10.4 with Oracle E - business suite.

    The condition is hypocritical:

    (1) EBS can call rules of the takeover bid on any screen - I think that this will be achieved by Oracle determinations Server (ODS) with probably a middleware between both to facilitate the exchange of webservice.

    Request- I just wanted to know if there is another way to better or if it is only best option?

    Are there examples of projects or pointers that can help us get a better understanding of the present?

    (2) given certain conditions of release in EBS, the modules of the OPA may be invoked, but this time there may be a few involved OPA interview screens.

    Request- How to proceed and achieve this goal?

    Any help on the above queries is really appreciated.

    (1) it is for an older version of OPA, but you might find something useful in this tutorial.

    (2) launch a browser window in passing a single parameter "caseid" to OPA startsession URL, so that a data adapter that you write can load and save data interviews of EBS based on the id of the object.

  • How to use Data Guard with E-Business Suite

    Hello

    I'm trying to get my head around how would you use Data Guard with E - Business Suite.

    I know that you can use only physical standby with EBS, however I have a few basic questions about specific values < SETTING > and how they are treated by a standby.

    Given that the standby and primary servers will have different host names and that generally there are < FRAME > specific values that include the hostname, where they will have to change on the standby server, both from the point of view of the battery backup Apps and within the standby database itself, I wondered how it would happen.

    Usually, EBS cloning process would change the < FRAME > target settings in the target apps stack and the target database (for example, parameters such as FND_NODES etc.).

    Q1. However I do not know how the process of cloning E - Biz would fit with a database of the day before?

    Q2. As the standby database won't even be in an open State, I don't know yet how you would apply a party any of the cloning process to a database of pending to the target?

    Q3. Even if you were able to change on the eve of the database to reflect the < FRAME > from backup server, it would mean surely it was more a physical copy of the primary database, that's why it would be more a day before.

    All a bit confusing - any clarification appreciated

    Jim

    PL see if MOS Doc 1070033.1 can help you

  • Java 7 is crtified with oracle E-Business suite R12

    Hello

    According to the note

    Map of java update to 7 for E-business suite and the note below. Please let me can know I proceed with this. Any negative impact on the server after the upgrade to java 7.

    Thanks in advance

    Salvation;

    You can use it,

    I suggest review:

    https://blogs.Oracle.com/stevenChan/entry/jre_7_certified_with_oracle

    Respect of

    HELIOS

  • ORACLE E-BUSINESS SUITE 11i &gt; query users to find out who never connected

    Dear, all -.

    ORACLE E-BUSINESS SUITE 11i

    Is there a query to find a list of users that have been created but never recorded in the system. I believe that these users do not appear in the table FND_USER as they never connected.

    Thanks in advance!

    MAKE says:
    Dear, all -.

    ORACLE E-BUSINESS SUITE 11i

    Is there a query to find a list of users that have been created but never recorded in the system. I believe that these users do not appear in the table FND_USER as they never connected.

    Thanks in advance!

    Details on user applications are stored in the FND_USER table (if they have logged in or not).

    To find a list of these users, run this query:

    SQL> select *
    from FND_USER
    where LAST_LOGON_DATE is NULL
    and END_DATE is NULL;
    

    Thank you
    Hussein

  • Oracle 11 g with E-Business Suite Basic Access Manager

    Hi gurus,

    I was wondering if anyone could tell me if the Oracle 11 g Access Manager Basic edition is authorized for use with the e-Business Suite 11i as a request for partner? Or is it necessary to purchase the full license for use with EBS?

    925237 wrote:
    Hi gurus,

    I was wondering if anyone could tell me if the Oracle 11 g Access Manager Basic edition is authorized for use with the e-Business Suite 11i as a request for partner? Or is it necessary to purchase the full license for use with EBS?

    You need a license for Oracle Access Manager. However, AccessGate is available free of charge to customers who have already authorized the Oracle E-Business Suite and Oracle Access Manager.

    Oracle E-Business Suite AccessGate version 1.0.2 available
    https://blogs.Oracle.com/stevenChan/entry/ebs_accessgate_102

    Access Manager Oracle 11.1.1.5 certified with E-Business Suite 12
    https://blogs.Oracle.com/stevenChan/entry/oracle_access_manager_11_11

    Access Manager Oracle 11.1.1.3 certified with E-Business Suite 12
    https://blogs.Oracle.com/stevenChan/entry/oracle_access_manager_11_1

    Please contact your representative Oracle (account manager), it is the best to meet your licensing issues.

    World prices and licenses
    http://www.Oracle.com/us/corporate/pricing/index.html

    Thank you
    Hussein

  • ADI for the E-Business suite 12.1.1 is compartible with Oracle Smartview 11.1.2

    Hi gurus

    Does anyone know if the ADI for the E-Business suite 12.1.1 is compartible with Oracle Smartview 11.1.2?

    Thank you

    Does anyone know if the ADI for the E-Business suite 12.1.1 is compartible with Oracle Smartview 11.1.2?

    ADI is not certified with R12 - East ADI supported 7.2 with R12 (12 version) [420328.1 ID]

    If you mean WebADI with Smartview, I don't see any what docs MOS which show that it is certified or not, so I guess that's not (please connect an SR to confirm this with the support of the Oracle).

    Thank you
    Hussein

Maybe you are looking for