Choose switch user/group in a line item for the automatic creation of a BP

Hi all

I created two business with workflow process. When I create a topic with the first BP, he auto-créer an account of the second BP. But I have to open the folder newly created to push into the workflow (and choose the assignee)

Is there a way directly choose the assignee to the line item and bypass this step?

Thank you in advance.

Thomas

Hi Thomas, take a look at the controls of the project base SKU BPs (minutes and Actions items specifically). MM topics auto-crée records of HAVE and is configured to support your use case I think... It is using a combination of "previously assigned" on the approval of follow-up action step (assignees = "all users of the project") and also the function "filter assignee" to filter the list of "all the users of the project" down to 1 assignee (based on the value OF 'Login username', i.e. that you have added to the online meeting item minutes that generated automatically during the recording of the AI was created.) Ian

Tags: Oracle Applications

Similar Questions

  • Error ERR-1002 unable to find item for the 'ID' element ID in the application

    Hello world

    I'm new to APEX and I came across this error for the first time. I have a page with a classic report in it, and I want to create a link to one of the columns in the report (column ID) to another page with a classic report in it. So when I click on, say, ID 118, I want to be sent to another page and don't see ID 118 information.
    After you create the link in the column, I get the error message when I run the application:

    Error ERR-1002 unable to find item for the 'ID' element ID in the application

    I tried to create a link from one report to the other before and it worked fine.

    Thank you!

    P.S. I use APEX 3.2

    Then you must create an item called ID on your page 2 (hidden make) and the link will pass the value of the ID of the line picked up on this hidden item. Now in page 2 make your report filter query on id = P2_ID or another name that you use...

    Hope this helps,
    His

  • TB 31.5.0 Win 7 after the TAB key for the automatic update no longer creates new address line "write" (enter the done key) but I want the TAB key! Why this keep happening after

    TB 31.5.0 Win 7 after the TAB key for the automatic update no longer creates new address line "write" (enter the done key) but I want the TAB key! Why is - this seems to happen after each automatic update? Cant we get 'option' to use the TAB key to navigate through the lines of address "write"?

    TAB through the fields that exist. It is the function of the TAB.

    Otherwise you could never use TAB to go out in a field for example: subject. It would create an indefinate number of fields and are unable to function as a TAB key.

    TAB does not back to THE fields,
    New crests to THE fields or donkey typing/selection enter/return address, you can use the selection of mouse click.

  • Question about a query that will be 1 for the first 10 lines, 2 for the

    Hi all

    I am trying to write a query that will be 1 for the first 10 lines, 2 for the next ten lines and so on.

    I tried several approaches such as mod, rank, case but could not get the correct idea.

    Grateful if someone can give me a hint on this one.

    Ex:

    Col1 Col2
    1 989
    1 120
    1 876
    2 121
    2 456
    2 87
    1 of 3
    3 22
    3 333
    ....................... and so on..


    Thank you
    MK.

    How about this:

    His past all my tests so far

    select trunc((rownum - mod(rownum-1,10))/10)+1
    from dual
    connect by level <= 1000
    
  • Custom script in RPO making empty columns in the line items during the training.

    Hello friends,

    its URGENT! need help.

    We have a requirement of the company in the case of the currency 'EUR', it should delete the dot (.) and replace the comma (,) with dot (.) and other currencies it must remove the comma from columns, quantity, price per unit and Total.

    For example:

    For "EUR" 2.123,00 and it must convert it to 2123.00 and 2.123 must convert 2123.

    "USD" 2.123,00 to convert to 2.12300 and 2 123 to convert to 2123.

    This requirement, we wrote a custom script User Exit (UserExitLineItemValidate) function and call that function in line item validation.

    but after having formed the invoices for currency 'EUR' by supervised and learning check (SLV), it removes the values in the column quantity, unit price and Total.

    and if we remove the script, train and then reapply custom script it works but not always.

    My Script:

    Public Sub UserExitLineItemsValidate (pWorkdoc As SCBCdrPROJLib.SCBCdrWorkdoc, pValid As Boolean)

    ' User exit is called at the end of the Document_Validate on the class "bills".

    Dim strQuantity As String

    Dim strUnitPrice As String

    Dim strTotal As String

    Dim lngRow As Long

    Dim pTable As SCBCdrTable

    Set pTable = pWorkdoc.Fields ("LineItems"). Table (pWorkdoc.Fields("LineItems"). ActiveTableIndex)

    If fnIsVerifier and pWorkdoc.Fields ("Currency"). Text = "EUR" Then

    For lngRow = 0 To pTable.RowCount - 1


    strUnitPrice = pTable.CellText ("unit price", lngRow)

    If InStr (strUnitPrice, ".") > 0 and InStr (strUnitPrice, ",") > 0 Then

    strUnitPrice = Replace(strUnitPrice,".","")

    strUnitPrice = Replace(strUnitPrice,",",".")

    pTable.CellText ("unit price", lngRow) = strUnitPrice

    ElseIf InStr (strUnitPrice, ",") > 0 Then

    strUnitPrice = Replace(strUnitPrice,",",".")

    pTable.CellText ("unit price", lngRow) = strUnitPrice

    End If

    strTotal = pTable.CellText ('Total', lngRow)

    If InStr (strTotal, ".") > 0 and InStr (strTotal, ",") > 0 Then

    strTotal = Replace(strTotal,".","")

    strTotal = Replace(strTotal,",",".")

    pTable.CellText ('Total', lngRow) = strTotal

    ElseIf InStr (strTotal, ",") > 0 Then

    strTotal = Replace(strTotal,",",".")

    pTable.CellText ('Total', lngRow) = strTotal

    End If

    strQuantity = pTable.CellText ("quantity", lngRow)

    If InStr (strQuantity, ".") > 0 Then

    strQuantity = Replace(strQuantity,".","")

    End If

    If InStr (strQuantity, ",") > 0 Then

    strQuantity = Replace(strQuantity,",",".")

    End If

    pTable.CellText ("quantity", lngRow) = strQuantity

    Next LngRow

    On the other

    For lngRow = 0 To pTable.RowCount - 1

    strTotal = pTable.CellText ('Total', lngRow)

    If InStr (strTotal, ",") > 0 Then

    strTotal = Replace(strTotal,",","")

    pTable.CellText ('Total', lngRow) = strTotal

    End If

    strUnitPrice = pTable.CellText ("unit price", lngRow)

    If InStr (strUnitPrice, ",") > 0 Then

    strUnitPrice = Replace(strUnitPrice,",","")

    pTable.CellText ("unit price", lngRow) = strUnitPrice

    End If

    Next LngRow

    End If

    End Sub

    At a very high level of control, (and I can't currently that take a long time to respond)

    • You do this on EVERY invoice, and not only those that you are sub classification (which means "documents that you are training").  Is your intention to assign all invoices or only those formed?
    • In your code, you have the test as shown condition "If fnIsVerifier and pWorkdoc.Fields("Currency").» Text = "EUR" Then".»  You are in essence saying the system ONLY evaluate this condition if the system determines if the application Verifier is running.  What is the desired effect?  Otherwise if the auditor is never used on this document, and the table of line items is never changed, this code would never trigger.
  • Not able to access sqlplus command-line linux for the new user added

    Hi all

    We have a strange problem with a new user of linux Redhat , trying to to connect to Oracle 10 g from the command line and would like any suggestions you have.

    -other users are able to connect via sqlplus fine to their respective Oracle accounts, both for the new user account.
    -I know the user and the password works because we can connect through Oracle SQL Developer from a terminal Windows.

    -----

    The monitoring of symptoms:

    Since terminal linux+:

    [user@server]$ sqlplus
    Error Initializing SQL 6 * more
    SP1 file < lang > .msb not found message
    SP2-0750: you may need to set ORACLE_HOME in your Oracle software directory

    [user@server]$ echo $ORACLE_HOME
    / opt/oracle/10 g

    [user@server]$ echo $ORACLE_SID
    ~ also define as in other users without db connection problems

    [user@server]$ pico * .bash_profile]
    ~ the value as in other users without db connection problems

    [user@server]$ testconnection.pl perl

    Series of tests in connection...

    ORA_HOME: "/ opt/oracle / 10g.
    AMERICAN

    DBI connect('local.domain.name','db_username',...) failed: ERROR OCIEnvNlsCreate (check ORACLE_HOME and NLS parameters etc.) to the line /www/testconnection.pl 21
    has failed: ERROR OCIEnvNlsCreate (check the ORACLE_HOME and NLS parameters etc).


    [user@server]$ pico testconnection.pl

    ! / usr/bin/perl

    Use DBI;

    $this_var [0] = "dbi:Oracle:local.domain.name";
    $this_var [1] = 'db_username ';
    $this_var [2] = 'db_password ';

    print 'Test Run of connection...\n\n';
    print ' ORA_HOME: '$ENV {ORACLE_HOME}' \n ";
    print ' NLS_LANG: '$ENV {NLS_LANG}' \n ";
    Print "ORA_NLS: '$ENV {ORA_NLS}' \n ';"
    Print "\n\n";

    #connect DB
    $dbh = DBI-> connect ($this_var [0], $this_var [1] $this_var [2]);
    {if ($DBH)}
    Print "OK \n";
    $dbh-> disconnect;
    }
    else {}
    Print "failed: $DBI: errstr\n";
    }


    Thanks for your help!

    >
    [user@server]$ ls - lt /opt/oracle/10g/sqlplus/mesg/sp*.msb
    -rw - r - 1 oracle oinstall 31744 Sep 2005 1 /opt/oracle/10g/sqlplus/mesg/sp2us.msb
    -rw - r - 1 oracle oinstall 11776 Sep 2005 1 /opt/oracle/10g/sqlplus/mesg/sp1us.msb
    >

    It seems that if you have a permissions problem. If your username is not a member of the oinstall group, he or she has no access to the necessary sql * more files. I recommend you read MOS 420083.1 Note for a more in-depth discussion to set the file permissions on the Oracle home.

  • Update of GroupDataModel list item for the lazy loading

    I have a ListView of StandardListCompoenet that is created with a GroupDataModel in C++.

    Mail, click on a button, I have to change the text content of a row in the ListView based on the number of line typed by the user in a text box.

    Goes according to the GroupDataModel API - updateItem(indexPath,QVariantMap), it can be done, I am able to build to get the row.

    There is a ListView (QVariantList) trigger method - which refers to the row of the item selected by the user.

    Since, in my code, I don't have the numero_index of the line of the user, is there a way I can build the "row" to "updateItem" of my code itself.

    Or should there be any other strategy that should be chosen instead?

    Found the solution,

    the key is to start finding the QVariantList (s) of the dataModel-> first()

    and then to reach the destination by comparing the values of data.

    Then, it would take to build a data path it would be identical to that received by trigger (QVariantList)

  • How to a add a menu item for the depeneding menu existing email on the subject of the e-mail?

    Hi all...

    I'm new here and I need your help... Please

    I'm trying to add the menu item to the email existing menu depeneding on the email... I assumed using

    ApplicationMessageFolderRegistry togather with shops and Session but could not establish the code...

    any help please...

    Thank you

    Please mark the topic as solved, then.

  • Hi friends this is the code for the dynamic creation of user in plsql, but these statements are not run if pls help for this error

    DECLARE

    n NUMBER.

    BEGIN

    n: = 1;

    WHILE (n < = 10)

    LOOP

    CREATE a user EM | IDENTIFIED BY KLU n;

    SESSION CREATION GRANT, GRANT ANY PRIVILEGE TO EM. n;

    COMMIT;

    n: = n + 1;

    END LOOP;

    END;

    Hello

    Here is the dynamic creation of user query and giving grants to the user,.

    DECLARE

    n NUMBER.

    cr_user VARCHAR2 (300);

    gr_user VARCHAR2 (300);

    BEGIN

    n: = 1;

    While (n<=>

    LOOP

    cr_user: = 'CREATE user EM | n | "IDENTIFIED BY KLU";

    gr_user: = "GRANT CREATE SESSION, GRANT ANY PRIVILEGE to EM '. n | '';

    EXECUTE IMMEDIATE cr_user;

    EXECUTE IMMEDIATE gr_user;

    n: = n + 1;

    END LOOP;

    END;

    Edited: Removed when OTHER exceptions to Code.

    See you soon!

  • Add the menu item for the sequence of batch processing?

    Hello

    I created a folder level script that runs at startup of Acrobat. The script adds a menu item, that when clicked, calls another function.

    I wonder if I can create a batch sequence and add a menu item for that also? I mainly want to avoid going through the whole advanced-> processing statement->... Processing batch-> find the command sequence, and then click Run.

    I've seen a lot of examples for adding menu items that call the folder level scripts, but nothing about batch sequences. Has anyone already done this?

    Thanks in advance!

    You cannot create an element of a sequence of commands menu. Nearest you

    can get is to open the batch sequences window, using the execMenuItem()

    method and "BatchEdit" as the name of the command (I'm not sure that it is still

    the same in Acrobat X).

  • Is there such a thing as too many items for the VBox?

    I have an application where I add a bunch of HBox in a VBox, but only the last 270 or so arise.  Is there some sort of limit to how many children, you can add or is it likely some other problem.

    A screenshot is attached.

    Any ideas would be greatly appreciated!

    Thank you!

    Moshe

    In my sample code, if I put one in 4000, it takes a bit for the application to start, but all 4000 HBox screen.

    My HBox is not as complex as yours.

    Bottom line, according to me, is that paging is the way to go.

    
    
      
        
      
    
    
  • Restrict user access to admission 0-9 for the string data

    Hello

    I want to this control at the entrance façade. This control allows the user to choose between 0-9. For example 0 1 2 3 4 5 6 7 8 9.

    Control do not allow the user to upgrade-1-2-3... 10 11 or... or decimal.

    This number will be still converted to a string as the name of a folder to create.

    Thanks for posting to this thread and help

    PX

    Firstly, right click and select ' entire representation (i.e. U8), and then right click then select data entry. Uncheck "use default limits" and enter the desired range.

    If you have noticed, everything is done by right-clicking. You should be familiar with all the right click options. Did you do tutorials?

  • several user sign component software plug-in for the mail account

    When I start each day, the computer goes directly to my account and e-mail.  I would like to have the possibility of another user to choose his account.  How do I do that?  I'm on Vista and his email is set up and on the current desktop.

    You will need to set up a second account of user login and have this person to enter his e-mail in their account.

    "bstephen19" wrote in the new message: * e-mail address is removed from the privacy... *

    When I start each day, the computer goes directly to my account and e-mail.  I would like to have the possibility of another user to choose his account.  How do I do that?  I'm on Vista and his email is set up and on the current desktop.

  • How do you remove user box activated once connected pc and the automatic removal of opening.

    Host user forums forums.

    How do you remove box Switced user when opening the pc and how to remove automatic connected? Please notify. Thank you.

    Sikki

    See the website below for more details

    http://www.Vistax64.com/tutorials/89939-fast-user-switching.html

    I hope this helps

    Good luck

    If this post can help solve your problem, please click the 'Mark as answer"If you find it useful, mark it as useful by clicking the 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Error: Tunnel research group using certificate cards failed for the peer certificate

    I have the research group of the Tunnel using certificate cards failed for peer certificate error when signing the SAA on my SSL VPN. I have the certificate installed on the client, I have no mapping of certificate created.

    I can map user certificate to a user name used to connect to the SSL VPN?

    Y at - it good documentation describing the certificate mapping?

    Off topic: I listen to a podcast of TAC security this week, and one of the members of the Group of experts preparing for an introduction to PKI to Networkers (I don't remember not the year). Videos of these presentations are available?

    Once more, I appreciate all the help.

    Triton

    Hello

    I guess the previous fill command comes in the webvpn under tunnel like this group attributes:

    tunnel-group test general attributes

    user name of certificate-CN

    tunnel-group test webvpn-attributes

    pre-fill-username-customer ssl

    No aaa authentication

    aaa authentication certificate

    You can also specify which field of the certificate you want to that username is taken.
    Users will be able to change the username (which beats the objective right?), but then they will not be able to connect using any other username. So if they change they will not be able to connect.
    Also, you can use the username to hide which will not allow users to change the user name it will be greyed out.
    And Yes, it's essentially a double authentication coz we use the certs and aaa to authenticate a user.

Maybe you are looking for

  • Replace the subset of table does not not for me

    I have a loop IN which I want to use a 1-d output Boolean of the comparison table.  There is a one-to-one correspondence between the index of the loop AND array index, so the number of loops and the size of the table are the same.  I first tried usin

  • LaserJet Pro CM1415fn: Printer does not print clear and precise output

    The LaserJet Pro CM1415fn can print on fabric papers? My fabric craft minor wife printed on papers project. She used to tape the corners of the tissue on normal paper first, but this caused the paper to jam. It then continues by gluing the tissue lig

  • Windows Update keeps Ask Me to install MS12 - 016:KB2633880?

    I installed months implemented type MS day, everything went without a hitch except KB2633880 which, after restarting, everything keeps asking to install again and again. Uninstalled and reinstalled same thing, it is in adding / deleting and in the re

  • HP Envy Phoenix Deskto 810-160: HP Envy 3F6 Office Boot Error at power on

    I have a problem of problem with my desktop HP Envy Phoenix 810-160 to initialize.  1 TB HDD and SSD 16 GB.  Originally Windows 8 and put to update with 10 "free" Windows OS Back after a 13-day trip and got the hard drive error (3F0).  UEFI Diagnosti

  • Dragon Naturally Speaking 11 64 bit, Win 7 Machine and error 1722

    I tried for more than a month to get the Dragon Naturally Speaking 11 is installed on a 64-bit Windows 7 computer.  Installation always gets to a point where it appears close to finishing but then gets an error 1722 and supports everything that was t