Generate new License Request from ELM

Hello everyone,
I am having a problem generating a new License Request from ELM.
It was required to me by Cisco Licensing in order for them to provide me a new License file.
Here are the steps that I made in generating a new License Request from ELM. (See attached file ELMaccess, LR1 & LR2)
I first accessed the ELM under CUCM administration.
Select License tab> Other Fulfillment Options> Generate License Request> Save to my computer
I received a .txt file (lic_req_201.....) and that certain file was the one I sent to Cisco Licensing.
Cisco Licensing replied:
"It is still the same license request that you have here, just regenerated. What is needed is an entirely new and different ELM License request."
I am not really certain for what kind of License Request file that he wanted, or maybe there is a different procedure in doing this?
Can someone help on this?
If I am missing something or if there is another procedure on generating a new License Request kindly guide me.
Thank you so much.
Kind regards,
Art
Network Engineer
Net Pacific Philippines
CCNA R&S
CSCO12379161       

Hi mkchandak,
Thank you for your response!
Yes we did, we actually at first generated a license request, submitted it to licensing and they provided us a license file. Now, upon the installation of the license file we received this error message "Insufficient Licenses".
We went back to cisco Licensing, a new engineer assigned to us, provided all the details he requires, our license case was approved by their Product Manager and now he requests for a "Newly Generated License Request".
I followed the same steps in generating a new License Request:
I accessed the ELM under CUCM administration.
Select License tab> Other Fulfillment Options> Generate License Request> Save to my computer
I received a .txt file (lic_req_201.....) and that certain file was the one I sent to Cisco Licensing.
Cisco Licensing replied:
"It is still the same license request that you have here, just regenerated. What is needed is an entirely new and different ELM License request."
So maybe he is referring to something other than the License Request that I have provided.
Maybe there is a different procedure in generating a "fresh and newly generated License Request"
If you know a step-by-step procedure in achieving this, please guide me.
Any help would be greatly appreciated.
Thanks again!
Cheers,
Art
Network Engineer
Net Pacific Philippines
CCNA R&S
CSCO12379161

