EDI output message for Outbound Deliv send with application own transaction

Dear All,
I encountering a problem with the output message "WSOR" via EDI.
What i want:
       I would to configure this message output without the Dispatch time " 3: Send with application own transaction".
What is encountering now:
      I have done the setting in "VV22" or VV21, with the conbination of Delivery type and Shipping point. and the setting is EDI with dispatch time 3: Send with application own transaction.
But When i use ME2O to create the outbound delivery for subcontractor, the message output "WSOR" process automatically and the dispatch time is 4: Send immediately (When application save).
Can anyone please advice me what are the setting or area that i need to check!!
Thank you very much,
Regards,
Chee Wee

Hi
Try here...
Logistics Execution -> Shipping -> Basic Shipping Functions -> Output Control -> Output Determination -> Maintain Output Determination for Outbound Deliveries
Regards
Eduardo

Similar Messages

  • Output Further Data : Send with application own transaction

    Hi ,
    I have a ungernt issue as..We have an invoice print output processing at different times for same dealer as the despatch time is same i.e Send with application own transaction.(Further data , despatch time is 3 , send with application own transaction)
    Ex:
    XXXXinvoice; YD00 created on 09/19/2007 21:54:47 Actual processing time: 09/19/2007 21:57:34  diff is 167 sec
    YYYY invoice; YD00 created on 10/21/2007 22:08:26 Actual processing time is 10/23/2007 20:18:26 diff is appox 2 days
    Can anybody look into this and respond with why it is taking different times for the same dealer and what is this send with application own transaction meant for..
    Thanks in advance,
    Sastry

    'Send with application own transaction' basically means that the message would not ordinarily be processed by the transaction or by RSNAST00 in batch. Instead a user might manually release the output, or it might be released by a custom program. We use this in our organisation to release outputs under certain conditions, conditions that cannot be met within an output requirement. For example, we use a certain Shipment status to release all of it's Delivery outputs.
    I would suspect a program is processing the outputs in your system, either directly, or indirectly by changing the NAST-VSZTP to '1' for a subsequent RSNAST00 batch run to pickup. Find out which user processed the output, and if a batch user, see if there are any jobs in SM37 for that user for that timeframe.
    Good luck,
    Paul.

  • Output option- Send with application own transaction

    Hi Team,
    Could anybody explain how exactly the "Output option- Send with application own transaction" works.
    This is the third option for the output types for any document(sale order / Delivery/ Shipment).
    This option can be given in the Output - > Requested processing -> Dispatch time - option (3) (Send with application own transaction)
    It would be better if you can explain with a sample example.
    Thanks in advance.
    Regards,
    Ram.

    Hi Naga/Max,
    Thanks for your replies.
    So if we are using the option 3, i need few clarifications like:
    -when exactly the output is being triggered.
    -What will decide whether it will be a foreground/background execustion
    - If the output is being triggered right afgter we choosing 3 and saving the document , then what is the difference between Sed while savin gthe document option and option 3.
    Please let me know
    Rg
    Ram

  • Oyput- IDoc- 3 send with application own transaction

    Dear All,
    How is system generating IDoc when the Despatch time has been set as "3 send with application own transaction" in the output type setup?
    because in my system,no idoc is generating.
    Kindly provide your views.
    Thanks.

    Hi,
    When the Despatch time has been set as "3 send with application own transaction" in the output type,
    It means the IDoc will be processed by an local 'z' program based upon NAST entries.
    You have to develop an Z program with help of ABAPer to generate the IDoc based upon table 'NAST' entires.
    regards
    Vivek.

  • New EDI Output Message for Existing Purchase Order

    Hi Everyone,
    We have existing POs in our system for vendors that we are turning on SRM Supplier Self Services for.  When we configure the new output type, and then we change the purchase order, we are looking for the first SUS output type to come out as an ORDERS message, instead of an ORDCHG.
    Is this possible?
    Tx
    Peter

    Dear Peter,
    The system automatically creates change messages with message type ORDERS if a second entry for that message type is maintained in the outbound parameters of the vendor's partner profile on tab page "Message Control". In that second entry, set the indicator "Change message". However, all change messages will be ORDERS, not only the first.
    Best regards,
    Christiane

  • Output Processing. Dispatch Time: 3 ( Application own Transaction)

    Hi,
    I have created output records for an output type with the dispath time =3 (Application Own Transaction) and Transmission Medium = 8 (Special Function) and provided a processing routine to output type.
    The output records are populated in sales orders in "Not Processed" Status. My question when will the output gets processed and changes its status to "Processed" when the Dispatch Time is 3 (Application Own Transaction).

    Hello,
    In transaction V/30 there is 'Dispatch Time' tab where one option is
    'Send with application own transaction', you could create your own
    transaction to fulfill your requirements.
    I hope you find this information very helpful and hopefully it will solve your problem.
    Regards,
    Martina McElwain
    SD - Forum Moderator

  • Manually create an output message for GRs

    Is it possible to manually create an output message for a GR that has never been printed?  There was an issue with our output determination and we have a GR that never had a message created when saved so I can't use MB90 to print it.  The problem with the output determination settings has since been resolved; however we need to find a way to print this GR.  Is there a manual procedure?
    Thanks!

    Hi
    You can go to MB02 (material document change), enter material document. Double click on quantity, You can find messages button on the top.assign output and print the same.
    regards
    Srinivas

  • BAPI for Outbound Delivery Creation with reference to Sales Order - VL01N

    Hi Everybody,
           We are in ECC 5.0 version.
           I want to create a enhancement for Outbound Delivery Creation with reference to a Sales Order.
           Is any BAPI available for this ?
           Any input on this will be very much helpfull.
           Please suggest any BAPI available for this, or should I go for BDC using VL01N or VL04 ?
           Thanks in advance.
    regards,
    Nagarajan.J

    Hi Nagarajan,
    The BAPI BAPI_DELIVERYPROCESSING_EXEC meets your requirement. You can create delivery with reference to sales order.
    The below is the sample code...
      data:lt_request      like bapideliciousrequest
                                    occurs 0 with header line,
           lt_createditems like bapideliciouscreateditems
                                    occurs 0 with header line,
           lt_return       like bapiret2
                                    occurs 0 with header line.
        lt_request-document_type      = 'A'.
        lt_request-document_numb      = vbeln.
        lt_request-document_item      = posnr.
      lt_request-material           = matnr.
      lt_request-plant              = werks.
      lt_request-stge_loc           = lgort.
      lt_request-quantity_base__uom = base_uom_qty.
      lt_request-delivery_date      = sy-datum.
      append lt_request.
      call function 'BAPI_DELIVERYPROCESSING_EXEC'
      EXPORTING
        DELIVERY_EXTEND       =
        TECHN_CONTROL         =
        tables
          request               = lt_request
          createditems          = lt_createditems
          return                = lt_return.
      loop at lt_return where type = 'A'
                          or  type = 'E'.
        exit.
      endloop.
      if sy-subrc <> 0.
    Use the BAPI for Commit
        call function 'BAPI_TRANSACTION_COMMIT'
             exporting
                  wait = 'H'.
      endif.
    Thanks
    Ramakrishna

  • BAPI for Outbound Delivery Creation with reference to Sales Order

    Dear all,
    I'm on R/3 4.6B platform and to develop an RFC for outbound Delivery creation instead of using the standard VL01N transaction.
    I've review BAPI for Outbound Delivery Creation with reference to Sales Order - VL01N thread which suggest BAPI_DELIVERYPROCESSING_EXEC .
    However, in 4.6B, that function module doesn't exist. Appreciate any suggestion and or workaround.
    Thanks.
    Steven
    Edited by: Steven Khoo on Mar 25, 2010 7:13 AM
    Edited by: Steven Khoo on Mar 25, 2010 7:14 AM

    Not required anymore

  • Dispaly of the output message for the not released contract

    Hi, all,
    Is there a possibility, for buyers (conract creators),  to display an output message for the purchasing contract, which is subject to a release procedure, but has not been released yet. Acctually it is possible to do it in ME35K, by indicating the relevant release code and pressing "print preview" after executing the report. But it is not a way out, since buyers are not participating in release procedure and therefore do not have a releasecode.
    Thank you.
    Vadim.

    Hi @Zag_rvn ,
    I see by your post by your post that you would like to be able to change the printer to scan to. I would like to help you out today.
    Please clarify what you are trying to do.
    The Laserjet M251 doesn't have the copy or scanning features available.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Unknown structure ID 0 for flexfield code GL# with application ID 101

    Hi Experts,
    I am working on Report builder 6i, EBS 11i, and data base 9i. I have standard report, when i am running it, it's giving below error.
    ERROR: APP-FND-01016: Routine FDFRKS: Unknown structure ID 0 for flexfield code GL# with application ID 101.
    It's calling below thing in Before Report Trigger.
    begin
    SRW.USER_EXIT('FND FLEXSQL CODE="GL#" NUM=":P_ACCT_STRUCT_NUM"
    APPL_SHORT_NAME="SQLGL" OUTPUT="P_acct_flex"
    MODE="SELECT" DISPLAY="ALL" TABLEALIAS="GCC"');
    exception when srw.user_exit_failure then
    srw.message(3,'Failed in GL#/Select');
    raise;
    end;
    Could somebody help me what could be the reason for this error.
    Thanks.

    Hi,
    Is the error still ocurring ? Is yes, please refer the below note in Metalink. This should resolve the issue.
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=227438.1
    -Sailaja.

  • EDI output triggered for old PO

    Hello All,
      on 09.09.2014, EDI ( output type NEU, transmission medium 6) output type has triggered for more than 700 PO's which has been created in 2012 for several vendors and sent to supplier again as a duplicate copy. Suppliers are reaching client for this and some suppliers started sending goods which client has not ordered. There are no changes available in PO and users have not edited those PO's. There is no batch job scheduled to trigger output type. How else is possible for triggering output type in old PO. Please share your ideas.
    Regards,
    Prasath J

    Ask your basis team when the last copy was done. if the copy was done between creation date and now, then the PO in the copy system will show how the PO was before the incident happened.
    This way you can see if there were unprocessed messages.
    Message records do not create by itself in old POs, And 700 cases do not speak for a manual activity either,especially as you are saying that you have no change records.
    Maybe there was something done programatically  to solve an earlier problem from you:
    PO Output Message Disappears

  • Problems in output messages for PO.

    Hi Experts,
    We have a problems with output messages determination, if I have the PO without release approval the system send the output messages ( NEU ) I need that determination doesn't occurs when the po status is unapproved.
    For Explo: I create the PO 45...01 with status unapproved, the system generate tehe messages ( NEU ) but doesnt send to destination, the send only happened when i make the realese.
    There is a file with more details.
    [http://www.easy-share.com/1904410163/POunapproved.doc]
    Thanks,
    Gustavo

    Hi,
    In the release strategy,if the indicator changeablity is 1 the system will not allow you to take repeat out put.
    Solution is that you have to change the release indicator changeability to 6(SPRO>MM>Purchasing>Purchase order>Define release procedure for purchase order>Release indicator>Changeability).
    Another option is that in the message output of the PO in further data change despatch time to 3 and take a repeat out put.
    Also check,
    SPRO > MM > PO > Release Procedure for PO > Release indicator > Changeability of Purchasing Document During/After Release as 2 for Release ID - G and save
    And then Create go to chage mode of PO and repeat the messages
    Regards,
    Rahul.

  • Error in Output message for PO

    Hello,
    While saving Purchase Orders I get a warning in message type NEU for the Fax transmission for two particular vendors.When I select the line and check on 'Processing log' button, I see a message in popup as "Error in OPEN_FORM for (purchase order number)".
    Please help.
    Thanks,
    Amit G

    Hi Amit,
    I have found some information that may assist us in determining the cause of your issue.
    The error ME142 can have different causes like missing authorizations or a terminated connection.  Please check SAP NOTE 397691.  This note states that is errors occur when purchasing documents are output, the system generates an error message in the log of the message overview.
    However, error message ME142 'Error in OPEN_FORM for document &' contain only the information that an error occurred and not the error cause. With the attached source code, the error cause is also displayed in the error message (for example, missing authorizations, terminated connection and so on).
    If you apply the note then this will provide more detailed
    information behind the problem you are having. Please apply this SAP note and then you can go further.
    Sanjeev

  • Output Message for Purchase order not being created Automatically

    Hi all,
    I created a Condition type for Purchase order in MN04 with key combination "Doc.Type/Purch.Org/Vendor". The problem arises when i delete this condition record. After deletion when i create purchase order in me21n for that condition type, the system gives an error.
    Message no. 06261 - No message generated for output of purchasing document.
    Is there anyway the purchase order message is created automatically again when its condition type has been deleted from MN04.
    - Regards
    Sahar Khalid

    Before creating the entry in MN04 the message was being created automatically. I want the system to create the same output message as it was creating before the creation of the entry in MN04.

Maybe you are looking for

  • Problem with cp and ACL default entry for mask

    I am having a problem with the cp command, copying to a directory with default ACL entries. I don't think it is creating the ACL's of the resultant files correctly. I have two users (let's call them mark and john). As john I create a directory and gi

  • How to give jdk location path in windows 7 for odi installation

    I downloaded a file ofm_odi_generic_11.1.1.5.0_disk1_1of1 and ofm_rcu_win_11.1.1.5.0_disk1_1of1 . In ofm_rcu_win_11.1.1.5.0_disk1_1of1 file i found java in bin under jdk. In my pc Path is D:\OdiHome\rcu\rcuHome\jdk\bin The above same path i gave but

  • QFX file won't open in Moneydance automatically

    I download details from my bank in qfx or Quicken format but I use Moneydance as my finance application. Firefox used to pop up with Moneydance already selected. Now it doesn't. This worked with Firefox 3. It did not in Firefox 7 and 8. I'm using a M

  • Item Selection in contract

    Dear All, As i have done item selection in VA01 ,but i want to call item selection in VA41 screen, but there will be no tab call additional functional in EDIT , so pls help me on this, is there config require for that? Regrads, Pranav

  • Looking into a uncommitted transactions...how do you?

    I have a transaction that get's rolled back because of a duplicate record being inserted. This is happening in a third-party code that I can not see the values being inserted. How do you watch a transaction to see what values have been inserted in th