Idoc info in 'Services for Objects' when a sales order is created

Hi Guys
Could one of you remind me how to turn on the Idoc info in the 'Services for Objects' > workflow option.
I know how to turn on the services for objects using the user profile and entering parameter id:SD_SWU_ACTIVE , parameter value: X.
I am not able to see the Idoc number/info that was used to create the sales order. I can see all the information in WE05 but the sales order does not show me any history of having used the Idoc.
When i go to sales order and select the services for objects option followed by workflow the system should show the IDOC number/info used to create this order.
Your help will be appreciated.
Thanks
Manish
Edited by: Comes Naturally on Feb 23, 2009 3:46 PM

Hi,
1. Configure the IDoc with message type ORDERS and basic IDoc type as ORDERS05 (You have to follow common step-by-step approach)
2. Configure Message Control to automatically generate IDoc whenever a Sales Order is created. (I mean output type)
So whenever a Sales Order is created, output type will generate an IDoc.
Hope this information is useful.
Regards,
AK

Similar Messages

  • Services for Object button in Sales Order

    Hello Experts,
    We are not getting Services for Object Button in Sales Orders. Actually we need to attach some documents to Sales Orders.
    Thanks in advance.
    Mamta.

    Dear Friend,
    If you are not getting Services for Object Icon in Sales Document, then follow this:
    T-code - SU01 u2013 Here Enter User ID & click in change icon.
    Then click on Parameters Tab & Add Parameter u2013 SD_SWU_ACTIVE. .
    This will definitely solve your problem...
    Thanks,
    Jignesh mehta

  • Copy 'Services for Objects' from Quote to Order

    Can anyone tell me a way to copy 'Services for Object' from a Quote to an Order when the order is created via reference to the quote. For a simple case, lets say we have an excel sheet attached to the quote via/under Services for Objects. When we create a Sales Order with reference to that Quote I want the attached excel sheet to be visible under The 'Services for Object' of the Sales Order.
    Thanks in advance.

    Hi Mohanpreet,
    Have you craeted a new field BA for lead and activity?
    Is it also present in quotation and sales order?
    If the coupy contol from lead to opportunity does pass on the field details, they must also get transfered from opportunity to quotation and sales order. Maintain the copy contro settings properly.
    If the issue is still not resolved use BADI CRM_COPY_BADI for further enhancements.
    Wish this is helpful.
    Regards,
    Shalini Chauhan

  • Creating a PO when a sales order is created

    Hi,
    Can anyone guide how this requirement can be achieved. For  both scenarios there should be no manual intervention.
    This is not a third party scenario.
    When a sales order is created then a purchase order should be created in same server and                                                                               
    in different server.
    1) For different server scenario i think idoc can be used.  what should be my outbound and inbound message types and idoc types. because both po and so have same idoc types(ORDERS) and message types(ORDERS05). so when a sales order is created in 1 system how system knows that it needs to  convert to PO in other system. And there should be no Purchase Requisition created..
    2) Best way creating  PO in same server with sales order with out creating Purchase Requisition.
    please share your valuable suggestions.
    Edited by: abilash n on Jun 13, 2011 7:12 AM

    you need two output types for two scenarios, and there are different ways to do it from there,
    for PO creation in same server I would use a Output with Transmission Medium as 8 - special function and used BAPI to create the PO, this way you dont have to keep track of idocs but the once the order is created functin will get triggerd and PO will be generated.
    Check with the SD Consultant on how to create the Output type with TM 8(tcode NACE -> V1 - sales -> output types -> ).
    for the different server I believe you alredy have the RFC/ connecetions set up. You'll have to use an IDOC for this.
    Partner profiles and process codes in destination systems will determine the PO creation.
    regards,
    nipuna

  • Generating purchase order idoc, when a sales order is created

    Hi folks,
           we need to send purchase order idoc from SAP to some external system. Once sales order is created, it should automatically generate the purchase order idoc and send to the external system....Any document showing step by step configuration to do so? I have basic knowldege of ALE and IDOC...please suggest me the configuration steps in detail...
               Thanks in advance,
                 Shyam.

    Hi,
    1. Configure the IDoc with message type ORDERS and basic IDoc type as ORDERS05 (You have to follow common step-by-step approach)
    2. Configure Message Control to automatically generate IDoc whenever a Sales Order is created. (I mean output type)
    So whenever a Sales Order is created, output type will generate an IDoc.
    Hope this information is useful.
    Regards,
    AK

  • Sending Email to Material Department when a Sales Order is created

    Hello All,
           I am a facing the problem to find out the exit when creating the sales order.
    My Requirement is whenever a sales order is created via VA01, a email is sent to the material department with some contents. My task is to enhance the contents of the email.
    Can anybody tell me where, this exit is triggered.
    I have checked in USEREXIT_SAVE_DOCUMENT_PREPARE and
    USEREXIT_SAVE_DOCUMENT. But nothing written in these to forms
    Please come up with ur Ideas
    Regards,
    Vasanth.M

    Hi,
    There might be some output type which is associated with VA02 , that output type triggers when ever you create or change , that might be sending the mail.
    You Go to <b>NACE</b> transaction there you can see the output type related to sales order , in that look for output types which are sending mails. there you can get the driver program and use that progrm , go to SE38 and modify the content accordingly..
    Regards
    vijay

  • Idoc problem: I canu00B4t modify Header text before sales order is created

    We are generating Sales order with Idoc :ORDERS01 (Inbound), and we´d like modify some  text in E1EDKT1 AND E1EDKT2 segments, at header level.
    We are using EXIT_SAPLVEDA_011 with this coding:
    data: v_e1edkt1 like e1edkt1,
          v_e1edkt2 like e1edkt2,
          v_index like sy-tabix.
    segment E1EDKT1----
        read table dedidd with key segnam = 'E1EDKT1'.
        if sy-subrc eq 0.
          v_index = sy-tabix.
          v_e1edkt1 = dedidd-sdata.
          v_e1edkt1-tdid = '001'.
          v_e1edkt1-tsspras = 'EN'.
          v_e1edkt1-tsspras_iso = 'E'.
          v_e1edkt1-tdobject = 'VBBK'.
          dedidd-sdata = v_e1edkt1.
          modify dedidd index v_index.
    segment:E1EDKT2----
              read table dedidd with key segnam = 'E1EDKT2'.
              if sy-subrc eq 0.
                v_index = sy-tabix.
                v_e1edkt2 = dedidd-sdata.
                v_e1edkt2-tdline = 'FIXED TEXT BLA BLA BLA '.
                v_e1edkt2-tdformat = '*'.
                dedidd-sdata = v_e1edkt2.
                modify dedidd index v_index.
             endif.
        endif.
    but Nothing .. I'm not able to modify the text when the Sales ordes is created.
    Are we modifying the right structure ?? or  do we need to flagear some variable ??
    any suggestion ???

    Ok!. I moved the coding to EXIT_SAPLVEDA_001:
    if segment-segnam = 'E1EDKT1'.
          V_puntero   = sy-tabix.
          V_E1EDKT1 = segment-sdata.
          V_E1EDKT1-TDID        ='003'.
          V_E1EDKT1-TSSPRAS     ='EN'.
          V_E1EDKT1-TSSPRAS_ISO ='E'.
          V_E1EDKT1-TDOBJECT    ='VBBK'.
          segment-sdata = V_E1EDKT1.
    endif.
    if segment-segnam = 'E1EDKT2'.
          V_puntero   = sy-tabix.
          V_E1EDKT2   = segment-sdata.
          V_E1EDKT2-TDLINE     ='FIXED TEXT BLA BLA BLA..'.
          V_E1EDKT2-TDFORMAT   ='*'.
          segment-sdata = V_E1EDKT2.
    endif.
    It´s not working .! .
    I have a suspect with TDID   ='003', if I check the Sap table: STXH-TDID , that ID is char 4.

  • Block For billing when sales order is created

    Hi experts,
                   I have a requirement in which i want to block the sales documrnt for billing when the sales order is created with particular discount value.
    for this i have checked the condition of discount first it works fine no i want to block it for billing.
    My SD consultant told open the sales doc in change mode(VA02) and then go to Billing Block field (FAKSK)  and then give 02 Compl confirm missing and save the doc
    So for this i have writen a method.
    SET Parameter ID 'VBELN' Field OBJECT-KEY.
    Call Transaction 'VA02' and SKIP FIRST SCREEN.
    SET Parameter ID 'FAKSK' Field '02'.
    in this it is calling the VA02 screen but i am not able to pass the billing block value and save.
    Please give me a solution how to do this.
    for blocking i have also used the standard method in BUS2032  SetDefaultBillingBlock
    it is not blocking the billing.
    Or should i use some bapi for this.
    Regards,
    Hari

    Hi Hari,
    SET parameter ID only sets the value to an input field. It wont saves to the database. More over i don't find any parameter ID for billing block in VA02.(May be because it is a drop down).
    Use BAPI BAPI_SALESORDER_CHANGE Pass the sales order number, ORDER_HEADER_IN-BILL_BLOCK = ur blocking code, ORDER_HEADER_INX-BILL_BLOCK = X.
    After calling the BAPI call BAPI_TRANSACTION_COMMIT.
    Above procedure is to programativally.
    If u want to do it manually then directly open VA02 and change the billing block and save.
    I dont think we can set parameter ID for billing block
    Thanks,
    Vinod.

  • Validation for Attatchments (Services for Object) in ME51N

    Hi Experts,
                       Actually i will attatch any documents in Service for Objects when i create ME51n, Before it creates  i need to throw error message if i didnt attatch any documents(*service for objects*)  .I am unable to find this , kindly suggest any Badi or Enhancement spot for it.
    Regards
    Deepak Gonuru
    Edited by: deepakg on Dec 31, 2011 9:59 AM

    Hi ,
    you need to search for BADI/EHN SPOT from where you can get class instance of cl_gos_manager ...
    in ME51N program...search for GOS_MANAGER....
    regards
    Prabhu

  • Partner Function "Vendor" missing when the sales order is replicated to ECC

    Hi Gurus,
    We are facing a problem on replication of functions partners between
    sales order of CRM and ECC.
    We have downloaded vendors (partners of table LFA1) from ECC to CRM
    following note 883162 and this replication was ok!
    We have mapped all partner functions from ECC to CRM and from  CRM to
    ECC for distribution of partners between systems.
    We must include a vendor using partner function '0000092 - Carrier' on
    our sales order, which is transferred to ECC. However, when the sales
    order is transfered to ECC, the vendor (which was included on CRM) is
    missing.
    When the sales order is created on ECC and the partner (type carrier)
    is included in,  the order arrives on CRM missing only the partner
    number, because the partner function is there.
    How to fix this problem?
    Best Regards,
    Nivea Faria

    Hi,
    See this Note : 975195
    Hope this helps.
    Best Regards
    Shiven

  • When copying sales order, its coming as booked (Using custom workflow)

    Hi,
    While copying sales order using custom workflow, if the source sales order is booked, the new sales order is also coming as booked only.
    But in standard workflow, its coming as Entered. Any idea which parameter I need to check?

    Hi Asit Garg,
    Correct me if i am "X".
    You want to trigger the workflow for two different scenario that is 1. when the sales order is changed 2. when the sales order is created with delivery block.
    For the 1. As you said it is working fine.
    For the 2. sales order created with delivery block.
                 Make your workflow to work like this, Whenever the sales order is created trigger the workflow and at first step check for the condition weather the sales order have the delivery block or not if not terminate the workflow through terminating event if not proceed as you wish.
    Hope it will helps you,
    Regards
    Balaji E.

  • Does MV45AFZZ user exit trigger when CRM sales order is replicated into ECC

    Hi All,
    When a Sales order is created in CRM, it is replicated automatically using BDOCS from CRM into ECC.
    I have requirement to code the logic during the process, when sales order is replicated into ECC.
    So I need to know the BAPI which is actually triggered to create sales order in ECC, while replication takes place.
    If I could atleast know, if USEREXITS in MV45AFZZ would trigger or not, when CRM order is replicated into ECC, then I could determine, If I could code my logic in those user exits.
    Please help me on this.

    please check this link
    keremgomi=wordpress=com
    Rgds
    Raj

  • Does MV45AFZZ trigger when CRM sales order is replicated into ECC

    Hi All,
    When a Sales order is created in CRM, it is replicated automatically using BDOCS from CRM into ECC.
    I have requirement to code the logic during the process, when sales order is replicated into ECC.
    So I need to know the BAPI which is actually triggered to create sales order in ECC, while replication takes place.
    If I could atleast know, if USEREXITS in MV45AFZZ would trigger or not, when CRM order is replicated into ECC, then I could determine, If I could code my logic in those user exits.
    Please help me on this.

    Hi,
    I guess it should. Just put external break point (RFC userid with debuger rights) and see.
    Thanks,
    Nilesh P.

  • Service For Objects Function/Button in BP - missing when performing BDC?

    Hi all,
        I'm currently working on a conversion program that creates Business Partners in the transaction BP by using CALL TRANSACTION. The first thing I did was to record the transaction in SHDB. My problem is, the Services for Object button is missing while Im recording in SHDB. It's also disabled in the menu path
    System->Services for Object.  I'm assuming then that it won't be there as well when performing the actual BDC. When using transaction BP online, it does appear though. Is there a way to make this functionality appear while performing BDC?

    Dear Vincent,
    Use FM 'SO_DOCUMENT_READ_API1' to retrieve the document.
    Reward points if it is helpful.
    Regards,
    Naveen.

  • In Attachement List Services for Objects White Screen when I Display a Note

    Hi Expert,
    Need your assistance.
    I am trying to view a note in Vendor Master data but no information provided and I can only see white screen. Below are the steps that I performed:
    1. Go to FK03
    2. Open a Vendor
    3. Click the Services for Objects
    4. Attachement List
    5. Select a Note
    4. Display it
    5. Pop up window appreared and no information occurred. Only White screen
    Is there's a missing configuration, plugin, or data in my SAP system/workstation?
    I tried to login to other PC and it worked.
    Just wondering what is missing on my computer.
    Your response will be helpful.

    Hey,
    I have the exact same problem as you have described. I also used my ipod as a watch but starting from today, whenever I unlock it the screen turns white until a reset is done. Even a factory reset through itunes didn't fix it.
    Have you found any solution?
    Bah, this is annoying.
    //Gubbar