Similar Messages

  • Unable to generate license request in ELM

    I have a system running in 9.1.x. Im unable to generate a license request. Does anyone here have a solution for this? i have the PAK with me but the network were the system was running would not allow internet access so im left with no option.

    Hi Aman,
    I'm attaching the logs. What i did for know is that i did reinstall call manager using the lower version
    (Bootable_UCSInstall_UCOS_9.1.1.20000-5.sgn) since deployment is due next week. When the system arrived it came with a Bootable_UCSInstall_UCOS_9.1.2.10000-28.sgn then I upgrade it to UCSInstall_UCOS_9.1.2.11900-12.sgn. thats when the ELM issue happen.
    Yesterday i did the resinstallation using version 9.1.1.20000-5 i was able to generate license request and installed the license succesfully. then i proceced to upgrade to system to 9.1.2.10000-28 then finally to 9.1.2.11900-12. as of now ELM is working with no issue encounter

  • Can we generate a dummy request from a backend process?

    I would want to generate a dummy request from a backend process since I need to use the 'process instanace key' which will be associated with it. The 'process instance key' is vital for my requirement since we need to trigger a process task in OIM.
    Is it possible to create a 'dummy' request?

    Hi,
    You can use HTTP Binding for that... Have a look at Biemond's blog...
    http://biemond.blogspot.com.au/2010/05/http-binding-in-soa-suite-11g-ps2.html
    Cheers,
    Vlad

  • Creating a new user request from the user menu

    I have a menu item that calls a process to create a request for a new account (contractor/applicationID). I have the request form and workflow working, however, IDM uses the requestors context to create the request. How do I open the new view in the form and clear the requestor's user context out of the way?
    What I mean is when the form appears, if I select a resource, the attribute fields all appear with the requestors data filled in. The process I'm calling has a built-in form preceeding the workflow.
    Any help would be greatly appreciated.

    Hi,
    try to add the the tag
    <argument name='Subject' value='Configurator'/>inside your code to check in the view(i asume you use a userview to acomplish your task).
    Does it work then?
    Regards,
    Patrick

  • Generate html post request from form9i applet

    I need to interact with a 3rd party credit card processing server form my form9i application.I need to create a html post request with all the input information encapsulated in it and also receive the http response and parse it and display an alert in the form(approved or rejected).Can I do that?
    any answer is going to help me greatly
    Sathi

    GET method may be the easier way. web.show_document('your_url?v1=123&v2=abc'); as of POST method, I guess you need JSP to do it, but how to do it from applet, I like to know too.
    getting back info, I used perl to read the html POST data on web server, then perl parses it and writes to a file on server, then use text_io or utl_file to read data into webform applet fields.
    The drawback I found that the cursor will not get back to webform applet from html pages. I tried to print every possible Javascript methods to wake up it, but it cannot get it.

  • How to prevent new leave request from SSHR in case of negative PTO accrual

    Hi folks,
    I am stuck with a peculiar problem.
    There are employee in our system who have negative PTO accruals and when they try to create Leave from SSHR, the system allows them to create a leave with a warning.
    *"This absence will decrease the employee's PTO net entitlement to less than zero for one or more of their accrual plans."*
    I want to prevent the users to complete the Absence form from SSHR, if they have negative PTO accruals.
    How can I achieve this, I thought it would be pretty straight forward controlled by a profile !!!
    Any help would be appreciated.
    Regards
    Shah Alam

    Hi,
    I also have similar requirement, I have done the following to achieve this.
    1. Created a custom package with the following procedure.
    PROCEDURE NEG_ACR_BAL_CHK ( P_ABSENCE_ATTENDANCE_TYPE_ID NUMBER
    ,P_EXCEEDS_PTO_ENTIT_WARNING BOOLEAN)
    IS
    CURSOR CSR_GET_ABS_CAT IS
    SELECT ABSENCE_CATEGORY
    FROM PER_ABSENCE_ATTENDANCE_TYPES
    WHERE ABSENCE_ATTENDANCE_TYPE_ID = P_ABSENCE_ATTENDANCE_TYPE_ID;
    l_abs_category varchar2(20);
    BEGIN
    --Get Absence Category
    OPEN csr_get_abs_cat;
    FETCH csr_get_abs_cat INTO l_abs_category;
    CLOSE csr_get_abs_cat;
    IF (l_abs_category <> 'NWPL_AL') AND (P_EXCEEDS_PTO_ENTIT_WARNING = TRUE) THEN
    fnd_message.set_name('PER','HR_LOA_EMP_NOT_ENTITLED');
    fnd_message.raise_error;
    END IF;
    END NEG_ACR_BAL_CHK;
    2. Then hooked this custom procedure, to the hook package of absence, "HR_PERSON_ABSENCE_BK1.CREATE_PERSON_ABSENCE_A". As per the, note: "Understanding and Using API User Hooks".
    Hope this is of help to you.
    Regards,
    Sri.

  • 9 STD License Issues. How to renew/generate new license or working one?

    Hello. I got a message that there was an error in Acrobat 9 STD. So I needed to re-install. After re-installing I cannot access with my License Serial #, which is still under my ADOBE ID. What to do??

    It showed Std 9, but not the license? Did you not keep a copy of both the install file and the S/N for future needs? When you spend that much money on a download product, you should always back it up. But if you did not, I guess it is too late. If you registered it, it should be on your My Account at Adobe.com with the list of registered software.

  • New Spool Request not generating

    Dear All,
    I have seen print preview of one PO and taken print which has created a spool request.
    Another PO also I have seen the preview and taken print, but it has added to previous spool request as second page.
    My problem is I need to generate new spool request for each PO. Where do I need to do setting for this. Pls guide.
    Rgds
    Srini

    Hi Srinivasan,
    In the print program, try setting the parameter TDNEWID  to  'X'.
    Following link can help you ..
    Stop the combining of spool request to an existing one

  • Generate spool request from an invoice

    Hi,
    I'd like to know is there any function module to generate an spool request from an invoice document generate previously by VF01 (VF04) SAP transaction code.
    I'd like to generate on demand a spool request over an invoice previously generated by SAP
    Anyone knows if it is possible?
    Thanks

    The billing process included the spool generation runs perfectly by stantard SAP funciontality.
    But I'd like to generate a spool request whenever I want for an invoice previously generated and printed.
    You know that for space requirements the spool request are deleted periodically, but I want to generate a spool request for an invoice, which spool request was generated and deleted. This behaviouir is reclaimed for a system process so, it's not possible to regenerated the spool request using the funcionality incluided in SAP by VF02, VF31 transactions code.
    I need a function module or something like that, so import and invoice document number and export and spool request.
    Thanks in advance,

  • Help needed to generate new target group for contacts from BP Target Group

    In CRM 5.0, we have a functionality in which say we have created a target group (T1) for 10 BPu2019s (organization) and each of these BPu2019s have one or more contact persons associated to them. Now if I want to create a target group for all these contact persons associated to the 10 BPu2019s, in CRM 5.0 I have the option to right click on the target group (T1) and then I get an option u201C generate new target group from contactsu201D. By doing so another target group for all the contacts associated to those BPu2019s will be generated. I am not able to find out the similar option in CRM 2007 (web UI) where in I can create target group for contacts associated to BPu2019s (organization). There should be some work around for this requirement.
    Please let me know how to achieve this requirement.
    Thanks,
    udaya

    Hi udaya,
    we're also using that functionality in CRM 5.0. I think it would be worth a combined OSS message to get this functionality back in standard if it isn't there.
    Best regards
    Gregor

  • New Requistion Request

    Is it possible we can make a copy of the New Requisition Request from the Recruiting part of MSS Business Package - or they will be a licensing issue?

    You are free to customize any standard  code delivered by SAP. SAP even support development infrastructure to allow us to make custom changes.
    Hope this clarifies.
    Rgds

  • New License Key for SAP NetWeaver 2004S (SID = NSP) is wrong!

    Hello,
    serval times i tried to get a new license key from the sap-site "https://websmp230.sap-ag.de/sap(bD1kZSZjPTAwMQ==)/bc/bsp/spn/minisap/minisap.htm", but every key i got was wrong.
    My  System-ID is NSP and my Software product/release is SAP NETWEAVER 04. The Database is             MaxDB (former SAPDB).
    What should i do to get the right key?
    Heiko Heinrich

    Hi
    Log on to OSS with ur  SUSER and Password
    then go to
    Keys & Request tad
    then select
    Request new license key
    then
    select ur proper installation no
    Then select  new system Button
    and fill all detail of ur system from OS to DB release
    System ID *      
    System number  
    System name  
    System type *   
    Product *   
    Product version *   
    Technical usage   
    Database *   
    Operating system *   
    Planned productive date 
    and SAP will sent u license  text file
    hope that will u help out

  • Calling SOAP Request from XML Spy

    I have published PLSQL web service at Oracle 10g AS.
    The web service runs at http://localhost:7201/reqProcess with processRequest as method being exposed.
    This web service takes the string as input and return XMLTYPE as out parameter.
    Now When I am trying to pass SOAP XML from XMLSPY to above url I am getting folloing errors.
    1) I get http error: couldnot post the file /reqProcess/ on server 'localhost' (500)
    2) I get SOAP Error as
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <SOAP-ENV:Body>
              <SOAP-ENV:Fault>
                   <faultcode>SOAP-ENV:Client</faultcode>
                   <faultstring>No Deserializer found to deserialize a &apos;http://wsi.nat.zz.com/2005/06/StandardHeader/:m0:standardHeader&apos; using encoding style &apos;null&apos;. [java.lang.IllegalArgumentException]</faultstring>
                   <faultactor>/reqProcess</faultactor>
              </SOAP-ENV:Fault>
         </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Please help..

    Hi Quwang ur help needed
    My requirement ...
    1) PLSQL as web service : I succesffuly deployed PLSQL Procedure as Web service at 10 10g. The PLSQL takes string (CLOB) as input convert that into XML and store in table and return XMLTYPE as output.
    When I am accesing PLSQL WS using browser I am able to send string (basically XML format) as a input and able to receive the result back (SOAP envelop)
    2)WS Invocation : After PLSQL WS published I need to pass the SOAP XML which is generated from XYX wsdl file to the PLSQL WS published above. For this req I was using XML Spy to test this. (In actual the clinet will be Sieble that will send SOAP XML to PLSQL WS).
    Initially I was generating the SOAP XML from XYZ.wsdl and was directly sending that to PLSQL URL. I was getting error as I described initially.
    Next I tried to generate the SOAP request from the PLSQL WS wsdl file and inside the parameter I am sending the SOAP XML as string to the IN paramater of PLSQL WS. This time I am getting some different errors. The first error is same as http error: couldnot post the file /balprocess/balprocess/operation?processRequest on server 'localhost' (500)
    and second error is SOAP fault as follows
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <SOAP-ENV:Body>
              <SOAP-ENV:Fault>
                   <faultcode>SOAP-ENV:Server</faultcode>
                   <faultstring>java.sql.SQLException: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00210: expected &apos;<&apos; instead of &apos;"&apos;
    Error at line 1
    ORA-06512: at "SYS.XMLTYPE", line 0
    ORA-06512: at "SCOTT.BAL_A_PROCESS", line 16
    ORA-06512: at line 1
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)</faultstring>
                   <faultactor>/balprocess/balprocess</faultactor>
              </SOAP-ENV:Fault>
         </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    For ur reference I am pasting the PLSQL WSDL file and the SOAP request xml that I am sending to PLSQL WS URL.
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="bal_a_process"
    targetNamespace="http://bal.request.process/bal_a_process.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://bal.request.process/bal_a_process.wsdl"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:xsd1="http://bal.request.process/bal_a_process.xsd" >
    <documentation>
    WSDL for Service: bal_a_process, generated by Oracle WSDL toolkit (version: 1.1)
    </documentation>
    <types>
    <schema targetNamespace="http://bal.request.process/bal_a_process.xsd" xmlns:tns="http://bal.request.process/bal_a_process.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:dom="http://xmlns.oracle.com/2001/XMLSchema/DOM">
    <complexType name="bal_request_process_bal_a_processUser_processRequest_Out">
    <all>
    <element name="outresponsexmlOut" type="dom:org.w3c.dom.DocumentFragment"/>
    </all>
    </complexType>
    </schema>
    </types>
    <message name="processRequestOutput">
    <part name="return" type="xsd1:bal_request_process_bal_a_processUser_processRequest_Out"/>
    </message>
    <message name="processRequestInput">
    <part name="param0" type="xsd:string"/>
    </message>
    <portType name="bal_a_processPortType">
    <operation name="processRequest">
    <input message="tns:processRequestInput"/>
    <output message="tns:processRequestOutput"/>
    </operation>
    </portType>
    <binding name="bal_a_processBinding" type="tns:bal_a_processPortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    <operation name="processRequest">
    <soap:operation soapAction="urn:bal-request-process-bal_a_process/processRequest"/>
    <input>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:bal-request-process-bal_a_process"/>
    </input>
    <output>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:bal-request-process-bal_a_process"/>
    </output>
    </operation>
    </binding>
    <service name="bal_a_process">
    <port name="bal_a_processPort" binding="tns:bal_a_processBinding">
    <soap:address location="http://localhost:7200/balprocess/balprocess"/>
    </port>
    </service>
    </definitions>
    Request I am sending to PLSLQ WS URL
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <SOAP-ENV:Body>
              <processRequest xmlns:m="urn:bal-request-process-bal_a_process" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   <param0 xsi:type="xsd:string">     "<a>"aaa"</a>"     </param0>
              </processRequest>
         </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I above SOAP request XML i m testing "<a>"aaa"</a>" as XML string. but this is also getting failed. In actual this will be SOAP XML request from some other XYZ wsdl file.
    Quwang ur help needed urgently.
    Regards

  • NI VLM license request trigger

    We are running a NI VLM 2.0 and network installers made using it work fine.
    If for any reason during a station installation there is no communication with the server but the install is finished what would be the best procedure to make the license request from the station to server occur again? We found that if we run the installer again with the communication reestablished it would happen but we would like to do it without a re-install or a manual computer addiction.

    Hi Renato,
    You are right, the client should automatically request the license upon the installation. If this is not happening, you can run the file mslsetup.exe, that you are probably going to find on the network installer's root directory. This will trigger the process of setting up communication and permissions with the VLM server without having to reinstall the software.
    Or if you want, you can create disconnected license files and install them manually on the clients.
    For more information on those procedures, there are some short videos showing all the steps from the installation of a license file, to the creation of the disconnected licences from your VLM Server. Those videos are on the link below:
    http://digital.ni.com/express.nsf/bycode/ex7ebi
    If you need anything else, just let me know
    Regards
    Andre Pereira

  • Generating new documents

    Hello,
    I know that XSLT basically deals with transformations. However I am curious to know whether it is possible to generate new xml files from an existing xml document.
    I mean you can change the way xml file is displayed using xslt but can u generate new files using that?

    I know that XSLT basically deals with transformations. However I am curious to know whether it is possible to >generate new xml files from an existing xml document. Yes... You can transform xml to xml using XSLT.
    I mean you can change the way xml file is displayed using xslt but can u generate new files using that? In most cases XSLT will create new files, e.g. XML + XSL => HTML, The output can also be a stream or a DOM/JDOM Object.

