Service order third party

Hi,
I am working on service scenario. Post processing of sales.
We are creating service order ECC. First we have to check warratny for product.
we have to create service order for product. we dont have resources to repair it.
Some third party provides services to repair the product.
Third party will send invoice to us.
This is exactly  similar to third party order in sales scenario.Please can you tell me how to proceed third party service order.
What is the order type:  is there any order type in ECC. (like or sales).
What is the iem categary group for procure new services for repair the lab top.
How can i do item categary determination for third party services procurement porcess. Awaiting for great suggestions.
Thanks
john

Hi
   Yes. It is like third party order process. But you have to customize according to meet ur requirement.

Similar Messages

  • Help me!    How to use it as a web service from third party application?

    After using JDeveloper to develop BSSV object e.g. JP550010, how to use it as a web service from third party application?
    TKS!

    Obviously the OP is working on a project for the Bead Society of Southeastern Virginia http://www.bssv.org. Oh, wait, maybe he's researching the Blueberry Shoestring Plant Virus http://abbreviations.yourdictionary.com/bssv
    :D
    John

  • Service of third party material

    dear experts ,
    I have a scenario wherein i want to sell a third party machine to a customer wherein my client acts as a middle man & no sale purchase agreements are made directly with the vendor & customer.
    Further my client also wants to provide regular maintenance service for the same material .
    How can this be mapped in SAP ?
    Thanks

    Hi
    Third party sales means that material is not manufactured by us and the same is supplied to our customer from a third party vendor
    We receive the sales order from our customer
    Up on receipt of sales order or saving a purchase requestion is created automatically by the system
    Then MM department process this purchase requestion and make a PO and that is send to a vendor
    The vendor delivers the goods to our customer and he gives us the invoice
    Upon receipt of invoice from the vendor we bill our customer
    This a normal third party process
    These whole settings are controlled by item category group and item category and schedule line category
    For a third party material item category group defined in sales org data 2 tab of MMR is BANS
    The item category determined in sales order will be TAS
    The schedule line category determined in sales order will be CS
    Thre are some very important settings in item category TAS and schedule line category CS which controls these whole 3rd Party Sales
    There is another process is also practised (not so commonly) sometimes that is from vendor we take the goods to our plant and inturn we deliver to our customer
    The item category determined in this case is TAB
    the issue i think relates to this
    Regards
    Raja

  • Purchase order created from sale order ( third party)

    Hi...
    In third party sale, when sale order is created in SAP system will automatically creates Purchase requisition which can be converted into Purchase order,
    My requirement is i need to identify against which sale order the above purchase order is created, do this purchase order has any reference of sale order.
    Is there any way where i can track the purchase order number entered while cretion of sale order in the purchase order generated after creation of sales order.
    Suggestion will be worth rewarding.
    Regards
    SARFARZ

    Hi
    I think you are little bit confused.The PO number entered while creating the Sales order is nothing but the customer Purchase order.This we may receive in different forms.Hard copy or Mail etc.We will give this number as a reference in sales order.
    Where as for third party orders, depending on the schedule line category (SD), PR will be generated.This will PR will be converted in to PO.In PO item detail, you can find account assignment tab, where you can find the sales order number.
    If you want to link customer PO to the SAP PO, then you need to link the two tables.
    Regards
    Ramakrishna

  • Error when creating PO for sales order (third party)

    Hi All,
    I have been trying to create a new PO from a purchase requisition. This PR is a third party PR with Account assignment category S. Also it is sales order related.
    When I try to save the PO it gives me two errors as shown below :
    "No upate of sales order 30081586 from purchase order (error V4 115)"
    "System error (error in method PO_POST)"
    Has anyone come across such an error? Is this because of something wrong in sales order?
    Regards,
    V S

    Hi ,
    Check note 849480 .
    according to this note the cause is
    "You create a purchase order with reference to a purchase requisition (PReq) that was generated as a result of a third-party order or an individual customer order. If another purchase order with reference to this sales document is changed at the same time (in another window or by another user) and the first purchase order is saved in the meantime, the associated sales order item is not updated and a termination occurs with error message ME 816, "System error: (error in method po_post)".
    This is basically a program error .To solve this follow the correction instructions mentioned in note 849480.
    Regards,
    Anupam

  • Change item category Display mode  in sales order (Third Party )

    Hi all,
    I am creating sales order with reference to sales contract but at the time of sales order we don't have enoff stock to deliver to customer , so we have deiced to Third party sales process
    But the problem is while creating a sales order with reference to Sales contract the line item of the sales order in grad Mode ( Not changeable mode )
    Can any one guide me how sales order line item should be in active mode  so i can change the Item category as a TAS third party item category
    Help me regards this
    Thanks
    Rajesh

    Hi all.
    Thanks for response
    I maintain all configuration, But the problem is while creating Sales Order with reference to Contract
    the Sales Order line item in grad Mode i am unable to change item category as TAS
    i mean TAN is on Display Mode
    and we are using Varient config  for that material
    Please guide me where i need to Configure so system should allow me change item category in sales order please guide me
    Thanks
    Rajesh
    Edited by: RAJESH KUMAR on Jun 16, 2009 10:23 PM

  • Allow desktop interaction within Azure Cloud Service with third-party desktop app (automated via code)

    Hello,
    I am developing a wrapper service as Worker Role which will take request from Service Bus and automate a third-party desktop app to produce an output file and then upload result back to our web server.  The automation is accomplished with the app's
    built-in .Net remoting based API.  This all works on my local development machine.  I am using code as below to start the desktop app.  In Azure:
    If I am not logged on to RDP and run the app as SYSTEM (or whatever the default WorkerRole account is), it waits forever for the MainWindowHandle.
    if I start the app manually in the RDP and try to get a reference to the running process (again as SYSTEM), I get Access Denied from WaitForInputIdle.
    if I start the app from code as the RDP user (ProcessStartInfo assign user/pass), I get InvalidOperationException - the app might not have a graphical interface from the WaitForInputIdle.
    Could anyone suggest the proper strategy for starting processes in a Worker Role that must create a window?
    For reference, I only care about the window to the extent that I need to make sure it's there.  All other interaction with the process is via the .Net Remoting API.
    private void GetOrStartThirdPartApp()
    _process = Process.GetProcessesByName("ThirdPartApp").FirstOrDefault();
    if (_process == null)
    _process = new Process();
    _process.StartInfo.Arguments = string.Format(@"-I ""{0}""", config.GetSetting("RolePath"));
    _process.StartInfo.WorkingDirectory = config.GetSetting("WorkingFolder");
    _process.StartInfo.FileName = config.GetSetting("ExecutablePath");
    _process.StartInfo.LoadUserProfile = true;
    _process.StartInfo.UseShellExecute = false;
    if (config.GetSettingAsBoolean("StartThirdPartAppWithRunAs", false))
    _process.StartInfo.UserName = "user";
    var password = new SecureString();
    foreach (var c in "thepassword".ToCharArray())
    password.AppendChar(c);
    _process.StartInfo.Password = password;
    _process.Start();
    while (_process.MainWindowHandle == IntPtr.Zero) Thread.Sleep(50);
    _process.WaitForInputIdle();
    _process.Exited += _process_Exited;

    I'd keep the app with the UI and the queue reader in the same process and account - not a worker role.  On start up you launch the desktop application and the queue reader in the same account, one after another.
    From what I've experienced, two users don't have the same
    Window Stations, so you can't pass a window handle in a different logged-in account across that boundary.  Read the Window Station documentation - you may find something that helps.
    You could use other techniques like sockets to communicate cross-process and cross-window station, too.
    Darin R.

  • Service Desk - third party interface using XI content

    Dear all,
    I am looking for any guide/documents or any procedure to connect a third party interface to solution manager service desk using the XI content available in Solution Manager. I have got information about how to use web services to meet the requirement or even using Business connectors. But I heard that from solman 7.0 onwards, we can use XI feature inbuilt in Soluton Manager for this.
    Does anyone has any idea about this? If you have done this before, could you please share how to proceed?
    Thanks a lot for any help..
    Rajeev

    Hi,
    U can find the
    XI contents available for downloads from  from SAP Service Marketplace.    
    https://websmp204.sap-ag.de/swdc > Downloads>  Support Packages and Patches ¨ Entry by Application Group--> SAP Content --> Process Integration Content (XI Content).
    Cheers,
    Siva Maranani.

  • Purchase order creation from sale order (Third party )

    Hii..
    I have a requirement where i create a sale order for third party, system automatically creates purchase requisition,
    my requirement is i dont want to  convert purchase requistion everytime into PO when ever sale order is created.
    can i automate the process where the moment i crete s sale order purchase order is created direclty.
    Suggestions will be worth rewarding..
    Regards
    SARFRAZ

    Hi
    first you need to do seeting for Automatic PO creation from PR
    1.You need to check the Auto POcheck box in Purchasing view of the material master
    2.You need check the Autoamic PO check box in Vendor master in Purchasing org data
    3.You need to maintai the source list with one of the vendor as fixed vendor
    4.Purchasing info record for Vendor and material
    Then you need to schedule the batch job for ME59N with the variant (Required input selection parameters) with the time intervals.
    One third party order created, PR will be generated automatically based on the item category defined in the sales order and source will be assigned in PR.Based o time interval schduled for batch job, the PRs will be automatically converted into PO.
    Regards
    Ramakrishna

  • Sales order third party

    Hi,
    In third party sales order pr is generated and then the PO is done using same PR afterwards some how user managed to delete the PR from sales order  schedule lines  now  the issue is i am not able to  see the PR  number in schedule lines .because of which the billing is not happening as the Sales order is incomplete. please lt me know what can be done on this.
    Regards,
    Rohit

    Normally system will not allow to delete the PR in schedule line once PO is created .Are you able to see PR and PO.If you are able to see these and sales order does not have PR then raise a note to sap .They will update the sales order for to allow system billing process.

  • How to remove SMTP service from third-party cert

    I mistakenly assigned the SMTP service to my commercial cert.  I say this because I did not include the server name on the cert (the cert has the
    CASarray.domain.com, webmail.domain.com, and autodiscover.domain.com names).  I've tried just clearing the radio button in the wizard, but it does not remove the service.  Can someone please tell me how to do this?
    Thanks!

    Hi,
    We don’t need to remove the SMTP service. Just generate a new certificate with the server name on the certificate and assign SMTP service to it.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • How To: Get Quickly To Music Services without Third Party Apps!

    Apologizes everyone I tried to provide quick links to Spotify music service profile pages, but the coding on the board has dramatically changed now. You will have to copy and paste the profile URI's and paste them into the search box in the desktop app and hit enter to go to those profiles. Edited to change the URI's over to HTTP links instead. Note if you want them to open in the new desktop app just copy and paste them into the search and hit enter on the keyboard. Blue Note Records - http://open.spotify.com/user/bluenoterecords Pitchfork - http://open.spotify.com/user/pitchforkmedia Billboard - http://open.spotify.com/user/billboard.com Last.fm - http://open.spotify.com/user/lastfmofficial Rolling Stone Magazine - http://open.spotify.com/user/rsedit Anyone can add to the thread as before.

    For those who used the Filtr App in the Spotify service you can get to the profile pages here: Global Filtr Profile Page - http://open.spotify.com/user/filtr Filtr US Profile Page - http://open.spotify.com/user/myplay.com Filtr Sweden  - http://open.spotify.com/user/sonymusicentertainment Filtr Germany - http://open.spotify.com/user/playlists.germany Filtr Espana - http://open.spotify.com/user/mejoresplaylistsspotify Filtr Danmark - http://open.spotify.com/user/sonymusicdenmark Filtr Norway - http://open.spotify.com/user/sonymusic Filtr UK - http://open.spotify.com/user/sonymusicuk Filtr France - http://open.spotify.com/user/iloveplaylists Filtr Switzerland - http://open.spotify.com/user/sonymusicswitzerland I think users get the idea, just use the word Filtr in the search bubble and select show all results, and then choose the Profiles option for all Filtr profile pages.

  • Third Party GRN Posting Date to be Copied to Sales Order Line item Billing Date

    Hello Experts
    I have a client requirement where in they want to bill line items in the sales order ( third party process ) to the end customer in sync with the GRN posting dates happened in the PO
    For EG if GRN happened on 1st July 2014 then Billing Date should come in as 31st July 2014 so when they execute VF04 giving from and to dates as 1st july to 31st corresponding sales order can be invoiced
    Actual problem is for suppose if i create a sales order in the month of june say 26th basing on the factory calendar setting and invoicing list maintained in the customer master system defaults the billing date to 30th June 2014 , and the same when user runs VF04 from 1st June to 30th June this sales order shows as due and mistakenly end user invoices the customer ( whereas logical GR would have only received in July 1st )
    My requirement is similar to below threads but i am unable to find answer how to copy GR Posting date to Billing Date of the sales order line item
    use GR Doc date as billing date
    3rd party sales process (w/o ship notif) - Billing

    Hi Lakshmipathi ji,
    As my requirement is to update the billing date at the sales order line item level , As a process user goes in executes VF04
    For Ex
    Sales Order Created Date is 1st June 2014 then System Defaults Billing Date at line item to 30th June 2014
    Now when i do GRN suppose on 1st July 2014 for that line item , system should trigger a code where in check the posting date of the GRN and override the same in the Biiling Date field of the sales order line item
    So when VF04 is run for a month All the GRN which are recieved in the month of July are invoiced in July
    Please share me your thoughts do we need to check any userexits from MM side which reads the posting date of GRN and then copies in to my third party sales order
    Regards
    Hiba

  • Reduction in Qty. in Exhisting PO for Third Party Orders

    Hi,
    Lets take up this example first, Consider a  TPO with belwo details.
    Sale Order - Third Party
    Item 1     /  Qty - 500  /  Item Cat - TAS  / Del. Date1
    Corresponding PR to this
    Purchase Order
    Item 1     /  Qty - 500  /  Item Cat - TAS  / Del. Date1 / Vendor 1
    After Placing the Order to Vendor 1 , he comes back and says he can deliver only 250 qty on Del. Date1. & remaining 250 he cannot deliver on the same date.
    And i create different new PO for the difference in qty. that is 250 to Vendor 2. who can deliver the same goods on Date1 as in the SO.
    Now if i want to update the exhisting PO which is placed on Vendor 1 by reducing the qty to 250. i am getting an error message stating " PO QTY. IS LESS THAN SO QTY".
    My question is
    1. Why cant we reduce the Qty. at PO ?
    2. If we can do that , How ?
    Thanks in Advance !!

    Hi Sridhar ,
    Refer Table EKKN for PO and SO Linkage.
    Table EBKN for PR and SO Linkage.
    Regards
    Ramesh Ch

  • Come here and discuss the business process of Third Party Purchase Order?

    come here and discuss the business process of Third Party Purchase Order?
    when this po  is used and the following process is what?

    Hi YuLin
    It is a vague topic..anyways i will tell you one important scenario of the 3rd party order :Third Party Without Shipping Notification(its imp one)
    In third-party order processing, your company does not deliver the items requested by a customer. Instead, you pass the order along to a third-party vendor who then ships the goods directly to the customer and bills you.
    In this scenario, the vendor does not send a shipping notification. The incoming invoice from the vendor updates the billing quantity, so that the customer-billing document is only possible after entering the invoice from the vendor
    Function List
    The following functions are provided to support the Third Party Without Shipping Notification (J55) building block:
    When the order is created, the specification of material numbers, quantity and conditions takes place at item level. As the material is not available on stock, a purchase requisition is created directly within the sales order.
    Purchase Order Processing
    The purchase requisition can already be automatically assigned during creation. If not, it is possible to assign the purchase requisition manually. The purchase order is created with reference to the purchase requisition. The quantity and the material are transferred from the sales order. The purchase order price can now also be determined using condition records.
    Vendor Invoice Verification
    The vendor invoice verification must take place before customer billing. The quantity of the invoice updates the quantity to be invoiced in the sales order.
    Billing Documents
    The billing documents are carried out on the basis of the order. Since the vendor might not deliver the exact quantity ordered, quantity adjustment takes place through the quantity in the vendor's invoice.
    Controlling
    The revenue and costs will be posted to CO-PA via the billing document
    Key Points
    As no shipping notification is available, the customer invoice can only be created after having finished vendor invoice verification.
    Normal process you can refer in help.sap.com under this link
    http://help.sap.com/saphelp_47x200/helpdata/en/4d/2b91d843ad11d189410000e829fbbd/frameset.htm
    regards
    Yogesh

Maybe you are looking for

  • Java Script With XE

    hi Expert, Can You Tell Me how to use Java Script With XE. Thanks Manoj

  • SVN Merge - Another Unicode/UTF-8 problem

    When merging conflicts in Unicode/UTF-8 files (Java, XML, JSPX) the resulting file looses UTF-8 characters. This is yet another serious Unicode/UTF-8 bug in JDev. What is going on with Unicode/UTF-8 support? Currently, developing any fully "Globalize

  • User exit or BADI for standard change Log ?

    Is there user exit or BADI for standard change log update ? I want to update a customer fields into standard change log table. Could someone tell me about it?

  • Import Cycle

    Can anybody mail import cycle integration with FI. Thanks Ramani

  • Esbigtbl tablespace growing fast, help...

    Hi to all, There is a Tablespace in the es_mail schema that is growing more or less 1GB a day (esbigtbl). Please can someone explaim me if that is normal, how to know why is gowing so much and how to limit the growing velocity? Regards Luis Neves