Pa_agreement_pub.create_agreement Currency Code Error

Hi,
I am trying to create an Project Agreement using the API. But everytime I try to run the script, it gives me an error *"Validation Error ->The Agreement Currency Code is not valid. (AGREEMENT=p1011-1) lv_msg_data PA"*
I have provided the Currency Code in the Agreement Record Type Parameter. I have tried with the standalone script but that didn't work. So I created a test package and registered and run the program from frontend. Is there anything wrong I am doing?
This is the script I have used.
==============================================================================================================
CREATE OR REPLACE PACKAGE BODY xxpa_test_agreement_pkg AS
     PROCEDURE xx_main_prc(
          x_errbuf OUT VARCHAR2
     ,x_retcode OUT VARCHAR2
     ) IS
          --variables needed for API standard parameters
          l_api_version_number NUMBER := 1.0;
          l_commit VARCHAR2(1) := 'F';
          l_return_status VARCHAR2(1);
          l_init_msg_list VARCHAR2(1) := 'T';
          l_msg_count NUMBER;
          l_msg_data VARCHAR2(2000);
          l_data VARCHAR2(2000);
          l_msg_entity VARCHAR2(100);
          l_msg_entity_index NUMBER;
          l_msg_index NUMBER;
          l_msg_index_out NUMBER;
          l_encoded VARCHAR2(1);
          l_agreement_id_out NUMBER;
          l_customer_id_out NUMBER;
          l_funding_id NUMBER;
          lv_data VARCHAR2(1000) := NULL;
          lv_msg_index_out VARCHAR2(1000) := NULL;
          -- Agreement specific PARAMETERS
          l_pm_product_code VARCHAR2(25);
          p_agreement_in_rec pa_agreement_pub.agreement_rec_in_type;
          p_agreement_out_rec pa_agreement_pub.agreement_rec_out_type;
          --variables needed for funding specific parameters
          l_funding_rec pa_agreement_pub.funding_rec_in_type;
          l_agreement_in_rec pa_agreement_pub.funding_in_tbl_type;
          l_funding_out_tbl pa_agreement_pub.funding_out_tbl_type;
          --Funding Variables
          l_pm_funding_reference VARCHAR2(25);
          l_funding_in pa_agreement_pub.funding_in_tbl_type;
          --l_funding_out              pa_agreement_pub.funding_out_tbl_type;
          -- Loop Variables;
          a NUMBER;
          api_error EXCEPTION;
     BEGIN
     /*     fnd_global.apps_initialize(5727
                                                                           ,20432
                                                                           ,275);*/
          apps.mo_global.init('PA');
          -- PRODUCT RELATED DATA
          l_pm_product_code := 'XXBBPI';
          --AGREEMENT DATA
          p_agreement_in_rec.pm_agreement_reference := 'p1011-1'; --'PIAGR0001';--
          p_agreement_in_rec.agreement_id := NULL;
          p_agreement_in_rec.customer_id := 1044; --1044;--
          p_agreement_in_rec.customer_num := '1004'; --'1004';--
          p_agreement_in_rec.agreement_num := 'p1011-1'; --'AMGTEST1';--
          p_agreement_in_rec.agreement_type := 'Fixed Fee';
          p_agreement_in_rec.amount := 1;
          p_agreement_in_rec.term_id := 1000;
          p_agreement_in_rec.revenue_limit_flag := 'N';
          p_agreement_in_rec.expiration_date := NULL;
          p_agreement_in_rec.description := NULL;
          p_agreement_in_rec.owned_by_person_id := 9990;
          p_agreement_in_rec.desc_flex_name := NULL;
          p_agreement_in_rec.attribute_category := NULL;
          p_agreement_in_rec.attribute1 := NULL;
          p_agreement_in_rec.attribute2 := NULL;
          p_agreement_in_rec.attribute3 := NULL;
          p_agreement_in_rec.attribute4 := NULL;
          p_agreement_in_rec.attribute5 := NULL;
          p_agreement_in_rec.attribute6 := NULL;
          p_agreement_in_rec.attribute7 := NULL;
          p_agreement_in_rec.attribute8 := NULL;
          p_agreement_in_rec.attribute9 := NULL;
          p_agreement_in_rec.attribute10 := NULL;
          p_agreement_in_rec.template_flag := 'N';
          p_agreement_in_rec.owning_organization_id := NULL;
          p_agreement_in_rec.agreement_currency_code := 'GBP';
          p_agreement_in_rec.invoice_limit_flag := 'N';
          p_agreement_in_rec.customer_order_number := NULL;
          p_agreement_in_rec.advance_required := 'N';
          p_agreement_in_rec.start_date := SYSDATE;
          p_agreement_in_rec.billing_sequence := NULL;
          p_agreement_in_rec.line_of_account := NULL;
          p_agreement_in_rec.attribute11 := NULL;
          p_agreement_in_rec.attribute12 := NULL;
          p_agreement_in_rec.attribute13 := NULL;
          p_agreement_in_rec.attribute14 := NULL;
          p_agreement_in_rec.attribute15 := NULL;
          p_agreement_in_rec.attribute16 := NULL;
          p_agreement_in_rec.attribute17 := NULL;
          p_agreement_in_rec.attribute18 := NULL;
          p_agreement_in_rec.attribute19 := NULL;
          p_agreement_in_rec.attribute20 := NULL;
          p_agreement_in_rec.attribute21 := NULL;
          p_agreement_in_rec.attribute22 := NULL;
          p_agreement_in_rec.attribute23 := NULL;
          p_agreement_in_rec.attribute24 := NULL;
          p_agreement_in_rec.attribute25 := NULL;
          --FUNDING DATA
          a := 1;
          l_funding_rec.pm_funding_reference := 'p1011-1'; --'PIAGR0001FUN1';
          l_funding_rec.project_funding_id := NULL;
          l_funding_rec.agreement_id := NULL;
          l_funding_rec.project_id := 129453;
          l_funding_rec.task_id := 32251; --31912;
          l_funding_rec.allocated_amount := 1;
          l_funding_rec.date_allocated := SYSDATE;
          l_funding_rec.desc_flex_name := NULL;
          l_funding_rec.attribute_category := NULL;
          l_funding_rec.attribute1 := NULL;
          l_funding_rec.attribute2 := NULL;
          l_funding_rec.attribute3 := NULL;
          l_funding_rec.attribute4 := NULL;
          l_funding_rec.attribute5 := NULL;
          l_funding_rec.attribute6 := NULL;
          l_funding_rec.attribute7 := NULL;
          l_funding_rec.attribute8 := NULL;
          l_funding_rec.attribute9 := NULL;
          l_funding_rec.attribute10 := NULL;
          l_funding_rec.project_rate_type := NULL;
          l_funding_rec.project_rate_date := NULL;
          l_funding_rec.project_exchange_rate := NULL;
          l_funding_rec.projfunc_rate_type := NULL;
          l_funding_rec.projfunc_rate_date := NULL;
          l_funding_rec.projfunc_exchange_rate := NULL;
          l_funding_rec.funding_category := NULL;
          -- LOOP CONSTRUCT
          l_funding_in(a) := l_funding_rec;
          -- CONSTRUCTING THE FUNDING TABLE
          FOR i IN 1 .. a
          LOOP
               l_funding_in(i).pm_funding_reference := l_funding_rec.pm_funding_reference;
               l_funding_in(i).project_funding_id := l_funding_rec.project_funding_id;
               l_funding_in(i).agreement_id := l_funding_rec.agreement_id;
               l_funding_in(i).project_id := l_funding_rec.project_id;
               l_funding_in(i).task_id := l_funding_rec.task_id;
               l_funding_in(i).allocated_amount := l_funding_rec.allocated_amount;
               l_funding_in(i).date_allocated := l_funding_rec.date_allocated;
               l_funding_in(i).desc_flex_name := l_funding_rec.desc_flex_name;
               l_funding_in(i).attribute_category := l_funding_rec.attribute_category;
               l_funding_in(i).attribute1 := l_funding_rec.attribute1;
               l_funding_in(i).attribute2 := l_funding_rec.attribute2;
               l_funding_in(i).attribute3 := l_funding_rec.attribute3;
               l_funding_in(i).attribute4 := l_funding_rec.attribute4;
               l_funding_in(i).attribute5 := l_funding_rec.attribute5;
               l_funding_in(i).attribute6 := l_funding_rec.attribute6;
               l_funding_in(i).attribute7 := l_funding_rec.attribute7;
               l_funding_in(i).attribute8 := l_funding_rec.attribute8;
               l_funding_in(i).attribute9 := l_funding_rec.attribute9;
               l_funding_in(i).attribute10 := l_funding_rec.attribute10;
          END LOOP;
          -- CREATE_AGREEMENT
          pa_agreement_pub.create_agreement(p_api_version_number => l_api_version_number
                                                                                          ,p_commit => l_commit
                                                                                          ,p_init_msg_list => l_init_msg_list
                                                                                          ,p_msg_count => l_msg_count
                                                                                          ,p_msg_data => l_msg_data
                                                                                          ,p_return_status => l_return_status
                                                                                          ,p_pm_product_code => l_pm_product_code
                                                                                          ,p_agreement_in_rec => p_agreement_in_rec
                                                                                          ,p_agreement_out_rec => p_agreement_out_rec
                                                                                          ,p_funding_in_tbl => l_funding_in
                                                                                          ,p_funding_out_tbl => l_funding_out_tbl);
          COMMIT;
          IF l_return_status <> 'S' THEN
               FOR i IN 1 .. l_msg_count
               LOOP
                    pa_interface_utils_pub.get_messages(p_msg_count => l_msg_count
                                                                                                         ,p_msg_index => i
                                                                                                         ,p_encoded => 'F'
                                                                                                         ,p_msg_data => l_msg_data
                                                                                                         ,p_data => lv_data
                                                                                                         ,p_msg_index_out => lv_msg_index_out);
                    xxbb_common_utility_pkg.write_log_msg('Validation Error ->' ||
                                                                                                                   substr(lv_data
                                                                                                                                  ,1
                                                                                                                                  ,250) || ' lv_msg_data ' ||
                                                                                                                   l_msg_data);
               END LOOP;
          END IF;
     EXCEPTION
          WHEN OTHERS THEN
               xxbb_common_utility_pkg.write_log_msg('error in creating agreement with funding: ' ||
                                                                                                              l_return_status || ' ' || SQLERRM || ' ' ||
                                                                                                              SQLCODE);
     END xx_main_prc;