Maybe you are looking for

  • How to run procedure in forms

    hi to all How to run the database procedure in Forms while the program Unit in forms is also having the same name of the database procedure.

  • July PSU 11.2.0.3 patch apply failed

    We installed oracle GI (Grid Infrastructure) and Oracle 11.2.0.3 on a single node Linux.    The GI home is owned by the user grid to include ASM storage configuration and Oracle home is owned by user oracle.   After we installed GI home, configured A

  • BP contacts query

    Hi All Please help me with a query showing all contacts added to a BP within a specified time. This is what I have so far: SELECT T0.[CardCode], T1.CARDNAME, T0.NAME as 'Contact Person' , T0.Cellolar, T0.[updateDate],  T2.U_NAME as 'User' FROM ACPR T

  • ENCORE STOPS WORKING

    Hi. I am using Encore CS4 on Windows 7, AMD Athlon Dual Core 64 2.31 GHz, 5 GB DDR2 667 RAM.  Working on a HD video project, I have  a main menu and 4 sub-menus, 56 short time lines, about 1 or 2 minutes each one.  When I check for errors, everything

  • Need help! Installation Failed of Flash Pro CS4

    Sorry for my bad Eglish first. I downloaded a trial version of Flash Pro CS4 on the Adobe official website and installed it in my Win 7 (x64) using the user account (as an Administrator). It seems that every step of the installation is fine, except e