How is the USERNAME entered in the BP tranx for Emplyee Role?

I have a BP with several Roles, of which one is the Employee. Within the Identification tab of the Employee Role there is a Personnel number and User name. However, this is editable. What controls this and how can I edit it?.
Gary King

Hi Gary,
You can assign user name to employee role, by going to PPOMA_CRM, from search find the employee or user id and then double click it to see the details.
Right click the user name or employee and click on assign.
From here you can either assign user name to employee or employee to username.
Best Regards,
Pratik Patel
<b>Reward with Points!</b>

Similar Messages

  • How can I edit the number entered in the keypad, which I wanted to dial of iPhone4, there is no marker coming up to edit like what we have in Notes

    How can I edit the number entered in the keypad, which I wanted to dial of iPhone4, there is no marker coming up to edit like what we have in Notes

    Deepu272 wrote:
    btw does your answer mean that editing the number on keypad is not possible?
    Correct.
    Is this is the case with all the iPhone models ?
    Yep.

  • How can I reset the age entered during the first configuration set up?

    how can i reset the age entered during the first configuration of a brand new i pod touch. The age is incorrect and does not allow me to open a new i-tunes at a later configuration step. Error meesage: you are not old enough to open a new i-tunes account.
    Thanks for support to solve the problem.

    - Terminate the setup for obtain the account and then try again with same email address.
    - Next would be to contact iTunes.
    Contact iTunes

  • How to hardcode username/pwd in the open doc function.

    How to hardcode username/pwd in the open doc function.
    can you please provide the complete opendoc function

    hi,
    Using SDK, logon token can be passed along with OpenDoc URL.
    Sample code is as follows:
    String openDocumentToken() throws SDKException, Unsup
    portedEncodingException
    IEnterpriseSession sess = CrystalEnterprise.getSessionMgr().logon ("username", "password", "<cms>:</port>",
    "secEnterprise");
    String token = sess.getLogonTokenMgr().createLogonToken("",120,100);
    String tokenEncode = URLEncoder.encode(token, "UTF-8");
    return ("http://<server>:<port>/OpenDocument/opendoc/openDocument.jsp?iDocID=Aa6GrrM79cRAmaOSMGoadKI&sID
    Type=CUID&token=" + tokenEncode);
    Regards,
    Vamsee

  • How to retrieve the Text entered in the Text Box provided in the UWL Inbox

    Hi Experts,
    I have created a workflow with user decision task. for that task in UWL inbox i provided a text box using XML Code, but i couldnt retrieve the Text entered in the text box. I hope the text will automatically upload in the "_Attach_object" container element of the Workflow,  but it couldnt upload in that,  If anyone can help me to solve this issue.
    Thanks & Regards,

    Hi,
    <ItemType name="uwl.task.webflow.decision.TS91100000" connector="WebFlowConnector" defaultView="DefaultView">
    <ItemTypeCriteria connector="WebFlowConnector" externalType="TS91100000"/>
    <Actions>
      <Action name="accept" groupAction="yes" handler="UserDecisionHandler">
       <Properties>
        <Property name="decisionKey" value="2"/>
        <Property name="UserDecisionNote" value="true"/>
       </Properties>
      </Action>
      <Action name="reject" groupAction="yes" handler="UserDecisionHandler">
       <Properties>
        <Property name="decisionKey" value="1"/>
       </Properties>
      </Action>
    </Actions>
    </ItemType>
    I have implemented the above code and i got the Text Box,  but now the problem is i couldnt retrieve the
    text entered in the Text box.  I checked in the  attachobjects   container element related to the task and the subsequent task but the text is not appearing there.  Can you help me to get the text entered in the text box.
    Thanks & Regards,
    Manikandan.S

  • How to get the username/password of the current owner of the running code

    Dear friends,
    Our product is running on the App Server(weblogic/websphere...) and we also use security provider(OpenLDAP) and kerberos to support SSO. Before, when a user tyies to login in the first time, the way we use to authenticate the user is:
    1) Accept the username/password
    2) Query the security provider(OpenLDAP) to get the principles.
    3) verity if the username/password is corrent or not.
    As we know, to query the principles, we need to provide a search user(both username and password) if we configured the access control of the ldap server:
    I have configured my envirioment as follows
    1) In the LDAP server, configured the Middle Tire user(The Operating System user running the App Server) to have the permission to query principles.
    2) The server is configured to runing on SSO envirioment.
    My question is could I get the username/password of the OS user running the App Server at runtime so that I can query the ldap server without explicitly providing the search user?
    Thanks,
    RR
    Edited by: Ricky Ru on Oct 9, 2011 1:50 AM

    Thanks EJP.
    I have made some progress on this. But I have met another issue.
    *1) Using JAAS to login.*
    loginContext.login();
                   Subject subject = loginContext.getSubject();
                   ldapContext = (LdapContext) Subject.doAs(subject, this);
    *2) Init the ldapContext to use the GSSAPI authentication*
    // this is called automatically by login()
         public Object run() {
              Hashtable ldapEnv = new Hashtable();
              ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
              ldapEnv.put(Context.PROVIDER_URL, "ldap://9.30.215.197");
              ldapEnv.put(Context.SECURITY_AUTHENTICATION,"GSSAPI");
              ldapEnv.put(Context.SECURITY_PRINCIPAL,"");
              ldapEnv.put(Context.SECURITY_CREDENTIALS,"");
              //System.setProperty("sun.security.krb5.debug", "false");
              // This tells the GSS-API to use the cached ticket as
              // credentials, if it is available
              System.setProperty("javax.security.auth.useSubjectCredsOnly", "false");     
              try {
                   InitialLdapContext ctx = new InitialLdapContext(ldapEnv,null);
    But I got the following exception when excuting new InitialLdapContext(ldapEnv,null);
    Debug is true storeKey false useTicketCache true useKeyTab false doNotPrompt false ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    Acquire TGT from Cache
    Principal is [email protected]
    Commit Succeeded
    javax.naming.AuthenticationException: GSSAPI [Root exception is javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Integrity check on decrypted field failed (31))]]
         at com.sun.jndi.ldap.sasl.LdapSasl.saslBind(LdapSasl.java:150)
         at com.sun.jndi.ldap.LdapClient.authenticate(LdapClient.java:214)
         at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2694)
         at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:293)
         at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:175)
         at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs(LdapCtxFactory.java:193)
         at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.java:136)
         at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.java:66)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.ldap.InitialLdapContext.<init>(InitialLdapContext.java:134)
         at LDAPKerbService.run(LDAPKerbService.java:66)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:337)
         at LDAPKerbService.login(LDAPKerbService.java:40)
         at LDAPKerbService.main(LDAPKerbService.java:82)
    Caused by: javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Integrity check on decrypted field failed (31))]
         at com.sun.security.sasl.gsskerb.GssKrb5Client.evaluateChallenge(GssKrb5Client.java:194)
         at com.sun.jndi.ldap.sasl.LdapSasl.saslBind(LdapSasl.java:105)
         ... 16 more
    Caused by: GSSException: No valid credentials provided (Mechanism level: Integrity check on decrypted field failed (31))
         at sun.security.jgss.krb5.Krb5Context.initSecContext(Krb5Context.java:663)
         at sun.security.jgss.GSSContextImpl.initSecContext(GSSContextImpl.java:230)
         at sun.security.jgss.GSSContextImpl.initSecContext(GSSContextImpl.java:162)
         at com.sun.security.sasl.gsskerb.GssKrb5Client.evaluateChallenge(GssKrb5Client.java:175)
         ... 17 more
    Caused by: KrbException: Integrity check on decrypted field failed (31)
         at sun.security.krb5.KrbTgsRep.<init>(KrbTgsRep.java:61)
         at sun.security.krb5.KrbTgsReq.getReply(KrbTgsReq.java:185)
         at sun.security.krb5.internal.CredentialsUtil.serviceCreds(CredentialsUtil.java:294)
         at sun.security.krb5.internal.CredentialsUtil.acquireServiceCreds(CredentialsUtil.java:106)
         at sun.security.krb5.Credentials.acquireServiceCreds(Credentials.java:562)
         at sun.security.jgss.krb5.Krb5Context.initSecContext(Krb5Context.java:594)
         ... 20 more
    Caused by: KrbException: Identifier doesn't match expected value (906)
         at sun.security.krb5.internal.KDCRep.init(KDCRep.java:133)
         at sun.security.krb5.internal.TGSRep.init(TGSRep.java:58)
         at sun.security.krb5.internal.TGSRep.<init>(TGSRep.java:53)
         at sun.security.krb5.KrbTgsRep.<init>(KrbTgsRep.java:46)
         ... 25 more
    Do you have any clue on this? Thanks.

  • Pre-populating a date/time column with the value entered in the last added item

    I have a list with a column called "expected finish date". Whenever the user adds the very first item in a list, he/she should have to enter a value for this column.
    I want to make all new item entries to pre-poplate this field with the value entered in the previously added item. This way, he/she wont have to re-enter the date every time (which rarely changes). How can this be done?

    could create a second list ("state") with column ("default finish date")...
    create a workflow on main list... if column is blank/empty, pull from second list... otherwise, update second list with the value that was entered.
    Or, customize the form (InfoPath or JavaScript)
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Display instantly the length of the text entered in the rich text editor

    Hi everybody,
    I'm developing an apex application with apex 4.1.1 and Oracle 11.2.
    I have a page in which I have a form that allows to create a new message on the database.
    A message has a title, description, text and date.
    For the text I use the item "rich editor text". The problem is that item doesn't show the length of characters entered (character counter for the textarea). In the database the corresponding column is varchar2(2000). What I do is a validation after submit that checks if the limit 2000 was exceeded or not.
    But what I want to do more is to display instantly the length of the text entered in the editor. I have tried to do that through a dynamic action. But the event "onChange" for the item "rich text editor" didn't work.
    Has anyone any idea about that issue?
    Thanks for helping.
    Kind regards,
    Edited by: Khadija Khalfallah on Apr 25, 2013 4:06 AM

    sorry about that, I missed that tidbit in your OP... well I think there is a good reason why there isn't a count character option -- due to the hidden "html" characters responsible for the "richness" (bold/color, etc) applied to the text would be difficult to count true characters.. if I was bent on doing this, I'd continue using the item you are using, but have a HIDDEN text area that is updated via javascript onkeyup for each keystroke (again, keeping in mind you'd have to filter certain keys) and then that intelligence could be used. I would probably dig through the javascript responsible for the rich text editor (is it still fckeditor??) -- there might already be code in there that isn't clearly visible to you that does this already.. alas, I see now the validity of your challenge.

  • Display Dyn Textfields according to the number entered in the numericfield

    Hi all,
    In an ISR adobe form I have placed a numeric field.When the user enters a number in the numeric field , text fields corresponding to the number entered in the numeric field should be displayed dynamically.
    Can any one give me the script for doing this and also tell me in which event should I  write the code......
    Regards,
    Rheema Rahael

    Hi Rheema,
    Find the following code, which you should write on the 'Calculate' event of the field whose presence property is to be changed.
    eg.
    there is a numeric field 'NumericField1' and a text field 'TextField1'.
    Now if numeric field value is '1', hide the text field, or show the field, so i write this code in Calculate event of 'TextField1'.
    if ( NumericField1.rawValue == 1 ) {
    this.presence = "hidden"; }
    else{
    this.presence = "visible"; }
    when i input 1 in NumericField1 and press enter, the text field becomes hidden..
    when i input 2 and press enter, the text field becomes visible again.
    Thanks and Regards,
    Mona

  • How to add the action enter  to the textfield in a jdialog?

    I did a login class using a applet it is working very well...but now..i would like to add the action to the textfield when the user press a enter.
    I would like that after that he or she has pressed a enter in the textfield were done the corresponding action, could some body help me please?
    This is my code:
         public void init() {
    AppletContext context;
              URL exitoUrl, fallaUrl;
         try {
         context = getAppletContext();
         exitoUrl = new URL("http://111.23.56.12/page1.html");
         fallaUrl = new URL("http://111.23.56.12/passwordIncorrecto.html");
                   JPasswordField pf = new JPasswordField();
                   Object[] message = new Object[] {"Intr. the password", pf};
                   Object[] options = new String[] {"Intro", "Cancel"};
                   JOptionPane op = new JOptionPane(message, JOptionPane.PLAIN_MESSAGE, JOptionPane.OK_CANCEL_OPTION, null, options);
                   JDialog dialog = op.createDialog(null, "Login");
                   dialog.show();
                   String password = new String("success");
                   String tmp = new String(pf.getPassword());
                   if ( password.equals(tmp) ) {
                        System.out.println("correct password");
         context.showDocument(exitoUrl);
         else {
                        System.out.println("incorrecto password ");
         context.showDocument(fallaUrl);
              } catch(Exception e) {
                   System.out.println("Error exception");
    Thanks in advance;
    Mary

    Hi,
    it is easy: create an entity object for every table and one view object where you select your both entity objects and join them in your select statement.
    Your desired 'confirm' functionality could be achieved with helpp of view object transient attributes - for more information see: http://docs.oracle.com/cd/E21764_01/web.1111/b31974/bcquerying.htm#CHDHJHBI
    Regards
    Pavol

  • How to restrict reference entered in the NumAtCard field from duplicating

    Hi guys,
    Is there a way to prevent the repetition or duplication of reference number manually entered by the user? Do you have a script or a stored procedure for this?
    Thanks,
    Yvette

    Use this Stored Procedure for A/P Invoice
    Try in Test Environment and then in Live Database.
    if @object_type = '18'
    and (@transaction_type = 'A' or @transaction_type = 'U')
    begin
    declare @venno as varchar (100)
    declare @vennam as varchar (100)
    if (@object_type = '18')
    begin
    select @venno = NumAtCard, @vennam = CardCode from OPCH T0 where docentry = @list_of_cols_Val_tab_del
    begin
    if (@venno is not null)
    begin
    if 1!= (select count (docentry) from OPCH with (nolock)where (NumatCard = @venno) and (cardcode = @vennam))
    begin
    select @error = 10
    select @error_message = 'Duplicate Vendor Ref Number!'
    End
    End
    End
    End
    End
    Regards,
    Bala

  • Which trigger is raised after saving the details entered  in the block

    Hi,
    I am creating a form which should allow user to create tables by providing tablename , columnname and columntype. For that , I have a temporary table named NEWTABLE with columns named TABLENAME , COLUMNNAME and COLUMNTYPE.
    Upon running the form, the user enters TABLENAME , COLUMNNAME and COLUMNTYPE . Which trigger gets fired after all those records are inserted into that table. I tried using POST-INSERT but it is firing after each and every record gets inserted into the database table.
    Could u suggest the trigger name or else could u suggest any alternate method to perform that task .

    Use the classic key-commit trigger.
    Write there the following:
    post; -- this does insert/update/delete for the records in the form's data block
    after which you should call a stored procedure that receives as params the column names and column types in pl/sql tabels, plus the table name for the table to be created and does:
    'execute immediate create table ...'
    Still, it's quite unusual to create DB objects from forms. What if you need to indicate the tablespace? And what about indexes? What if you need partitions?
    Normally tables are to be created by developers and/or DBAs, not just any user, and those would use different tools (not Forms!), the most simple being SQL*Plus.

  • How to specify the security policy "Allow access to everyone" for security role in Deployment descriptor

    Hi,
    I am migrating a web application from Websphere to Weblogic. The web application has a security role defined in web.xml (Use LDAP for authentication).
    security-role>
            <description>Authenticated</description>
            <role-name>Authenticated</role-name>
        </security-role>
    This role is mapped to a special subject "All authenticated user in appliation realm" in WAS.
    In weblogic, I have the following setting in weblogic.xml
    <wls:security-role-assignment>
            <wls:role-name>Authenticated</wls:role-name>
            <wls:externally-defined />
        </wls:security-role-assignment>
    And after deploy the application, have to manually add a security role and add the security policy "Allow access to everyone" to this role.
    I am wondering if this setting can be specified in  for example weblogic.xml so just deploy web applicaiton using deployment descriptor, and I don't need write script to do that .
    Thanks

    Hi,
    You need to have Back End support to achieve this. In Back End you need to create two groups . You need to know what joins has to be made for which group (which is more important) and also make session variable for the userrole (with SQL supporting it). In the BMM layer, we need to put the security join conditions in the 'where clause'.
    And make a common report. User loggin in with the respective userid will have userrole and joins assigned in the Back end. And they will be viewing the report according to their access.
    Hope this will solve your problem.
    Regards
    MuRam

  • I need to set the UPPERCASE for all the data entered in the application

    I created a trigger to do this but it compiles with errors. I don't know if has to do that I have another trigger that manages the PK and is also a before insert, update. Is as follows:
    create or replace trigger "DJUR_REGISTRO_UPPER_TR"
    BEFORE
    insert or update or delete on "DJUR_REGISTRO"
    for each row
    begin
    DECLARE
    BEGIN
    :P5_NOMBRE_RECLAMANTE := UPPER(:P5_NOMBRE_RECLAMANTE);
    END;
    end;
    COMPILATION ERRORS:_
    Compilation failed, line 4 (11:33:25) The line numbers associated with compilation errors are relative to the first BEGIN statement. This only affects the compilation of database triggers.
    PLS-00049: bad bind variable 'P5_NOMBRE_RECLAMANTE'Compilation failed, line 4 (11:33:25) The line numbers associated with compilation errors are relative to the first BEGIN statement. This only affects the compilation of database triggers.
    PLS-00049: bad bind variable 'P5_NOMBRE_RECLAMANTE'
    Also I tried to do this by setting it in the "Edit Page Item", the source value or expression was as follows:
    :P5_NOMBRE_RECLAMANTE := UPPER(:P5_NOMBRE_RECLAMANTE)
    and it does'nt work. It displays the default value instead.

    You can't use APEX variables in that way in a trigger..
    Try this one: (Assuming the p5 variable is the same name for the column in the table)
    create or replace trigger "DJUR_REGISTRO_UPPER_TR"
    BEFORE
    insert or update on "DJUR_REGISTRO"
    for each row
    begin
    DECLARE
    BEGIN
    :new.NOMBRE_RECLAMANTE := UPPER(V('P5_NOMBRE_RECLAMANTE'));
    END;
    end;
    Better idea is to do this:
    set HTML Form Element Attributes of the item to : onblur="this.value=this.value.toUpperCase();"
    Thank you,
    Tony Miller
    Webster, TX
    (If this answers your question, please mark it as closed and assign points accordingly)

  • When following your instructions on setting a blank new tab, I get and error message "invalid url", even though the sting entered in the config is as you state.

    I would like a blank new tab to open, but have followed the help guidance to modify the about:config.
    However, for all strings shown, I get a consistent error message "invalid url", even though the string has been copied correctly.

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • Connecting 2 (21.5" & 27") iMacs and using 21" as second display

    Hi, I have 2 imacs (1x27 and 1x21.5), 27 is mid 2010 and 21.5 is late 2009. Iam trying to find out if I can use 21 as 2nd display off the 27. I connected them together with mini dv and they default to 21 as primary and 27 as 2nd. Any help here would

  • Nesting of Objects?

    In structured programming languages, the code can be broken down into blocks. The If-Then-Else statement is a block of code, and within it has nested the Test, the Then, and the Else parts of the code. The Then and the Else parts are nested blocks wh

  • Standard credit memo g2  has document type field as blank?

    Hi All, When we create a credit memo with billing type G2 and release the billing document to Accounting. how does system understand which accounting document type needs to be created. Credit memo G2. Genral control data. Document type [  ] is Blank.

  • Designer 9 on Oracle 10g Express Edition

    Is it posible to use Designer 9 with Oracle XE? I installed both products, but I coudn't connect with Designer to DB server.

  • My broadband speed dropped after installing ios8 iPad Air iPhone 5s.

    any ideas why my broadband speed is half at best after installing iOS 8 on iPad air and iPhone 5s? Pc still gets 50-60mbs like air did before ios 8. Ipad now varies from 10-30mbs