Does SOUL used in combination with the hierarchy of position for purchase requisitions

Hello

We use the hierarchy of position for purchase requisitions.

Can we use management engine approval in combination with the hierarchy of existing post for purchase requisitions for workflow routing more flexible?

Kind regards

Natalia

Hi Natalia,

Using hierarchy Position in the SOUL is supported only in R12, please refer to the following document:

Using SOUL, creating approval routing at a certain Position in the hierarchy of Position HR [ID 1501433.1]

Hope this helps,

Please, if this response has answered/solved your question/query, please mark it as correct or useful to facilitate the correct answers to the members of the community.

Tags: Oracle Applications

Similar Questions

  • How to use the hierarchy of position for approval workflow custom?

    Dear all,

    I created a custom workflow that is triggered whenever develops a new provider site.
    Now, I want to add the trust hierarchy in this stream. To do this, I want to use the hierarchy of the Position.

    I didn't find useful resources to do so. Can you help me please?

    Kind regards
    Natasha

    Salvation;

    Please check:
    Adding a custom Workflow process [ID 374930.1]

    Respect of
    HELIOS

  • Iterate through the DB using DBcursor-> get with the DB_DBT_USERMEM flag set for DBT

    BDB works in mode TDS. You want to iterate over a database using a DBcursor from beginning to the end. set the flag DB_DBT_USERMEM on the structure of the DBT with data pointing to a block of memory allocated fixed size to organize content in a single record reading. Currently the cursor get fails with DB_BUFFER_SMALL. I guess that's because the cursor-> get retrieves several records.

    It is possible to iterate over the DB using the cursor said while allocating memory for only a 1 user database? Each call to cursor-> get with DB_NEXT / DB_PREV / DB_FIRST DB_LAST etc. would be updated of the unique registration entry.

    Hi Kedar,

    No, DBcursor-> get() picked up several key/data elements if you are using the DB_MULTIPLE or DB_MULTIPLE_KEY flags. See "Bulk Retrieval:
    [http://www.oracle.com/technology/documentation/berkeley-db/db/programmer_reference/am_misc_bulk.html#am_misc_bulk_get]
    You want only to retrieve a single record per call, so do not use the above indicators. In this case, the DB_BUFFER_SMALL error indicates that the length of the item requested/retrieved is greater than that specified for the DBT via his "ulen" field
    [http://www.oracle.com/technology/documentation/berkeley-db/db/api_reference/C/dbt.html#dbt_DB_DBT_USERMEM]
    If you want to iterate through all the records in the database (including duplicates, if the database is configured to support), you must use the DB_NEXT flag.
    Note that when the DB_BUFFER_SMALL error returned the field 'Size' of the DBT is on the length needed for the item requested; You can check this value to determine how the size of your buffer provided (or you can know in advance the size of the items in the database).
    Here is an excerpt of the example code to "Retrieve records with a cursor" with the necessary adjustments for the TCD data:
    [http://www.oracle.com/technology/documentation/berkeley-db/db/programmer_reference/am_cursor.html#am_curget]

         DB *dbp;
         DBC *dbcp;
         DBT key, data;
         int close_db, close_dbc, ret;
    
         //...
    
         /* Acquire a cursor for the database. */
         if ((ret = dbp->cursor(dbp, NULL, &dbcp, 0)) != 0) {
              dbp->err(dbp, ret, "DB->cursor");
              goto err;
         }
         close_dbc = 1;
    
         /* Initialize the key/data return pair. */
         memset(&key, 0, sizeof(key));
         memset(&data, 0, sizeof(data));
    
         /* Retrieve data item in user suplied buffer. */
    #define BUFFER_LENGTH 1024
         if ((data.data = malloc(BUFFER_LENGTH)) == NULL)
              return (errno);
         data.ulen = BUFFER_LENGTH;
         data.flags = DB_DBT_USERMEM;
    
         /* You can supply your own buffer for the key as well. */
    
         /* Iterate through the database. */
         while ((ret = dbcp->c_get(dbcp, &key, &data, DB_NEXT)) == 0)
              /* Operate on the retrieved items. */
         if (ret != DB_NOTFOUND) {
              dbp->err(dbp, ret, "DBcursor->get");
              goto err;
         }
    
    err:
         // ...
    

    Kind regards
    Andrei

  • computer does not boot, blue screen with the message: Stop: 0 x 00000024 (0 x 00190203, 0 X 86949258, 0xC0000102, 0x00000000)

    computer does not boot, blue screen with the message: Stop: 0 x 00000024 (0 x 00190203, 0 X 86949258, 0xC0000102, 0x00000000)

    Hello

    1 how long have you been faced with this problem?
    2. don't you make changes on the computer before this problem?

    Start the computer by using the Microsoft Windows XP recovery console, and then perform a check disk on the file system.

    To do this, follow these steps:

    1. Insert the Windows XP CD in the CD-ROM or DVD - ROM drive, and then restart the computer. Select the required options to start the computer from the CD-ROM or DVD - ROM drive if you are prompted to do so.
    2. once the Welcome to Setup screen appears, press R to start the Recovery Console.
    3. If your computer is configured to dual-boot or multiple boot, select the appropriate installation of Windows XP.
    4. When you are prompted to do so, type the administrator password and press ENTER. NOTE: In Windows XP Home Edition, the administrator password is blank by default.
    5. at the command prompt, type the following command and press ENTER: cd system32
    6. type the following command and press ENTER: chkdsk /r /p
    7. remove the Windows XP CD in the disc drive.
    8. Type exit to restart your computer.

    Important: Running chkdsk on the drive if bad sectors are found on the disk hard when chkdsk attempts to repair this area if all available on which data may be lost

  • working with the hierarchy

    Hello

    I work with the hierarchy (using start with and plug by front) in order to built a 'tree' of jobs in the application.

    For each job, the hirarchy start with LEVEL 1 to the level "n".

    In the example below, I built the hirarchy for job number 34461, with 4 levels.

    Of curse, I have hundreds of jobs, but for simplicity I shows that the values of a job.

    I need your advice with the following problem:

    In the case wherever one of the lines return "bz" in mach_name column, I need to return ALL of the hirarchy work (in the example below - all 11 lines)

    where "bz" value didn't exists column mach_name - no lines related to the specific job should be returned.

    Please notify.

    < code >

    SQL > fixed line 300

    SQL > with all_data as (SELECT X.JOB_NAME, x.joid, LEVEL,

    x.box_joid,

    mach_name

    OF AEDBADMIN.ujo_job x, AEDBADMIN.ujo_job_tree j

    WHERE X.JOID = J.JOID

    START WITH J.PARENT_JOID = 34461

    CONNECT PRIOR X.JOID = J.PARENT_JOID)

    Select all_data.*

    of all_data;

    JOID'ART BOX_JOID LEVEL MACH_NAME JOB_NAME

    ------------------------------------ ---------- ---------- ---------- ----------

    Ys_Crm_Inv_Push_Load_Ctrl_tr_BOX 31596 1 34461

    Ys_Crm_Inv_Push_Load_Ctrl_tr 31605 2 31596

    Ys_Crm_Inv_BOX 31586 3 31605

    Ys_Crm_Inv 31587 4 31586 bz

    Auto Ys_Crm_Inv_OK 31588 4 31586

    E_Push_Trx_BOX 31594 3 31605

    E_Push_Trx 31595 4 31594 cr

    E_Push_Trx_OK 31597 4 31594 auto

    Ys_Crm_Load_Cntrl_tr_BOX 31599 3 31605

    Ys_Crm_Load_Cntrl_tr 31600 4 31599 bz

    Ys_Crm_Load_Cntrl_tr_OK 31602 4 31599 auto

    11 selected lines.

    < code >

    Thank you

    SELECT DISTINCT *.

    de)

    SELECT mytest.*

    , COUNTY (CASE

    WHEN mach_name = "bz".

    THEN 1

    END

    ) ON (SCORE OF CONNECT_BY_ROOT joid'art) AS good_cnt

    sys_connect_by_path(joid,'/')

    OF mytest

    START WITH lvl = 1

    CONNECT BY box_joid = PRIOR joid'art

    ) t

    ORDER BY road;

  • Can I use PC400 RAM with the Tecra A4 (Pentrium 750)

    Can I use PC400 RAM with the Tecra A4 (Pentrium 750), currently PC333 is mounted.

    Thank you

    I put t know if you can use but AFAIK Toshiba recommends using these modules on the Tecra A4:
    PC2700 256 MB (PA3311U - 2M 25)
    PC2700 512 MB (PA3312U - 2M 51)
    1024MO PC2700 (PA3313U-2M1G)

    Here are the modules of single channel 166 MHz DDR333/PC2700, DDR SDRAM, 200-pin SoDIMM.

  • Question A100 - 01 Q satellite in combination with the Syncmaster 226BW

    Hello
    I need help. I have problems with "A100 - 01 Q" in combination with the Syncmaster 226BW, the problem seems to be the display driver, there is no new version available on toshiba.com. Would you mind and give me some advice?

    I need a new driver for the Gefroce 7600 GO... (Modelltype: A100 PSAAR)

    Thank you!

    You have searched the site Toshiba us compatible graphics driver?
    It was big mistake.

    You perform a search on the European driver of Toshiba site. This laptop A100 PSAAR was designed in the EMEA regions.

    Then please visit this site;
    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp?service=EU

    Choose your model of laptop just in the form of download and download driver compatible ;)

    In addition, you could test the graphics drivers nVidia 3 sites like www.omegadrivers.net and www.laptopvideo2go.com

    Best regards

  • Add a folder of files with the hierarchy to the installer

    Hi all

    Have a folder of files that can be read by the app.  This folder has a hierarchy of other records and contains xml files.

    I just want to include this file and all files with the hierarchy with installer and add to the Application directory.

    I don't want to have to manually create this folder hierarchy in generator installation and add each xml file.

    Is it possible to simply add files with the hierarchy folder the installer?

    Thank you.

    You should be able to do this if you add the folder of your project as a folder automatic settlement. If you right click on my computer in the directory of your project and select Add > folder (automatic settlement) will include the folder and subfolders. Now when you go to build an installer and click on the Source Files tab you can add all of the folder and its subfolders. Note, you are not able to do it with normal files or instant capture. I hope this helps.

  • Update KB937287 keep apearing as the only updated, try install many times, but does not work, tried it with the standalone version and it keeps apearing

    Update KB937287 keep apearing that the only update, tried to install a lot of times, but does not work, tried it with the standalone version and it keeps apearing, when I install it does not display an error message, just say that again was successful but when I try to look for more updated it apears again.

    Hi mayortom,

    Thank you for visiting the Microsoft answers Forum.

    You can follow the steps outlined in the article below:

    Troubleshooting Windows Update or Microsoft Update when you are repeatedly offered an update
    http://support.Microsoft.com/kb/910339/

    I hope that helps!

    Thank you and best regards,
    Abdelouahab Microsoft responds to the technical support engineer

  • I want to know if I can use creative cloud with the same account on different computers

    I want to know if I can use creative cloud with the same account on different computers, because my children want to she and I have known if I buy when I can use it on several computers at the same time

    If it is the individual subscription, you can activate on 2 computers only.

    However, there is no limit for installation, but you can connect and activate on 2 computers only.

    If you had already signed and activated CC apps on 2 computers, and there still if you want to activate on a 3' rd computer, you can simply disconnect one of the 2 comps, so that you can keep counties of activation.

    For more information, see the link below:

    https://www.Adobe.com/content/dotcom/IE/products/creativecloud/FAQ.html

  • Please can someone tell if I can use my creations with the tool shape in Photoshop, commercially for example on t-shirts? [was: on]

    Please can someone tell if I can use my creations with the tool shape in Photoshop, commercially for example on t-shirts. Thank you.

    Yes.  No problem.

    [EDIT]  I decided to qualify that.  No problem with forms that come standard with Photoshop, but just about every logo, symbol of the brand, can be downloaded in two vector forms and brush presets.  It would be another story, obviously if you have used this kind of work, but you knew I'm sure.

  • 6 of Lightroom cannot read my Canon 5 d Mark III photo files, the import message I received: the following files were not imported because they could not be read. I use the same camera that I used Lightroom 5 with the same cards Compact flash.

    6 of Lightroom cannot read my Canon 5 d Mark III photo files, the import message I received: the following files were not imported because they could not be read. I use the same camera that I used Lightroom 5 with the same cards Compact flash. The files are: DK5A0243. CR2

    Lightroom 6 trying to copy pictures to a different directory than what is Lightroom 5. That's why you have the problem.

    You can change the directory where you are teaching LR 6 to place photos, or change the permissions on this directory to read & write.

  • Does vCO 5.1 comes with the vCenter 5.1 device?

    Does vCO 5.1 comes with the vCenter 5.1 device?  If not, how to set up?  Can gurus, you suggest a document or procedures?

    No it's not. Everything is explained here.

  • I deleted Adobe Reader 11 and rebooted and reinstalled Adobe Reader 11 and I still get the error message "Adobe Reader is blocked because it is outdated". Using Windows XP with the latest updates (SP3).


    I deleted Adobe Reader 11 and rebooted and reinstalled Adobe Reader 11 and I still get the error message "Adobe Reader is blocked because it is outdated". Using Windows XP with the latest updates (SP3).

    Screenshots attached to e-mail responses will not come back on the forum. You must connect to the forum and post in your topic using the camera icon in the editor.

    Google Chrome is a problem:

    • If you use the clean Chrome PDF Viewer, the results are unpredictable.
    • If you use the Adobe Reader with Chrome plugin, it can reject (block) If this isn't the latest version.  11.0.08 drive is the latest version for Windows XP, but Chrome can insist on the current version 11.0.10.

    My suggestion; Use a different browser!

  • Can I use any DB with the Director?

    I would like to know if I can use any DB with the Director, such as FileMaker (cd program, I have to do will run in the pc and mac).
    If not, is there any solution to use master DB for pc and mac?

    Please answer as soon as possible, its very urgent.

    Thank you

    (Sorry for my English... I don't study it for several years.)

    Need you an Xtra to work with a database. You can find a list of xtras database at updateStage.

    If the database on a remote server, you can also use PHP, sent by postNetText() to communicate with a database.

Maybe you are looking for