User creation script

Hi,
on 11g R2, in wich table can I find the CREATE USER command line used for a created user ?
Thanks.

Mihael wrote:
Mihael dont you think it will be more easy to use select dbms_metadata.get_ddl('USER','SCOTT') from dual rather than data pump's export ?Okay, but what about additional info, quotas, grants, privs..Check this example
how to get ddl of users and roles?

Similar Messages

  • Bulk user creation script

    I need to create 50k Users from a SQL database into AD. Can some one provide me with a PS script that reads from a csv file for the fields
    First
    Last
    UPN
    Email address
    Sam account name
    Unique passwords (exported from SQL)
    Thustle

    Prewritten scripts can be found in the repository:
    https://gallery.technet.microsoft.com/scriptcenter
    If you can't find what you're looking for and you can't write your own, you can request a script here:
    https://gallery.technet.microsoft.com/scriptcenter/site/requests
    If you decide to try to write your own, look into what clayman2 has posted and let us know if you have any specific questions.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Fits attribute on user id during user creation (Cont)

    Hi Experts,
    A little time ago , we posted some doubt regarding of how can we fits the attribute userID during user creation on User Interface.
    The previous discussion was posted here:
    "Fits attribute on user id during user creation"
    Link abou our issue "scn.sap.com/thread/3532549"
    As the Correct Answer:
    Alternative 2, add a To IdentityStore pass as part of the task workflow where your logic is implemented in a jscript:
    MSKEYVALUE=%MSKEYVALUE%
    ****AD_USER_ID=$FUNCTION.GENADUSERID(%MX_FIRSTNAME%!!%MX_LASTNAME%)$$
    The script is running very well, but when we create a new employee on HR System (No SAP) this this script is not running just for this new user but for all other users already exitents on IDM. The script increase in Mass an not just for new user.
    Does anyone know if this can be related with delta configuration, or this kind of validation ( create just for new employe placed on HR) needs to be done inside the script?
    THank you very much.
    Miguel

    Hello Miguel,
    is the "Create Identity"-task called by the HR-update-job?
    The screenshot in the old thread just shows the three inputs. I guess, there are some more in the used task. Did you check, if the other lines have the dot as a prefix, so that these attributes are only filled (and therefor the script only runs), when the entry is created, but not updated?
    If yes and it's missing for those two attributes, just add it.
    Regards,
    Steffi.

  • 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

  • Stored Outline Creation script for review

    DB version:10gR2
    I am new to stored Outlines and I've been asked to review a Stored Outline Creation script. This is the script
    -- Log in as SYS
    -- Grant necessary privileges to the User executing SQL in question.
    grant create any outline to rec_sch
    grant execute on dbms_outln to rec_sch
    grant execute on dbms_outln_edit to rec_sch
    -- Connect to that user(rec_sch) to create the outline
    select name, category, used, sql_text   from  dba_outlines;
    ALTER SESSION SET NLS_DATE_FORMAT='DD-MON-YYYY';
    alter session set create_stored_outlines = TRUE;
    declare
    v_sqlstring varchar2(5000);
    begin
    v_sqlstring:= 'The SQL in Question';
    execute immediate v_sqlstring;
    end;
    --After granting the UPDATE privilege on the outln.ol$ table to rec_sh user
    --log in as rec_sh
    alter session set create_stored_outlines = FALSE;
    ALTER SYSTEM set use_stored_outlines = default;
    update <font color="red"><b>outln.ol$</b></font>
    set sql_text ='The SQL in Question';Is this script Ok?
    Message was edited by:
    user609308

    One error i didn't suspect -> don't using SID with lowercase and uppercase in the name.
    Thing i've forgotten to say: variables have to be set both in the .bat and the first .sql but they have to match too with values in the init.ora. That why i would like to simplify all these declarations with unifying them into a single file.
    If somebody can help me, please
    Tif

  • Mass user creation error

    Hi all,
    I want to do mass user creation using ecatt.
    After I run the test script I am getting the following error
    uslogond-ustyp input value is longer than screen field.
    Please provide solution to solve this error.
    Regards,
    R.Suganya.

    Hi
    In your script, you need to edit the part where you select Dialog user type and replace it with User Type = A
    You may need to re-record your script but this is what is causing the problem.  It is expecting the single character, not the word Dialog.  It's just a "feature" of CATTS/eCATTS
    Cheers
    Alex
    p.s. I also found this thread which covers the same:  Dropdown box value in the seCatt script
    Edited by: Alex Ayers on Jul 17, 2008 12:19 PM

  • Get "Creation Script" of the existing table ( in SQL database) using C# and without using SMO dlls

    Hi All,
    I need to get the "Creation Script" of the existing table using c# and without using SMO dlls (is it possible? I don't know).
    I.e. In SQL Management Studio -> right click on any table -> Script table as -> Create To  - > open in the new query editor window. This will give you the schema of the table with the constraints of the table.
    For E.g. In Northwind database, for the table "Categories", I would like to get it as show below
    USE [Northwind]
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[Categories](
        [CategoryID] [int] IDENTITY(1,1) NOT NULL,
        [CategoryName] [nvarchar](15) NOT NULL,
        [Description] [ntext] NULL,
        [Picture] [image] NULL,
     CONSTRAINT [PK_Categories] PRIMARY KEY CLUSTERED
        [CategoryID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
    GO
    I would like to get the same schema using c#. Please help.
    Thanks & Regards,
    Kalai.

    SMO is the easiest way to get this. This is what Management Studio uses. If you can't use SMO, get a Profiler trace of the queries that SMO executes when generating the script and execute the same using ADO.NET.
    Regards,
    Farooq Mahmud
    Support Escalation Engineer 
    •  Microsoft Health Solutions Group

  • How to change the Default login script and the USER login script in Netware3.12

    I need to cut down the disk map from Neware 3.12 in Win98 client's PC.
    please tell me
    how to change the Default login script and the USER login script in
    Netware3.12 ?
    Or is there any other ways to do this thing?
    Thanks a lot!

    On 4/6/2006 [email protected] wrote:
    > how to change the Default login script and the USER login script in
    > Netware3.12 ?
    Please repost in the discontinued.forums.
    Edison Ortiz
    Novell Product Support Forum SysOp
    (No Email Support, Thanks !)

  • Multiple user creation in R12 and migration of users

    I would like to know how we can automate a process of user creation in R12, or is there a way to create multiple users in Ebiz with respective responsibilities.
    Second case is, migration of users from one instance to another. The problem out here is selective users not all?
    Regards

    Pl search the forums for FND_USER package - you will find several hits that show how this package can be used in a programmatic fashion to bulk create new users and assign responsibilities. Examples are also available on My Oracle Support.
    To migrate user, use FNDLOAD. See this doc - you will also find hits in these forums if you search.
    376469.1 - Can FNDLOAD Migrate User Accounts Without Forcing Users To Change Their Passwords?
    HTH
    Srini

  • No active writeable datasource found for user creation, check your Persiste

    HI SAP Guru's
    Suddenly when I am login in Portal with J2EE_ADMIN or any user , I am getting error
    You are not authorized to access this application; contact your system administrator
    and when I am going to create user in identity management I am getting below error
    Current user has user creation permissions in the UME, but cannot create users in the back-end system (data source). The original and possibly untranslated message was: "No active writeable datasource found for user creation, check your Persistence Configuration.".
    I have searched all related treads in SDN but no success
    Please help.
    Thanks & Regards
    Vinay Patel

    Dear all,
    I was searching the community because I had this same error and there was no answer of how it was fixed. So I'm sending how I fixed today in a customer environment.
    1. Go to portal  http://<portal>/webdynpro/dispatcher/sap.com/tcsecumewdumeadmin/UmeAdminApp
    - select configuration
    - folder "sap system based in abap"
    - do the conection test
    If the test fails, log on in client 001 and change user SAPJSF:
    - assign role SAP_BC_JSF_COMMUNICATION (only this one) and one profile that has permission to RFC logon
    - you can change the password too
    STOP/START ABAP+JAVA
    Go again to the portal above and test connection again. The tests should now be OK.
    2. Go to portal  http://<portal>/irj
    - Log on with administrator user
    Now you should be able to create an user.

  • New sap user creation

    Hi All SAP experts,
    My company has implemented 2 Systems SAP Landscape with one development and one production server which are running on R/3 Enterprise 4.7 (Kernel Release 6.20) with Microsoft SQL 2000 as database server.
    I have the following questions regarding new sap user creation by using user copy function.
    1.When I request to create new SAP User by using user copy function ,should I just create the user acct in DEV and transport it to PROD System? If yes, how could I do that?
    2.When I request to create new SAP User by using user copy function, can I just create it on PROD System only? If yes, what is the impact?
    3.When using User copy function to create new user acct, should I select all parts (like adress ,defaults,reference user, user groups.....) of the existing user to be cloned to new user acct?
    Thanks.
    Leon

    Hi Leon,
    Answer to your questions in their respective order:
    1. You can create user in DEV and then make remote client copy to PRD system using scc9 t-code. Here you can choose user accounts and authorizations for the copy. ( Rem: Data will be overwritten in target system when copied).
    You can also use client export/import(scc8/scc7)
    But, When you do the client import from the exported files using STMS,you will have to select only one of the transport requests and then STMS automatically selects the other requests for you.
    Then it will show you the different transport requests that you have created during your export, the client copy profile and the target system and client. The customizing and application data is deleted in the target client before copying for all profiles except SAP_USER. This is technically unavoidable (and hence the data will be overwritten).
    So if you can afford overwritting of user data in target client , you can go with the above procedure.
    2. Using  user copy in su01, you can copy one user to another user only in that client and is confined to that system only. So yes, If you want 2 or more users to have same authorizations, profiles ,etc etc.. you can choose this in PROD system.
    3. It depends.. If you want user to be in same group, then you can choose user groups. If you want them to have same authorizations , you can choose roles and profiles... If you want them to have same company address and others,... you can select address.. and so on.
    Also below link provides required steps in case you choose local/ remote client copy:
    http://www.sap-basis-abap.com/bc/client-copy-by-using-scc8-and-scc7.htm
    Hope this helps...
    Thanks,
    Ajith
    Edited by: Ajith Kamath on Oct 20, 2009 8:28 AM

  • Solution Manager 4.0,  Red hat Linux 4.0 ES & AS, JSF user creation error

    Dear SAP Gurus,  Please advise.
    I have problem during the installation of SAP SOL Man4.0
    Input:
    I am using <b>SOL Man 4.0</b> with Linux version 2004s version2
    1. <b>Red Hat 4.0 ES</b> , 2. <b>Red hat 4.0 AS</b> (Tried both)
    <b>Java 1.4.2_09
    java Cripto: 1.4.2</b>
    when it go the step 34 out of 44 when it create JSF user creation, I am getting error
    It could not able to create Java user.
    It stops. this error is coming during sapjsf user creation.
    is this bug in SOL man 4.0, any one able to successfully install on Linux.
    I see lot of people had probem while doing on windows, but no one tried on Linux.
    I really appriciate, if some one can help on this.
    Thanks
    Ashok .K
    [email protected]

    Dear Raguraman C ,
    Thanks for your help, here is the log i got, during installation step of <b>Phase 33 of 45 JSF user creation</b>.
    Please analyse, advise me what Java settings need to be changed.
    Thanks
    Ashok .K
    [email protected]
    INFO       2006-12-29 00:06:38
    Execute step createJSF of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind |ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2|0.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.jlaunch.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:264]
               CSyCurrentProcessEnvironmentImpl::setGroup(PSyGroup)
    Real group id set to 501.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:543]
               CSyCurrentProcessEnvironmentImpl::setEffectiveGroup(PSyGroup)
    Effective group id set to 501.
    INFO       2006-12-29 00:06:39 [syxxccuren.cpp:105]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO       2006-12-29 00:06:39
               CJSlibModule::writeInfo_impl()
    Output of /usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.tools.UserCheck / tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/O RA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install -c sysn r=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SAPJSF -p XXXXXX - r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message is written to the logfile /tmp/sapi nst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    WARNING    2006-12-29 00:09:27
               CJSlibModule::writeWarning_impl()
    Execution of the command "/usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.t ools.UserCheck /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir /SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS /install -c sysnr=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SA PJSF -p XXXXXX -r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message" finished with retu rn code 4. Output:
    Dec 29, 2006 12:06:44... Info: User management tool (com.sap.security.tools.UserCheck) called for  action "checkCreate"
    Dec 29, 2006 12:06:44... Info: Connected to backend system SM1 client 001 as user DDIC
    Dec 29, 2006 12:06:45... Info: Called for user SAPJSF
    Dec 29, 2006 12:06:49... Info: Formal password check successful
    Dec 29, 2006 12:06:49... Info: Will create user SAPJSF
    Dec 29, 2006 12:09:20... Info: Created user SAPJSF of type A with reference user <none>
    Dec 29, 2006 12:09:22... Warning: Error during creation of user SAPJSF. Will remove user again to  ensure clean exit state
    Dec 29, 2006 12:09:27... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Invalid request.
            at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
            at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1395)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3917)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3354)
            at com.sap.security.tools.UserCheck.createUser(UserCheck.java:1876)
            at com.sap.security.tools.UserCheck.main(UserCheck.java:289)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Dec 29, 2006 12:09:27... Info: Leaving with return code 4
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.clone.
    ERROR      2006-12-29 00:09:27
               CJSlibModule::writeError_impl()
    CJS-30196  Invalid request.
    ERROR      2006-12-29 00:09:27
    FCO-00011  The step createJSF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind |ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2 |0|createJSF was executed with status ERROR .
    Ashok kalakota My coment:
    Phase 33 of 45 JSF user creation
    INFO       2006-12-29 00:06:38
    Execute step createJSF of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind |ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2|0.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.jlaunch.
    INFO       2006-12-29 00:06:39 [syuxcpath.cpp:351]
               CSyPath::createFile()
    Creating file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:264]
               CSyCurrentProcessEnvironmentImpl::setGroup(PSyGroup)
    Real group id set to 501.
    INFO       2006-12-29 00:06:39 [syuxccuren.cpp:543]
               CSyCurrentProcessEnvironmentImpl::setEffectiveGroup(PSyGroup)
    Effective group id set to 501.
    INFO       2006-12-29 00:06:39 [syxxccuren.cpp:105]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(iastring)
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO       2006-12-29 00:06:39
               CJSlibModule::writeInfo_impl()
    Output of /usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.tools.UserCheck / tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/O RA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install -c sysn r=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SAPJSF -p XXXXXX - r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message is written to the logfile /tmp/sapi nst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/UserCheck.log.
    WARNING    2006-12-29 00:09:27
               CJSlibModule::writeWarning_impl()
    Execution of the command "/usr/sap/SM1/DVEBMGS01/exe/jlaunch UserCheck.jlaunch com.sap.security.t ools.UserCheck /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir /SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS /install -c sysnr=01 -c ashost=machine5 -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SA PJSF -p XXXXXX -r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message" finished with retu rn code 4. Output:
    Dec 29, 2006 12:06:44... Info: User management tool (com.sap.security.tools.UserCheck) called for  action "checkCreate"
    Dec 29, 2006 12:06:44... Info: Connected to backend system SM1 client 001 as user DDIC
    Dec 29, 2006 12:06:45... Info: Called for user SAPJSF
    Dec 29, 2006 12:06:49... Info: Formal password check successful
    Dec 29, 2006 12:06:49... Info: Will create user SAPJSF
    Dec 29, 2006 12:09:20... Info: Created user SAPJSF of type A with reference user <none>
    Dec 29, 2006 12:09:22... Warning: Error during creation of user SAPJSF. Will remove user again to  ensure clean exit state
    Dec 29, 2006 12:09:27... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Invalid request.
            at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
            at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1395)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3917)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3354)
            at com.sap.security.tools.UserCheck.createUser(UserCheck.java:1876)
            at com.sap.security.tools.UserCheck.main(UserCheck.java:289)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Dec 29, 2006 12:09:27... Info: Leaving with return code 4
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.
    INFO       2006-12-29 00:09:27 [syuxcfile.cpp:280]
               CSyFileImpl::remove()
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.clone.
    ERROR      2006-12-29 00:09:27
               CJSlibModule::writeError_impl()
    CJS-30196  Invalid request.
    ERROR      2006-12-29 00:09:27
    FCO-00011  The step createJSF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind |ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2 |0|createJSF was executed with status ERROR .
    [root@machine5 AS]# cat UserCheck.log
    Dec 29, 2006 12:06:44... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Dec 29, 2006 12:06:44... Info: Connected to backend system SM1 client 001 as user DDIC
    Dec 29, 2006 12:06:45... Info: Called for user SAPJSF
    Dec 29, 2006 12:06:49... Info: Formal password check successful
    Dec 29, 2006 12:06:49... Info: Will create user SAPJSF
    Dec 29, 2006 12:09:20... Info: Created user SAPJSF of type A with reference user <none>
    Dec 29, 2006 12:09:22... Warning: Error during creation of user SAPJSF. Will remove user again to ensure clean exit state
    Dec 29, 2006 12:09:27... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Invalid request.
            at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
            at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1395)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3917)
            at com.sap.mw.jco.JCO$Client.execute(JCO.java:3354)
            at com.sap.security.tools.UserCheck.createUser(UserCheck.java:1876)
            at com.sap.security.tools.UserCheck.main(UserCheck.java:289)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Dec 29, 2006 12:09:27... Info: Leaving with return code 4
    [root@machine5 AS]# pwd
    /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS
    [root@machine5 AS]#

  • User Creation at the time of Self Registration not via Admin (xelsysadm)

    Hello there,
    I had a question related to User Creation in OIM via Self Registration (Create Request) and via "xelsysadm" itself creating one user via the web console.
    Can I do this -
    When a user does self registration then how can I directly create a user in OIM?
    Right now: the user's request needs to be approved by xelsysadm first and then only that user can login into OIM and then only that user can be seen in OIM - I want to remove the "xelsysadm" gateway of approving the request.
    I want that user directly to be present in the OIM as soon as he/she fills out it's information in the self registration pages. How can we do this?
    Also, I want an email to be sent to the user to its email ID that he/she provided at the time of self regn containing its User ID and password in it from the xelsysadm email id. How can I do that?
    TIA for the help,
    - oidm.

    Hi oidm
    User Registration is R.O. which used for User Self Registration.
    But if you see it carefully, there's no Approve Task (not workflow) in it.
    It has three task
    1) SV
    2) PI
    3) AAD
    And if you see the request while approval it shows Awaiting Approval Data means it stuck in AAD.
    Try to modify this, I can't as I don have any extra machine with. Try to modify this. It may not allow you to update it, you'll have to change its security level in Database level.
    *Awaiting Approval Data  System Administrator [XELSYSADM] Pending*
    I hope it helps you to start R n D.

  • Need API for user creation

    Dear All,
    I need to use bulk user creation through API. Please advice which API i use to resolve this issue.
    Thanks
    Rehan

    I need to use bulk user creation through API. Please advice which API i use to resolve this issue.FND_USER_PKG.CREATEUSER
    FND_USER_PKG
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    PACKAGE: APPS.FND_USER_PKG
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=FND_USER_PKG&c_owner=APPS&c_type=PACKAGE
    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

