SAP Login license expiry

Dear Friends,
When i am logging SAP (After entering Client, User ID and Passward) in my PC, i am getting the below error
Access refused,License expired
Please let me know where this date has to change. give me the exact settings where to change the date.
Thanks
Raju.

> this is IDES, not a original software to get a license from SAP.
IDES is original software as all other software from SAP is; IDES uses the same license policies as a normal installation.
You have you request a license via http://service.sap.com/licensekey, if you can't do that, then you are most likely using the software without a license and so the expiration is very valid.
Markus

Similar Messages

  • SAP* login locked !!!??? how can i upgrade my license?

    Hello gurus,
         My SAP* login of one of the system got locked, while updating the license. Now the thing is, my license is expired, can only log in through SAP* and that log in also locked how can i upgrade my license??
    Thanks and Regards,
    Rahul

    Hi ,
    If all the users are locked, they can be unlocked by
    a)Try this command at ur sql plus query level
    Go to cmd prompt.
    Sqlplus /nolog
    conn /as sysdba
    this will take you to the sqlprompt.
    Just execute the earlier commands there.
    sqlplus><b>UPDATE SAP<schema>.usr02 set uflag=0 where mandt=<CLNT NO> and uflag=64;</b> this statement actually unlocks the users of that particular client. So, try for every client in that sap system.
    b) You can delete sap* user
    Go to cmd prompt.
    Sqlplus /nolog
    conn /as sysdba
    sqlplus><b>DELETE SAP<SID>.usr02 where mandt='CLIENT.NO' and bname=SAP*;</b>
    <b>Note:-
    After doing this restart the system. So, that a new user with the name "sap" gets generated with password "pass". Provided the parameter is set login/no_automatic_user_sapstar= 0 (Automatic user SAP is permitted).</b>
    regards,
    kanthi

  • To check the License Expiry Date on EP??

    Hello All,
                   I have completed installing Permanent Licenses through VA in SAP EP.How to check the license expiry date in a stand alone server like EP??Moreover can u pls tell me what authentication is required for applying licenses through slicense??I did some with sap* & the others with ddic??

    How to check the license expiry date in a stand alone server like EP??
    You can see the license and all the details of it in the licensing adaptor using Visual Admin.
    Moreover can u pls tell me what authentication is required for applying licenses through slicense??I did some with sap* & the others with ddic??
    Any user with SAP_ALL will do.... doesn't matter if you install some with SAP* and some with DDIC
    Regards
    Juan

  • License Expiry Problem in R/3

    Can you guide me how to get rid of license expiry problem in R/3.

    that's easy...
    -> get hardware key (saplicense -get on os level) -> apply for a license @ sapnet -> implement license through transaction SLICENSE
    GreetZ, AH

  • SAP B1 License Manager not starting automatcially

    Dear All
    SAP Version : SAP 9.0 PL12
    Issue :
    1)SAP B1 License manager is not starting automatically even when the status is automatic in the Services.msc
    2)Also when logged from the client system its asks for the IP address/server name every time.
    3)Some times it connects with the Server name and sometimes with the IP address.
    And at cases it doesn't even connect at all throwing the error message "Connection to the license server failed" .
    and then when we replace the config files of SAP B1 to DI API it works fine at cases.
    This issue occurs on a random basis and at almost in all the systems(System connected in the morning is facing issue at afternoon).
    And it becomes an activity on a daily basis.
    So kindly let us know the exact cause for this issue and also a permanent solution for the same.
    Note : Firewall setting is turned off.
    Regards
    Shyam

    Hi Shyam..
    Have you Installed the License manager with the Admin Rights
    SAP Business One doesn't start and License Server Selection screen comes up
    SAP Business One generates this error message when logging on: "Connection with license server failed"
    On License Server Selection this error occurs: "Connection to license server failed; if license server address is invalid, correct it; if TAO NT Naming Service stopped, activate it and restart License Manager"
    On startup, the TAO NT Naming Service returns this warning: "The TAO NT Naming Service on local Computer started and then stopped...";
    TAO NT Naming Service is not running. To access this service,  right-click the My Computer icon and choose Manage -> Services
    Connecting to License Server brings warning: "Failed to connect to License Server"
    On startup, the SAP Business One License Manager returns this warning: "The SAP Business One License Manager on local Computer started and then stopped..."
    RSP: Logging on to Remote Support Platform (RSP) brings this Error:  "Agent service unavailable", RSP Agent Console cannot be accessed.  Nevertheless SAP Business One RSP Agent Service is running and restarts successfully
    check with the links
    TAO NT Naming Service Stop
    Check in Service Manager TAO_NT_Naming_Service does it has dependency with SAP B 1 License Manager.
    Check the above in the services... does it has got dependency
    check does it has set to restart on first failure and second failure in the TAO NT properties Recovery..
    Regards
    Kennedy

  • Sap login programmatically

    I didn't use SAP Login form.
    Instead of SAP Login form, I made codes to connect to SAP like below sources.
    When I run it, it connects to SAP and get some data from SAP successfully.
    But, the page makes an error and didn't show the binded data at datagrid.
    Can you help me?
    The error message is belows.
    PS : When I didn't connect with SAP, and bind the datagrid to internal table, it works fine.
    =================CODE=================
              private void Button1_Click(object sender, System.EventArgs e)
                   // Declare parameters here
                   SAPProxy1 proxy = new SAPProxy1();
                   this.components = new System.ComponentModel.Container();
                   System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader();
                   this.destination1 = new SAP.Connector.Destination(this.components);
                   // destination1
                   this.destination1.AppServerHost = ((string)(configurationAppSettings.GetValue("destination1.AppServerHost", typeof(string))));
                   this.destination1.SystemNumber = ((short)0);
                   this.destination1.Username = "RFCB2B";
                   this.destination1.Password = "SVCUSA";
                   this.destination1.Client = ((short)(160));
                   this.destination1.Language = "en";
                   try
                        SAP.Connector.SAPLoginProvider.OpenSAPConnection(this, destination1.ConnectionString, false);
                        proxy.Connection =  SAP.Connector.SAPLoginProvider.GetSAPConnection(this);
                        // Call methods here
                        string strEsvc_Rfc_Ok = null;
                        ZWEBIF2 zBuffer = new ZWEBIF2();
                        zBuffer.Buffer = this.TextBox1.Text;
                        Input_Data = new ZWEBIF2Table();
                        Input_Data.Add(zBuffer);
                        proxy.Z_Web_Rfc_D3("WB_MODEL_SEARCH", "C310", "0001656428", "E", out strEsvc_Rfc_Ok, ref In_31, ref In_33,
                                            ref In_39, ref In_81, ref In_82, ref In_83, ref Input_1000, ref Input_Data, ref Output_1000, ref zwebiF2Table1);
                        Console.Out.Write(zwebiF2Table1.Count);
                        Console.Out.Flush();
                        // Now update Data Bindings. On WinForms this will be automatic, on WebForms call the following line
                        this.DataBind();
                   catch(Exception ex)
                        Console.Out.Write(ex.ToString());
                        Console.Out.Flush();
                        // If SAPLoginProvider.GetSAPConnection(this) cannot get a connection, we might get an error.  // Normally this can be ignored as it will automatically will force a relogon.
    ===================ERROR========================
    Server Error in '/WebApplication3' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
    Requested Url: /WebApplication3/default.aspx
    Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032

    If you don't want to use a Login page, you shouldn't user SAPLoginProvider.OpenSAPConnection / SAPLoginProvider.GetSAPConnection. This classes to internally some redirect to other pages which causes 404 error.
    Instead us Connection.GetConnection() (for NCo 2.0) or just "new SAPConnection().
    In NCo 2.0 you can easily reach this by just dragging a Destination from Toolbox or the corresponsing Application Server icon from Server Explorer to your form. The Destination is already configured to take most settings from the Web.config file (see the cyan icons on the properties), so you don't need to write "configurationAppSettings.GetValue" by hand.
    In NCo 2.0 you can also drag the SAPProxy1 instance from the toolbox and wire the connection between it and the destination in designer.

  • User Type (Dialog , Communication etc) can impact on SAP User Licensing

    Dear Expert,
    The User Type (Dialog, Communication, System etc) can impact on SAP User Licensing.
    Suppose if I craete a user type other than DIALOG such as SYSTEM or COMMUNICATION etc; will this be counted as License User. Or only DIALOG users are paid license users.
    Kindly advice.
    Regards
    AJ

    Thanks Uday and Nagendra...
    Dear Nagendra,
    with reference to below sentense from your referred link
    " Consolidating Contractual User Types  
    Use
    With this procedure, you consolidate the contractual user types of the individual users. The LAW takes account of the fact that certain contractual user types are already contained in others. In this way, license costs are only incurred for the inclusive user types of the user."
    When I go User Classification Display screen, under Contractual User Type column all my 150 users are marked "Operational" but for those which I defined as System / Communication User are defined any contractual user type.
    What does it mean??
    Thanks in advance for your help.
    Regards,
    AJ

  • SAP Login screen - keyboard shortcut not working

    Part way through an SSO rollout (Imprivata Onesign) and have come across one terminal server that is not behaving as normal ie keyboard shortcut control+i does not position the cursor in the Client field on the SAP login screen. Instead it is treating the key combination as a standard Tab.
    Has anyone come across this before or can anyone suggest how to diagnose.
    I have checked the registry and there doesn't appear to be any custom keyboard shortcuts defined.
    OS =  Win 2003 Enterprise SP2
    SAPGUI = SAP Gui 7.10 Patch 14
    Many thanks in advance
    Paul

    See my response here for future reference.  Much easier solution:
    Re: iOS 6 + keyboard shortcuts

  • SAP HR ID has SAP Login ID / Portal Login ID

    Hi ,
    We are thinking of using the SAP HR ID has the SAP Login ID and the Portal Login ID, ... Did anyone had the same approach ? Any feedback will be welcome .
    If my HR ID is 1234567 , my user ID will be 1234567 .
    Or, (I'm a HR guy), what is SAP recommended approach and User ID ( How to generated the SAP User ID ) .
    Regard's

    Hi,
    While creating the logon id instead of creating the user id via tcode su01 try creating it via tcode HRUSER.
    Select the HR ids for which u want to create users and create the users. U can define the initial password there and even assign roles there too.
    Other wise if u want to assign different roles to different users then only create the users via tcode HRUSER and assign the roles via SU01.
    If users are created via tcode HRUSER the user name will be P<hr id> ie like P99003114.
    First name and last name will be picked form hr
    master data automatically.
    Hope this will solve your purpose.
    Pl dont forget to award points if resolved
    Regards

  • FM for SAP Login id with pernr no.

    Hi All
    I need to make function module for below three requirement. Please tell if there is any standards fm available for these or how can i proceed to finish these fm.
    1. Get HR Information for employees - bank account, dependent informaiton, start date, org unit, manager,
    2. For employee get the associated sap login users. We want the ability to download a list of sap users/pernr automatically into the admin database.
    - function to get a list of employees, pernr and sap login ids.
    - function to get the org unit and hr information for employees, pernr, sap login ids
    3. Org structure/profit center hierarchy list-
    get the list of org structure with persons. display for a user or a list of user the org structure hierarchy
    Thanks And Regards
    Ranjeet Singh

    There is no single fm which will give you all the info.
    you need to create a custom that makes use of HR_READ_INFOTYPE and HR_GETEMPLOYEEDATA_FROMUSER  and some OM related fms to get the required data
    Thanks
    Bala Duvvuri

  • SAP BODS Licensing

    Hello Everyone,
    Its a very specific question about SAP BODS Licensing.
    Version can be 3.1 / 4.0 /4.2
    I tried to find this information from different sources in Google but not able to get any proper information.
    Actually we are trying to figure out how many license we need.
    The plan is :
    EnvironmentInfrastructure capability
    Development(20 repositories)·         15-16 developer repositories.
    One per developer.·        
    One central repository for version control.·        
    3-4 backup repositories for any ad-hoc needs.
    =======================================
    Test - Component Testing(4 Repositories)·        
    2 main repositories for executions.·        
    2 backup repositories for any ad-hoc needs.
    ===========================================
    Test - Integration Testing(6 Repositories)·        
    3 main repositories for executions.·        
    3 backup repositories for any ad-hoc needs.
    ===========================================
    Test - Dress Rehearsal(4 Repositories)·        
    2 main repositories for executions.·        
    2 backup repositories for any ad-hoc needs.
    ============================================
    Production Environments(2 Repositories)·        
    1 main repository for executions.·        
    1 backup repository for any ad-hoc needs.
    Thank you

    All the comments above are helpful.
    But still I am stuck in few places to define the licensing for BODS
    1. If we say it depends on CPU core, then how to define how many cores will be required?
    2. Is the calculation is on volumentrics of data that will pass through BODS, if yes what will be the calculation?
    3. If I derive the number of cores, how to derive the  number of CPU licenses for BODS?
    ***NOTE: Is there any formula to calculate***

  • SAP B1 License problem

    Hi all,
    At one of our customer,SAP B1 license was imported. However they formatted the server and created domain on the server.We again installed SAP B18.8 PL10.Consequently the Hardware key was changed.Hence we edited the license key request system details(replaced old Hardware key with the new one) and send the fresh license Key Request.But the new license file I received has validity of 14 days for the Professional User,while other Licensetypes have validity till 31.12.9999.
    Hence I deleted the old system from the list of Existing Systems by logging in to Customer Portal and then requested the new system(Production System).But again the License file I received has a Professional User with the validity of 14 days whereas it shouldbe till 31.12.9999 while other license types has validity till 31.12.9999.What is the reason?
    Please guide me as we need to import the license file .
    -Sudhir

    Hi,
    I suggest you to ask the SAP B1 partner in your country to check if the old license system has been perfectly deleted.
    You should check if the requested is zero before request new license.
    Make sure that the professional users are not exceeding the licensed quantity.
    JimM

  • Configure sap login page

    Hi Expert,
    I want to Add my client in default client with description, how to configure sap login page with my company lobo. Is there any transaction code for that.
    Regd,
    Rahul

    -> have a look at <b>sapnote 205.487</b>
    -> you can change the log by using transaction SMW0, select "Binary data..." the logo must be in GIF format...cfreate new object, chose import, select your gif and transfer; then maintain table ssm_cust via sm30, change field start_image to the above imported object..
    GreetZ, AH

  • Survey access via internet without sap login

    Hi!
    I just created a survey using crm_survey_suite. How can I let our external customers (without sap login) answer the survey via internet? I'm currently working on CRM 4.0.
    Thanks!
    Steph

    Hi steph,
    You will have work with Basis team and create an anonymous login id and password for your survey link which canbe sent on mail.
    Regards
    Raj

  • SAP IDES licensing procedures

    Hi,
    I am a SAP customer;
    I would like to know more about the SAP IDES licensing procedures. I donu2019t know this product is free or/and is accessible only if you are a SAP customer.
    Or is it possible to get it by ordering it from SAP using your Customer number.
    It will be great help if some can through light to whome should i contact and what will be the process for getting the SAP IDES for my companyu2019s training need.
    Regards

    Hi,
    The IDES systems can be ordered via the Software Catalog of the SAP Service Marketplace (http:service.sap.com/swcat -> SAP IDES)
    For more information, check SAP note 799639.
    Thanks
    Sunny

Maybe you are looking for

  • How to downgrade kernel 3.10 - blank screen problem after upgrade

    After a recent upgrade, which included kernel 3.10, my ASUS zenbook ux21a boots into a blank screen as reported in these topics: https://bbs.archlinux.org/viewtopic.php?id=167411 https://bbs.archlinux.org/viewtopic.php?id=167463 https://bbs.archlinux

  • PPT unable to open in browser for some users

    PPT unable to open in sharepoint browser for some users? 

  • Bluetooth Windows 7 USB port problem

    Hi, I am using a class 1 bluetooth dongle (unkown manufacturer) with the toshiba bluetooth stack V 8.00.03 Premium, and a bluetooth headset. The specs for the dongle are : Bluetooth V1.2, USB compatible with V1.2/2.0 I have a strange problem when cha

  • Configuring  ess/mss

    how to configure ess/mss business packages

  • Motion isn't smooth

    i've a problem with the graphics on my macbook. the movement isn't smooth anymore when I scroll up and down. also the movement isn't move like usual. I've reset the PRAM and did repair disk permission but it doesn't work. do you know how to fix it? t