Issues while creating new user in SAP HANA

Hello Team
                   When i am trying to create a new user in SAP HANA studio i can see that there has been a new field added of DATA validity where there are two options  a) Valid From and b)Valid Unitl . No matter whatever dates i give in this i got this error which creating the user . Status :- inactive
Reason :- outside validity period . PFA screen shot attached below . Please suggest what dates should be given in  this field with some sample example .
Regards

Prag,
Try this. Execute the following in a SQL window started by a userid that has been granted the USER ADMIN system privilege:
ALTER USER BODS1 VALID FROM NOW    UNTIL FOREVER;
You can use a date instead of FOREVER --- '2016-12-31 23:59'.
Good luck,
Robert

Similar Messages

  • Error while creating new user in Oracle 11i EBS

    I am getting following error while creating new user. How solve this issue?
    “Unable to load java class % specified profile option SIGNON_PASSWORD_CUSTOM. Please verify that the class exists and that it implements the java interface oracle.apps.fnd.security.PasswordValidation”.

    Following is the text from Note for Custom Password Validation logic:
    Customers who wish to use their own password validation logic may do
      so by writing their own Java classes that implement the
      oracle.apps.fnd.security.PasswordValidation Java interface.  The
      interface requires 3 methods to be implemented:
      1) public boolean validate(String user, String password)
        - This method takes a username and password, and then returns true
      or false, indicating whether the user's password is valid or invalid,
      respectively.
      2) public String getErrorStackMessageName()
        - This method returns the name of the message to display when the
      user's password is deemed invalid (i.e., the validate() method returns
      false).
      3) public String getErrorStackApplicationName()
        - This method returns the application shortname for the
      aforementioned error message.
      After writing the Java class to perform customized password
      validation, the customer must then set the value of the profile option
      SIGNON_PASSWORD_CUSTOM to be the full name of the class.  If, for
      example, the name of the Java class is
      oracle.apps.fnd.security.AppsPasswordValidation, then the value of the
      SIGNON_PASSWORD_CUSTOM profile option must be
      oracle.apps.fnd.security.AppsPasswordValidation.  Note that AOL/J
      will attempt to load this class dynamically.  Hence it is necessary to
      make the class accessible by AOL/J.  This means that in Forms, the
      class must first be loaded into the database using the loadjava
      command.
    You will need to apply the following patches for 11.5.1:
       1344802
       1363919
       1472974
       1351004
       1377615
    You will need to apply the following patches for 11.5.2:
       1377615

  • Error while creating new user

    Hi
    I HAVE LOGGED INTO oracle Portal with user : portal30 passwd : portal30.
    After selecteing the administer tab when i click on create new users I am getting error
    Error: (WWC-00000) with a back link ( which does not work ). I didn't get anything other than this on screen.
    I have tried to found out the soln but never succeded. What you think would be the reason for getting this error?
    do tell me on [email protected]
    Regards and thanks in advance
    Kedar

    Kedar,
    You may be able to find help on this by searching the 9iAS Portal forum, this forum is for questons relating specifically related to the PDK.
    thanks,
    Sue

  • Issue while creating Virtual provider based on HANA Model in SAP BI

    Dear Experts,
    I try to create a Virtual Provider based on HANA Model. However receive below error "Unable to find SAP HANA information model".
    I tried to assign the appropriate package and HANA model while creation of Virtual provider in SAP BI using RSA1 Transaction.
    Do I need to enable any services/ settings, so that I can able to use HANA Models in SAP BI?
    Do I required any specific authorizations either from BI or HANA side?
    Could some one kindly help to resolve this issue.
    Thanks,
    Khader

    Hi Srinivasan,
    Thank you for your response.
    I have already gone through the content provided via above links.
    However I face issue while activating the virutual provider with warning message"Unable to find SAP HANA information model". Due to which I am not able to see any data from Virtual Provider in BW.
    Do we need to have any special access/ role in BW or HANA system in order to consume HANA models in BW (Vitual Provider in this case)?
    I am trying to consume HANA Models in BW for the first time.
    So any more clues can be helpful.
    Thanks,
    Khader

  • Internal error while creating new company in sap b1 pl 05

    Hi all
    I installed sap b1 server and clint in PL 05 for USA localization but when I m trying to create new company from login screen system start to create tables but after some time its giving error ''Internal error 101, then system showing that company in list but its not working
    Please help me out
    RIcky

    Hi Ricky,
    We had a similar issue and found we had to create the database on another server & restore it. I think, but didn't get around to proving, that the issue occurs where the license service is running using trusted connections

  • Error while creating new user via new MDM API

    Hi
    I have two questions:
    1) Is it possible to create a user in MDM via MDM4J?
    2) I am trying to create a user through new MDM API (not the MDM4J). When I execute the command CreateUserCommand, I get following error:
    com.sap.mdm.commands.CommandException: com.sap.mdm.internal.protocol.manual.ServerException: MDM repository data is out-of-date or is locked by another MDM Server. Refresh the data and try the operation again. If the error persists, contact the system administrator.
         at com.sap.mdm.security.commands.CreateUserCommand.execute(CreateUserCommand.java:93)
         at demo.dm.GetRoleList.main(GetRoleList.java:206)
    Here is the code that I execute:
              CreateUserCommand createusercommand =
                   new CreateUserCommand(connections);
              createusercommand.setSession(repsessionId);
              UserProperties userpp = new UserProperties();
              userpp.setName("Vijendra");
              //userpp.setRoleIds(roleids);
              createusercommand.setUser(userpp);
              //createusercommand.setInChangeStamp(-1);
              //System.out.println(createusercommand.getOutChangeStamp());
              try {
                   createusercommand.execute();
              } catch (CommandException e) {
                   e.printStackTrace();
                   return;
    Thanks
    Vijendra
    Edited by: Vijendra Bhanot on Feb 22, 2008 6:42 PM
    Edited by: Vijendra Bhanot on Feb 22, 2008 6:49 PM

    Hi
    I am also getting same exception.
    com.sap.mdm.internal.protocol.manual.ServerException: MDM repository data is out-of-date or is locked by another MDM Server. Refresh the data and try the operation again. If the error persists, contact the system administrator.
    Please help me.
    Thanks & Regards
    Vinit

  • Issue in creating new user in AD

    Hi all,
    I am running a script to add new user to the AD. Before adding I am checking whether the user already exists or not.
    $sam = "13653123"
    try{
    get-aduser -Identity $sam -ErrorAction Stop
    catch [Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException]
    $error1= [System.Windows.Forms.MessageBox]::Show("ERROR : Account Not found")
    $SamAccountName = $sam
    $gn = "Jack Sparrow"
    $Initials = "ZX"
    $dn = "$gn "+" $Initials"
    $Department = "1260"
    $title = "AM"
    $pwd1 = read-host "Please enter the password"
    $pwd2 = read-host "Please enter the password"
    if($pwd1 -eq $pwd2)
    $pwd = $pwd1 = $pwd2
    try
    $userprinicpalname = $SamAccountName + "@XXX.com"
    New-ADUser -SamAccountName $SamAccountName -UserPrincipalName $userprinicpalname -GivenName $gn -Initials $Initials -Name $dn -DisplayName $dn -Title $title -Department $Department -Office $Department -Path "OU=XXXX,DC=XXX,DC=com" -AccountPassword (ConvertTo-SecureString $pwd -AsPlainText -force) -Enabled $True -PasswordNeverExpires $False -ErrorAction Stop
    catch [Microsoft.ActiveDirectory.Management.ADPasswordComplexityException]
    $error7= [System.Windows.Forms.MessageBox]::Show("ERROR : The password you entered doesnot meet the complexity set in the Password Policy" )
    break
    else
    $error2= [System.Windows.Forms.MessageBox]::Show("ERROR : passwords donot match")
    The exact issue is that when the password entered does not meet the password policy requirements, it is throwing the error provided in the catch block [
    atch [Microsoft.ActiveDirectory.Management.ADPasswordComplexityException]]But it is still creating an account in AD and it is showing as disabled.My concern is that when any error found and caught in the catch block the user should not be created. Any suggestions on this. Please help me out!!!
    Naveen Basati

    Hi Naveen,
    the only way to ensure this is by validating the Password yourself:
    $HasNumber = $pwd -match "\d"
    $HasSymbol = $pwd -match "\p{S}"
    $HasUpperCase = $pwd -cmatch "[A-Z]"
    $HasLowerCase = $pwd -cmatch "[a-z]"
    Those should help.
    Cheers,
    Fred
    There's no place like 127.0.0.1
    Depending on the complexity requirements (there are some third party applications that can check for things like dictionary matches), it might be easier to set up a dummy account, and test the password against that using Set-ADAccountPassword before you try
    to add the new account with that password.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Run time error while creating new user??????

    HI Gurus,
    when i am creating a user in crm 7.0 server it s going into dump.
    DESCRIPTION:
    Category               Internal Kernel Error
    Runtime Errors         DDIC_TYPE_REF_ACCESS_ERROR
    Application Component  BC-ABA-LA
    Date and Time          23.02.2012 22:36:02
    What happened?
    Error in the SAP kernel.
    The current ABAP "SAPLBUPA_INTERFACE_OUTBOUND" program had to be terminated
    because the ABAP processor detected an internal system error.
    Short text
        Internal error in DDIC structure description
    Error analysis
        There is an error in the structure description of the Dictionary type
        "BUS_EI_BUPA_CENTRAL". The type references the type "BUS_EI_BUPA_CENTRAL_DATA".
        Error type: "abap type or abap length inconsistent"
    Information on where terminated
        The termination occurred during generation of the ABAP/4 program
         "SAPLBUPA_INTERFACE_OUTBOUND".
        The termination occurred in line 13
        of the source code of program "LBUPA_INTERFACE_OUTBOUND$06" (when calling the
         editor 130).
    Source Code Extract
    Line  SourceCde
        1 *******************************************************************
        2 *   THIS FILE IS GENERATED BY THE FUNCTION LIBRARY.               *
        3 *   NEVER CHANGE IT MANUALLY, PLEASE!                             *
        4 *******************************************************************
        5 FUNCTION $$UNIT$$ BUPA_OUTBOUND_BPS_FILL_CENTRAL
        6
        7     IMPORTING
        8        REFERENCE(IV_MODE) TYPE !CHAR1 OPTIONAL
        9     TABLES
       10        !IT_IDLIST STRUCTURE !BUS_EI_INSTANCE OPTIONAL
       11        !IT_FRAGMENTS TYPE !BUS_EI_FRAGMENT_T OPTIONAL
       12     CHANGING
    >>>>>        REFERENCE(CT_BP_EXTERN) TYPE !BUS_EI_EXTERN_T .
    REgards,
    Rajesh.

    Following is the text from Note for Custom Password Validation logic:
    Customers who wish to use their own password validation logic may do
      so by writing their own Java classes that implement the
      oracle.apps.fnd.security.PasswordValidation Java interface.  The
      interface requires 3 methods to be implemented:
      1) public boolean validate(String user, String password)
        - This method takes a username and password, and then returns true
      or false, indicating whether the user's password is valid or invalid,
      respectively.
      2) public String getErrorStackMessageName()
        - This method returns the name of the message to display when the
      user's password is deemed invalid (i.e., the validate() method returns
      false).
      3) public String getErrorStackApplicationName()
        - This method returns the application shortname for the
      aforementioned error message.
      After writing the Java class to perform customized password
      validation, the customer must then set the value of the profile option
      SIGNON_PASSWORD_CUSTOM to be the full name of the class.  If, for
      example, the name of the Java class is
      oracle.apps.fnd.security.AppsPasswordValidation, then the value of the
      SIGNON_PASSWORD_CUSTOM profile option must be
      oracle.apps.fnd.security.AppsPasswordValidation.  Note that AOL/J
      will attempt to load this class dynamically.  Hence it is necessary to
      make the class accessible by AOL/J.  This means that in Forms, the
      class must first be loaded into the database using the loadjava
      command.
    You will need to apply the following patches for 11.5.1:
       1344802
       1363919
       1472974
       1351004
       1377615
    You will need to apply the following patches for 11.5.2:
       1377615

  • Strange license issue while creating new isolation group

    Dear all,
    we just installed CPS M28.20-37214 on NW 7.0 SP 21.
    Now I want to create an isolation group and get following error:
    *10:30:27 AM: JCS-122045: Unlicensed feature: ProcessServerService.SAP.limit     *
    Error details:
    JCS-122035: Unable to persist: JCS-102081: License does not permit this modification for Isolation Group-object: Isolation Group
    And this is our free-of-charge license:
    CPS-Basic     ProcessServerService.SAP.ApplicationsAPI     true     
    CPS-Basic     ProcessServerService.SAP.SolutionManager     true     
    CPS-Basic     ProcessServerService.SAP.XBPExternal     true     
    CPS-Basic     ProcessServerService.SAP.limit     0     
    CPS-Basic     System.NamedUsers.limit     10     
    CPS-Basic     System.Production     true     
    CPS-Basic     company.contract     CPS-Basic     
    CPS-Basic     company.name     xxxxxxxx
    CPS-Basic     product.name     SAP Central Process Scheduling by Redwood     
    CPS-Basic     signature     3     
    CPS-Basic     system.id     SAP:xxxx
    This seems to be really strange 'cause I obligatory need a new isolation group to go on with configuration.
    Any ideas?
    Thanks in advance,
    Alex

    Dear Adrienne,
    I replaced the real system name and id with xxxx, just for security purposes.
    All roles have been created and should work fine.
    In the meantime I could isolate the problem: there is obviously a license issue when you have more than a main instance running.
    Tomorrow a workshop is on with Redwood in Sinsheim, Germany. I hope to get some hints.
    Best regards,
    Alex

  • Issue while creating Vehicel Quotation in SAP DBM

    Hi Experts,
    I have creted purchase order, Goods Receipt and Incoming invoice for a vehicel through /DBM/VSEARCH transaction.
    Now i am tring to create the sales quotion for the same vehicel, It is showing an error like" Vehicle item in order not found ".
    After that i tried to execute the VMS action for sales quotation in VELO trasaction, I am getting the error like " No reservation for the Vehicle".
    Please let me know what would be the reson for this error. Help me how to resolve this, You are rewarded accordingly.
    Thanks,
    Nagaprasadreddy Polu.

    Hi,
    Check the customizing settings in DBM:
    Ordertype:
    SPRO -> Logistics execution -> Dealer Business Managerment -> Order -> Ordertype -> Define Order Type
    Standard for vehicle quotation: ordertype 3001 with item category schema VQ
    Item type schema
    SPRO -> Logistics execution -> Dealer Business Managerment -> Order -> Item Category ->Define Schema for Item Category
    Standard item categories for schema VQ:
    G2TX Text
    P003 Vehicle
    P004 Vehicle Features
    P005 Vehicle Accessories
    P041 Update relevant Vehicle Features
    P051 Update relevant Vehicle Accessories
    Check also ordertype determination:
    SPRO -> Logistics execution -> Dealer Business Managerment -> Order -> Ordertype -> Order Type Schema -> Determination of Order Types
    Check also action control in DBM customzing:
    SPRO -> Logistics execution -> Dealer Business Managerment -> Order -> Order control -> Define action control
    Select criteria table /DBM/OE_EVAC_ENG and assign to event ORD_NEW with control code SD following actions:
    VS_ORD_NEW
    ITEM_NEW
    ORD_PRICING
    Regards
    Joachim

  • Creating new company in sap b1 8.8

    Hi
    While creating new company in SAP-B1 8.8, it's giving me the following information.
    "Company was not added to read-only DB user. Read-only DB user must be updated manually"
    I had also given the SITE password and created  the new company successfully.
    Can anyone help me on this please.
    regards
    Sriram.L

    Hi Deepak
    Thanks for Your response.
    I followed the steps you mentioned. While doing that, it's asking for Read Only Db User ID & Password.  If i give new ID & Password it gives the following information.
    "A Read Only DB USER is assigned for all Company Database, Adding a read only DB user is irreversible. Do you want to continue"
    Can you please guide me how this can be taken forward.
    regards
    Karthik

  • Issue while creating a new web part page (Safeunit.aspx) within a folder located under a Document Library.

    Hi, I am facing an issue while creating a new web part page (Safeunit.aspx) within a folder (Safematic Seal Support Systems) located under a Document Library (Product Information Documents).
    The path I am explaining:
    Going to the Document Library (Product Information Documents) --> now inside that, clicking on a folder (Wet Seal Support
    Systems) --> now inside the folder clicking on another sub-folder (Safematic Seal Support Systems) --> Here I want the web page Safeunit.aspx
    Issue is that when I reach to the required destination, and want to create the web page by clicking on 'Site Action' --> 'Create' --> 'Web Part Page', now while selecting the Document Library name from the drop-down list, I do use 'Product
    Information Documents' since the folder is inside this library only; but that create the page directly under the 'Product Information Documents' library, not under the sub-folder (Safematic Seal
    Support Systems).
    FYI, it is SP2007 version.
    Kindly assist in this. Thanks in advance.

    I see that you have the namespaces reference in your code.
    I think you have changed the NameSpace name of your code to CreateSPFolder, change the reference in all your manifest, and other files to point to the current namespace name. It should help.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How to create (or invite) new users in SAP JAM Enterprise edition?

    Our client has just purchased SAP Jam Enterprise as they want to integrate it with SAP Cloud for Customers (collaboration on service ticket resolution across departments).
    I have just logged in with the administrator account to what appears to be a SuccessFactors homepage. I can see how to get to Jam or to the Admin console. But there is no obvious way of creating new users so we can start running demos with the client.
    The JAM administrator guide does not seem to explain how to do that ???
    Does anybody have a quick tutorial on this topic?
    Cheers

    Hi Thierry,
    there are two guides which help you through the basic steps:
    At http://service.sap.com/rds-cfc-erp you can find a guide which describes the basic steps to configure SuccessFactors Platform including user management as a base. The document is part of a ZIP available in service market place and is called "Setting up SAP Jam for Integration with other SAP Solutions".
    Please be aware that this guide just covers the minimum steps. For a complete introduction we strongly recommend to register for the SAP Jam Academy and SuccessFactors Academy course available for partners.
    In addition there is the INTEGRATION: SAP Cloud for Customer + SAP Jam Guide available in servcice market place describing the actual configuraiton steps required for Jam/C4C integration: https://websmp206.sap-ag.de/~sapidb/012002523100002165402015E/1502_Config_CRM_HCI_COD.pdf
    Hope this helps,
    Ingo

  • Create new USER status in SAP PM

    My Client want to creat new user status as WORK COMPLETE in addition to TECO for Work Orders in SAP PM.
    Pls suggest if this is possible & can be done in Standard SAP or as an enhancement.
    Appreciate all feedback...
    Thanks
    Mudassar

    Hi Mudassar,
    TECO is system status and your client is asking for user status.
    Its common requirement and can easily be met using OIBS.
    create new status profile in OIBS with diff status and assign the same status profile to your order type.
    Thanks
    Rohan

  • Failed to create new user null

    All Experts
    I am getting the following error message when I am trying to start Java Engine. I am trying to add Java Add on to the ABAP Stack. This was taken from security.0.log .
    #1.5#001143312344001E00000003000006B400044C1E4BBCD4E7#1209592910253#/System/Security/UserStoreUME##com.sap.security.core.server.userstore.UserContextUME#######SAPEngine_System_Thread[impl:5]_14##0#0#Error#1#com.sap.security.core.server.userstore.UserContextUME#Plain###
    Failed to create new user null#
    #1.5#001143312344001E00000005000006B400044C1E4BBCFE64#1209592910253#/System/Security/UserStoreUME##com.sap.security.core.server.userstore.UserContextUME.engineCreateUser(String)#######SAPEngine_System_Thread[impl:5]_14##0#0#Info#1#com.sap.security.core.server.userstore.UserContextUME#Java###Created new user #1#<null>#
    #1.5#001143312344001E00000006000006B400044C1E4BBCFFBA#1209592910253#/System/Security/UserStoreUME##com.sap.security.core.server.userstore.UserContextUME#######SAPEngine_System_Thread[impl:5]_14##0#0#Error#1#/System/Security/UserStoreUME#Java###Error during creation of default users or role assignments: #1#
    Could not create user null: LOGONID_IS_NULL#
    #1.5#001143312344001E00000008000006B400044C1E4BBD03D0#1209592910253#/System/Security##com.sap.engine.services.userstore.UserContext.<init>(UserContextSpi, Properties)#######SAPEngine_System_Thread[impl:5]_14##0#0#Fatal#1#com.sap.engine.services.userstore#Plain###Can not instantiate UserContext with given properties.#
    #1.5#001143312344001E0000000B000006B400044C1E4BBD5C7C#1209592910284#/System/Security##com.sap.engine.services.security#######SAPEngine_System_Thread[impl:5]_14##0#0#Error#1#com.sap.engine.services.security#Java#security_0001#com.sap.engine.services.security.exceptions.SecurityResourceBundle#Unexpected exception:##
    Please suggest

    Hi Prasanna
    I am getting this error while installing the Java Add-on. The installation was in the last stage and there it got struck when it tried to reboot the java engine. I am using SAPJSF user to communicate with ABAP stack and it has the full authorizations. I even checked and see that SAPJSF user is not locked. I also tried with another user and still the same issue. As per the log it the java engine is able to login with the user, but it is trying to create a user and fialing there. I am not sure why it is creating this user.
    Regards,
    Mahesh

