Idoc error -- ' error passing data to port - status 02'

Hi All,
      The IDoc gets created with error status 02. The error occured in the
production system. We have not got this error for the last 7 months since we went live and we have not made any changes either.
      The following is the error message that i get,
<b>Error at OPEN '/usr/sap/edidata/out/O_20070104_220042 with operating system error msg.: ' (check path name)
Message no. E0099
Diagnosis
An error occurred when an outbound file was opened with 'OPEN DATASET'. The name of the outbound file is:
/usr/sap/edidata/out/O_20070104_220042with operating system error msg.:No such file or directory
Procedure
1. Check whether the directory exists and is linked for the SAP System.
2. If yes, check whether there is any space in the file system.
3. If the file already exists, check the authorization and the owner.</b>
Has it got anything to do with the year beginning ?
Help me resolve this issue.
Regards,
Disney.

Ravikumar,
    I processed the errored idocs from tcode bd87, it got processed successfully.
Can you tell me how to check,
1. If the disk space is full or not.
2. Authorization for the user.
Regards,
Disney.

Similar Messages

  • Error in Production Load: Error passing data to port

    Hello All,
    I got this unexpected error in production. The Jobs are still processing for a long time(in Yellow status) with the error message :
    Extraction (messages): Missing messages       (Status:Yellow)
         Missing message: Request received      (Status:Yellow)
         Missing message: Number of records sent     (Status:Yellow)
         Missing message: Selection Completed     (Status:Yellow)
    Transfer (IDocs and TRFC): Missing messages or warnings           (Status:Yellow)
         Request IDoc : Application document posted                (Status:Green)
         Info IDoc 2 : sent, not arrived ; Error passing data to port      (Status:Yellow)
         Info IDoc 3 : sent, not arrived ; Error passing data to port      (Status:Yellow)
         Info IDoc 1 : sent, not arrived ; Error passing data to port      (Status:Yellow)
    I went through the below forumn, and asked the basis to look in to it. In the meantime can any one please suggest me any solutions.
    Some problem with IDoc's Settings while loading data

    Hi Ram,
    The problem may be with the connection to the source system you are loading the data from. You can check the connection using the note 140276.
    Best Regards,
    Des.

  • IDoc_02_Error passing data to port-Communication error when  sending with HTTP

    Hello All,
    We are receiving the error "02_Error passing data to port-Communication error when  sending with HTTP", when sending the idoc to PI from ECC system.
    Observation:
    1. Some idocs are failing and immediately after sometime the same type of  idocs with different idoc numbers are getting successful.
    Eg: Orders. One purchase order is failing at one point of time. later another purchase order is getting successful after some time to the same partner.
    2. If i perform the reset of idoc, then it is getting delivered during next scheduled job run.
    please help me in resolving the issue.
    Regards,
    Ch. Venkat.

    status 02 is     Error passing data to port ...it simply means your port setting has some problem. do configure your port setting and also in partner profile
    Thanx and Regards
    Arpan Maheshwari

  • IDoc Status 02 Error passing data to port

    Hi Experts,
    I wrote a custome program to send customer via HTTP XML port. This program collects customer and send in single IDoc as per specified batch size.eg if batch size is 5 then 5 custome will be send in one IDoc. On devlopment environment it was working fine upto batch size 500. In quality single customer is transfering successfully but while selecting a batch size arround 100 it is displaying error 'Error passing data to port' with status 02.
    Please help me to be out of this.
    Regards,
    Ravinder

    status 02 is     Error passing data to port ...it simply means your port setting has some problem. do configure your port setting and also in partner profile
    Thanx and Regards
    Arpan Maheshwari

  • Outbound IDOC( Error passing data to port)

    Hi,
    We have an interface running daily configured such that the idocs are converted to files and placed on a directory path.
    All the idocs are processed successfully but for one hour the idocs failed and the error message says:
    Status: Error passing data to port
    Error at OPEN (Directory path) with operating system error msg.:No such file or directory.
    The missed data from the error idocs have been sent via PFAL.
    But again after this one hour the idocs were successfully posted for the same directory path.
    Please let me know what the issue can be here or how can we avoid this.
    Thanks.

    Hi
    *Some times it may happen that IDOC doesnt reach to the port , in case if you are using Transactional RFC port so*
    *you can use the report RSEOUT00  for sending the IDOC to port .*
    *Hope it may help you .*

  • Info IDoc  : sent, not arrived ; Error passing data to port

    Hi Folks,
      While I am loading the data from R/3 I am facing the following error in Production..
    Info IDoc 2 : sent, not arrived ; Error passing data to port
    when I checked in SM59 every thing seems fine like RFC test connection and authorization check
    In BW is check the Source system saying it is Ok.
    Only the thing I found here is in TRFC, it is error when opening RFC Connection.
    but it is different in SM59 saying every thing is ok, as said above..
    Please help me in this regard
    thanks masters
    DJ

    Srinivas,
      Thanks for your prompt reply..
    user : ALEREMOTE  and password are fine..
    As told I check st22 and sm21 in both sytems, no sort dumps I found..
    Please help me its an urgent..
    thanks
    DJ
    Message was edited by:
            Jangareddy dasari

  • Error passing data to port

    Hello,
    I use extractor 1_CO_PA1100V04.
    I see that data are uploaded. Diagnosis - current process not finished :
    Number of records like that
    15.42:10 (68888 from 0 records)
    Errors in details :
    sent, not arrived; Error passing data to port
    Selected number dores not agree with transferred number
    What is the problem? What is solution for that problem?
    A

    Hi Aleksandrs,
    there must be an error logged somewhere. Please check out the weblog /people/siegfried.szameitat/blog/2005/07/28/data-load-errors--basic-checks for analyzing the issue.
    regards
    Siggi

  • Error while passing date parameters in procedure and commit issue

    Hi
    1) I am doing a archiveing records and pls find my code below and i have couple of issue,pls find my code and want to ensure the commit is happening every 100000 rows inserted but i am archeiving a huge table but when i checks the table frequently it shows 0 records and after it shows count the actual rows around 20 million records.How can i ensure it commiting on every 100000 records. pls find my code my db version is 10g on windows
    CREATE OR REPLACE PROCEDURE doins as
    cnt number:=0;
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    2) Error while passing date as parameter i am getting following errors while passing date parameter pls find my code and errors
    CREATE OR REPLACE PROCEDURE doins(p_date date) as
    cnt number:=0;
    begin
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    exec doins(11-Aug-2008) then gives
    SQL> exec doins(11-Aug-2008);
    BEGIN doins(11-Aug-2008); END;
    ERROR at line 1:
    ORA-06550: line 1, column 16:
    PLS-00201: identifier 'AUG' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    if i gave exec doins(11-08-2008) it gaves
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'DOINS'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    rgds
    rosh

    CREATE OR REPLACE PROCEDURE doins(p_date varchar2) as
    cnt number:=0;
    begin
    FOR x IN (select A.rowid,A.* from Call_log A
    where trunc(c_date) = to_date(p_date,'DD-MON-YYYY'))
    --hope that's c_date columne is   DATE datatype
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where rowid=x.rowid;
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    thats your correct procedure - but NOT CORRECT ISSUE.
    You should use bulk collect with limit clause and forall clause to do it faster!!! Or Merge clause.

  • Error when passing data to Business connector

    Hi All,
    I am getting the error (com.wm.lang.flow.FlowException: [B2BCORE.0049.9010] Service; An error occurred when executing a REMOTE FUNCTION CALL.) when i am passing data from a program to business connector.
    I have tested my connection in R/3 and business connector and the connection is fine. Can any one pls let me know how to handle this error.
    Thanks,
    Raju

    Hi
    Answer is pure assumption
    Pls check the following OSS notes
    (1) Note 412511 - IDocs with segment release 2 and MarketSet Connector
    (2) Note 407867 - IDoc segment release 2 (R/3 release < 4.0)
    Pls take opinion from SAP / BASIS before implementing the OSS note
    Regards
    Madhan D

  • Error when passing data from app server...

    Hello Experts,
    I am encountering an error when trying to pass data from application server
    to my internal table. Below is the error:
    "You cannot convert the character set"
    Hope you can help me guys.Thank you and take care!

    Hi  ,
    ABAP code for uploading a TAB delimited file into an internal table. See code below for structures. The code is base on uploading a simple txt file.
    REPORT  zuploadtab                    .
    PARAMETERS: p_infile  LIKE rlgrap-filename
                            OBLIGATORY DEFAULT  '/usr/sap/'..
    DATA: ld_file LIKE rlgrap-filename.
    *Internal tabe to store upload data
    TYPES: BEGIN OF t_record,
        name1 like pa0002-VORNA,
        name2 like pa0002-name2,
        age   type i,
        END OF t_record.
    DATA: it_record TYPE STANDARD TABLE OF t_record INITIAL SIZE 0,
          wa_record TYPE t_record.
    *Text version of data table
    TYPES: begin of t_uploadtxt,
      name1(10) type c,
      name2(15) type c,
      age(5)  type c,
    end of t_uploadtxt.
    DATA: wa_uploadtxt TYPE t_uploadtxt.
    *String value to data in initially.
    DATA: wa_string(255) type c.
    constants: con_tab TYPE x VALUE '09'.
    *If you have Unicode check active in program attributes then you will
    *need to declare constants as follows:
    *class cl_abap_char_utilities definition load.
    *constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
    *START-OF-SELECTION
    START-OF-SELECTION.
    ld_file = p_infile.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    ELSE.
      DO.
        CLEAR: wa_string, wa_uploadtxt.
        READ DATASET ld_file INTO wa_string.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          SPLIT wa_string AT con_tab INTO wa_uploadtxt-name1
                                          wa_uploadtxt-name2
                                          wa_uploadtxt-age.
          MOVE-CORRESPONDING wa_uploadtxt TO wa_upload.
          APPEND wa_upload TO it_record.
        ENDIF.
      ENDDO.
      CLOSE DATASET ld_file.
    ENDIF.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *!! Text data is now contained within the internal table IT_RECORD
    Display report data for illustration purposes
      loop at it_record into wa_record.
        write:/     sy-vline,
               (10) wa_record-name1, sy-vline,
               (10) wa_record-name2, sy-vline,
               (10) wa_record-age, sy-vline.
      endloop.
    Reward  points if it is usefull ..
    Girish

  • I am triggering My IDOC for XI interface Error passing data to port

    Hi All
    when i checked the partner profile , it is givng the error as this one , and i dont to how to go for this one
    No Message Control entry for this entry

    Hi Sridhar,
    Cross check with this weblog:
    /people/swaroopa.vishwanath/blog/2007/01/22/ale-configuration-for-pushing-idocs-from-sap-to-xi
    Sachin

  • BI - Error passing data to port

    Hi,
    We have issues executing an info-package in BIQ200 (BIQ SYSTEM).
    It uses RFC to get the data from ECQ220 (ECQ DEV SYSTEM).
    The data is then written to a PSA file in BIQ200.
    The process should end with a green status indicator. However it is not
    ending and just times out.
    Please note that this functionality worked before doing the Remote
    client copy from productions system ECPCLNT320 to our ECQCLNT220. All
    RFC destination are properly defined. Please note that this
    functionality was working correctly before the remote client copy. 
    Attached are some screen shot. I am not sure if the setting in WE21 for
    the transactional rfc "A000000015" should be changed from "SMXCLNT200"
    to "BIQCLNT200". I noticed that the transcational rfc for "A000000016"
    is BIDCLNT100 and "A000000017" is "BIPCLNT300" as per the attached
    screen shot.

    I checked sm21, st22 and background jobs in BIQ 200 and everything seems looks fine except for 1 job as noted below. This job could be for something ealse  I checked RSM0 --> Monitor Node --> 0ACCOUNT (5/26/2010) ECQCLNT220 (Red Alert: 18082 from 0 Records) . It seems like the data is pulled from ECQCLNT220 but the records just hangs to update in BIQCLNT200. Below is the log for RSMO.
    RSMO LOG
    Errors while sending packages from OLTP to BI
    Diagnosis
    No IDocs could be sent to BI using RFC.
    System Response
    There are IDocs in the source system ALE outbox that did not arrive in the ALE inbox of BI.
    Further analysis:
    Check the TRFC log.
    You can access this log using the wizard or the menu path "Environment -> Transact. RFC -> In source system".
    Error handling:
    If the TRFC is incorrect, check whether the source system is fully connected to BI. In particular, check the authorizations of the background user in the source system.
    Job log overview for job:    BI_PROCESS_CHAIN / 0400012A
    Date       Time     Message text                                                                                Message class Message no. Message type
    05/26/2010 04:00:13 Job started                                                                                00           516          S
    05/26/2010 04:00:13 Step 001 started (program RSPROCESS, variant &0000000032064, user ID RFC_USER)                         00           550          S
    05/26/2010 04:00:13 Start process CHAIN ZNGK_MASTR_TEXT in run D853A0PTCQ592DBNG11QE7V16 of chain ZNGK_MAST_DATA_LOAD     RSPC          156          S
    05/26/2010 04:00:14 Chain Is OK                                                                                RSPC          028          S
    05/26/2010 04:00:16 Chain ZNGK_MASTR_TEXT was removed from scheduling                                                     RSPC          026          S
    05/26/2010 04:00:16 Chain changed! Scheduling in display mode not possible                                                RSPC          113          I
    05/26/2010 04:00:16 Process did not report an instance -> no log                                                          RSPC          057          E
    05/26/2010 04:00:16 Job cancelled after system exception ERROR_MESSAGE                                                     00           564          A

  • Error on BD87 -Error Passing data to Port

    Hi All,
    I'm facing an issue with ECC Quality system to BI Quality in BD87, In Logical System For Quality client ->IDocs in outbound Processing->RSINFO->E0(266):  Could not find code page. I have done restore and connection test in SM 59, connection is fine, but still issue persists.
    Regards
    #Alex

    Hi,
    Could not find codepage. Seems to look like a language sync issue between the two systems.
    Also unicode and non-unicode settings on the systems need to be checked. Further check the unicode settings on the RFC between the systems.
    Regards,
    Srikishan

  • Error while passing date parameter to the XML data definition

    Hi All,
    I have developed a BI publisher report using XML data definition & RTF template.
    This data definition contains a SQL query in it's CDATA section and runs as a concurrent program(without RDF) . We are looking to pass a date parameter to the SQL query and its not accepting the date parameter. However, when we hardcode SYSDATE in the SQL query in place of the parameter, the report runs fine. In the log file it shows that the parameter is being treated in American date style and we are using DD-MON-RRRR format. I have tried to convert the date format however still the error exists.
    What we did ?
    Created a XML data definition which contains the SQL query in its CDATA section & p_rundate (DATE) parameter.
    Registerd the XML data definition as concurrent program with EXECUTABLE= XDODTEXE and Output format as XML with p_date as a date parameter.
    Looking for any available solution for the same.
    Thanks.

    Hi All,
    I have developed a BI publisher report using XML data definition & RTF template.
    This data definition contains a SQL query in it's CDATA section and runs as a concurrent program(without RDF) . We are looking to pass a date parameter to the SQL query and its not accepting the date parameter. However, when we hardcode SYSDATE in the SQL query in place of the parameter, the report runs fine. In the log file it shows that the parameter is being treated in American date style and we are using DD-MON-RRRR format. I have tried to convert the date format however still the error exists.
    What we did ?
    Created a XML data definition which contains the SQL query in its CDATA section & p_rundate (DATE) parameter.
    Registerd the XML data definition as concurrent program with EXECUTABLE= XDODTEXE and Output format as XML with p_date as a date parameter.
    Looking for any available solution for the same.
    Thanks.

  • Error when passing Date to ViewObject

    I am capturing Date and 1 string on form and passing as bind variables to a query in Vo.
    I get error oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation.
    The Vo executes fine if the query has only date parameter as a bind variable
    but it fails when there are 2 or more bind variables along with date as a bind variable.
    I am capturing the date in Co as -
    String runDate = pageContext.getParameter("Rundate");
    And executing VO in AM as -
    vo.setWhereClauseParams(null);
    vo.setWhereClauseParam(0,runDate);
    vo.setWhereClauseParam(1,interface_code);
    vo.executeQuery();
    and VO query is
    select a, b, c
    from table where interface_id = (select interface_id from table where interface_code = :2) and
    (payroll_id like 'XX' or payroll_id = 'HEADER') and output_rec_type in (select distinct output_rec_type from table
    where interface_id=(select interface_id from table where interface_code = :2) and payroll_id like 'XX') and
    run_date = TO_DATE((to_char(trunc(to_date(:1)),'DD-MON-YYYY') ),'DD-MON-YYYY')
    The strange thing is that , the VO executes fine if I hard code value for bind variable :2 ,but if fails otherwise.
    Are there any limitations in using date as bind variable or I am doing something wrong way.
    Thanks in Advance,
    Tanveer

    By the way instead of using date format directly in query, u can pass java date object in bind variables, it will make your code safe, even if user enters date in some other format by changing his user level preference.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • How to stay on the same space when closing a window?

    I love multiple workspaces but ever since I came to OSX a feature is driving me nuts. Every time I close a window, the previous window comes in focus, and if that window was on a different workspace, the OS switches to that desktop. This can be disab

  • I tried to read my mails from hotmail. It wont open

    cant get to my hotmail

  • Pdf files to be usable in fcp

    Hi I have 3 large pdf files containing picts and i would like to use them in an FCP project. should i open it in photoshop and save it in the format appropriate for fcp if so what is the best format knowing that my sequence is set to apple pro res 42

  • Lightroom V1.0 and iView

    We need to understand how the two programs will interact. Could someone explain to us whether and how an iView Catalog will be able to open/read/show RAW/JPEG/TIFF files that have been edited in Lightroom? Will there be any limitation? Thanks a lot.

  • Full width slider problem

    Hi I want to create website with full-width slidershow. But when i publish from the muse neither the full width slider is shown nor the image. im sharing the link that i published from muse: http://pakstaryeni.businesscatalyst.com/index.html and this