END xxpa_test_agreement_pkg;
==============================================================================================================
Regards,
Rohit

This is the API i used to add funding.Hope can help you.
PA_AGREEMENT_PUB.ADD_FUNDING(P_API_VERSION_NUMBER => L_API_VERSION_NUMBER,
P_COMMIT => L_COMMIT,
P_INIT_MSG_LIST => L_INIT_MSG_LIST,
P_MSG_COUNT => L_MSG_COUNT,
P_MSG_DATA => L_MSG_DATA,
P_RETURN_STATUS => L_RETURN_STATUS,
P_PM_PRODUCT_CODE => 'XXXXXXX', -- nothing
P_PM_FUNDING_REFERENCE => 'AGREEFUND',
P_FUNDING_ID => O_FUNDING_ID_OUT,
P_PA_PROJECT_ID => C_T.PROJECT_ID, --project id
P_PA_TASK_ID => C_T.TASK_ID, -- task_id parent optional
P_AGREEMENT_ID => v_AGREEMENT_ID,
P_ALLOCATED_AMOUNT => round(C_T.ALLOCATED_AMOUNT,
2),
P_DATE_ALLOCATED => SYSDATE - 1,
P_DESC_FLEX_NAME => NULL,
P_ATTRIBUTE_CATEGORY => NULL,
P_ATTRIBUTE1 => null,
P_ATTRIBUTE2 => null,
P_ATTRIBUTE3 => null,
P_ATTRIBUTE4 => NULL,
P_ATTRIBUTE5 => NULL,
P_ATTRIBUTE6 => NULL,
P_ATTRIBUTE7 => NULL,
P_ATTRIBUTE8 => NULL,
P_ATTRIBUTE9 => NULL,
P_ATTRIBUTE10 => NULL,
P_FUNDING_ID_OUT => O_FUNDING_ID_OUT,
P_FUNDING_CATEGORY => 'ORIGINAL');