Maybe you are looking for

  • SRM Shopping Cart - how do you clear out custom fields on a SC create

    We have added custom fields to the Shopping cart header.  now when we use an existing shopping cart to create a new one (do a copy from within SRM UI) the data in these custom fields on the existing shopping cart is copied tothe new shopping cart.  W

  • Getting error in a cursor

    12/1 error :sql statement ignored 12/145 error: column not allowed here. 15/1 error: sql statement ignored 15/145 error: column not allowed here create or replace procedure pps is ccsal number; cursor comm is select salary+nvl(commission_pct,0)from e

  • Currency Field Problem

    Hi, I am new on ABAP and i am trying to understand currency fields.I used curr field with reference on cuky field. But I didnt understand logic of this subject. So if you tell me when i need to use curr and cuky to reference i will be pleased. Regard

  • How to parse raw mail message into JavaMail MimeMessage?

    Hello developers, I'm trying to implement the following functionality: * Postfix accepts incoming mail message and feeds it into java application * java application reads the input and parses it into JavaMail Message object There is no trouble with f

  • No progress wheel for Sent folder?

    What would cause there to be no progress wheel for sending mail? On my mom's PowerBook when she sends an email there is no indication that it's working. She has to wait until she hears the sent mail sound to be sure it worked. On my Mail I get a prog