Problem in changin the username at the Step Level

Hi All,
I had a small problem with background processing in SM37.I was trying to change a job which was running from my Id to some other Id which I needed to run from.I changed it successfully, but the problem is the job is running under new Id now, but all the steps related to that job are running under my id(i.e., old id) itself.Could anybody please help me out how to change the username at the step level also?
Thanks in advance...
Regards,
Sravanthi

hi
->Log on to the new Id and select the job which was running under old id.
->Then,make a duplicate copy of the job from the menu option Job->Copy.
->Now, it will ask for a name give the new name
->Now, that job will be under new id in Shcheduled status.
with all the steps being under old id still.
->Now, again select that particular newly copied job and
->click on step,Select the step by clicking on it.
->And, now go to the menu option Job->Change,there u will be able to change the userid from the old one to the one which u wish to have.......That will work fine after releasing the job from Scheduled status to Release status.
regards
venkat

Similar Messages

  • I have Mac mini 2.0/2x2gb/2x500/AP/BT, and i forgot the username and the password. How can I resolve the problem?

    I have Mac mini 2.0/2x2gb/2x500/AP/BT, and i forgot the username and the password. How can I resolve this problem?

    The username is the name attached to your Home folder - /Users/username/. If you don't know the password then it can be changed but you will need the installer DVD that came with the computer for the installed version of OS X. You have not provided that information.

  • Is there a way to prevent AnyConnect from caching the username of the last person who connected to the VPN?

    Is there a way to prevent AnyConnect from caching the username of the last  person who connected to the VPN?

    This can be done via specifying the "RestrictPreferenceCaching" parameter as described in the Anyconnect Admin Guide here:
    By design, AnyConnect does not cache sensitive information to disk. Enabling this parameter extends this policy to any type of user information stored in the AnyConnect preferences.
    •Credentials—The user name and second user name are not cached.
    •Thumbprints—The client and server certificate thumbprints are not cached.
    •CredentialsAndThumbprints—Certificate thumbprints and user names are not cached.
    •All—No automatic preferences are cached.
    •false—All preferences are written to disk (default—behavior consistent with AnyConnect 2.3 and earlier).

  • How to retrieve the username of the logged in user

    Hi, I've been looking for a possibility retrieve some user data like the username of the currently logged in user since yesterday but could not find anything proper. I'm relatively new to APEX. Could someone perhaps point me to an easy-to-understand document? I would be glad if it would also cover the basic of authentication and authorization schemes.

    Hi, thanks for your reply. I've already changed my handle but the system said that it would take about one hour for the change to be done.
    Actually I have the following situation. I have a table that associates IDs to names. The names are the same as the user names of the users in APEX. On an APEX-Page I have a select-box that lists all available IDs. What I want to do is to automatically pre-select the ID of the currently logged in user. So I have created an authentication scheme as described in the help using following options:
    Based on a pre-configured scheme from the gallery > Show Login Page and Use Application Express Account Credentials
    And then I made the new authentication scheme the application's current scheme. Then I went to the page definition and created a new process, selecting "On Load - After Regions" as "Process Point", and entered the following source:
    declare
    nID number;
    begin
    :P2_TEMP := :APP_USER; -- this is just for debug purposes
    select b.ID into nID from MYTABLE b where b.NAME = :APP_USER;
    :P2_ID := nID;
    exception
    when others then
    null;
    end;
    But it doesn't work. Since the text field P2_TEMP stays empty I believe I am doing something wrong with APP_USER. Anybody who can help me with that?
    Edited by: user10977071 on 05.04.2009 08:57

  • How can I get the username of the person currently logged in?

    I have built a custom authentication scheme and I am building a form page and I would like to show the username of the person who is currently logged in? How can I do this......

    Use the <tt>APP_USER</tt> built-in substitution string.
    This value can be referenced in various ways, including the static text exact substitution method <tt>&APP_USER.</tt> which can be used in page and region templates to display the current user name.

  • What's the username and the password?

    hello
    after i installed the 9iAS9.0.2,i link to "http://<my-hostname>:7777/",the welcome page is appear,when i click the "Log on to Oracle Enterprise Manager" link that is within the welcome page,it ask me to input the password and username,but i don't know them,who can tell me what are they?
    thank you!

    yes,we have the similar situation,i have two oracle home too,because i have installed the oracle9i database before i install the oracle9iAS,i have tried to reinstall the oracle9iAS again and again,but it don't work,at last,i format my disk,reinstall the windows2000 and reinstll the oracle9iAS infrastructure,but this time,another problem appeared:after the infrastructure is installed,in order to continue to install the oracle9iAS,i must stop the "embeded web" service(i can't remember the service name exactly) first,then install the 9ias,the PROBLEM is that i can't stop the service from the control panel.i don't know why.
    i have already given up to study the 9ias,i am studying websphere now,if you would like to continue to test the 9ias,i can give you a suggestion,see if it work.
    1 delete the oracle database and oracle9iAS from your
    computer.
    2 install the infrastructure(a database is
    included),install the 9ias.
    thus,you can keep ONE oracle home in your machine,try if it work and post the result here to let me know.
    good luck!

  • I have an old itunes acct in which i can't remember the username nor the password.  I have tons of music under that acct.  How can I regain use of that account again?

    I have another itunes acct I've had years ago with tons of music under that acct.  I have a current one but I can't regain use of the old one because I don't have that email addy anymore, nor the username or password to the itunes acct.  Is there any way I can prove I own that account & regain control of it to get my old music?

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Printing the username at the bottom of the page?

    At our high school we are using an Xserve G5 (10.4.8 server) using Workgroup Manager with labs of eMacs (10.4.8 client) for our students. Is there anyway to have the students papers print out with their usernames on the bottom of the page so we know who is printing inappropriate materials?? We have HP LaserJet 4200's if it makes any difference.
    Thanks,
    Josh

    We were looking for this too, but I don't think it exists. However, you can run your print jobs through your Mac Server and turn on print services. Then select the print queue to print a standard cover page. This will print out the username that they are logged in under before each print along with the name of the file/document they are printing.

  • Displaying the username in the title bar of jframe

    hi
    how to display the username entered by the user in the title bar of jframe

    I'm not sure what you mean by 'entered' but does the following help?
    import javax.swing.*;
    public class DisplayUserNameInTitleOfJFrame extends JFrame
        public DisplayUserNameInTitleOfJFrame()
            setTitle(System.getProperty("user.name"));
            setSize(640, 480);
        public static void main(String[] args)
            new DisplayUserNameInTitleOfJFrame().setVisible(true);
    }

  • HELP needed: Changing the username of the User profile for folders

    HI all,
    Would really appreciate if someone can help me figure out how to change the name of my username on the folder. Attached is the image to show what i mean. This is bugging me out!!
    http://t.co/LAo4ZKS

    http://support.apple.com/kb/ht1428
    Note the note at the top of the page though. An alternative is to create a new account and copy your preferences across.

  • How can I get the UserName in JAX-RPC?

    The client is just as following:
    import javax.xml.rpc.Call;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.JAXRPCException;
    import javax.xml.rpc.namespace.QName;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.ParameterMode;
    public class ACTRPCClient {
    private static String qnameService = "Hello";
    private static String qnamePort = "Greeting";
    private static String BODY_NAMESPACE_VALUE ="http://hello.org/wsdl";
    private static String ENCODING_STYLE_PROPERTY ="javax.xml.rpc.encodingstyle.namespace.uri";
    private static String NS_XSD ="http://www.w3.org/2001/XMLSchema";
    private static String URI_ENCODING ="http://schemas.xmlsoap.org/soap/encoding/";
    public ACTRPCClient() {
    public static void main(String[] args) {
    try {
    String endpoint= "http://127.0.0.1:8080/SOAPListener/Hello";
    ServiceFactory factory =ServiceFactory.newInstance();
    Service service =factory.createService(new QName(qnameService));
    QName port = new QName(qnamePort);
    Call call = service.createCall();
    call.setPortTypeName(port);
    call.setTargetEndpointAddress(endpoint);
    call.setProperty(Call.SOAPACTION_USE_PROPERTY, new Boolean(true));
    call.setProperty(Call.SOAPACTION_URI_PROPERTY, "");
    call.setProperty(ENCODING_STYLE_PROPERTY,URI_ENCODING);
    //here I set the username and password
    call.setProperty("javax.xml.rpc.security.auth.username","tomcat");
    call.setProperty("javax.xml.rpc.security.auth.password","tomcat");
    QName QNAME_TYPE_STRING = new QName(NS_XSD, "string");
    call.setReturnType(QNAME_TYPE_STRING);
    call.setOperationName(new QName (BODY_NAMESPACE_VALUE, "getHello"));
    call.addParameter("Greeting", QNAME_TYPE_STRING, ParameterMode.PARAM_MODE_IN);
    String[] params = { new String("Hello!") };
    String result = (String)call.invoke(params);
    System.out.println(result);
    } catch (Exception ex) {
    ex.printStackTrace();
    On the server side,I wrote a my own servlet to receive the soap instead of the jax-rpc.But I can't get the username from the request.
    for example,
    String username;
    username=request.getRemoteUser();
    I noticed that in the api doc,it says when the user has not been authenticated the method getRemoteUser will return null.So I use the username "tomcat" ,password "tomcat "in the tomcat-
    users.xml.But I still can't get the username,why?
    Thanks for your help.

    From the Axis I find the problem,the username and password is stored in the headers of the http.
    And now the jax-rpc only surpport basic authentication,we can get them by calling request.header("Authentication").Howerver,the infomation is encoded by Base64.We copy a module from the Axis to decode the infomation.That's it,but still thank your attention.

  • How can I know the username of a user that logged in?(Authorization)

    I have a problem with authorization. In our system, everyone could take some reports. But we must restrict the data that a user can see.
    So, I must know what is the username of the logged in user.
    I have tried :XDO_USER_NAME variable in SQL statement but it doesn't work.
    Is there any way to get the username of the logged in user.
    Thanks..
    Edited by: user10137960 on 16.Kas.2009 11:27
    Edited by: user10137960 on 16.Kas.2009 11:33
    Edited by: user10137960 on 16.Kas.2009 11:35

    Hi
    Needs to be lower case
    http://blogs.oracle.com/xmlpublisher/2007/04/whos_on_first.html
    Regards
    tim

  • Login in console denying the username?

    Hi there,
    some minutes ago i tried to login on one of my virtual consoles and did a small typo on the username. The reaction was quite surprising, maybe you get it when looking at the output:
    Arch Linux (Core Dump) 2.6.23-kamikaze (flusenfalle)
    flusenfalle login: roto
    Login incorrect
    flusenfalle login: jana
    Login incorrect
    flusenfalle login: jan
    Password:
    Last Login: bla bla...
    [jan@flusenfalle ~]$ _
    I never seen this before... Isnt the login supposed to take every username at first (even if it doesnt exist) and print out the "Password:" anyway before finally denying the login when i entered a password for the non-existant user?
    At least i know it worked this way since years... And this seems to be the default in Arch, as i never changed anything regarding this...
    I consider this as a security issue, because with a little knowledge about myself it would be easier for a local attacker to compromise my system, because its easy to find out which users exist on my machine... (and thats a start, sure there a passords, but its a start...)
    So, how can i change this to the ol' trusty behaviour i am used to?

    tomk wrote:funkyou, or anyone - post a bug please, we'll look at it.
    Ok, i am now posting a bug... Just wanted to check out at first if i am maybe the only one experiencing this.
    dolby wrote:maybe this is related in any way to the kernel u use? have u tried the ARCH kernel?
    sorry but with the posts ive seen regarding this particular kernel i dont trust it at all
    I like the kamikaze kernel, it works fast and reliable for me... But i am using my own PKGBUILDs for it, and also dont use the latest version. If its stable and has no problems, i keep it...

  • Given email, find the username using WLCS2.0

    For forgotton passwords and usernames, we need to find a username for a
    given email address. We set email as one of the User's property using
    the User Admin Tool in a Property Set.
    I believe that the only way to create and login a given user is using
    the username as key with <um:createuser> and <um:login> tags. Also, all
    the properties are serielized into RAW fields in Oracle, hence we cannot
    use SQL to find out the username.
    My urgent question is: "What is the BEA-suggested way to find the
    username(s) for a given email address?" Should I write a Java code,
    instantiate a User for each user, and check their emails one-by-one
    (ugly!).
    Thanks

    Cindy,
    Just a thought but if a unified user profile was used and the 'email' data
    was part of the greater user class then finding the email address would be
    far more simple as you would be seraching your own tables rather than the
    BEA created ones. Am i right in assuming that the email field could still be
    accessed via rules so long as the GreaterUser extended
    com.beasys.commerce.axiom.contact.User ?
    Do BEA have any guidelines or thoughts as to when data should be held in
    properties of the contact.User class or when a unified user profile should
    be created, in the case where no there is no pre-existing data. I rather
    like the idea of the UUP as I know where all my data is and I dont have to
    explain the table layout as it is self evident.
    Any thought would be appreciated,
    Richard
    Cindy Eldenburg <[email protected]> wrote in message
    news:[email protected]...
    First you will have to decide if you are going to allow more than
    one user per email address. It would probably be cleaner if you
    allowed only one username per email address.
    Here are the SQL queries that would be required to get a username
    given an email address. Look at the SQL script in
    db/oracle/create-user-oracle.sql to see the schema for these tables:
    1) select PROPERTY_ID from WLCS_PROP_TEXT where
    VALUE="[email protected]"
    The WLCS_PROP_TEXT is the table that has all text properties. Each
    property has a unique ID. If you and I each have an email property
    then each of those email addresses would have a different number and
    it would be in this table. If you get more than one PROPERTY_ID
    with this query then you have more than one username with the same
    email. At this point, you would have to decide what to do about
    that. If you want only unique email addresses to exist, then do
    this query befor you set the email property for a new user and
    refuse if the query returns anything.
    2) select ENTITY_ID from WLCS_PROP_ID where PROPERTY_ID=<the value
    you found in step 1>
    The WLCS_PROP_ID table has an ENTITY_ID which corresponds to the
    unique ConfigurableEntity object that is your user and the
    PROPERTY_ID is the unique identifier for a property value that this
    ConfigurableEntity has.
    3) select PK_STRING from WLCS_ENTITY_ID where ENTITY_ID=<the value
    you found in step 2>
    The WLCS_ENTITY_ID table links each ENTITY_ID to a PK_STRING for a
    ConfigurableEntity. In this case, your ConfigurableEntity is a User
    and the PK_STRING is the username.
    The first step would probably be slow because you would be querying
    a table that contains all text property values. Step two and three
    would be fast. You could use a session bean that has a method
    getUserName(String email) to implement these queries.
    Good Luck,
    Ture
    Muhtar Bulut wrote:
    For forgotton passwords and usernames, we need to find a username for a
    given email address. We set email as one of the User's property using
    the User Admin Tool in a Property Set.
    I believe that the only way to create and login a given user is using
    the username as key with <um:createuser> and <um:login> tags. Also, all
    the properties are serielized into RAW fields in Oracle, hence we cannot
    use SQL to find out the username.
    My urgent question is: "What is the BEA-suggested way to find the
    username(s) for a given email address?" Should I write a Java code,
    instantiate a User for each user, and check their emails one-by-one
    (ugly!).
    Thanks

  • IS it possible to obtain the username from a authentication  dialog box?

    Kind of simple question and I'm looking for a simple answer. Is it possible to obtain the username from the dialob box during java web start or not?

    I'm not really sure what you are asking but if you look at the Javadoc of System.getProperties() you will find a property named 'user.name' .

Maybe you are looking for

  • Undo/Redo button are not performing more than one operation at a time

    Hi, I have created undo/redo button on my paint application. But it performing only last action to undo.I have just the code which store offscreen image into undo buffer image like this :     if (OSC == null || widthOfOSC != getSize().width || height

  • HT4437 Do you have to have an apple t.v. To use air play

    Do you have to have an apple t.v. To use air play

  • Global CSS definitions

    Hy there, i wonder if there is a possibility to declare some "global" custom styledefinitions. Not global own style classes, because i know how to do that. Further i mean to do some -fx-customColor: #666666; and use that definition on a button: .butt

  • Help trying to list measures from cube.

    Hi all, I'm trying to list measures from a cube using BAPI_MDPROVIDER_GET_MEASURES, but the name of the measures (MES_NAM) I get seems to be coded, and I haven't been able to find how to convert it to "the usual" name. I must note that I don't know m

  • Error 3131: Will not download my music from the cloud

    Just got a new mac and it partially downloaded my music from the cloud but when I try to finish downloading it gives me Error 3131. I have tried logging out and back in, as well as quitting iTunes and restarting.