IDOC : Changing a transient Error to Permanent

Hi guys,
Is it possible to change the acknowledge category, meaning
Chapter 5 from 'How to Handle Acknowledge for IDOC",
IDoc Status XI Acknowledgment Status
Outbound (Sender) Inbound (Receiver) Main/MessageClass Ack/Status Ack/Category
39 50 SystemAck OK Permanent
39 56, others SystemAck Error Transient
40 68 SystemAck Error Permanent
39 51 ApplicationAck Error Transient
41 52, 53 ApplicationAck OK Permanent
changing an idoc status 51 which is a transient error to a permanent error?

I am guessing from your question that you want to change the idoc status codes, you would need a custom program..you can look at the function module RC1_IDOC_SET_STATUS.
I have used it when i need to archive some idoc`s..to change status from an non archivable status to an archivable status like 51 and 68 ..respectively..
Hope that helps
Ravi Raman

Similar Messages

  • Send E-mail from Oracle (9.2.0.1) : SMTP transient error: 421 Service not a

    I have used Oracle 9i server (9.2.0.1 version) on Windows XP machine(with SP2).I want to send Email from PL/SQL procedure.
    My Question is what sort of configuration needed to perform this activity?
    I have installed IIS (Internet Information Service)
    in my machine, then configure my SMTP mail server
    with a valid email id and password given TCP port 465.
    Later I came to know that to send Email from PL/SQL I have to install Oracle JServer Code. Follow three steps. the steps are
    1. Execute the script as sys "$ORACLE_HOME\javavm\install\initjvm.sql"
    2. Execute the loadjava classfile as
    $ORACLE_HOME\plsql\jlib>loadjava -f -v -r -u sys/**** plsql.jar
    3. Execute the script as sys "$ORACLE_HOME\rdbms\admin\initplsj.sql"
    I sucessfully executed the first step, but for the second step iam not able to locate the plsql.jar file in the specified path.
    So Please tell me if there is any other method to perform this task
    My code is as follows.
    CREATE OR REPLACE PROCEDURE SEND_MAIL (
                                  msg_to varchar2,
                                  msg_subject varchar2,
                                  msg_text varchar2
                                  IS
                                  c utl_smtp.connection;
                                  rc integer;
                                  msg_from varchar2(50) := '[email protected]';
                                  mailhost VARCHAR2(30) := 'mail.google.com';
                             BEGIN
                                  c := utl_smtp.open_connection(mailhost, 465);
                                  utl_smtp.helo(c, mailhost);
                                  utl_smtp.mail(c, msg_from);
                                  utl_smtp.rcpt(c, msg_to);
                                  dbms_output.put_line(' Start Sending data');
                                  utl_smtp.data(c,'From: Oracle Database' || utl_tcp.crlf ||
                                  'To: ' || msg_to || utl_tcp.crlf ||
                                  'Subject: ' || msg_subject ||
                                  utl_tcp.crlf || msg_text);
                                  dbms_output.put_line(' Finish Sending data');
                                  utl_smtp.quit(c);
              EXCEPTION
                   WHEN UTL_SMTP.INVALID_OPERATION THEN
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
                   WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    dbms_output.put_line(' Temporary e-mail issue - try again');
    WHEN UTL_SMTP.PERMANENT_ERROR THEN
    dbms_output.put_line(' Permanent Error Encountered.');
    END;
    Procedure Created.
    SQL> execute prc_send_mail('[email protected]','[email protected]','Good Morning.');
    BEGIN prc_send_mail('[email protected]','[email protected]','Good Morning.'); END;
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 374
    ORA-06512: at "SCOTT.PRC_SEND_MAIL", line 19
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at line 1.
    Please tell me how to solve this problem.
    Thank You.

    1) Why did you install an SMTP server locally and then tell your code to try to use the server mail.google.com?
    2) The error you're getting is from mail.google.com indicating that Google isn't running an open SMTP server there. I would be very surprised if Google were running a publicly available SMTP server anywhere since that would be an invitation for spammers.
    Justin

  • IDoc failed with the error massaeg "Instance of object type could not be ch

    Hi All
    I am getting IDoc failed with the error massaeg "Instance of object type could not be changed"
    Message type :PORDCR
    Basic type : PORDCR05
    Message no. BAPI003
    Status : 51
    All POs are get uploaded in SAP during Cut over activities only.
    Please suggest on this.It will be a great help.
    Thanks
    Ajit

    Hi
    After uploading POs into SAP we are changing quantity and value in PO in Legacy system, and for this all IDocs are failed, subsequently these changes are not triggering to ECC.
    Please help
    Thanks
    Ajit

  • IDoc included in IDoc packet containing an error: transfer it separately

    Hi Gurus,
    I'm having this problem in our ECC side. I already did what Michal said in his blog:
    /people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change
    I have bundled the multiple IDOCs into 1 MATMAS.
    But I'm still having the error IDoc included in IDoc packet containing an error: transfer it separately.
    I've searched in the forums and none of them worked for me.
    Thanks in advance!

    Disable packaging or change the Partner Profile on WE02 transaction to "process immediately" the IDOCS.
    When you process the IDOCS in background mode, it will create packages (it is enabled by default), and in case any of them fail you won't be able to see the root cause, but will have to go to BD97 transaction to process them again. Therefore, please use the "process immediately" or disable packaging and then you will be able to either see the error or process it because it won't fail because of another IDOC.

  • ORA-29278: SMTP transient error: 421 Service not available

    Hi all,
    I'm using Oracle 10g working on Windows XP Home.
    I'm trying to send a basic mail from my stored procedure.
    When I tried to run the code, I get ORA-29278: SMTP transient error: 421 Service not available.
    Below is the code I'm trying.
    CREATE OR REPLACE PROCEDURE SEND_MAIL (
    msg_to varchar2,
    msg_subject varchar2,
    msg_text varchar2 )
    IS
    c utl_smtp.connection;
    rc integer;
    msg_from varchar2(50) := 'Oracle9.2';
    mailhost VARCHAR2(30) := '127.0.0.1'; -- local database host
    BEGIN
    c := utl_smtp.open_connection(mailhost, 25); -- SMTP on port 25
    dbms_output.put_line('ok');
    utl_smtp.helo(c, mailhost);
    utl_smtp.mail(c, msg_from);
    utl_smtp.rcpt(c, msg_to);
    utl_smtp.data(c,'From: Oracle Database' || utl_tcp.crlf ||
    'To: ' || msg_to || utl_tcp.crlf ||
    'Subject: ' || msg_subject ||
    utl_tcp.crlf || msg_text);
    utl_smtp.quit(c);
    EXCEPTION
    WHEN UTL_SMTP.INVALID_OPERATION THEN
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
    WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    dbms_output.put_line(' Temporary e-mail issue - try again');
    dbms_output.put_line (sqlerrm);
    WHEN UTL_SMTP.PERMANENT_ERROR THEN
    dbms_output.put_line(' Permanent Error Encountered.');
    END;
    Below are the possibilites I tried..
    I tried to ping localhost.. This is the output I get
    C:\Documents and Settings\Me>ping localhost
    Pinging polasa [127.0.0.1] with 32 bytes of data:
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Ping statistics for 127.0.0.1:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    In one of the thread, a user suggested to do the following
    Go to Control Panel->Add or Remove Programs->Click on
    Add/Remove Wndows Components
    Check IIS check box.
    Select Internet Information Service (IIS) option and click on Details button
    Check whether SMTP Service is checked or not.
    If not selected then select SMTP check box.
    This process should be done on server.
    It will help out from ORA-29278: SMTP transient error: 421 Service not available
    problem.
    There is no IIS in my Windows Components..
    Any suggestions? Thanks in advance

    It sounds like you don't have an SMTP server running on your local machine.
    Even if you install IIS (or some other SMTP server), that is probably not enough to send email outside of your machine because your machine is unlikely to be trusted by the downstream mail servers. If you are running this in a company, you'll need to talk to your company's mail admin to determine where the corporate SMTP server is running. If you running this at home, you'll need to find out from your ISP what SMTP servers are available to you.
    Justin

  • Migration Working with Errors and Taking Very Long Time: Transient error MapiExceptionNetworkError, StalledDueToMailboxLock

    So, I am migrating mailboxes to a 2013 EXC from a 2010 EXC. Both in same subnet on same domain. Firewall on WIndows disabled: 
    Setup batch move on 2013 box. But users logs are getting 
    StalledDueToMailboxLock in the status as well as 
    Transient error MapiExceptionNetworkError has occurred. The system will retry (1/60).
    also, The mailboxes eventually migrate over 2-3 days. some quicker some with out error. Error comes up with mailboxes that users do not use. I have a lot of users to migrate and cannot migrate as such a slow pace. 
    Any Ideas of the error??
    RunspaceId : 6c688e69-8ba8-4044-9807-7f56d35be440
    MailboxIdentity : bwa.local/BWA/UK/UK User Redirect/Angie Dolan
    DistinguishedName : CN=Angie Dolan,OU=UK User Redirect,OU=UK,OU=BWA,DC=bwa,DC=local
    DisplayName : Angie Dolan
    Alias : adolan
    ExchangeGuid : 4c60f493-e5f5-46bb-adf1-9bea9790f5ca
    ArchiveGuid :
    Status : InProgress
    StatusDetail : StalledDueToMailboxLock
    SyncStage : CopyingMessages
    Flags : IntraOrg, Pull
    RequestStyle : IntraOrg
    Direction : Pull
    IsOffline : False
    Protect : False
    DoNotPreserveMailboxSignature : True
    Priority : Normal
    WorkloadType : Local
    Suspend : False
    SuspendWhenReadyToComplete : False
    IgnoreRuleLimitErrors : False
    RecipientTypeDetails : UserMailbox
    SourceVersion : Version 14.3 (Build 123.0)
    SourceDatabase : Mailbox Database 1691384683
    SourceServer : CLOUD-EXC-01.bwa.local
    TargetVersion : Version 15.0 (Build 775.0)
    TargetDatabase : Mailbox Database 0192305397
    TargetServer : CLOUD-EXC-02.bwa.local
    SourceArchiveDatabase :
    SourceArchiveVersion :
    SourceArchiveServer :
    TargetArchiveDatabase :
    TargetArchiveVersion :
    TargetArchiveServer :
    RemoteHostName :
    RemoteGlobalCatalog :
    BatchName : MigrationService:b
    StartAfter :
    CompleteAfter :
    RemoteCredentialUsername :
    RemoteDatabaseName :
    RemoteDatabaseGuid :
    RemoteArchiveDatabaseName :
    RemoteArchiveDatabaseGuid :
    TargetDeliveryDomain :
    ArchiveDomain :
    BadItemLimit : 0
    BadItemsEncountered : 0
    LargeItemLimit : 0
    LargeItemsEncountered : 0
    AllowLargeItems : True
    QueuedTimestamp : 3/23/2014 1:06:19 PM
    StartTimestamp : 3/23/2014 1:06:27 PM
    LastUpdateTimestamp : 3/23/2014 1:25:13 PM
    InitialSeedingCompletedTimestamp :
    FinalSyncTimestamp :
    CompletionTimestamp :
    SuspendedTimestamp :
    OverallDuration : 00:22:38
    TotalFinalizationDuration :
    TotalDataReplicationWaitDuration :
    TotalSuspendedDuration :
    TotalFailedDuration :
    TotalQueuedDuration : 00:00:03
    TotalInProgressDuration : 00:22:34
    TotalStalledDueToCIDuration :
    TotalStalledDueToHADuration :
    TotalStalledDueToMailboxLockedDuration : 00:13:47
    TotalStalledDueToReadThrottle :
    TotalStalledDueToWriteThrottle : 00:02:14
    TotalStalledDueToReadCpu :
    TotalStalledDueToWriteCpu : 00:00:04
    TotalStalledDueToReadUnknown :
    TotalStalledDueToWriteUnknown :
    TotalTransientFailureDuration : 00:01:36
    TotalProxyBackoffDuration :
    TotalIdleDuration : 00:04:45
    MRSServerName :
    TotalMailboxSize : 3.534 GB (3,795,059,862 bytes)
    TotalMailboxItemCount : 20741
    TotalArchiveSize :
    TotalArchiveItemCount :
    BytesTransferred : 59.82 MB (62,723,648 bytes)
    BytesTransferredPerMinute :
    ItemsTransferred : 412
    PercentComplete : 25
    CompletedRequestAgeLimit : 7.00:00:00
    PositionInQueue :
    InternalFlags : SkipFolderPromotedProperties, WordBreak
    FailureCode :
    FailureType :
    FailureSide :
    Message : Informational: The request has been temporarily postponed because the mailbo
    is locked. The Microsoft Exchange Mailbox Replication service will attempt t
    continue processing the request after 3/23/2014 1:30:13 PM.
    FailureTimestamp :
    IsValid : True
    ValidationMessage :
    RequestGuid : 55c14015-1bca-48eb-bb79-25b480464bfb
    RequestQueue : Mailbox Database 0192305397
    Identity : bwa.local/BWA/UK/UK User Redirect/Angie Dolan
    DiagnosticInfo :
    Report : 3/23/2014 1:06:19 PM [CLOUD-EXC-02] '' created move request.
    3/23/2014 1:06:26 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:06:26 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:06:26 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:06:27 PM [CLOUD-EXC-02] Request processing started.
    3/23/2014 1:06:27 PM [CLOUD-EXC-02] Source mailbox information:
    Regular Items: 17941, 3.509 GB (3,767,437,011 bytes)
    Regular Deleted Items: 2435, 26.34 MB (27,622,851 bytes)
    FAI Items: 365, 0 B (0 bytes)
    FAI Deleted Items: 0, 0 B (0 bytes)
    3/23/2014 1:06:27 PM [CLOUD-EXC-02] Mailbox signature will not be preserved
    for mailbox 'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'. Outlook client
    will need to restart to access the moved mailbox.
    3/23/2014 1:06:29 PM [CLOUD-EXC-02] Stage: CreatingFolderHierarchy. Percent
    complete: 10.
    3/23/2014 1:06:36 PM [CLOUD-EXC-02] Initializing folder hierarchy from
    mailbox 'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)': 370 folders total.
    3/23/2014 1:06:36 PM [CLOUD-EXC-02] Folder creation progress: 0 folders
    created in mailbox 'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'.
    3/23/2014 1:06:53 PM [CLOUD-EXC-02] Folder hierarchy initialized for mailbox
    'Primary (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)': 369 folders created.
    3/23/2014 1:06:53 PM [CLOUD-EXC-02] Stage: CreatingInitialSyncCheckpoint.
    Percent complete: 15.
    3/23/2014 1:07:58 PM [CLOUD-EXC-02] Initial sync checkpoint progress: 0/370
    folders processed. Currently processing mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'.
    3/23/2014 1:07:59 PM [CLOUD-EXC-02] Transient error MapiExceptionNetworkErro
    has occurred. The system will retry (1/60).
    3/23/2014 1:08:31 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:08:31 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:08:31 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:08:33 PM [CLOUD-EXC-02] Relinquishing job because the mailbox is
    locked. The job will attempt to continue again after 3/23/2014 1:13:33 PM.
    3/23/2014 1:13:36 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:13:37 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:13:37 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:13:38 PM [CLOUD-EXC-02] Request processing continued, stage
    CreatingInitialSyncCheckpoint.
    3/23/2014 1:13:39 PM [CLOUD-EXC-02] Initial sync checkpoint progress: 0/370
    folders processed. Currently processing mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)'.
    3/23/2014 1:13:47 PM [CLOUD-EXC-02] Initial sync checkpoint completed: 354
    folders processed.
    3/23/2014 1:13:47 PM [CLOUD-EXC-02] Stage: LoadingMessages. Percent complete
    20.
    3/23/2014 1:14:34 PM [CLOUD-EXC-02] Messages have been enumerated
    successfully. 20738 items loaded. Total size: 3.535 GB (3,795,484,545 bytes)
    3/23/2014 1:14:34 PM [CLOUD-EXC-02] Stage: CopyingMessages. Percent complete
    25.
    3/23/2014 1:14:34 PM [CLOUD-EXC-02] Copy progress: 0/20738 messages, 0 B (0
    bytes)/3.535 GB (3,795,484,545 bytes), 12/370 folders completed.
    3/23/2014 1:16:45 PM [CLOUD-EXC-02] Transient error MapiExceptionNetworkErro
    has occurred. The system will retry (1/60).
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:17:17 PM [CLOUD-EXC-02] Relinquishing job because the mailbox is
    locked. The job will attempt to continue again after 3/23/2014 1:22:17 PM.
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:22:39 PM [CLOUD-EXC-02] Request processing continued, stage
    LoadingMessages.
    3/23/2014 1:22:40 PM [CLOUD-EXC-02] Messages have been enumerated
    successfully. 20738 items loaded. Total size: 3.535 GB (3,795,484,545 bytes)
    3/23/2014 1:22:40 PM [CLOUD-EXC-02] Stage: CopyingMessages. Percent complete
    25.
    3/23/2014 1:22:40 PM [CLOUD-EXC-02] Copy progress: 0/20738 messages, 0 B (0
    bytes)/3.535 GB (3,795,484,545 bytes), 12/370 folders completed.
    3/23/2014 1:24:41 PM [CLOUD-EXC-02] Transient error MapiExceptionNetworkErro
    has occurred. The system will retry (1/60).
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] The Microsoft Exchange Mailbox
    Replication service 'CLOUD-EXC-02.bwa.local' (15.0.775.35 caps:3F) is
    examining the request.
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] Connected to target mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    0192305397', Mailbox server 'CLOUD-EXC-02.bwa.local' Version 15.0 (Build
    775.0).
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] Connected to source mailbox 'Primary
    (4c60f493-e5f5-46bb-adf1-9bea9790f5ca)', database 'Mailbox Database
    1691384683', Mailbox server 'CLOUD-EXC-01.bwa.local' Version 14.3 (Build
    123.0).
    3/23/2014 1:25:13 PM [CLOUD-EXC-02] Relinquishing job because the mailbox is
    locked. The job will attempt to continue again after 3/23/2014 1:30:13 PM.
    ObjectState : New

    How Many CAS Servers do you have?
    Did you changed the web.config file of MRS on both exchange 2010 and 2013 CAS servers?
    http://thoughtsofanidlemind.com/2010/12/03/tweaking-the-mailbox-replication-service-configuration-file/
    Question:
    How much time does it takes for 100 MB mailbox to move from 2010 to 2013?
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Getting error 51 saying 'IDoc included in IDoc packet containing an error'

    When I am processing idoc in LSMW, getting error saying 'IDoc included in IDoc packet containing an error'.
    Can any one tell me how to resolve this.

    Hi,
        Change the packet size to 1 then process again.

  • Getting error saying 'IDoc included in IDoc packet containing an error'.

    hi experts
    When I am processing idoc in LSMW, getting error saying 'IDoc included in IDoc packet containing an error'.I changed the packet size also but it was not resolved.
    Can any one tell me how to resolve this.

    Hi,
        Check below link......
    Getting error 51 saying 'IDoc included in IDoc packet containing an error'
    even this link is not solving problem then check the aplication log to get exact error text.
    Thanks,
    Asit Purbey.

  • IDoc adapter inbound channel: Error Error when reading Exchange Profile

    Hello Experts,
    Currently i am working on an IDOC to file scenario, in which Data will be sent from ECC server (IDOC) to an FTP server via SAP PI, but when i try to send IDOC to PI, i am getting the following error
    in Transaction SM58:-
    'IDoc adapter inbound channel: Error Error when reading Exchange Profile for system XID and
    client 401 occurred in the IS pipeline' .
    Can anyone please help me on this.
    Thanks & Regards,
    Amit Naik

    Hello Experts,
    Let me explain to you the whole scenario, We have two servers of PI, 7.1 & 7.0. Now the Java Stack of 7.0 is not working & Cache update of 7.1 is not happening.
    Thats why we have linked ABAP stack of 7.0 with Java stack of 7.1. Now we can see the objects created under Java 7.1 in ABAP stack of 7.0 (SXI_CACHE).
    Now we have done all the settings to create an IDOC to file scenario. All the RFCs are working fine, but when we send an IDOC from the ECC system to ABAP 7.0, we are getting the following error 'Error while reading exchange profile for system NW' in SM58 .
    Now can anyone tell me what exact settings i have to change in the Exchange profile (Java stack of 7.1), so that the Java 7.1 & ABAP 7.0 connection is setup or do i need to change anything else.
    Thanks & Regards,
    Amit Naik

  • How to configur the user to get notified when IDOC goes in to error?

    Hello Experts,
    Please tell me how to notify the users when IDOC goes in to error...
    please tell me where we can configure this thing,,
    Thanks
    Venkatesh

    Venkatesh,
    The best technique for this would be configuring Workflow. Whenever an Idoc goes into an error it will go to the specified user. You have to set it up and can have more than 1 user and also depending on what Idoc failed you can have different users.
    Example ORDERS05 failed, let it go to the inbox of the Order team , SHPORD failed , put it in the mailbox of the WM team lead etc.
    Read up the workflow documentation of SAP which is really good.
    You can do other things, like have a simple email etc. but all will need program changes.
    Usually I have seen some teams have the most simple mechanism.
    Have a peron check the Idoc that failed and then notify the teams.
    Of course 1 person can be only responsible for lets say a few Idoc types.
    I have worked in such a environment where I used to look at the Order to cash Idocs ( Orders/Invoices/bank payments etc.)
    Also you train the users to look at Idocs and recognise and fix errors, so they are not totally dependent on you.
    But Workflow is the best solution according to me.
    Regards

  • DPM encountered a retryable VSS error. (ID 30112 Details: VssError:The writer experienced a transient error. If the backup process is retried, the error may not reoccur. (0x800423F3))

    I got this error, how to fix it?
    DPM 2010 with latest roll-up (KB2615782) | DELL Server R710 (Windows 2008 R2 SP1) RAM: 24GB PF: 36-60GB | DELL TL4000 (4 Drives) | DELL TL2000 (2 Drives) | And still struggling and monitoring... Battle continues... life never happy ever after.. :(

      In Hyper-v, I have this errors: 
    List Writers
    Writer name: 'Microsoft Hyper-V VSS Writer'
       Writer Id: {66841cd4-6ded-4f4b-8f17-fd23f8ddc3de}
       Writer Instance Id: {52a247b1-bd8e-499c-915d-314f9080e993}
       State: [11] Failed
       Last error: Retryable error
    Eventvwr:
    SOURCE: VSS ID: 8229
    A VSS writer has rejected an event with error 0x800423f3, The writer experienced a transient error.  If the backup process is retried,
    the error may not reoccur.
    . Changes that the writer made to the writer components while handling the event will not be available to the requester. Check the event log for related events from the application hosting the VSS writer. 
    Operation:
       PostSnapshot Event
    Context:
       Execution Context: Writer
       Writer Class Id: {66841cd4-6ded-4f4b-8f17-fd23f8ddc3de}
       Writer Name: Microsoft Hyper-V VSS Writer
       Writer Instance ID: {52a247b1-bd8e-499c-915d-314f9080e993}
       Command Line: C:\Windows\system32\vmms.exe
       Process ID: 2460
    SOURCE: HYPER-V-VMMS ID: 10143
    Failed to delete the shadow copy (VSS snapshot) set with id '3ED86740-3BFC-4FD5-B6B6-5ADD63E87DB0' in the running virtual machine 'MACHINENAME': This operation returned because the timeout period expired. (0x800705B4). (Virtual machine ID E130C3C7-D2BC-4234-BD2A-766054A163F9)

  • ORA-29278: SMTP transient error:421 Service not available on oracle 10g

    HIi,
    I am trying to send e-mails by using PL/Sql procedure . I am using UTL_MAIL/UTL_SMTP on oracle 10g R1 database.
    There is no problem in creating procedure,but when i am doing execution i am getting the mention error.
    I am trying to send mail with attachment as excel file.
    ORA-20001: The following error has occured: ORA-29278: SMTP transient error:
    421 Service not available
    ORA-06512: at "SCOTT.MAIL_ATT_RAW", line 64
    ORA-06512: at line 1
    -----my procedure code------
    CREATE OR REPLACE PROCEDURE mail_att_raw(filename varchar2) AS
    fil BFILE;
    file_len PLS_INTEGER;
    MAX_LINE_WIDTH PLS_INTEGER := 54;
    buf RAW(2100);
    amt BINARY_INTEGER := 2000;
    pos PLS_INTEGER := 1; /* pointer for each piece */
    filepos PLS_INTEGER := 1; /* pointer for the file */
    filenm VARCHAR2(50) := filename; /* binary file attachment */
    data RAW(2100);
    chunks PLS_INTEGER;
    len PLS_INTEGER;
    modulo PLS_INTEGER;
    pieces PLS_INTEGER;
    err_num NUMBER;
    err_msg VARCHAR2(100);
    resultraw RAW(32000);
    BEGIN
    /* Assign the file a handle */
    fil := BFILENAME('BFILE_DIR', filenm);
    /* Get the length of the file in bytes */
    file_len := dbms_lob.getlength(fil);
    /* Get the remainer when we divide by amt */
    modulo := mod(file_len, amt);
    /* How many pieces? */
    pieces := trunc(file_len / amt);if (modulo <> 0) then
    pieces := pieces + 1;end if;/* Open the file */
    dbms_lob.fileopen(fil, dbms_lob.file_readonly);/* Read the first amt into the buffer */
    dbms_lob.read(fil, amt, filepos, buf);/* For each piece of the file . . . */
    FOR i IN 1..pieces LOOP/* Position file pointer for next read */
    filepos := i * amt + 1;/* Calculate remaining file length */
    file_len := file_len - amt;/* Stick the buffer contents into data */
    data := utl_raw.concat(data, buf);/* Calculate the number of chunks in this piece */
    chunks := trunc(utl_raw.length(data) / MAX_LINE_WIDTH);/* Don't want too many chunks */
    IF (i <> pieces) THEN
    chunks := chunks - 1;
    END IF;/* For each chunk in this piece . . . */
    FOR j IN 0..chunks LOOP/* Position ourselves in this piece */
    pos := j * MAX_LINE_WIDTH + 1;/* Is this the last chunk in this piece? */
    IF (j <> chunks) THEN len := MAX_LINE_WIDTH;
    ELSE
    len := utl_raw.length(data) - pos + 1;
    IF (len > MAX_LINE_width) THEN
    len := MAX_LINE_WIDTH;
    END IF;
    END IF;/* If we got something, let's write it */
    IF (len > 0 ) THEN
    resultraw := resultraw || utl_raw.substr(data, pos, len);
    END IF;
    END LOOP;/* Point at the rest of the data buffer */
    IF (pos + len <= utl_raw.length(data)) THEN
    data := utl_raw.substr(data, pos + len);
    ELSE
    data := NULL;
    END IF;/* We're running out of file, only get the rest of it */
    if (file_len < amt and file_len > 0) then
    amt := file_len;
    end if;/* Read the next amount into the buffer */dbms_lob.read(fil, amt, filepos, buf);
    END LOOP;/* Don't forget to close the file */
    dbms_lob.fileclose(fil);
    SYS.UTL_MAIL.SEND_ATTACH_RAW(sender => '[email protected]', recipients => '[email protected]',subject => 'Testmail', message => 'Hallo', attachment => resultraw, att_filename => filename);
    EXCEPTION
    WHEN OTHERS THEN--dbms_output.put_line('Fehler');
    raise_application_error(-20001,'The following error has occured: ' || sqlerrm);
    END;
    Please suggest me what settings i need to change. This same procedure is running on another maching,but not on my machine.
    If somebody is having any other simple procedure ,please help me.
    My SMTP port -25
    Thanks in advance.

    Hi Justin,
    Please get the answers of your queries
    The error you're getting is coming from the SMTP server you are trying to connect to.
    - What SMTP server is your database configured to use?
    Reply - I am using IIS(5.0)
    - What SMTP server is the database where this code is working configured to use?
    Reply - Same IIS. Database is installed locally on my machine only. I am trying to send mail locally to me only,Not to the outside person.
    - Has the SMTP server been configured to allow connections from both machines?
    Reply - Yes
    One more query, do we really require to set the SMTP_OUT_SERVER parameter for SCOPE=BOTH
    ALTER SYSTEM SET smtp_out_server = '172.16.1.10' SCOPE=BOTH
    I am not able to set like this for BOTH,only for SPFILE i can set ?.
    My SMTP Server IP=172.16.1.10
    PORT- 25
    Thanks
    Manoj

  • Bug? htmldb_util.reset_pw gives ORA-29278: SMTP transient error 451

    After changing mailprovider we had some troubles mailing from the database.
    After mailing to his SMTP-server we got the error message:
    ORA-29278: SMTP transient error: 451
    We were able to correct our custom code by replacing all the end-of-line LF with calls to
    UTL_TCP.CRLF.
    However, our Apex-application is still broken. By calling HTMLDB_UTIL.RESET_PW
    the system should mail the new pwd to our user.
    Should
    But it doesn't
    In the Mail Log/queue we again get the ORA-29278,
    so my deduction is that in the message that RESET_PW assembles a single LF is
    used and not the CRLF.
    Question: is there a way to overcome this bug?
    BTW, the SMTP-server is present. Writing a HTMLDB_MAIL.SEND by hand gives no trouble at all.

    CRLF characters are required to separate each SMTP command, per RFC 821 (http://www.ietf.org/rfc/rfc0821.txt), and that is what the APEX_MAIL package does.
    But the portion that "you are afraid of" which contains CHR(10) is the message[b] body of the reset password functionality of APEX - there can be any combination of characters in there. It is not a requirement that the body of the message uses CRLF for line endings. So, unfortunately, I don't think the deduction applies here.
    Let's start with some basic things. If you change the "SMTP Host Address" in the internal Administration Services of APEX to a known good SMTP host, does the problem go away?
    451 means "Requested action aborted: error in processing". That could be anything. It could even be an issue with your provider, your connection to the provider, etc. Does your provider have a log of the incoming "conversation" and a log of the abort? That may be helpful.
    Joel
    P.S. By the way, which version of Application Express/HTML DB are you using?

  • Error while saving changes in RSPC Error Stack.

    Hi gurus,
        I am able to make changes in the error stack in the transaction RSPC, However, when trying to save those changes, I get an error stating that the request "DTPR_* " doesn't exist. and the message is RSAODS005.
    I tried searching in SDN as well in SAP notes, but in vain. Does anybody have any idea how to solve this error.
    Regards,
    Sree.

    Hi Sree,
    delete Error DTP in process Chain, do modifications for Error DTP in RSA1 and add that again in process Chain and activate Process Chain.
    Regards
    Daya Sagar

  • IDOC is posting with Errors in File to IDOC scenario

    Hi,
       I did the File  to IDOC scenario for CREMAS  . IDOC is posting with Errors .. i.e. in the status record it was showing  56- EDI: Partner profile inbound not available  ..
    If I manually process that IDOC in WE19 , then it was processing successfully..    and in the  we19 it was showing Inbound Processing : Port Not Maintained    but even though manually it was posting fine...
    any ideas regarding this will be appriciated..... 
    Regards
    Babu

    Please check whether you had done the following assuming your doing File to Idoc
    Settings in your Business service for the receiving system
    Please specify the RFC detination, SAP System and Client of the Receiving System in the adapter specific detials.
    Settings in R/3
    WE20 - Add the partner profile for the particular message type cremas and process code.
    Your statement
    " and that same logical system name  had given as Message Specific Attributes in the Sender Business Sevice parameters in I.D "
    Please do mention R/3 Details in the receiver business service or system.
    Thnz

Maybe you are looking for

  • Items with  zero stock quantity show negative stock value in Stock reports

    When running Stock reports for controlling the stock value towards the GL accounts, some items appear with zero stock quantity, but the report still shows a stock value  (negative value in my case) How can this happen, and how can I correct this situ

  • Writing dynamic value to a text file in Openscript

    How to write the dynamic values which i captured in a variable into a text file in openscript ? I searched throughout the user guide and i don't find any option for that. Please help, thanks in advance..

  • N95 8GB with external GPS receiver

    Not being too happy with the internal receiver on my N95 I bought and external one (HBTGPSOL BT Solar GPS Bluetooth GPS Receiver by Hamletcom.com). It is very easy to connect by bluetooth but I cannot figure how to switch the phone from using the int

  • BP 80 Document on Oracle Process Qulaity

    Hi Team It's very URGRNT Can anyone provide the BP 80 Document for OPM process Quality......any version like 11.5.x (Above 11.5.9) or R12. My mail id is [email protected] It will gr8ly appriciated. Regards Raj

  • VPRS Condition is missing in invoice for bacth determine line item

    Hi Gurus, I have an Concern, My user has created Sales order with three line items. He did delivery and Invoice individually for each line item. For 2 line items he entered batch manually and did invoice there we didn't find any issue. For third line