Ar_receipt_api_pub.create_and_apply is returning Invalid Transaction Number

Hi All
couple of things
1) Not able to create a receipt and apply against an invoice using this api in only one environment
2) When we try to apply manually, apply to List box does not contain any invoices, even though customer has open invoices exists
Please suggest me if you have any inputs. Appreciate your help.
API used :
ar_receipt_api_pub.create_and_apply
(p_api_version => 1.0,
p_init_msg_list => fnd_api.g_true,
p_commit => fnd_api.g_true,
p_validation_level => fnd_api.g_valid_level_full,
p_currency_code => 'USD',
x_return_status => l_return_status,
x_msg_count => l_msg_count,
x_msg_data => l_msg_data,
p_amount => 2449.06,
p_receipt_number => p_receipt_number,
p_receipt_date => SYSDATE,
p_gl_date => SYSDATE,
p_customer_id => 60356006,
p_customer_bank_account_id => null,
p_customer_site_use_id => 2385884,
p_receipt_method_id => 1146,
p_doc_sequence_value => null,
p_trx_number => '13572465',
p_cr_id => l_cash_receipt_id );
Please help, if I am missing any thing. Transaction Query
SELECT
HP.PARTY_NAME,
hca.account_number, trx.customer_trx_id, aps.CUSTOMER_ID, aps.CUSTOMER_SITE_USE_ID,
hca.cust_account_id, trx.bill_to_site_use_id,
trx.receipt_method_id , trx.TRX_NUMBER, APS.AMOUNT_DUE_ORIGINAL, aps.amount_due_remaining FROM
RA_CUSTOMER_TRX_ALL TRX,
hz_cust_accounts hca,
HZ_PARTIES HP,
AR_PAYMENT_SCHEDULES_ALL APS
--WHERE TRX.TRX_NUMBER = '13572470'
where 1=1
AND HCA.PARTY_ID = HP.PARTY_ID
and hca.cust_account_id = trx.bill_to_customer_id
AND TRX.creation_date > sysdate - 10
AND APS.CUSTOMER_TRX_ID = TRX.CUSTOMER_TRX_ID
and aps.amount_due_remaining > 0

Hi ,
Is the Receipt currency and the currency of the invoice you are trying to apply same?
Regards
Muthu

