Automatic user creation in C-folder system

Dear Friends,
We have configured 2 envelope bidding (Extended RFx process) in SRM 7.01
C-folder system is there in a different server and SRM is a different server.
The problem is that for the purchaser (with /SAPSRM/ST_PURCHASER_EHP1 role) and bidders (with /SAPSRM/BIDDER_EHP1 role), we have to manually create user IDs (both purchaser and bidders) in C-folder system. We want to make the process automatic and avoid the manual process of creation of IDs.
Please guide me the standard process/practice of creating the users (Strategic purchaser and bidder) in C-folder system.
Thank you in advance.
With Regards,
Malay

Dear Friends,
Request for an update for the issue.
With Regards,
Malay

Similar Messages

  • Can we automate user creation or responsibility addition

    HI,
    I would like to know, if by any way we automate user creation in apps. or If not user creation, at least responsibility addition. Lets say we create users with some default responsibility. And after that with the use of user management or CRM HTML Admin some automation can be done like, they select the responsibility they want, it reaches next approval level, once approved it automatically gets added to user account.
    Not sure if this can be done or not. I heard someone did in his project using user managemenr or CRM HTML ADmin, not sure though

    Hi,
    You can do manually (as per your other thread).
    Creating 1000+ users in Oracle R12
    Creating 1000+ users in Oracle R12
    Not sure if this can be automated. However, refer to these manuals/docs and see if it helps.
    Oracle Applications System Administrator's Guide - Security
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121sasg.pdf
    Note: 290525.1 - Oracle User Management FAQ
    Note: 290996.1 - Oracle User Management Additional Documentation
    Oracle HRMS Approvals Management Implementation Guide
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121ameig.pdf
    Thanks,
    Hussein

  • Can we Automate User Creation in SAP IDES?

    Hey Guys,
    I found this piece of information on Internet somewhere.
    "SAP provides a simple user creation mechanism for IDES system. An enhancement is already active by the name USRADMIN this contains code that executes just after the user logon. If somebody logs on as 'MUSTER' with password 'IDES' it prompts to create a user. and after the creation MUSTER is logged off. If the password of MUSTER is changed the program also reset the password to IDES always. the password is hard coded in the code
    For this to be active an entry has to be maintained in the table zides_user_procc . In this table we maintain the SAP system SID, client where this functionality is to be active and also maintain the reference user which will be copied to the new user ."
    *bol

    It was a while back, but the logic was like this:
    User logs into webpage on intranet.  Lets just say that authentication to that resource is dealt with separately here.
    User is presented with a form and fills in info like
    UserID required
    FirstName
    LastName
    email address
    Password
    This info is used by some backend VB code which initialises an RFC connection with SAP.
    Once RFC is established, a function module to copy an existing template user is executed (template user contains roles to copy etc).  The new user is created as required and you can then log on & use it.
    To be honest, most self service sandbox systems tend to be the log in using existing user & create yourself a user or run a prog which will do it for you.
    Hope that helps,
    Cheers
    Alex

  • Build BAPI to automate user creation/change/deletion .

    Hi,
          Want to automate repeating request of user creation, change and deletion and can be called from external application hence consider to build a BAPI. The question is how to find what's abap system program to call in methods of BAPI corresponding function modules?
    Thanks,
    David

    Hi David,
        Run BAPI transaction and search for USER in the alphabetical order list of BAPI's, there you will find BAPI's related to User Creation, Change, etc.
       Hope this may help you in your process

  • Automate User Creation Process in EP7 through ECC6.

    Hi
    I have a ECC6 Backend and EP7 installed on two Different Hosts.
    My Requirement is whenever a User is Created in ECC6 , the same user is to be
    Created in EP7 automatically. Role assignment can be done later.
    Has any one done this ?
    Regards
    Rajendra

    Hi Michael
    Currently we would like to keep the UME Datasource as AS Java only.
    In this case is it possible to have a solution like say
    1. Create a portal webservice which has a function to accept parameters required for User Creation.
    2. This webservice will be called by ABAP whenever a new user is Created in Backend.
    if yes then can u guide me in the Second Step mentioned above ?
    Regards
    Rajendra

  • How to automate User creation using SCAT ?

    Hi,
    Can any body help me out in generating a script for automating User creation by SCAT ?
    I recorded the steps,but failed to upload the values from the excel sheet to SAP.How to enter the values in the excel sheet - Is it row-wise or columnwise ?
    Thanks,
    s<i><b>A</b></i>mik.

    Hi,
    SCAT includes the following main steps
    1)Recording the Steps
    (Go through the screens you want to make entries to be careful not to forget to fill in Lastname and password as they are the mandatory fields and rest are optional depends on whether u want them to be involved in the script or not. Once done save the script
    2) Now declare the values u entered in the script to variables for this go to test case created in change mode and double click TCD  then select the "Field List" in the upper left corner of the screen. Now here you can see the values u entered replace any which you feel need to entered with a & . Fields which you donot declare as variables get the values u entered as default values .
    after filling fields you wanted backout from screens and save it
    3) Download the script to your computer.
    for this Select Goto > Variants> Export and save the file with .TXT
    4) open the file with excel and fill in the values donot change any entries obtained in the excel otherwise the uploading script will be corrupted.
    5)Select Execute Button in the subsequent screen choose the file with filled in entries make sure that the file is not open.
    Select the procesing mode as background to be on the safer side
    and press execute
    it will work if you have performed the above steps correctly.
    Regards,
    Manohar

  • Automatic User Creation

    Hi. I'm OIM newbie.
    Does anyone knows a document where i cand find how to automatically create a userid at reconcilliation time (before inserting the data in OIM), based on the firstname, lastname of the user?
    Wonder if there is any kind of preInsert Script Execution where i can apply Userid naming policies, verify if the user already exists and finally set the userid value.
    Thanks.

    public class GetGroups {
    tcUtilityFactory utilFactory = null;
    tcSignatureMessage moSignature = null;
    tcUserOperationsIntf moUserUtility = null;
    tcResultSet userResultSet,userSet = null;
    ConfigurationClient.ComplexSetting myConfig = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    final Hashtable env = myConfig.getAllSettings();
    Map v = new HashMap();
    public void UserGroups(String userid) {
    try {
    moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);
    moUserUtility =
    (tcUserOperationsIntf) utilFactory.getUtility("Thor.API.Operations.tcUserOperationsIntf");
    v.put("Users.User ID", userid);
    userSet = moUserUtility.findAllUsers(v);
    long user_key = userSet.getLongValue("Users.Key");
    userResultSet = moUserUtility.getGroups(user_key);
    if (userResultSet.getRowCount() > 0) {
    for (int i = 0; i < userResultSet.getRowCount(); i++) {
    userResultSet.goToRow(i);
    String grpName = userResultSet.getStringValue("Groups.Group Name");
    System.out.println( " Group Name " + grpName );
    } catch(Exception e){
    e.getMessage();
    }

  • New User Creation in an ABAP system and email notification

    Dear All,
    We are on SRM 7.0.
    When a new user is created in an ABAP System ( SRM 7.0) , we want an email to be sent to the user with the user name/password?. How can this be done?. Can this done by some config settings?.
    Thanks
    velu

    Hi,
    Probably you may need to define some workflow for the same. With the help of your ABAPER you can do it.
    Regards,
    Sharath Babu M

  • Automatic user creation. how?

    I'd like to make a program which automatically creates new users of Portal-to-go. Anyone knows how can i do it?
    thanks
    Giovanni

    one way to create users automatically
    is via the loadxml interface...
    (which is used by the download and upload
    batch files in <oracleHome>/panama/sample
    directory).
    One thing disturbing is that this class
    has some calls to "exit()", so it's hard
    to use it in a loop.... At least in PTG
    1.02.
    Regards
    SP
    null

  • Automate User creation using PowerShell ShowUI

    What I would like to do is create a GUI to create users in AD.  The following is what I need it to do.
    1. Need to copy another user to get the group information
    2. needs to add address, Telephone#, IP phone#, Discription, email, Office, Display name, Job title, Department, company, and manager.
    I have found some scripts that may help.  I am having some problems editing them. 
    Thanks for any help you can give me.

    A good book on Windows Forms.
    Your question is very vague.  "I have some scripts" is not very helpful.
    Try asking a specific question.
    ¯\_(ツ)_/¯

  • Automatic Remittances Creation Program (SRS) fails with ARZCAR: Error from main.

    Gurus:
    We have this request that fails - but only at 4am (other scheduled runs it completes fine)
    The error is
    ARZCAR: Error from main.
    Any ideas much apperciated!!
    11.2.0.3
    11.5.10.2
    RHEL 5

    +---------------------------------------------------------------------------+
    Receivables: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    ARZCAR_REMIT_SRS module: Automatic Remittances Creation Program (SRS)
    +---------------------------------------------------------------------------+
    Current system time is 11-NOV-2013 04:00:24
    +---------------------------------------------------------------------------+
      BATCH Date : 2013/11/10 00:00:00
    Convert date parm
    prepay_flag: <N>
    Exception Code <1>
    Batch ID: <>
    main: Error from Batch Id Generation.
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    04:00:24 :Auto Remittance Batch Generation
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    Successfully resubmitted concurrent program ARZCAR_REMIT_SRS with request ID 19366567 to start at 12-NOV-2013 04:00:00 (ROUTINE=AFPSRS)
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    ARZCAR: Error from main.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 11-NOV-2013 04:00:24
    +---------------------------------------------------------------------------+

  • Automatically assign user roles on user creation

    Hi,
    I have a scenario where i am creating database users in Oracle database and we need that no matter from where the database users are created they have a couple of roles automatically assigned to them.
    How can this be done?
    Quick response will be very helpful.
    UZ

    post and wait for a valid answer more than 20 minutes, search by yourself at oracle documentation less than 5 minutes. worth it?
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_8003.htm
    a trick --> group of roles = profile
    another trick --> profile can be add in the user creation
    Edited by: Fran on 26-feb-2013 2:17

  • How to create automatically users&roles in CUA and in chlid systems?

    Hi,
    i have a CUA on a 2 chlid R/3 systems (test and training) and 2 portal systems (test and training).
    i need to create a web application to create automatically users test and users training in CUA and see them in the R/3 chlid systems and at the same time to create autmatically a roles in CUA and R/3 chlid systems for those users (we sppose that the role is already stored in a table).
    are there any standard BAPI or Funcion modules that can do this job?
    is the role created automatically in CUA can be seen automaticall in the portal child system?
    any help?
    Thanks&Best regards

    You can use one of the various ways Java EE provides you, e.g. container managed authentication.
    It's also all in the Java EE tutorial: [http://java.sun.com/javaee/5/docs/tutorial/doc/bncas.html].
    You can configure it in the application server as well: [http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html].
    Here is an example how to use it in JSF: [http://ocpsoft.com/java/acegi-spring-security-jsf-login-page/].

  • How to create automatically users&roles in CUA and child systems

    Hi,
    i have a CUA on a 2 chlid R/3 systems (test and training) and 2 portal systems (test and training).
    i need to create a web application to create automatically users test and users training in CUA and see them in the R/3 chlid systems and at the same time to create autmatically a roles in CUA and R/3 chlid systems for those users (we sppose that the role is already stored in a table).
    are there any standard BAPI or Funcion modules that can do this job?
    is the role created automatically in CUA can be seen automaticall in the portal child system?
    any help?
    Thanks&Best regards

    Thank you all. I got the solution.
    Regards
    Rajesh

  • HT2602 If i download mountain lion will all user accounts use this operating system automatically?

    If i download mountain lion will all user accounts use this operating system automatically?  Or do I need to download it for each user... Its taking ages to download too.

    Welcome to the Apple Support Communities
    When you upgrade the operating system, all users are upgraded to be used with the new version, so you won't have to upgrade OS X each time for all your users

Maybe you are looking for

  • Can't I like a review without Ping?

    I just upgraded to the latest version of iTunes and now apparently I can't rate someone else's review without signing up for Ping. (When I click on "Like" under a review it says "This requires Ping.") I have Ping turned off and have absolutely no des

  • Web Service With Dynamic URL (Very Basic Conceptual Question)

    Hi everyone, I would like to employ JAX-WS to generate and publish a web service along with a web-based client which uses the service. The problem is: I want to deliver both the server (with its service) and the client to a customer, who will install

  • Using components in actionscript project

    Sorry if my question sounds dumb, but I just started learning AS3. I'm trying to use UI components in an ActionScript project. I can't import the definition of mx.controls classes such as Button or CheckBox. Here's the code I'm using: package { impor

  • When I watch videos/movies they buffer every few minutes, how do I resolve.

    HP Touchsmat 610 1150XT Windows 7 home premium This is a new computer and it has always performed this way.

  • Closed Captioned on Apple TV

    Good morning, I have just recently installed my apple tv. I have an a sony amplifier and have directv and a blue ray player conected to my samsung tv. I have been able to use the option of closed caption in my directv biut not in my apple tv. I have