Maybe you are looking for

  • Getting NULL with function in the select Query

    Hi all, SELECT ,a.TRANSACTIONAL_CURR_CODE      --,gl.CONVERSION_RATE ,get_rate(a.transactional_curr_code,NVL(gsob.attribute1,gsob.currency_code),a.conversion_type_code,TRUNC(a.ordered_date)) CONVERSION_RATE FROM                oe_order_headers_all a,

  • IPhone backup (in icloud) doesn't appear later (for restoring)

    Hello, I have all these iDevices, with iOS 5 and with backups in iCloud: iphone 3GS iPad iPhone 4S (let's call this "4S1") I have received a second (new) iPhone 4S (let's call it "4S2"), and want to use it instead of 4S1, so I thought I could iCloud

  • Java applet causes IE6.0 to crash

    Both 1.4 and 1.5 versions cause internet explorer to crash. This is only happening on 1 out of 5 machines and its driving me crazy. Here are the system stats Windows XP Pro(it happens on sp1 and sp2) AMD 2200+ processor on a PCCHips MB 512 MB ram Asu

  • Framemaker 8 install issues

    While installing Framemaker 8 it gets 90% done and uninstall - ideas? I have Adobe activex install and flash player..

  • Sliced up and imported - whats the best next step?

    Hey guys,   I've been using DreamWeaver for a little while but I really am a novice and really need some help! I created a page in Photoshop, then sliced it up and imported it into DreamWeaver as a html page - it displayed fine.  What I would like to