Maybe you are looking for

  • I increased my font with zoom for the first time & got it too large. It will not decrease using Control & minus sign.

    I use Firefox 4. Windows XP. I have tremors & must have accidentally clicked on something that made it open up with weird colors like it was in safe mode. It was in 8-bit so put it back on 32-bit and 1280 x 1024 pixels. Then the font was so small it

  • Variable for fiscal year

    Hello all, I have a requirement to determine the current year in BPS. I made a variable and wrote a function module. The code I have is: DATA: DATE LIKE SY-DATUM,               CURRYEAR TYPE C,                  CHARSEL TYPE UPC_YS_CHARSEL. CLEAR: CHA

  • [SOLVED] Ubuntu One, networkmanager vs wicd

    ubuntuone-control-panel-qt works, and I can login to Ubuntu One, but no files are synced. $ u1sdtool -s State: READY connection: With User Not Network description: ready to connect is_connected: False is_error: False is_online: False queues: IDLE $ c

  • "dreamweaver encountered an internal data error" - can't connect to server (CS6)

    Since last week I can't connect to all of my websites using Dreamweaver. When I click on connect or switch to the server view I instantly get the error message "dreamweaver encountered an internal data error". The websites are on different servers an

  • IP ADDRESSING TRANSITION

    Hi Fellows; I have been pondering on this solution since morning but I now want to share with you the brain storming. We have a client that has proposed a change of ip addressing. The routing protocol in that is running on the router is EIGRP. With t