Requisition Import Program

Hi All,
I have a problem with the requisition import program.
I need to create around 20 requisitions using this program. I have populated all the required information in the interface table po_requisitions_interface_all.
When I run the Import program only 16 requisitions are getting created and there are no error records left in the interface table.
When I checked in the front end 5 requisitions clubbed into 1 and got created. For all these 5 requisitions preparer_id is same.
Can anyone help me how to seperate them into individual requisitions.
Regards,
Jana

Jana
One idea is to allocate the requisition number for set of rows or each row you wanted the the requisition created for. Inherently Req import will group by the parameter options you have populated. You can use this sample code to achieve what you are looking for. After this you can run the req import and you should see the requisitions split.
DECLARE
l_segment1 VARCHAR (100);
CURSOR req_number_cur
IS
SELECT TO_CHAR (current_max_unique_identifier + 1)
FROM po_unique_identifier_control
WHERE table_name = 'PO_REQUISITION_HEADERS'
FOR UPDATE OF current_max_unique_identifier;
BEGIN
fnd_client_info.set_org_context (&your_org_id);
mo_global.set_policy_context ('S', &your_org_id);
OPEN req_number_cur;
FETCH req_number_cur
INTO l_segment1;
IF req_number_cur%NOTFOUND
THEN
--do something
NULL;
END IF;
CLOSE req_number_cur;
UPDATE po_unique_identifier_control
SET current_max_unique_identifier = current_max_unique_identifier + 1
WHERE CURRENT OF req_number_cur;
UPDATE po_requisitions_interface
SET req_number_segment1 = l_segment1
WHERE interface_source_code = '&your_source_code' AND interface_source_line_id = '&your_unique_identifier_for_req';
--(your can use anything here that makes it unique);
COMMIT;
END;
Thanks
Nagamohan