Similar Messages

  • Currency code error

    ware is type the currency code
    i put the journal entry in using template but currency code are missing error is given message (131-20) so please give the solution

    I am not sure what is you aim to use template to achieve. A template is to help you to save manual entry when a JE is too long and can be reused with minimum change.
    You may also refer to this one to find the answer: Posting template

  • Error in setting Pricelist/Currency code

    I'm using Siebel Self-Services 8.1.1 and I always get the following error every for new session of the application:
    "Error in setting Pricelist/Currency code. Please contact System Administator".
    Anyone having an idea how to solve it?
    Thanks!
    /Jon-Erik

    Hi Jon,
    Check the web service request and response in log immediately when you get this error.I think some setting at Siebel side needs to be done.
    Vikram

  • Message no. 06211 Currency translation error in net price calculation

    Hi,
       When i am creating purchase order i am changing currency from INR to JPY for FOB condition type only, And system issuing error message Currency translation error in net price calculation. Document currency is INR.
    When i am using USD i am not getting this error.
    I have checked table OB08 and both conversion maintained INR to JPY AND JPY to INR valid from 01.01.2012
    Any solution for this please.
    Thanks in advance.

    Hi, Check in T-code M/08 for your import prizing procedure,what have you maintained for subtotal for gross price condition (PBXX,PB00), Maintain over there as '9', also for JPY currency there is issue with decimal also, ratio maintained in 100:1 ratio.
    Edited by: tej yadav on Jan 6, 2012 1:29 PM

  • Bank Routing Code error

    Hi gurus,
    i have a question regarding bank routing code error.
    Heres the scenario..
    Our vendor created 2 check request, one in US currency and one in AUD currency.
    When I executed the payment run, the payment doc that was in US currency was received by citibank, however, the other doc which is in AUD currency was not received.
    Checking at the vendor details, the bank maintained is a US bank. The error that was appearing at citibank is the the bank routing code. We tried to input the swift that was in check request but sap is requiring 9 digits.
    Can you please enlighten me, what's wrong with this?
    Thanks,
    John

    Hi John
    I had similar issue for Citibank, mexico. Our issue was that in idocs the bank routing code (as per the bank mapping) should appear in the segment E1IDB02 BB, field -  FIIBKUKN. The field FIIBKUKN takes the value from field 'Bank number' maintained in the Bank master data.
    So, if in your case the bank is picking the bank routing code from this field then you need to modify this field using a user exit as per the currency.
    Let me know if it works or you need any further clarification.
    Regards
    Nikhil Kothari
    Edited by: Nikhil Kothari on Dec 7, 2011 12:42 PM

  • For the ISO code TRY there is no unique SAP currency code for ALE

    Hi,
    I was trying to download cost centres from FICO to SAP HR via BD17.
    These are Turkish cost centres.
    I received an error: For the ISO code TRY there is no unique SAP currency code for ALE
    What is missing and how can it be fixed? I guess it is sth on ALE side so probably requires some config from Basis?
    Or correct me if I'm wrong.
    Thanks in advance!
    Monika.

    Hi satya,
    Not sure if this might help ... check out this OSS note "Note 313772 - Performance problem in CURRENCY_CODE_SAP_TO_ISO"
    Regards
    Genie

  • For the ISO code there is no unique SAP currency code for ALE

    While entering in incomming invoice , we got this error message.
    "For the ISO code there is no unique SAP currency code for ALE" .Any idea what this error is related to ?
    Thanks
    SN

    Hi satya,
    Not sure if this might help ... check out this OSS note "Note 313772 - Performance problem in CURRENCY_CODE_SAP_TO_ISO"
    Regards
    Genie

  • For the currency code  ALE communication is not allowed

    Hi,
    I am executing the transaction for - International Payment Medium Payment orders by EDI .
    On executing this t-code I am getting this error "For the currency code  ALE communication is not allowed" .
    Please help me resolve this issue.
    Thanks.
    Hemanth

    Hi,
    Check if SAP Note 758433 can help?
    Regards

  • ISO Currency Code Conflict

    Hello Hyperion World, it's been a while since I commented on OTN.
    We are in 11.1.2.1 using an EPMA application. We add the currency code "ALL" to the Currency list (A value dimension triplet is automatically made) and it does not show up in the application system generated currency list (C1,C2) after being deployed.
    We've come to the conclusion that the currency code is having a conflict with the "ALL" that appears to be defaulted as a child of root in a custom dimension list in EPMA. As our metadata was initially set up in a classic application, we created our own "AllCustomX" parent member and have no need for the "ALL". It, however, does not seem to be able to be deleted.
    When we create a new entity and set "ALL" as the currency in EPMA, which is doable, we get an error upon redeployment.
    Does anyone have experience with a work around? Or is this something for Oracle Support to add to list of known bugs.

    I appreciate your response, however I don't think it is quite accurate.
    I have a number of classic applications that have the currency ALL as well as the associated value dimension triplets. After being converted to an EPMA application, the currency and triplet remains.
    However, it disappears after a "redeploy" of metadata is done through EPMA. This to me seems like EPMA is filtering on the deploy stage rather than restricting in the front, which it should do if it is indeed reserved.
    I assume (never a great idea), that you indicated "ALL" as a reserved word as it can be used in rules like "HS.Exp "A#ALL = A#ALL.P#PRIOR"".
    While this makes sense from an Account stand point, I do not believe "All" is available as a short cut for any of the other dimensions. Since, Custom 1 and Custom 2 are where the currencies are stored, I don't think it would systematically limit using "ALL" as a currency.
    Based on the evidence from some brief testing, it would certainly appear that EPMA is the difference. I'm curious if our classic applications have any unnoticed bugs due to the "All" currency.
    Investigation Continues...

  • Currency Exchange error

    Hi All,
    While running FI-SL Currency Translation in t-code gwul, I am getting the error message u201C No values entered, difference in local currencyu201D
    Is there any problem with the master data or config, as it is working fine for other company codes?
    Please Assist.
    Thanks in advance
    Edited by: Reema Sen on May 28, 2008 6:20 PM

    I had a similar problem: importing down payment requests with DTW working, then some days later giving the Currency Exchange error.
    I found the reason which was having changed the business partner's currency. As soon as it was different than the default, DTW stopped to work as expected.
    Even better, I did found a solution. Set the currency and the rate also at the document level not only in the lines. It will make the import to work without the Currency Exchange error.
    Edited by: Péter Forró on Oct 9, 2008 2:56 AM

  • SAP Currency code?

    Dear all,
    When I am going create and save export BP and check in SMW01.
    the error comes
    "For the ISO code USD there is no unique SAP currency code for ALE"
    I put the currency USD and Country is Bangladesh in BP.
    pls help me out
    Regards
    Jayesh

    Hi!
    Please check section 3.2.1 of the Best Practice Documentation for B09 to see if you have duplicate entries.
    Extracted text:
    Before starting the Customizing replication, verify that entries for the ISO codes are unique in the following ECC tables:
    •     Language keys (T002 field LAISO)
    •     Currency codes (TCURC field ISOCD)
    •     Countries (T005 field INTCA).
    Although SAP delivers these tables in a consistent state, duplicate ISO entries can occur because this is not a key field in those tables (especially if own entries have been set up with copy functions).
    Procedure
    1.     Access the activity using one of the following navigation options:
    Transaction code     SE16
    SAP ECC menu     Tools &#61664; ABAP Workbench &#61664; Overview &#61664; Data Browser
    2.     In the table name field enter T002.
    3.     Choose Table Contents (Enter).
    4.     Choose Execute (F8).
    5.     Check the column LAISO for duplicate entries.
    6.     Repeat these steps for the other tables.
    If duplicate ISO codes are detected, they have to be replaced by new ISO codes. The final result has to be that all tables mentioned hold unique ISO code entries. Multiple entries with empty ISO codes are possible.
    Duplicate entries cannot be deleted directly in transaction SE16. If you want to delete database records please get advice from experienced consultants or enter an SAP message.
    BR
    /fredric

  • [HELP] VBA Currency NumberFormat Error - Excel

    [HELP] VBA Currency NumberFormat Error - Excel
    Hello,
    I've a worksheet with many cells formated as currency and i want modify the currency format through a combobox,
    First i use this code to get the inicial currency type/format,
    Private Sub ComboBox1_DropButtonClick()
    inicial = Me.ComboBox1.Value
    Select Case inicial
    Case "EUR"
    oldFormat = "#.##0 €"
    Case "GBP"
    oldFormat = "[$£-809]#.##0"
    Case "USD"
    oldFormat = "#.##0 [$USD]"
    End Select
    End Sub
    The oldformat variable is a global variable,
    Public oldformat As String
    After that i want to do a find using oldformat variable and a replace using a newformat variable,
    Private Sub ComboBox1_Change()
    Dim ws As Worksheet
    Dim newFormat As String
    'On Error Resume Next
    newValue = Me.ComboBox1.Value
    Select Case newValue
    Case "EUR"
    newFormat = "#.##0 €"
    Case "GBP"
    newFormat = "[$£-809]#.##0"
    Case "USD"
    newFormat = "#.##0 [$USD]"
    End Select
    'Set rNextCell = Application.FindFormat
    For Each ws In ActiveWorkbook.Worksheets
    Application.FindFormat.Clear
    Application.FindFormat.NumberFormat = oldFormat
    Application.ReplaceFormat.Clear
    Application.ReplaceFormat.NumberFormat = newFormat
    ws.Cells.Replace What:="", Replacement:="", LookAt:=xlPart, SearchOrder _
    :=xlByRows, MatchCase:=False, SearchFormat:=True, ReplaceFormat:=True
    Next ws
    End Sub
    I read the new value through the user choice on the combobox.
    But this not work at all, the variables oldformat and newformat receive the correct values but i got a error on,
    Run-time error '1004': Application-defined or object-defined error
    Application.FindFormat.NumberFormat = oldformat
    Application.ReplaceFormat.NumberFormat = newFormatIs there any way to pass the newformat and oldformat value to the Numberformat property?
    Or someone have another away to do this?
    Link for exemple file,
    https://www.dropbox.com/s/sdyfbddxy08pvlc/Change_Currency.xlsm
    I apreciate any help, i m a little bit new on .
    I apologize if there are any errors in English, is not my natural language.

    The number formats must already be present in the workbook, otherwise you'll get the error that you mention.
    The code for US$ is [$$-409]
    Here is the code:
    Public oldFormat As String
    Private Sub ComboBox1_Change()
    Dim ws As Worksheet
    Dim newValue As String
    Dim newFormat As String
    newValue = Me.ComboBox1.Value
    Select Case newValue
    Case "EUR"
    newFormat = "#,##0 €"
    Case "GBP"
    newFormat = "[$£-809]#,##0"
    Case "USD"
    newFormat = "#,##0 [$$-409]"
    End Select
    Application.FindFormat.Clear
    Application.FindFormat.NumberFormat = oldFormat
    Application.ReplaceFormat.Clear
    Application.ReplaceFormat.NumberFormat = newFormat
    For Each ws In ActiveWorkbook.Worksheets
    ws.Cells.Replace What:="", Replacement:="", LookAt:=xlPart, _
    SearchOrder:=xlByRows, MatchCase:=False, _
    SearchFormat:=True, ReplaceFormat:=True
    Next ws
    End Sub
    Private Sub ComboBox1_DropButtonClick()
    Dim inicial As String
    inicial = Me.ComboBox1.Value
    Select Case inicial
    Case "EUR"
    oldFormat = "#,##0 €"
    Case "GBP"
    oldFormat = "[$£-809]#,##0"
    Case "USD"
    oldFormat = "#,##0 [$$-409]"
    End Select
    End Sub
    See https://www.dropbox.com/s/ax20vnmjpjny3h6/Change_Currency.xlsm
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Invalid Key code Error while installing crystal report server 11

    While installing crystal report server 11,i am facing an erro which says Invalid Key code Error.I had raised this issue to SAP customer support and attaching the conversation that we had.PLEASE HELP me to resolve the issue.
    MAILS--Dear Mohit,
    Thanks for the patience.
    We have received the below update from the Licensing Team.
    You received your permanent key in respect of these licenses - the key is  for Crystal Reports Server XI.
    You did not purchase these licenses for Crystal Reports Server, but purchased it for Crystal Reports and a 5-named user license for Crystal Reports was included as a special offer.  The software included was version XIR2, but you elected to use version XI instead and received key .
    You would need to enroll the licenses in maintenance if you want to upgrade them.
    In case of any queries please create a ticket via the Service Market Place.
    Regards,
    Jessy
    Customer Interaction Center
    SAP Active Global Support
    Hello Jessy,
    The customer received their permanent key in respect of these licenses - the key is  for Crystal Reports Server XI.
    They did not purchase these licenses for Crystal Reports Server, they purchased Crystal Reports and a 5-named user license for Crystal Reports was included as a special offer.  The software included was version XIR2, but they elected to use version XI instead and they received key .
    They cannot decide to upgrade now - they must enrol these licenses in maintenance if they want to upgrade them.
    Kind regards,
    Rosemary
    From: BOSAPASIA
    Sent: 29 September 2009 05:49
    To: Savage, Rosemary
    Subject: FW: Crystal Reports Server Installation Issue
    Importance: High
    HI Rose ,
    Need your assistance on the below issue.
    Customer purchased Crystal Report Server XI R2 in 2005. When he is trying to install it now, he is getting an Invalid Key code Error.
    He has provided us the Scanned copies of the Key code and the registration number.Can you please help and check if he can be provided with a Keycode.
    Regards,
    Jessy
    CIC Team Lead
    Customer Interaction Center
    Global Support Centre India
    SAP Labs India Pvt Ltd
    Hi,
    Providing you with the required details to proceed further
    Registration Number-
    Registration Email Address-taxmantra.support
    And also please find attached the scanned copy of the Registration key we got for the Crystal report server.
    Dear Mohitk,
    Thank you for your information.
    I checked with the concerned colleague and received the below update:
    Please check from where you got this key code. If from a paper, please scan it to us. Please let them track to the original paper or email.
    If you have registered the key code, please provide us the registration number or registration email address so that we will try to check for you.
    If you did not register before, as the promotion is over so the key code could not be replaced.
    I request you to kindly check the same at your end and revert with the details.
    Moreover, there are two ways for Crystal Report customer to get support.
    One is customer with bundled product such like BOE and under maintenance. These customers will have an S-user ID and password to log a case in service market place via http://service.sap.com/message
    A learning map was provided, listed on left column.
    The other is customer with only Crystal report product, the support is via SDN.
    http://service.sap.com =>Crystal Reports and Xcelsius Support=>Crystal Reports and Xcelsius Forums
    Customers can first check whether other customer has got the same issue and find the reply from our engineers.
    You may also post your own thread for support.
    Anything else I could help, please do not hesitate to contact again.
    Hi,
    I am providing you with the details required to resolve the issue related to Crystal report installation,for reference of the issue please refer the mail below.
    Please find attached the Scanned Document  containing the details as per the details required by you.
    Hope to see a quick resolution for the issue.
    Dear Mohit,
    Thank you for your e-mail.
    As discussed, I understand that youu2019ve procured Crystal Reports Server 11 in 2006. However youu2019re facing issues with key codes while reinstalling the same. We request you to kindly provide us with below details for further assistance.
    Your customer number:
    Your customer name and address:
    Purchase order number:
    Any other products purchased along with Crystal Reports Server 11
    Any S-User Id:
    Any old case ID:
    Please feel free to contact us if any further queries.
    Hi,
    I am raising this concern on behalf on Taxmantra project (Tata Consultancy Services noida).
    We have bought licensed Crystal Reports Server 11 near by 2006.We are trying to install the crystal server but while installing ,we have encountered with an error message that:-
    "The product key code you have entered is incorrect"
    We are facing the same issue in 2006,I am attaching with this email the conversations that was held in 2006 to get the correct key code.
    Please help us to resolve the issue as early as possible.
    My contact number:
    If you need any further information do let me know

    Ajit,
      By design, the product is not able to be installed under the superuser account.
    1.  Create a new user and specify a home directory for the user without a quota set.
    2.  Copy or move the installation files to a directory that the new user can read.  I suggest you move the installation files directly into the new user's home directory.
    3.  Logon as the new user (or su - newuser)
    4.  run the installation shell script using that new user's account.
    NOTE:  Ensure the system meets the requirements from the supported platforms documents.
    .Tony

  • Part of Photoshop isn't functioning.  Under adjustments, when HDR toning is clicked on I get a code:  Error 48: File or folder does not exist.  Line:11  - $.evalFile(g_StackScriptFolderPath   "StackSupport.jsx");  How can it be fixed?

    The phone company was here working on something while I was gone.  They sat down at my computer (iMac) and since then HDR toning doesn't work.  Get the code:   Error 48: File or folder does not exist.    Line: 11     ->  $.evalFile(g_StacScriptFolderPatch + "StackSupport.jsx");   How can this be fixed?   

    Go to //Applications/Adobe Photoshop [Version]/Presets/ Scripts/Stack Scripts Only/ and see if StackSupport.jsx is there. If it is not, uninstall and reinstall Photoshop to have it added back in. If it is there, first try recreating the Photoshop Preferences (hold down Command+Option+Shift while launching Photoshop).

  • HT5113 "Invalid code error" and "can't connect to the iTunes Store." Any suggestions?

    I keep getting an "invalid code error" when trying to preview a course with the enroll code. When I click on the link to the course, I get an error that says "can't connect to the iTunes Store." Any suggestions?
    I tried previewing a test course I made about a year ago. I was able to request access to the course, went into Course Manager and approved it, but hours later it still says awaiting approval on my iPad.
    Any ideas as to what could be going on, aside from a cruel April Fool's joke?
    Thanks.
    David

    How about trying to sign out of your account on the iPad, restart the iPad, sign back into the account and then try again?
    Settings>Store>Apple ID - tap on your ID and sign out - restart - go back - sign in.
    Other than going through the support article - if you haven't already done so - the only other thing I can think of is to reset/reboot the iPad. That can clear the memory and it does help solve a lot of "hinky" issues.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

Maybe you are looking for

  • Letter of credit reports

    Hi, Is there any standard report which gives me the details of LC value,  assigned balance and open value. who is the ship to party and valid from and valid to. Thanks in Advance, Raghava

  • How to use buttons from a different theme in current theme ?

    Hi Friendsl, I was just wondering how can I have those nice looking buttons from Theme-2(Builder Blue ) use in Theme-13(Classic Blue). I created a copy of theme-2 button template in theme-13 and called it "My Button". Now when I went into the button

  • Spaces ≠ Mountian Lion

    Is there any discussion in the development community about making Mission Control more versitle and visually oriented like Spaces was? Honestly I just want Spaces back... I could always expect certian windows and programs to be in the same place visu

  • FM10 Can't generate the TOC with leading dots

    Hi everybody, I have read some useful threads here about this problem but I still can't seem to be able to resolve this leading dots issue for my TOC. I have already ensured that the reference page for all of my frame files in my Book have the same R

  • Why is my phone so slow

    WHy is my iPhone 3GS so slow after I updated it?