Similar Messages

  • I cannot install a previously purchased version of acrobat 9 pro downloaded from the site.  Returns message at final install steps "invalid serial number." I had copied it and pasted it directly from "My Adobe".  What to do?

    I cannot install a previously purchased version of acrobat 9 pro downloaded from the site.  Returns message at final install steps "invalid serial number." I had copied it and pasted it directly from "My Adobe".  What to do?

    Hi hgratz,
    Considering 'invalid serial number' error for Acrobat 9, I would suggest you to please refer the KB doc link mentioned below:
    Error "Invalid serial number" | Acrobat 9 | CS4
    Let me know if that helps.
    Regards,
    Anubha

  • New table without statistics returns invalid number of rows

    Hi,
    I've been searching for a while now for an explanation for the following "problem"
    We have an Oracle 11.1.0.7 database on AIX5.3
    In this database we have two tables, called KRT_PRODUCTS_INFO and KRT_STRUCTURES_INFO ( the table name don't really matter ).
    The scenario is as following:
    If we recreate these tables like:
    CREATE TABLE KRT_PRODUCT_INFO_BUP AS SELECT * FROM KRT_PRODUCT_INFO;
    DROP TABLE KRT_PRODUCT_INFO CASCADE CONSTRAINTS;
    CREATE TABLE KRT_PRODUCT_INFO (...) TABLESPACE PIM_DATA NOLOGGING NOCOMPRESS NOCACHE NOPARALLEL MONITORING;
    CREATE INDEX KRT_PRODUCT_INFO_X1 ON KRT_PRODUCT_INFO (PRODUCT_NUMBER) NOLOGGING TABLESPACE PIM_DATA NOPARALLEL;
    CREATE INDEX KRT_PRODUCT_INFO_X2 ON KRT_PRODUCT_INFO (PIM_ARTICLEREVISIONID) NOLOGGING TABLESPACE PIM_DATA NOPARALLEL;
    INSERT INTO KRT_PRODUCT_INFO (SELECT * FROM KRT_PRODUCT_INFO_BUP);
    COMMIT;
    CREATE TABLE KRT_STRUCTURE_INFO_BUP AS SELECT * FROM KRT_STRUCTURE_INFO;
    DROP TABLE KRT_STRUCTURE_INFO CASCADE CONSTRAINTS;
    CREATE TABLE KRT_STRUCTURE_INFO (...) TABLESPACE PIM_DATA NOLOGGING NOCOMPRESS NOCACHE NOPARALLEL MONITORING;
    CREATE INDEX KRT_STRUCTURES_X1 ON KRT_STRUCTURE_INFO (STRUCTURE_GRP_REV_ID) NOLOGGING TABLESPACE PIM_DATA NOPARALLEL;
    CREATE INDEX KRT_STRUCTURES_X2 ON KRT_STRUCTURE_INFO (STRUCTURE_GRP_IDENTIFIER) NOLOGGING TABLESPACE PIM_DATA NOPARALLEL;
    CREATE INDEX KRT_STRUCTURES_X3 ON KRT_STRUCTURE_INFO (STRUCTURE_GRP_ID) NOLOGGING TABLESPACE PIM_DATA NOPARALLEL;
    INSERT INTO KRT_STRUCTURE_INFO (SELECT * FROM KRT_STRUCTURE_INFO_BUP);
    COMMIT;
    and we run a complex query with these two tables, this query only return a couple of rows ( exactly 24 !!! )
    If we however generate statistics on these tables after creation, the correct number of rows is returned, being 1.167.991 rows
    The statistics are gathered using:
    BEGIN
    SYS.DBMS_STATS.GATHER_TABLE_STATS (
    OwnName => 'PIM_KRG'
    ,TabName => 'KRT_PRODUCT_INFO'
    ,Estimate_Percent => NULL
    ,Method_Opt => 'FOR ALL COLUMNS SIZE REPEAT '
    ,Degree => NULL
    ,Cascade => TRUE
    ,No_Invalidate => FALSE);
    END;
    BEGIN
    SYS.DBMS_STATS.GATHER_TABLE_STATS (
    OwnName => 'PIM_KRG'
    ,TabName => 'KRT_STRUCTURE_INFO'
    ,Estimate_Percent => NULL
    ,Method_Opt => 'FOR ALL COLUMNS SIZE REPEAT '
    ,Degree => NULL
    ,Cascade => TRUE
    ,No_Invalidate => FALSE);
    END;
    /I can imagine that the 'plan' for the query used is wrong because of missing statistics.
    But I can't imagine that it would actually return an incorrect number of rows.
    I tested this behaviour in Toad and sqlplus ( first thought it was Toad ), and both behave the same.
    Another fact is, that the "problem" is NOT reproducable on our TEST environment, that runs on Oracle 11.1.0.7 on Windows2008
    Just to be sure this is the "complex" query used. It is not developed by me, and I think it looks somewhat strange but that shouldn't matter:
    SELECT sr."Identifier" STRUCTURE_IDENTIFIER
    , ar_i."Identifier" ITEM_NUMBER
    , SUM (REPLACE (NVL (s.HIDE_LE10, 0) + NVL (p.HIDE_LE10, 0), 2, 1))
    hide_le10
    , SUM (REPLACE (NVL (s.HIDE_LE30, 0) + NVL (p.HIDE_LE30, 0), 2, 1))
    hide_le30
    , SUM (REPLACE (NVL (s.HIDE_LE40, 0) + NVL (p.HIDE_LE40, 0), 2, 1))
    hide_le40
    , SUM (REPLACE (NVL (s.HIDE_LE50, 0) + NVL (p.HIDE_LE50, 0), 2, 1))
    hide_le50
    , SUM (REPLACE (NVL (s.HIDE_LE55, 0) + NVL (p.HIDE_LE55, 0), 2, 1))
    hide_le55
    , SUM (REPLACE (NVL (s.HIDE_LE60, 0) + NVL (p.HIDE_LE60, 0), 2, 1))
    hide_le60
    , SUM (REPLACE (NVL (s.HIDE_LE70, 0) + NVL (p.HIDE_LE70, 0), 2, 1))
    hide_le70
    , SUM (REPLACE (NVL (s.HIDE_LE75, 0) + NVL (p.HIDE_LE75, 0), 2, 1))
    hide_le75
    , SUM (REPLACE (NVL (s.HIDE_LE58, 0) + NVL (p.HIDE_LE58, 0), 2, 1))
    hide_le58
    , SUM (REPLACE (NVL (s.HIDE_LE80, 0) + NVL (p.HIDE_LE80, 0), 2, 1))
    hide_le80
    , SUM (REPLACE (NVL (s.HIDE_LE90, 0) + NVL (p.HIDE_LE90, 0), 2, 1))
    hide_le90
    , SUM (REPLACE (NVL (s.HIDE_LE92, 0) + NVL (p.HIDE_LE92, 0), 2, 1))
    hide_le92
    , SUM (REPLACE (NVL (s.HIDE_LE94, 0) + NVL (p.HIDE_LE94, 0), 2, 1))
    hide_le94
    , SUM (REPLACE (NVL (s.HIDE_LE96, 0) + NVL (p.HIDE_LE96, 0), 2, 1))
    hide_le96
    , COUNT (*) cnt
    FROM KRAMP_HPM_MAIN."StructureRevision" sr
    , KRAMP_HPM_MAIN."StructureGroupRevision" sgr
    , KRAMP_HPM_MASTER."ArticleStructureMap" asm
    , KRAMP_HPM_MASTER."ArticleRevision" ar_p
    , KRAMP_HPM_MASTER."ArticleDetail" ad_p
    , KRAMP_HPM_MASTER."ArticleRevision" ar_i
    , KRAMP_HPM_MASTER."ArticleDetail" ad_i
    , KRAMP_HPM_MASTER."ArticleReference" ar
    , KRT_STRUCTURE_INFO s
    , KRT_PRODUCT_INFO p
    WHERE sr."StructureID" = sgr."StructureID"
    AND sgr."StructureGroupID" = asm."StructureGroupID"
    AND ar_p."ID" = asm."ArticleRevisionID"
    AND ar_p."ID" = ad_p."ArticleRevisionID"
    AND ad_p."Res_Text100_02" = 'PRODUCT'
    AND ar_i."ID" = ad_i."ArticleRevisionID"
    AND ad_i."Res_Text100_02" = 'ARTICLE'
    AND ar."ArticleRevisionID" = ar_p."ID"
    AND ar."ReferencedSupplierAID" = ar_i."Identifier"
    AND s.STRUCTURE_GRP_REV_ID = sgr."ID"
    AND p.PIM_ARTICLEREVISIONID = ar_p."ID"
    GROUP BY sr."Identifier", ar_i."Identifier";Any ideas are welcome..
    Thanks
    FJFranken

    Hemant K Chitale wrote:
    These two tables are in the PIM_KRG schema while the other tables in the query are distributed across two other schemas "KRAMP_HPM_MAIN" and "KRAMP_HPM_MASTER" ?
    Do you happen to have the same table names occurring in multiple schemas - the query is then referencing the data in the wrong schema ?
    Hemant K ChitaleHi,
    This is not the case. The KRAMP_HPM schema's are application dedicated schema's
    And this also then does not explain why the results are correct after generating statistics.
    Anyway thanks for the tip.
    FJFranken

  • Invalid serial number for Acrobat Pro 6.0

    I had to reinstall Acrobat Professional 6.0(from a downloaded copy purchased from Adobe.com). The install will not complete. It says "Invalid serial number. Please try again". The only option is to cancel, and then I get the Message: "Adobe Acrobat could not install correctly. Adobe Acrobat was unable to install a necessary component and must quit."
    I have verified the number with Adobe Licensing. Adobe Support informs me that they do not support version 6 and the answer is hidden away in the knowledgebase. I have searched the forums and the knowledgebase - to no avail.
    Can someone please help or point me to the Doc # (if there is one).
    Please do not suggest that I download a pirated version. That is not an option for me.
    G4 PowerPC 500MHZ, 1GB SDRAM, 100GB still available on HD. OS X 10.4.11
    Can anyone help please?
    thanks,
    MWG

    From the Knowledgebase:
    > 5. Troubleshoot serial number problems.
    >
    > If the Acrobat installer returns the error "Invalid Serial Number"
    > after you enter the serial number or during startup, do one or more
    > of the following:
    >
    > -- Delete the serial number from the Serial Number text box, and then
    > reenter it exactly as it appears on the back of the Acrobat CD case
    > or in the registration guide.
    >
    > -- Reenter the serial number using different numeric keys. For
    > example, use the numeric keys above the alpha characters instead of
    > the numeric keys on the keypad.
    >
    > -- Make sure you typed the number zero (0) correctly, not as the
    > letter O.

  • I am getting an invalid serial number error for Adobe Acrobat XI

    Hi -
    My principal has ordered a copy of Adobe Acrobat XI for a school computer. The disc came with a serial number for a Mac installation, which he is hoping to install on his macbook air. I am using Remote Disc to install it.
    However, the serial number that comes both on the invoice and on the back of the CD sleeve is only 23 digits long and when entered gives an Invalid Serial Number error. I would love it if somebody from Adobe could contact me and get a replacement serial number that would be valid for the installation.
    I'm not going to post the serial number here because of reasons.

    You need to contact Adobe Support directly.  For the link below click the Still Need Help? option at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Invalid serial number Nokia e65

    Hi,
    i'm trying to register my new nokia e65 on the site My Nokia. The site always responds Invalid Serial for my serial number.
    Can anybody help me?
    Thanks

    I wonder if this is related to the previous version issue with Acrobat 8 that displayed the same or similar error?
    Here is the text from a very old document for Acrobat 8 KB if you want to try it but I don't know if it will work
    Error: "You have entered an invalid serial number..." when you try to launch Acrobat 8 Standard on a Dell computer
    Issue
    When you try to launch Adobe Acrobat 8 Standard on a Dell computer, the program returns the error message, "You have entered an invalid serial number. Please re-install Adobe Acrobat 8 Standard and enter a valid serial number when asked."
    Solution
    Check the alm_config_files folder for a duplicate AdobeConfig.xml file.
    Navigate to the following folder:
    C:\Program Files\Adobe\Acrobat 8.0\Acrobat\alm_config_files
    The following two files should appear in this folder:
    AdobeConfig.xml
    AdobeConfig.xml.aiwbf
    Delete the AdobeConfig.xml file.
    Rename the AdobeConfig.xml.aiwbf to AdobeConfig.xml by deleting the "aiwbf" suffix.
    Launch Acrobat 8 Standard.
    Additional Information
    On some Dell computers, a duplicate AdobeConfig.xml file is created when Acrobat 8 Standard is installed. The AdobeConfig.xml file without the "aiwbf" suffix is written for a volume-license version. The correct AdobeConfig.xml file is given the suffix. When a retail version of Acrobat tries to read the volume-license AdobeConfig.xml file, Acrobat returns the error.

  • (wls61sp4)java.sql.SQLException: Invalid column number [jDriver for MSSQL]

    Hi,
    Could any one help me?
    We use weblogic 6.1 SP4 and SQL2000 SP3, and we weblogic's JDBC driver(mssqlserver4v65).
    It seems the JDBC connections is not stable and sometimes throw the exceptions:
    ==========================================
    java.sql.SQLException: Invalid column number (2). This table has 1 columns (a valid index is 1 trough 1).
    java.sql.SQLException: Invalid column number (2). This table has 1 columns (a valid index is 1 trough 1).
         at weblogic.jdbc.mssqlserver4.TdsResultSet.getEntry(TdsResultSet.java:193)
    ===========================
    Thank you.
    --Ted

    Ted wrote:
    Hi,
    Could any one help me?
    We use weblogic 6.1 SP4 and SQL2000 SP3, and we weblogic's JDBC driver(mssqlserver4v65).
    It seems the JDBC connections is not stable and sometimes throw the exceptions:
    ==========================================
    java.sql.SQLException: Invalid column number (2). This table has 1 columns (a valid index is 1 trough 1).
    java.sql.SQLException: Invalid column number (2). This table has 1 columns (a valid index is 1 trough 1).
    at weblogic.jdbc.mssqlserver4.TdsResultSet.getEntry(TdsResultSet.java:193)
    ===========================
    Thank you.
    --TedCan you reliably reproduce this? Are you sure the query being sent returns
    more than one column? You should be using the mssqlserver4v70, not v65, for
    sqlserver2000.
    Joe

  • Error in ar_receipt_api_pub.create_and_apply

    Hi All,
    Trying to create and apply a receipt using api ar_receipt_api_pub.create_and_apply and running into following error.
    Error at line 1
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "APPS.AR_MO_GLOBAL_CACHE", line 55
    ORA-06512: at "APPS.ARP_STANDARD", line 3021
    ORA-06512: at line 12
    I am puzzled as I am initializing the environment and operating unit properly, and more over I can create receipts and apply them to invoices from the front end just fine.
    This is the code... Can anyone please help?
    DECLARE
    l_return_status VARCHAR2 (1);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2 (240);
    l_count NUMBER;
    l_cash_receipt_id NUMBER;
    l_msg_data_out VARCHAR2 (240);
    l_mesg VARCHAR2 (240);
    p_count NUMBER;
    BEGIN
    DBMS_OUTPUT.put_line ('Start');
    arp_standard.enable_debug;
    fnd_global.apps_initialize (user_id => 1430,
    resp_id => 50618,
    resp_appl_id => 222);
    MO_GLOBAL.INIT('AR');
    mo_global.set_policy_context ('S', 81);
    ar_receipt_api_pub.create_and_apply
    (p_api_version => 1.0,
    p_init_msg_list => fnd_api.g_true,
    p_commit => fnd_api.g_true,
    p_validation_level => fnd_api.g_valid_level_full,
    p_currency_code => 'USD',
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data,
    p_amount => 108.75,
    p_receipt_number => '89899',
    p_receipt_date => TRUNC(SYSDATE),
    p_gl_date => TRUNC(SYSDATE),
    p_customer_id => 1043,
    p_customer_bank_account_id => null,
    p_customer_site_use_id => null,
    p_receipt_method_id => 1001,
    p_trx_number => '10102',
    p_cr_id => l_cash_receipt_id,
    p_org_id => 81 );
    DBMS_OUTPUT.put_line ('Return_status '||l_return_status);
    DBMS_OUTPUT.put_line ('Message count '|| l_msg_count);
    DBMS_OUTPUT.put_line ('Cash Receipt ID '|| l_cash_receipt_id);
    IF l_msg_count = 1
    THEN
    DBMS_OUTPUT.put_line ('l_msg_data '|| l_msg_data);
    ELSIF
    l_msg_count > 1
    THEN LOOP
    p_count := p_count + 1;
    l_msg_data := fnd_msg_pub.get (fnd_msg_pub.g_next, fnd_api.g_false);
    IF l_msg_data IS NULL
    THEN
    EXIT;
    END IF;
    DBMS_OUTPUT.put_line ('Message'|| p_count ||' ---'|| l_msg_data);
    END LOOP;
    END IF;
    arp_standard.disable_debug;
    END;

    Issue resolved. Had to move "arp_standard.enable_debug" to after the operating unit setting code.

  • I bought Photoshop Elements 12 and I cannot install it..It says invalid serial number and says invalid Redemption Code

    I bought Photoshop Elements 12 and I cannot install it..It says invalid serial number and says invalid Redemption Code when I try that way.  I need the program and because I have opened the box it can't be returned to the store.  I have over $100 tied up in this product that I can't use.  Someone said install the free trial version...Ok, I did...but it is just a 30 day trial and I want the full version of the product I paid for!! So how do I get a valid serial number?  The serial number on the box and the redemption code card both come up as invalid.  Not a very happy customer right now!!

    You will need to contact Adobe Support by chat or by phone.
    Serial number and activation support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Invalid Serial Number when installing Acrobat 9 on new PC

    Invalid Serial Number when installing Acrobat 9 on new PC

    I wonder if this is related to the previous version issue with Acrobat 8 that displayed the same or similar error?
    Here is the text from a very old document for Acrobat 8 KB if you want to try it but I don't know if it will work
    Error: "You have entered an invalid serial number..." when you try to launch Acrobat 8 Standard on a Dell computer
    Issue
    When you try to launch Adobe Acrobat 8 Standard on a Dell computer, the program returns the error message, "You have entered an invalid serial number. Please re-install Adobe Acrobat 8 Standard and enter a valid serial number when asked."
    Solution
    Check the alm_config_files folder for a duplicate AdobeConfig.xml file.
    Navigate to the following folder:
    C:\Program Files\Adobe\Acrobat 8.0\Acrobat\alm_config_files
    The following two files should appear in this folder:
    AdobeConfig.xml
    AdobeConfig.xml.aiwbf
    Delete the AdobeConfig.xml file.
    Rename the AdobeConfig.xml.aiwbf to AdobeConfig.xml by deleting the "aiwbf" suffix.
    Launch Acrobat 8 Standard.
    Additional Information
    On some Dell computers, a duplicate AdobeConfig.xml file is created when Acrobat 8 Standard is installed. The AdobeConfig.xml file without the "aiwbf" suffix is written for a volume-license version. The correct AdobeConfig.xml file is given the suffix. When a retail version of Acrobat tries to read the volume-license AdobeConfig.xml file, Acrobat returns the error.

  • Set up will not accept my serial number, keeps telling me invalid serial number.

    Please help, set up will not accept my serial number, keeps telling me invalid serial number. What can I do?

    No help what-so-ever. All I want to do is download the $299.00 Acrobat XI
    Standard that I purchased yesterday. I have my redemption code and like I
    said, after spending hours yesterday going through all the crap the Adobe
    website asked for, my serial number was invalid. This is the most un-user
    friendly process I have ever attempted to go through.
    It should be one simple procedure but it never ends!!!!
    Can someone please give me simple instructions to getting my download for
    this product? If not, I am returning it for a full refund!
    On Sat, Feb 14, 2015 at 11:17 PM, RahulTyagi4you <[email protected]>

  • Printing Error:Invalid variable number (RPT -6300) (Field: F_060) Variable '69'  [Message 200-38]

    Dear Friends,
    Greetings to you all!
    Below error is not allowing me to view the PLD on all inventory related documents like GRPO/DELIVERY/GOODS RECEIPT/GOODS ISSUE/Inventory transfer and also at invoice level if transaction was posted directly and attached file is for your information.
    I couldn't find the (Field: F_060) and Variable '69' even in hidden files.
    "Printing Error:Invalid variable number (RPT -6300) (Field: F_060) Variable '69'  [Message 200-38]"
    Request you to provide me the solution ASAP to clear this issue.
    With warm regards
    Rajesh Babu K
    9959934444

    Dear Mr.Nagarajan garu,
    Thanks for the reply and the problem is not with one specific PLD, even it is not allowing to view SAP given PLD's also.
    And it is happening only with the inventory related transactions.
    EX- If invoice had any base document then it can be viewable.
          If Invoice/GRPO docs were directly posted then printing error is throwing
    Thanks & Regards
    Rajesh Babu K

  • Invalid Row Number with Gallery Widget

    Hi all,
    I'm having some trouble with selecting the correct gallery
    with the gallery widget. Instead of using the dropdown as shown in
    the demo, I want to use a query string for selecting the gallery.
    This is what I've done:
    <script type="text/javascript">
    function selectPortfolio() {
    var _wl = window.location.toString();
    var _pId = _wl.substring(_wl.lastIndexOf('=') + 1,
    _wl.length);
    dsGalleries.setCurrentRowNumber(_pId.toString());
    </script>
    </head>
    <body onload="selectPortfolio();">
    When I try to hit the following URL:
    my_website/portfolio.html?id=1, I'm trying to set the
    currentRowNumber to 1. When I debug through the the SpryData.js
    file I see the following function getting executed:
    Spry.Data.DataSet.prototype.setCurrentRowNumber =
    function(rowNumber)
    if (!this.data || rowNumber >= this.data.length)
    Spry.Debug.trace("Invalid row number: " + rowNumber + "\n");
    return;
    I can see rowNumber coming through as 1. However, this.data
    is coming back as null.
    Anyone see anything wrong with what I've done here?
    Sean

    Try to mkae it simple ;
    &Total=0;
    &RS_LEVEL0 = GetLevel0();
    &Row_LEVEL0=&RS.Getrow(1);
    &RS_LEVEL1=&Row.Getrowset(Scroll.JournalLine1);
    For &I=1 to &RS_LEVEL1.Activerowcount;
    &Row_LEVEL1=&RS_LEVEL1.Getrow(&I);
    &Record_LEVEL1=&Row_LEVEL1.GetRecord(Record.JournalLine1);
    &Field_LEVEL1=&Record_LEVEL1.GetField(Field.Amount);
    &Amount=&Field_LEVEL1.Value;
    &Total=&Total + &Amount;
    end-for;
    Your_Level_0_Record_Name.LEVEL_0_TOTAL_FIELD_NAME.value=&Total;
    Hope it will work!!!
    Don't do any declearation it will automaytically decleared.
    Thanks,
    Amit

  • Invalid Serial Number for Photoshop CS6

    We tried to download the software with the serial number, however fail. It prompts the following error message
    “Invalid Serial Number” Please re-enter a valid serial number.
    Please advise us a solution.

    Where did you buy it?  Where did you download it from?
    How many digits are in the serial number you are trying to use?
    You should know that you are NOT addressing Adobe here in these user-to-user forums,

  • Acrobat XI Invalid Serial Number After Failed Install

    Hello,
       We currently have Adobe Acrobat XI on an enterprise license. I went to install this on 3 of our Windows 7 tablets. Prior to my attempt, I removed Adobe Reader XI which is what I always do. After that I started the installer on the machine and entered the key just fine. All 3 tablets got stuck around 96-97% and failed with an error 1935. I then followed the instructions located here:
    https://helpx.adobe.com/acrobat/kb/error-1935-install-acrobat-reader.html
      Following a reboot, I tried to install again and now I am receiving the "Invalid Serial Number" error when trying to click "Next" on the installer. It won't even let me choose install trial and go. The next button does nothing when selecting trial. I tried running the offical Adobe Acrobat Cleaner and the Adobe CS6 cleaner (since Acrobat XI is part of CS6 technically). Both programs found items to delete but following a reboot I'm still receiving the same error. I also have other XI enterprise serials available and none of them work. I have a feeling something happened on the tablets that is causing the installer to think it's the wrong version or type for those serial numbers.
      Any assistance is greatly appreciated.

    Hi Rosa,
    I would like to check the issue at your end.
    Can you please provide me the contact details at [email protected] so that we can discuss this on call.
    Regards,
    Rave

Maybe you are looking for

  • Transporting MBP: Sleep, Hibernation and dangers to hard disk

    I used to transport my MBP by closing the lid and putting it in my backpack. Recently, however, it started to overheat when I do that. At first I thought it was some bug, maybe it hadn't gone to sleep properly. But then it happened again. I started t

  • A question about using 1394 driver

    Hello to the community people, I have a device (A) that sends some data to my computer via a firewire port. And there is another device(B) that is connected to another firewire port of the computer. I want to listen device A and send all data receive

  • Throwing null object reference , when focus into the spark textarea ,if it is in the popup

    I added a textarea to vrgoup container and added that vgroup as popup to the application. while i am trying to focus into the textarea , it always throwing me null object reference. to see that you need to have debugger version of flash player instal

  • Close but no Guitar . . . .

    I create a play list that has too many songs for a single CD. I have settings for a regular CD, no gap between songs, and Sound Check. I click on the burn button, I'm asked for a disc, it reads and says that it is checking the media. Then tells me th

  • Installing Photoshop on new computers

    I have Photoshop CS3 installed on my current iMac.  I am getting a new iMac this week and I plan on getting a new laptop soon.  I want to install CS3 on both new computers.  My understanding is that I can only have the program on two computers.  If t