Similar Messages

  • Requisition Import is taking long time to complete

    Hi,
    I'm working with EBS 11.5.10 CU2, I have Requisition Import program scheduled, usually it's completing normal in around 5minutes; but sometimes it's taking around 30 minutes to complete. I compared the output files of program completing normal and taking long time, latter one has processed less requisitions than former one.
    Could somebody help what could be possible reasons to check for program to take long time to complete.
    Please help.
    Thanks

    945756 wrote:
    Hi,
    I'm working with EBS 11.5.10 CU2, I have Requisition Import program scheduled, usually it's completing normal in around 5minutes; but sometimes it's taking around 30 minutes to complete. I compared the output files of program completing normal and taking long time, latter one has processed less requisitions than former one.
    Could somebody help what could be possible reasons to check for program to take long time to complete.
    Please help.
    ThanksDo you have the statistics collected up to date?
    Please enable trace and generate the TKPROF file to find out why it takes that long -- https://forums.oracle.com/forums/search.jspa?threadID=&q=TKPROF+AND+Concurrent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Requisition Import Output message

    Hi
    I am getting note message in PO Requisition Import Output Report , Requisition is getting created but output of report is printing Invalid Operating Unit at the bottom of the Report. All the profile options are set correctly for the responsibility. Please let me know if there is anything which is missing that is resulting in the note message.
    Requisition Import Run Report Date: 07-JUL-11
    Number of approved requisitions created = 1
    Number of unapproved requisitions created = 0
    Number of interface lines in error = 0
    End of Report
    Invalid operating unit
    Thanks In Advance.
    Regards
    Rajeev

    Hi Rajeev,
    You mentioned : Output of requisition Import report is printing Invalid Operating Unit at the bottom of the Report and you are in 11.5.10.2.
    I have executed the "Requisition Import" program in our 11i system and didn't find the OU information in the report. Report details are as below :
    Requisition Import Run Report Date: 14-JUL-11
    No requisitions were created
    Number of interface lines in error = 0
    End of Report
    Is your Requisition import program is customized to pick the OU in the report???
    Could you please check/execute *"Requisition Import exceptions Report"* and check what OU is getting picked in this report.
    Kind Regards,
    S.P DASH

  • Requisition Import Interface error

    Hi All,
    I have an Out side processing Item in a BOM and when I perform move transactions, as soon as the comes to Queue stage of Out side Processing Operation, system firing requisition import program. every thing is fine till here.
    After running requisition import program , requisition is going into interface errors saying that,"Accrual account is invalid and variance account is invalid". please assign a valid accrual account and valid variance account. Please suggest me.
    Regards
    Balaji Pallela

    Verify that the following accounts are valid.
    Inventory > Setup > Organizations > Parameters > Other Accounts > Cost Variance Account
    Purchasing > setup > Organizations > Purchasing Options > Receipt Accounting > Expense AP Accrual Account
    Make sure the accounts are not restricted by security rules.
    GL > Setup > Financials > Flexfields > Validations > Security

  • How to get requisiton number on the form after running requisition import

    Hi guys,
    My requirement is populated requisition number on custom form after requisition created.plz tell me link between concurrent request id and standard requisition tables
    where i can fetch requisition number after running requisition import program. plz give sql script.
    thanks.....

    Hi;
    Did you check etrm site?
    Regard
    Helios

  • Requisition Import Problem

    Hi all,
    I have one small Doubut,Once I ran 'Requisition Import' Requisition is Created In requisition base Tables i.ePO_REQUISITION_HEADERS_ALL AND LINES_ALL IN THIS TABLES CREATION_DATE IS INSERTED BASED ON THE CREATION SYSTEM TIME OK,AND ALSO IN ANOTHER TABLE PO_ACTION_HISTORY ALSO UPDATED BASED ON THIS HEADER_ID AS A OBJECT_ID AND ACTION_CODE IS IMPORT,BUT IN MY PO_ACTION_HISTORY TABLE AFTER IMPORT THE DATA IN THIS TABLE UPDATED 4 TIME BASED ON THE ACTION_CODE IS (SUBMIT,RESERVE,APPROVE) SOME TIMES 5 TIMES UPDATED ACTION_CODE IS FORWARD ALSO INCLUDED.
    MY PROBLEM IS ON 20-MAY-09 SOME RECORDS ARE IMPORTED AT 8-00 AM BUT IN PO_ACTION_HISTORY SUMBIT DATE IS SHOWING
    1-02-09 PM WHY IT SHOWNING THIS MUCH OF TIME DIFFERNCE ,WHAT IS ACTION_CODE SUBMIT IN PO_ACTION_HISTORY.
    eX :- select * from apps.po_action_history where object_id=6715994 order by sequence_num ;
    OP:-
    OBJECT_ID     LAST_UPDATE_DATE     LAST_UPDATED_BY     CREATION_DATE     CREATED_BY ACTION_CODE     ACTION_DATE
    6715994     5/20/09 8:17 AM     1,216.00     5/20/09 8:12 AM     1,216.00     IMPORT     
    6715994     5/20/09 1:02 PM     1,216.00     5/20/09 1:02 PM     1,216.00     SUBMIT     5/20/09 1:02 PM
    6715994     5/20/09 1:02 PM     1,216.00     5/20/09 1:02 PM     1,216.00     RESERVE     5/20/09 1:02 PM
    6715994     5/20/09 1:02 PM     1,216.00     5/20/09 1:02 PM     1,216.00     APPROVE     5/20/09 1:02 PM
    EX:- select * from apps.po_action_history where object_id=6719187 order by sequence_num
    OBJECT_ID     LAST_UPDATE_DATE     LAST_UPDATED_BY     CREATION_DATE     CREATED_BY     ACTION_CODE     ACTION_DATE
    6719187     5/20/09 4:43 PM     1,216.00     5/20/09 4:41 PM     1,216.00     IMPORT          
    6719187     5/20/09 5:27 PM     1,216.00     5/20/09 5:27 PM     1,216.00     SUBMIT     5/20/09 5:27 PM     
    6719187     5/20/09 5:27 PM     1,216.00     5/20/09 5:27 PM     1,216.00     RESERVE     5/20/09 5:27 PM     
    6719187     5/20/09 5:27 PM     1,216.00     5/20/09 5:27 PM     1,216.00     APPROVE     5/20/09 5:27 PM
    OBSERVE IN THIS TWO EXAMPLES TIME DIFFERNCE BETWEEN IMPORT CREATION_DATE AND SUBMIT CREATION_DATE DIFFERNCE IS MORE.
    I NEED HELP WHEN SUBMIT IS UPDATED IN PO_ACTION_HISTORY TABLE AND ALSO WHAT IS THE ACTION_CODE SUBMIT IN PO_ACTION_HISTORY TABLE.
    THIS VERY URGENT ISSUE BECAUSE THIS EFFECT ON THE WORK FLOW BACK GROUND PROCESS ALSO.
    THANKS

    During the req import, the LOV will show the source as INV, WIP etc only when there is data in the interface table from this source. From front end you will have the option because it shows all the requisitions which are already created (through req import from respective sources). The interface program delete the interface lines onces sucessfully imported, hence the difference. Now if you are expecting lines in this table from INV but are not there, then it is all together a different problem. How are these lines getting created Kanban, Min-Max??

  • Requisition import

    Hai all,
    i want total details of Requisition import,once i import the data in requisiton Interface Tables ,then execute the statndard concurrent program Requisiton import after complte this program maily which tables will effect,once i use internal requisition then which tables affect in order management and also how to create order based on this internal Requisiton.
    please any one can help me.
    Our requirement is once execute the statndard concurrent program some documents is created very past and some documents will take time
    ex :- once i executed the concurrent program now 14-04-09 2:00 PM in requisition tables requsition approve is some is very fastly approved,
    and some documents will take approve the requisition and also same in internal sales order creation after approve the requsition take more time create the order and book the order.but some documents will very fast create the order and book the order.
    plz any help how it is created internal order and it is approved requisition.
    Thank's

    If you want "Total Details" you should refer product documentation, do some searching on metalink, check out TRMs etc. I seriously doubt if anyone can provide a one paragraph/one line reply to your questions on a discussions forum like this. Some forum moderator may be able to provide links to oracle documents, but they should be very easy to find if you care to search properly on metalink/OTN. As to why the process is taking long, there could be several possible reasons. You should work with your DBAs, analyse trace files etc or log an SR with oracle.

  • Facing issues in Payables Open Interface Import Program

    Hi,
    We have a requirement of calling Payables Open Interface Import Program from Pl/sql package.
    Invoices are getting created.
    But the issue is when we query our invoice from invoice workbench and we try to view  the record history (help->record history)
    We are getting the error as ‘fdxwho failed due to ORA-01403’.
    The code is
    l_num_req_id :=
                fnd_request.submit_request
                                          (application      => 'SQLAP',
                                           program          => 'APXIIMPT',
                                           argument1        => fnd_global.org_id,
                                           -- org_id
                                           argument2        =>l_chr_source, 
                                           -- Invoice source
                                           argument3        => NULL,
                                           argument4        => l_chr_batch_name,
                                           -- Batch Name
                                           argument5        => NULL,
                                           argument6        => NULL,
                                           --  Hold Raeson
                                           argument7        => NULL,    -- GL Date
                                           argument8        => 'N',
                                           argument9        => 'N',
                                           argument10       => 'N',
                                           argument11       => 'N',
                                           argument12       => '1000',
                                           argument13       => fnd_global.user_id,
                                           argument14       => fnd_global.login_id
    Regards
    Suresh

    Hi,
    Please review notes:
    APP-01564 ORA-01403 in FDXWHO In Any Payables Form (Doc ID 1077762.6)
    "APP-FND-01564 ORACLE error 1403 in fdxwho" in Record History (Doc ID 879528.1)
    Thanks &
    Best Regards,

  • How to get unique Batch Name for AP Open Interface Import Program

    Hi,
    We have enabled the invoice batch controls i.e. the profile option 'AP: Use Invoice Batch Controls' set to Yes.
    We have an interface with some system from where we receive a data file that has AP invoices. The invoices are loaded into staging table, and finally into AP invoice interface tables. After this the AP Open interface import is run.
    The relevant programs are in a concurrent request set and are executed every day.
    The issue is with the 'Batch Number' parameter of the Payables Open Interface Import Program. If I enter some text as the batch number, the Batch gets created with that name only. As such we need the Batch number to be unique for each job run.
    Oracle help says "If the AP: Use Invoice Batch Controls profile option is enabled and if you provide no value for this parameter then the system provides a value for you. The value the system provides is the concatenation of the Source and a unique sequential number. For example, ERS: 1234".
    However the problem is the Batch Name Parameter is mandatory, and cannot be left NULL.
    Has any one faced this issue earlier? Am I missing any setup or step?
    Any inputs in this regard would be highly appreciated!
    Best regards,
    Anand

    The proper Oracle suggested method would be to put a wrapper program around your request set that determines the batch name.
    The easier (abet less supported) method:
    CREATE OR REPLACE TRIGGER custom.coop_ap_batches_all_insert
    BEFORE
    INSERT
    ON ap.ap_batches_all
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    BEGIN
    -- to update batch name...
    -- created so that the nightly batches can have unique names by date
    -- nightly batches will be created with their simple name
    -- IE VIR, DI, MI, etc... this trigger will rename them
    -- to YYYY-MM-DD-VIR, YYYY-MM-DD-DI, YYYY-MM-DD-MI, etc...
    IF LENGTH(TRIM(:new.batch_name)) < 4 THEN
    :new.batch_name := TO_CHAR(SYSDATE,'YYYY-MM-DD') || '-' || :new.batch_name;
    END IF;
    :new.batch_name := UPPER(:new.batch_name);
    END;
    /

  • MTL_SECONDARY_LOCS_INTERFACE... Import Program

    Hi all,
    I am working on Inventory Stock Locators Conversion,
    While exploring the interface table & Import program, I found the below statement (from Manufacturing API, Page no. 195)
    "You may also put in details about other interface tables not used by the
    Item Open Interface.
    As currently running, the interface does not support the
    MTL_SECONDARY_LOCS_INTERFACE."
    So, Can any one help me to know
    ** whether the Import program exists for this interface table.
    ** Or is there any API to load into base table.
    Thank You,
    Suhasini.

    Hi Suhasini,
    There is no any public API defined.
    So we need to develope a private API and the base table for Inventory Stock Locators is MTL_ITEM_LOCATIONS
    Regards
    Praveen

  • Purpose of AP_INTERFACE_CONTROLS in the payables open import program.

    Hi,
    Can anyone explain the purpose of the table AP_INTERFACE_CONTROLS in the payable open import program.
    Regards
    Deepak

    Hello Deepak.
    AP_INTERFACE_CONTROLS is a temporary table that holds control information about segregated data in the AP_INVOICES_INTERFACE table during the Payables Open Interface Import. The table ensures that each import must be unique with respect to the combination of SOURCE and GROUP_ID. This allows the submission of multiple imports at the same time.
    Your Oracle Payables application deletes the information from this table when you complete an import.
    Octavio

  • Payables Open Interface Import program is not Importing the Invoices

    Hi All,
    We are trying to create new invoices (SUM_DIF) based on the Foreign currency gain/Loss amounts. But payables open interface import program is rejecting all invoices with the rejectionr code as "No Invoice Lines, Atleast one invoice line is required".
    But when we check in the interface tables we have invoices as well as the corresponding lines for those invoices. This issue is happening in 12.0.6
    Any one faced this similar issue earlier? Any help is highly appreciated.
    Thanks,
    Rama Krishna.

    Hi,
    No issues for me on Payables Open Invoice Interface with 12.0.6 - and yes make sure you match up the invoice_id on invoice, lines interface tables.
    Regards,
    Gareth

  • ISSUE WITH SUPPLIER SITE OPEN INTERFACE IMPORT PROGRAM in R12

    I am facing issue while submitting supplier site open interface import program programmatically using fnd_request.
    I am uploading the interface tables with the mandatory data and running the standard Request Set for Suppliers.The program is creating the Suppliers but is unable to create the Supplier Sites.It is getting completed with no rejections as well as imported records.
    It is updating the Supplier Sites Interface table (ap_supplier_sites_int ) with status as rejected with no rejected records in ap_supplier_int_rejections table.
    I am using the following code.
    Step 1 - call set_request_set
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Calling set_request_set...');
    success := fnd_submit.set_request_set ('SQLAP', 'FNDRSSUB852');--'FNDRSSUB1703');
    IF (NOT success)
    THEN
    RAISE srs_failed;
    ELSE
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'Calling submit program first time...'
    END IF;
    -- Step 2 - call submit program for each program in the set
    success :=
    fnd_submit.submit_program ('SQLAP',
    'APXSUIMP',
    'STAGE10',
    'ALL',
    1000,
    'N',
    'N',
    'N',
    CHR (0)
    IF (NOT success)
    THEN
    RAISE submitprog_failed;
    END IF;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'Calling submit program second time...'
    success :=
    fnd_submit.submit_program ('SQLAP',
    'APXSSIMP',
    'STAGE20',
    'ALL',
    1000,
    'N',
    'N',
    'N',
    CHR (0)
    IF (NOT success)
    THEN
    RAISE submitprog_failed;
    END IF;
    -- Step 3 - call submit_set
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Calling submit_set...');
    req_id := fnd_submit.submit_set (NULL, TRUE);
    IF (req_id = 0)
    THEN
    RAISE submitset_failed;
    END IF;
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Finished.');
    And in the interface table the record status is rejected and ther is no corresponding record in ap_supplier_int_rejections.
    but the supplier is getting created succesfully.
    ### Steps to Reproduce ###
    INSERT INTO ap_suppliers_int
    (exclusive_payment_flag,
    vendor_interface_id,
    vendor_name,
    segment1,
    vendor_type_lookup_code,-- set_of_books_id,
    status
    VALUES ('N', --'N',
    ap_suppliers_int_s.NEXTVAL,
    'TEST_REC4',
    4428813,
    'VENDOR', --2041,
    --rec_spl_site_bank_hdr.set_of_books_id,
    'NEW'
    INSERT INTO ap_supplier_sites_int
    (vendor_site_interface_id,
    vendor_interface_id,
    vendor_site_code,
    address_line1,
    city,
    state,
    zip,
    country,
    operating_unit_name,
    status --exclusive_payment_flag
    VALUES (ap_supplier_sites_int_s.NEXTVAL,
    -- VENDOR_SITES_INTERFACE_ID
    ap_suppliers_int_s.CURRVAL,
    -- VENDOR_INTERFACE_ID
    'REC_VDR_SITE4',
    -- VENDOR_SITE_CODE
    'REC_ADDR4',
    -- ADDRESS_LINE1,
    'REC_CITY4', --CITY
    'REC_STATE4', --STATE
    3442121,
    'US', -- COUNTRY,
    ' Test US Operating Unit',
    'NEW'
    );

    Hi
    I have the same issue with ap supplier sites interface program .. Did your problem got solved..I will be thankfull for any help
    Thanks

  • Supplier Open Interface Import Program

    Hi All,
    I am getting the error "SHIP_VIA_LOOKUP_CODE is invalid " for few Orgs when I am running Supplier Open Interface Import Program.
    I appreciate if anyone help me to get rid of this issue.
    Thanks ,
    Arya Sreedhar.

    Hi arya;
    Please check below which could be helpful for your issue:
    R12: Diagnostic Script to Troubleshoot Supplier Import Issues [ID 1391593.1]
    Regard
    Helios

  • Error in AR - Auto Invoice Import Program

    Hi,
    Please help me out for AR - Auto Invoice Import Program.
    When i am running Auto Invoice Import Program in UAT instance then its getting completed but with error and error is not reflecting in RA_INTERFACE_ERRORS_ALL table.
    Initially when i ran Interface Program in CRP instance then the program was successfull, but in UAT instance it is giving error,
    The Log is as follows, Its a big log but to get an idea please find the few starting lines of the same.
    Regards,
    Sitesh
    org parameter (raamai) = ~91~
    raassc()+ Current system time is 02-APR-2012 01:42:57
    org parameter (raassc) character = ~91~
    org parameter (raassc) numeric = ~91~
    raassc()- Current system time is 02-APR-2012 01:42:57
    raagsp()+ Current system time is 02-APR-2012 01:42:57
    raagsp()- Current system time is 02-APR-2012 01:42:57
    raaini()+ Current system time is 02-APR-2012 01:42:57
    raaapx()+ Current system time is 02-APR-2012 01:42:57
    raaapx()- Current system time is 02-APR-2012 01:42:57
    raagbo()+ Current system time is 02-APR-2012 01:42:57
    Dumping data fetched from RA_BATCH_SOURCES
    batch_source_id = 1141
    batch_source_name = Export Entry
    auto_trx_numbering_flag = N
    copy_doc_number_flag = N
    cust_trx_type_rule = I
    sold_customer_rule = R
    bill_customer_rule = R
    bill_address_rule = R
    bill_contact_rule = N
    ship_customer_rule = R
    ship_address_rule = R
    ship_contact_rule = N
    memo_reason_rule = R
    term_rule = I
    invoicing_rule_rule = R
    accounting_rule_rule = R
    unit_of_measure_rule = R
    agreement_rule = R
    inventory_item_rule = R
    fob_point_rule = S
    ship_via_rule = S
    invalid_lines_rule = R
    salesperson_rule = I
    sales_credit_type_rule = I
    accounting_flexfield_rule = R
    invalid_tax_rate_rule = R
    rev_acc_allocation_rule = P
    gl_date_period_rule = R
    create_clearing_flag = N
    derive_date_flag = Y
    sales_credit_rule = P
    sales_territory_rule = R
    receipt_method_rule = R
    customer_bank_account_rule = R
    related_document_rule = R
    memo_line_rule = R
    allow_sales_credit_flag = Y
    receipt_handling_option = N
    allow_duplicate_trx_num_flag = N
    raagbo()- Current system time is 02-APR-2012 01:42:57
    raaggi()+ Current system time is 02-APR-2012 01:42:57
    raagixpfx = 0
    raagixtpf = 0
    raagixddf = 1
    raagixacf = 0
    raagixagd = 0
    raagixatn = 0
    raagixadn = 0
    raagixcte = 0
    raagixdfd =
    raagixctc = 1683960112
    raagixrmx = T
    raagixfdx = 02-APR-12
    raagixbix =
    raagixbsi = 1141
    raagixbnx = Export Entry
    raagixoix = 91
    raagixrix = 3584119
    raagixpix = 20428
    raagixpai = 222
    raagixuix = 1458
    raagixunx = EMS
    raagixanx = AR
    raagixlul = 2968171
    raagixasc = 1
    raagixrho = N
    raagixrsf = 0
    raagixcbf = 0
    raagixuax = 1
    raagixsnf = 0
    raagixtao = 1
    raagixptf = 1
    raagixstf = 0
    raagixrfi = 0
    raagixtac = 0
    raagixcai = 50388
    raagixsbi = 2022
    raagixcpr = 2
    raagixmau =
    raagixmlx = 3
    raagixmbx = 99999999
    raagixafp = Account
    raagixifp = Item
    raagixtfp = Sub-branch
    Argbdf = 1
    Argddo = -9999
    raaggi()- Current system time is 02-APR-2012 01:42:57
    raaseb()+ Current system time is 02-APR-2012 01:42:57
    raaseb()- Current system time is 02-APR-2012 01:42:57
    arcdsu()+ Current system time is 02-APR-2012 01:42:57
    arcdsu() error level: 3 array size: 99999999 insert array size: 99999999
    arcdsu() Use Invoice Accounting For Credit Memo: Y
    arcdsu()- Current system time is 02-APR-2012 01:42:57
    raaini()- Current system time is 02-APR-2012 01:42:57
    raapft()+ Current system time is 02-APR-2012 01:42:57
    raagtr()+ Current system time is 02-APR-2012 01:42:57
    crb->raaucrpn = RAXTRX
    crb->raaucrcr = 3584119
    crb->raaucrnt = 0
    crb->raaucrml = 3
    raagtr()- Current system time is 02-APR-2012 01:42:57
    raamil()+ Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raacrf()+ Current system time is 02-APR-2012 01:42:57
    raacrf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    raaasf()+ Current system time is 02-APR-2012 01:42:57
    raaasf()- Current system time is 02-APR-2012 01:42:57
    UPDATE RA_INTERFACE_LINES
    SET REQUEST_ID = :b1,
    LAST_UPDATE_DATE = sysdate,
    LAST_UPDATED_BY = :b2,
    LAST_UPDATE_LOGIN = :b3,
    SET_OF_BOOKS_ID = NVL(SET_OF_BOOKS_ID, :b4),
    ORG_ID = NVL(ORG_ID, :b5),
    TRX_DATE = TRUNC(TRX_DATE),
    GL_DATE = TRUNC(GL_DATE),
    ORIGINAL_GL_DATE = TRUNC(GL_DATE),
    CONVERSION_DATE = TRUNC(CONVERSION_DATE),
    PURCHASE_ORDER_DATE = TRUNC(PURCHASE_ORDER_DATE),
    RULE_START_DATE = TRUNC(RULE_START_DATE),
    RULE_END_DATE = TRUNC(RULE_END_DATE),
    SALES_ORDER_DATE = TRUNC(SALES_ORDER_DATE),
    SHIP_DATE_ACTUAL = TRUNC(SHIP_DATE_ACTUAL),
    CUSTOMER_TRX_ID = NULL,
    INTERFACE_LINE_ID = NVL(INTERFACE_LINE_ID, RA_CUSTOMER_TRX_LINES_S.NEXTVAL)
    WHERE NVL(INTERFACE_STATUS, '~') != 'P'
    AND (REQUEST_ID IS NULL OR REQUEST_ID IN (3584119))
    AND BATCH_SOURCE_NAME = 'Export Entry'
    AND TRX_NUMBER = 'E512000002' AND LINK_TO_LINE_ATTRIBUTE1 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE2 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE3 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE4 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE5 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE6 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE7 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE8 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE9 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE10 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE11 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE12 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE13 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE14 IS NULL
    AND LINK_TO_LINE_ATTRIBUTE15 IS NULL

    Hi Pk,
    in log file i found the below:
    arcdsu() error level: 3 array size: 99999999 insert array size: 99999999
    and
    raaafs()+ Current system time is 02-APR-2012 01-42-57
    Failed to allocate memory for memptr
    Error calling raaafs()
    Error calling raaffc()
    Error calling raaaui()
    is it related to memory size????????
    let me know
    Regards,
    SItesh

Maybe you are looking for

  • Is the "Airport Utility" required to run in the background if I want to access the Time Capsule's HD?

    Hey there, I recently purchased a Time Capsule and want to use it for Backups and as an external HD to store files. The setup was easy and it's working so far. Except for one thing: Whenever I close the "Aiport Utility" on my Mac, I won't be able to

  • LOV cancel button displays 'No Data Found'

    I have 5 fields on a form where the users can search different information based on what they type into the search fields. Once they have their search criteria they hit a 'Search' button, I have a when_button_pressed button trigger on the search butt

  • Moving music to iPhone manually on USB without using iMatch

    I have over 10G of songs in my iTunes library. Once I've subscribed to iMatch, how do I transfer all my iTunes music from my MacBook to my iPhone without using iCloud, using USB or WIFI instead? I live in South Africa where bandwidth is expensive...

  • Cannot able to assign Operation number for Order for Change cost assignment in Travel

    All dear Gurus, During the creation of travel request in NWBC suppose if an employee opted to change cost assignment. And he selected order from Accounting Object and given an order. He is not able to select it because he is getting an error when he

  • Duplicating a record?

    In a form, I'd like to create a Duplicate Record button to copy the current record as a new one, blanking out a few key fields for the user to re-enter. This will save the user from re-entering the bulk of the info again. Any suggestions on how to do