Which invoice validation status transfer to next period or future period.

Dear All
can any one explain which invoice validation status transfer to next period or future period.
The validation status can be 1) Validated 2) Needs revalidation 3) cancelled 4) Approved 5) never validated.
can i know which validation status moves to next open period and which can be to future open period.
Regards
Shaizy
Edited by: user11298424 on 10 Aug, 2012 2:51 AM

Hi ,
I have run the query given by you. it shows Y for posted. but when I query JE_BATCH_ID from AP_INVOICE_DISTRIBUTIONS_ALL, it shows null JE_BATCH_ID.
How can I get corresponding GL Batch and journals for these invoices?
JE_BATCH_ID     ACCOUNTING_DATE     PERIOD_NAME     POSTED_FLAG     ACCRUAL_POSTED_FLAG
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y
     3/28/2012     MAR-12     Y     Y

Similar Messages

  • Invoice Validation status check in Invoice base tables - urgent Pls..

    All,
    Version:11.5.10.2
    After the invoice is validated in Invoice workbench (AP), where the validation status got stored. I came across ap_invoices_v table and AP_INVOICES_PKG.GET_APPROVAL_STATUS package can be used to check the status. But I've seen in ap_invoice_distributions_all table, match_status_update flag gets updated with flag 'A' after validation of invoice.
    I want to know which option(view,package or ap_invoice_distributions_all table) Oracle recommends to check the status of invoice.
    rgds
    sen

    Metalink note 301806.1 tells how the validation status is generated (it is not a field in a table for sure) which is different from approval_status.
    I have taken the note and came up with this function to determine it and works well so far.
    FUNCTION getvalstatus(p_invoice_id IN NUMBER) return VARCHAR2
    IS
    p_dist_count NUMBER;
    p_dist_valid_count NUMBER;
    p_dist_nevvald_count NUMBER;
    p_dist_needs_revald NUMBER;
    p_hold_count number;
    p_status varchar2(25);
    BEGIN
    SELECT count(*) INTO p_dist_count FROM
    ap_invoice_distributions_all WHERE invoice_id=p_invoice_id;
    SELECT count(*) INTO p_dist_valid_count FROM
    ap_invoice_distributions_all WHERE invoice_id=p_invoice_id
    and match_status_flag='A' ;
    SELECT count(*) INTO p_dist_nevvald_count FROM
    ap_invoice_distributions_all WHERE invoice_id=p_invoice_id
    AND (match_status_flag='N' OR match_status_flag IS NULL);
    SELECT count(*) INTO p_hold_count FROM ap_holds_all
    WHERE invoice_id=p_invoice_id
    and release_lookup_code is null;
    IF (p_dist_count=p_dist_valid_count and p_hold_count=0 and p_dist_count <>0) THEN
    p_status:='Validated';
    ELSIF
    p_dist_count=p_dist_nevvald_count THEN
    p_status:='Never Validated';
    ELSIF
    p_hold_count >0 THEN
    p_status:='On Hold';
    else
    p_status:='Needs Revalidation';
    end if;
    RETURN p_status;
    end getvalstatus;

  • MHKIM:(AP)AP invoice가 Validated, Accounting 되었는지. GL Transfer되었는지 확인방법

    QUESTION
    ==========
    SQL로 AP Invoice의 status를 알수 있는 쿼리를 요청할수 있나요?
    AP invoice가 Validated되었는지.Accounting이 되었는지. GL Transfer되었는지를
    쿼리했으면 합니다.
    ANSWER
    =========
    원하시는 형식으로 한꺼번에 결과가 나오게 하는 script는 따로 없지만,
    각각의 항목에 대한 값을 조회하는 부분은 도움을 드릴 수 있습니다.
    1. Approve여부
    ap_invoice_distributions_all table의 match_status column값을 확인하시면 됩니다.
    "A" 값이면, 해당 invoice distribution line은 Validate되었음을 나타냅니다.
    2.
    Accounting여부
    ap_invoice_distributions_all table의 Posted_flag값이 Y인 경우, Accounting이 되었음을 나타냅니다.
    혹은
    ap_invoice_distributions_all table의 accounting_event_id값으로 ap_accounting_events_all table data를
    확인하셨을때, event_status_code column값이 "ACCOUNTED"여도 Accounting이 되었음을 나타냅니다.
    3. GL transfer여부
    ap_invoice_distributions_all table의 accounting_event_id값으로
    ap_ae_headers_all table자료를 확인하시면 gl_transfer_flag column이 있는데,
    "Y"이면 GL로 transfer되었음을 나타냅니다.

  • R12 Payables: SQL Query to List Invoices along with their Validation Status

    Hi All,
    I am looking for a SQL query that gives me the list of all AP Invoices and their Validation Status.
    Thanks,
    Anil

    select invoice_id, invoice_num, invoice_amount, invoice_currency_code, approval_status_lookup_code from AP_INVOICES_V ;
    --Prasanna                                                                                                                                                                                                                                                                           

  • AP invoice accounted status is "Partial"

    Dear all,
    We are using R12.06 EBS and we have a case in AP with accounted status is "Partial". Please see below with my findings:
    1) User create a AP invoice and validate, create accounting and transfer to GL on Sep-2011
    2) After close AP period Sep-2011
    3) User apply one prepayment to this invoice on 10-10-2011
    4) Invoice accounted status is "Partial" and there are 2 invoice distributions (one is accounting with processed on 01-Sep and the other one is accounting with Unprocessed on 10-Oct).
    How can I solve this issue? Please advice.
    Thanks.

    As Tarun said above, did you try running Create Accounting / Online Accounting for that invoice again?
    Agree that they may be some bugs, which are stopping from accounting, but first of all you need to run create accounting to confirm that, whenever you change something (applying prepayment / cancelling / etc) even though you have run it before the change.
    By
    Vamsi

  • Tables affected during invoice validation in AP

    Hi,
    How to know what are the tables gets updated in backend when the invoice is validated from front end.
    Required all the table status before Invoice validation and after Invoice validation.
    Regards
    Saravanan.B

    You could run a trace to find out which tables are involved.
    Thanks,
    Brian

  • Invoice Approval Status Table/Column in AP (R12)

    Hi,
    I need to add Invoice Approval Status column to AP Trial Balance report in (R12).
    Please let me know which table has this information.
    Also, i need to add another field where:
    If Invoice Approval Status <> Approved, then what is the name of the person which we are waiting approval (Last Name, First Name)
    Could you let me know this information.
    Thanks
    Pravin

    Hi Kashif,
    Thanks for your response.
    For the Invoice Approver question:-
    Ques:- if the Invoice is Not-Approved (or) if it needs Re-approval, If Invoice Approval Status <> Approved, then what is the name of the person which we are waiting for approval..
    As you said the ap_wfapproval_history_v table , I'm not sure whether this table has history data (or) can i get Next Approver from this table.
    I tried to do in this scenario :- For one invoice_id which needs Re-approval, when i looked into ap_wfapproval_history_v table with this invoice_id there are 4 Approver names ,against each of these approvers the Response column shows either SENT or APPROVED. So, how will i know by which Approver this Invoice needs
    Re-Approval.
    please could you clarify.
    Thanks
    Pravin
    Edited by: 855902 on Oct 9, 2011 8:28 AM
    Edited by: 855902 on Oct 9, 2011 8:34 AM
    Edited by: 855902 on Oct 9, 2011 8:36 AM

  • Ap --Invoice Aging Report    aging period 0-360 periods

    we need to increase the aging report by 0-360 here i am diving like
    0-30 31-60 61-90 91-120 121-150 151-180 181-210 211-240 241-270 271-300 301-330 331-360
    The standard layout prints only 4 periods , we want to print all the above periods in output.
    1st i have created one test aging period.
    0-30 31-60 61-90 91-120 121-150 151-180 for testing i created this aging period and once i run **the standard report its displaying upto 61-90 the rest are not printing.**
    because standard report layout has only four periods. are those periods won't be incremented by our AGING PERIODS given in priod given.
    what i have to do for this. does the report will not print automatically the period given.
    how to print my given aging period 0 -150 .
    if the standard one report i need customize then what are the process steps in report builder and how to add extra aging period to standard layout.
    Please provide the usefull links for all
    suggestions are greate help
    thanks
    koteshwar

    Hi Koteshwar,
    the report will not display aging periods beyond 4 buckets which is the intended functionality as per
    below oracle reference:
    System Should Allow More Then Four Bucket in Invoice Aging Report [ID 1298644.1]
    However, you are create your own report or make a copy of this report and perform modification. For performing this activity, you need a dedicated report developer .............
    Regards,
    Ivruksha

  • Invoice validation program error:Could not find operating unit options

    Dear Team,
    Once my Payables Open Interface Import program successfully completed, I am trying to running invoice validation program which is ended with warning as bellow,
    (Bulk CALCULATE) START SYSDATE 17-DEC-2012 04:04:19
    Could not find operating unit options
    Encountered unexpected error: User-Defined Exception
    (Bulk CALCULATE) END SYSDATE 17-DEC-2012 04:04:23
    and invoice placing into Dist Variance hold,
    my interface program placed data in to based tables (ap_invoices_all and lines_all ) but distributions are not getting generating. Can you please do help me.
    Find attached excel sheet for ur references.
    Thanks
    Sathiya

    Make sure the library (pll file) is in the path indicated by your FORMS60_PATH in the registry.
    Hope that helps,
    Karim.

  • Invoice Validation Error ORA-06512: at "APPS.AP_APPROVAL_PKG", line 111124

    All,
    I am getting below error message from log file after Invoice Validation program error out, please advise.
    I could not search on "ORA-06512: at "APPS.AP_APPROVAL_PKG", line 11124" search, but found other errors and able to see we are very much higher file version than the note id advised.
    Please help any one for this issue.
    Payables: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    APPRVL module: Invoice Validation
    Current system time is 01-MAR-2013 03:40:12
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_option='All'
    p_inv_start_date='2013/02/01 00:00:00'
    p_inv_end_date='2013/02/28 00:00:00'
    p_trace_flag='N'
    p_commit_size='1000'
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.AL32UTF8
    Enter Password:
    MSG-00101: Error occured in BATCH_APPROVAL()
    MSG-00102: Error Code : -20001
    MSG-00103: Error Message : ORA-20001:
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.AP_APPROVAL_PKG", line 11124
    MSG-00000: When Others:User-Defined Exception
    REP-1419: 'beforereport': PL/SQL program aborted.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1419: MSG-00101: Error occured in BATCH_APPROVAL()
    MSG-00102: Error Code : -20001
    MSG-00103: Error Message : ORA-20001:
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.AP_APPROVAL_PKG", line 11124
    MSG-00000: When Others:User-Defined Exception
    REP-1419: 'beforereport': PL/SQL program aborted.
    Report Builder: Release 10.1.2.3.0 - Production on Fri Mar 1 03:40:15 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 42770000.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 01-MAR-2013 04:06:57
    ---------------------------------------------------------------------------

    Please post the details of the application release, database version and OS.
    Please also see these docs.
    Invoice Validation (APPRVL) Errors Out With ORA-20001: APP-SQLAP-10000: ORA-00060 [ID 1460249.1]
    R12: Invoice Validation Is Failing When Running With Parameter 'ALL' [ID 1115016.1
    R12 Payables Invoice Validation Error: Unexpected error occurred during Tax Calculation. [ID 961182.1
    Ap Invoice Validation Errors: P-1419: Msg-00101: Error Occured In Batch_approval [ID 1140828.1]
    Invoice Validation Error : REP-1419:ERROR OCCURED IN BATCH_APPROVAL() [ID 1120213.1]
    R12: Validate Invoice Errors APP-SQLAP-10000, ORA-01403 and ORA-20001 [ID 1308869.1]
    Thanks,
    Hussein

  • Deletion of Leave which is in Status 'SENT' by employee in SAP HR

    Hi All,
    We are using BADI  (BAdI Definition PT_ABS_REQ) for leave validation. In this validation we are checking Current Leaves with the Leaves already applied (Approved / Non-approved).
    In this process, We are trying to DELETE a leave which is in status 'SENT'.
    Issue:
    When we CREATE a new leave, importing parameter of BADI is IM_ATTABS_TAB (type PTARQ_ATTABSDATA_TAB) -Operation = INS.
    And when we DELETE the leave with 'SENT' status, It is also coming IM_ATTABS_TAB - operation = INS.
    Due to above issue, my validation is getting triggered even in DELETE scenario which is not required.
    Please help on this.
    Thanks in advance.
    Hemendra Singh

    to change the status by user, he can modify the hours in the application and resubmit
    For administrator purposes, you should cats_appr_lite, you can reject the all time and do it,
    Do not make any changes directly to CATSDB< it might cause inconsistency
    So better use standard transaction like cats_appr_lite or cats_da

  • Possible values for AP Invoice Approval Status  in fnd_lookups

    Hi,
    I have a EBS system deployed which is currently like a black box for me and iam doing some reporting on the top of it.
    i need to find out the possible values of AP Invoice Approval Status in fnd_lookups , fnd_lookup_values or some other tables Defined in that system.
    Something like the below is use for employee expense status
    SELECT LOOKUP_CODE FROM FND_LOOKUP_VALUES WHERE FND_LOOKUP_VALUES.LOOKUP_TYPE= 'EXPENSE REPORT STATUS' AND FND_LOOKUP_VALUES.LANGUAGE = USERENV('LANG')

    Please see if Oracle Payables Guides available at http://www.oracle.com/technetwork/documentation/applications-167706.html helps.
    Thanks,
    Hussein

  • Info Record Validity Dates - Future Period

    Hi Gurus
    can you help
    we have current Purchase Info Recs in place, with pricing condition records that have a validity date that will expire in the next few days
    we have already loaded the next pricing for the next cotnract period with the vendor, but wish to check the accuracy of the data before that pricing condition becomes "current"
    do you know how can we pull the data from the future validity period pricing condition record, so we can validiate this
    i have only found ways to get the current pricing conditions, but not the one for the future period
    please advise
    many thanks

    hi Velu
    we maintain Pricing Condition Type PB00 in ME13
    when i key a Pur Ord for the part, then go to Conditions tab in ME21n, then select the Analysis of the Pricing Condition, it bring up Procedure RM0000
    then Gross Price PB00, then various steps under this
    a number of steps not executed due to requirements not filled etc, being Contracts, outline agreements, Plant Infor Rec Order Unit, then Material Info Rec (Plant Specific)  A017, then Material Info Rec table A018 with various field names
    For Access Sequence step Mat Info Rec (Plant Specific)  it does say No condition record was found for this condition using the document data.
    any thoughts
    If we cannot resolve i shall leave it for now, and review on the day it becomes current
    many thanks

  • Retrieve "Start date of Next financial Period" and "Current Period"

    Hi,
    T-code: cne5
    I would like to display 2 new fields in cne5 report result:-
    1) Start date of Next financial Period
    2) Current Period
    I can used
    CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
         EXPORTING
              I_DATE         = SY-DATUM
              I_PERIV        = 'K4'
    But what is I_PERIV ?
    How can I retrieve the above fields value? Any Function Module that I can used?
    Appreciate helps!
    THanks a lot.

    Hi,
    Yes, i_periv is Fiscal Year Variant.
    From running OB37, I can see that V3 and K4 fiscal year variant. Which one should I used when calling the function module DATE_TO_PERIOD_CONVERT?
    Thanks!

  • OLE DB Destination" failed validation and returned validation status "VS_ISBROKEN.

    Hi
    I have a package which has 10 sequence containers. Have 10 Flat File Source files and all is working perfect on BI Debug mode. When I deploy this package to server I am getting the following error.
    I have changed the property Retain the same connection = True but same problem. I have changed the data flow task to Load Project instead of Load Into Project but in error message it is still showing the old name. I have tried to remove the whole step i.e.
    Removed Load into Project Data flow with sequence container but I am getting the same error message. 
    I am not able to understand the reason. Any Idea why am I getting the same error message even I do not have the Data Flow named Load Into Package. It is in SSIS 2008 and being deployed on SQL 2012 server.
    Message
    Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  15:28:32  Error: 2014-07-22
    15:28:36.86     Code: 0xC020201B     Source: Load Into Project OLE DB Destination [62]     Description: The number of input columns for OLE DB Destination.Inputs[OLE DB Destination Input] cannot be zero.  End Error  Error:
    2014-07-22 15:28:36.86     Code: 0xC004706B     Source: Load Into Project SSIS.Pipeline     Description: "OLE DB Destination" failed validation and returned validation status "VS_ISBROKEN".  End Error
     Error: 2014-07-22 15:28:36.86     Code: 0xC004700C     Source:
    Load Into Project SSIS.Pipeline     Description: One or more component failed validation.  End Error  Error: 2014-07-22 15:28:36.87     Code: 0xC0024107     Source: Load Into Project      Description:
    There were errors during task validation.  End Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  15:28:32  Finished: 15:28:36  Elapsed:  4.39 seconds.  The package execution failed.  The
    step failed.
    Many Thanks.
    MH
    this the error log
    starttime
    endtime
    event
    source
    message
    57:26.0
    57:26.0
    OnError
    Load Into Project
    The number of input columns for OLE DB Destination.Inputs[OLE DB Destination Input] cannot be zero.
    57:26.0
    57:26.0
    OnError
    Load Into Project
    OLE DB Destination failed validation and returned validation status "VS_ISBROKEN".
    57:26.0
    57:26.0
    OnError
    Load Into Project
    One or more component failed validation.
    57:26.0
    57:26.0
    OnError
    Load Into Project
    There were errors during task validation.
    57:19.0
    57:19.0
    OnPostExecute
    Load Into TrialBalance
    57:19.0
    57:19.0
    OnPostExecute
    Trial Balance
    57:19.0
    57:19.0
    OnPostExecute
    SSIS_LoadCheck_CoreManGroup
    57:19.0
    57:19.0
    PackageEnd
    SSIS_LoadCheck_CoreManGroup
    End of package execution.
    57:18.0
    57:18.0
    OnPostExecute
    Load Into JournalLine
    57:18.0
    57:18.0
    OnPostExecute
    JournalLine
    57:18.0
    57:18.0
    OnPreExecute
    Trial Balance
    57:18.0
    57:18.0
    OnPreExecute
    Truncate  TrialBalance
    57:18.0
    57:18.0
    OnPostExecute
    Truncate  TrialBalance
    57:18.0
    57:18.0
    OnPreExecute
    Load Into TrialBalance
    57:07.0
    57:07.0
    OnPostExecute
    Load Into Journal Type
    57:07.0
    57:07.0
    OnPostExecute
    JournalType
    57:07.0
    57:07.0
    OnPreExecute
    JournalLine
    57:07.0
    57:07.0
    OnPreExecute
    Truncate Table JournalLine
    57:07.0
    57:07.0
    OnPostExecute
    Truncate Table JournalLine
    57:07.0
    57:07.0
    OnPreExecute
    Load Into JournalLine
    57:05.0
    57:05.0
    OnPostExecute
    Load Into UserName
    57:05.0
    57:05.0
    OnPostExecute
    UserName
    57:05.0
    57:05.0
    OnPreExecute
    Business Area
    57:05.0
    57:05.0
    OnPreExecute
    Truncate Table Business Area
    57:05.0
    57:05.0
    OnPostExecute
    Truncate Table Business Area
    57:05.0
    57:05.0
    OnPreExecute
    Load Into Business Area
    57:05.0
    57:05.0
    OnPostExecute
    Load Into Business Area
    57:05.0
    57:05.0
    OnPostExecute
    Business Area
    57:05.0
    57:05.0
    OnPreExecute
    Cost Centre
    57:05.0
    57:05.0
    OnPreExecute
    Truncate CostCenter
    57:05.0
    57:05.0
    OnPostExecute
    Truncate CostCenter
    57:05.0
    57:05.0
    OnPreExecute
    Load Into Cost Centre
    57:05.0
    57:05.0
    OnPostExecute
    Load Into Cost Centre
    57:05.0
    57:05.0
    OnPostExecute
    Cost Centre
    57:05.0
    57:05.0
    OnPreExecute
    Project Status
    57:05.0
    57:05.0
    OnPreExecute
    Truncate Table Project Status
    57:05.0
    57:05.0
    OnPostExecute
    Truncate Table Project Status
    57:05.0
    57:05.0
    OnPreExecute
    Load Into Project Status
    57:05.0
    57:05.0
    OnPostExecute
    Load Into Project Status
    57:05.0
    57:05.0
    OnPostExecute
    Project Status
    57:05.0
    57:05.0
    OnPreExecute
    Project
    57:05.0
    57:05.0
    OnPreExecute
    Truncate Table Project
    57:05.0
    57:05.0
    OnPostExecute
    Truncate Table Project
    57:05.0
    57:05.0
    OnPreExecute
    Load Project
    57:05.0
    57:05.0
    OnPostExecute
    Load Project
    57:05.0
    57:05.0
    OnPostExecute
    Project
    57:05.0
    57:05.0
    OnPreExecute
    JournalType
    57:05.0
    57:05.0
    OnPreExecute
    Truncate Table Journal Type
    57:05.0
    57:05.0
    OnPostExecute
    Truncate Table Journal Type
    57:05.0
    57:05.0
    OnPreExecute
    Load Into Journal Type
    57:03.0
    57:03.0
    OnPostExecute
    Load Into Entity
    57:03.0
    57:03.0
    OnPostExecute
    Entity
    57:03.0
    57:03.0
    OnPreExecute
    Account
    57:03.0
    57:03.0
    OnPreExecute
    Truncate Table Accounts
    57:03.0
    57:03.0
    OnPostExecute
    Truncate Table Accounts
    57:03.0
    57:03.0
    OnPreExecute
    Load Into Account
    57:03.0
    57:03.0
    OnPostExecute
    Load Into Account
    57:03.0
    57:03.0
    OnPostExecute
    Account
    57:03.0
    57:03.0
    OnPreExecute
    UserName
    57:03.0
    57:03.0
    OnPreExecute
    Truncate Table User Name
    57:03.0
    57:03.0
    OnPostExecute
    Truncate Table User Name
    57:03.0
    57:03.0
    OnPreExecute
    Load Into UserName
    57:02.0
    57:02.0
    PackageStart
    SSIS_LoadCheck_CoreManGroup
    Beginning of package execution.
    57:02.0
    57:02.0
    OnPreExecute
    SSIS_LoadCheck_CoreManGroup
    57:02.0
    57:02.0
    OnPreExecute
    CoA
    57:02.0
    57:02.0
    OnPreExecute
    Truncate Table CoA
    57:02.0
    57:02.0
    OnPostExecute
    Truncate Table CoA
    57:02.0
    57:02.0
    OnPreExecute
    Load Into CoA
    57:02.0
    57:02.0
    OnPostExecute
    Load Into CoA
    57:02.0
    57:02.0
    OnPostExecute
    CoA
    57:02.0
    57:02.0
    OnPreExecute
    Entity
    57:02.0
    57:02.0
    OnPreExecute
    Truncate Table Entity
    57:02.0
    57:02.0
    OnPostExecute
    Truncate Table Entity
    57:02.0
    57:02.0
    OnPreExecute
    Load Into Entity

    Message
    Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  15:28:32  Error: 2014-07-22
    15:28:36.86     Code: 0xC020201B     Source: Load Into Project OLE DB Destination [62]     Description: The number of input columns for OLE DB Destination.Inputs[OLE DB Destination Input] cannot be zero.
    22 15:28:36.86     Code: 0xC004700C     Source: Load Into Project 22 15:28:36.87     Code: 0xC0024107     Source: Load Into Project      Description: There were errors during task validation.  End
    Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  15:28:32  Finished: 15:28:36  Elapsed:  4.39 seconds.  The package execution failed.  The step failed.
    Hi MustafaH,
    According to the error message(hightlight above), it seems it's a mapping issue that Naarasimha point out in the post above. Please check this carefully.
    An OLE DB destination includes mappings between input columns and columns in the destination data source. You do not have to map input columns to all destination columns, but depending on the properties of the destination columns, errors can occur if
    no input columns are mapped to the destination columns.  
    Reference form: http://msdn.microsoft.com/en-us/library/ms141237.aspx
    In your post, you said that it is in SSIS 2008 and being deployed on SQL 2012 server. Do you mean that you create the package deployment utility by using SSIS 2008, and then implement SSIS deployment in SSIS 2012 environment? If so, you need to
    convert the project to package deployment model to generate Manifest file in SSIS 2012. Please see:
    Use the SQL Server 2008 version of Business Intelligence Development Studio to develop and maintain packages that are based on SQL Server 2008 Integration Services (SSIS)
    Use SQL Server Data Tools - Business Intelligence for Visual Studio 2012 to develop and maintain packages that are based on SQL Server 2012 Integration Services (SSIS).
    For more information, please see:
    Interoperability and Coexistence (Integration Services):
    http://msdn.microsoft.com/en-us/library/bb522577.aspx?ppud=4
    If you have any feedback on our support, please click
    here.
    Elvis Long
    TechNet Community Support

Maybe you are looking for

  • How can i link purchases from old apple id to new apple id?

    How can i change old apple id and purchases to new apple id?

  • LCD for Color Grading

    I'll need to dive into Color when I finish editing my one-hour long documentary in a couple months. The doc is intended to be shown on a large theatre screen one time, then broadcast on community-access television and lent through our regional public

  • WS problem

    Hello, I don't if it's in this forum i have to post this question so excuse me if not . I've made a WS on a ECC6 SP14 via SOAMANAGER and generated a WSDL. With this WSDL, i've made 4 test with it : 1. I've picked the soap address within the WSDL, put

  • Calling webservice in SAP XI from Servlet

    I have requirment of Calling webservice in SAP XI from Servlet. COuld you provide information of caling simple webservice from servlet

  • Link Location and Ok does not work under Link Properties in E-mail

    Cannot Paste URL address in Link Location under Link Properties, states No Names anchors or headings in this page. and OK does work. Thanks.