Can the sd order generates the cs service order automaticlly?

Hi,All
I have a querry regarding the integration of sd and cs module.can the sd order generates the cs service order automaticlly?
if can,how to set the sd order to actualize the function?
thanks in advance!

Hi,
Actually in Case u r using repair order then
U first create service notification IW51
then u nned to create a repair order (Config setting is in SPRO --- Folowon actions in Service notifcation, fn modules assigned here)
After u create a repair order
U get repair service metrial via mat determination
maintain in VB11 -- u nnede to maintain service product and task list for it and this linked to main tiem in mat det
Now u get repair order with mat
then do PGR via VRRE
then u can goto sales order and rasie a service order...
Customising maintained for Service order types in Customising
U can run std in SAp and c , then check the  onfig settings
Reward if useful
Krishna

Similar Messages

  • Where can the Enterprise Service Actions be downloaded?

    Where can the Enterprise Service Actions be downloaded?

    Christian,
    you can download the Enterprise Service Actions when you go to [this Link|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/30369f2a-0b2b-2b10-8980-dcae7dc45e9b] and then go to page 7. In Page 7 you will find a link for downloading the JAR file.  Direct [Download|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10d92d24-0a2b-2b10-73ab-e30944668ab2&overridelayout=true]!!.
    Regards
    Pedro

  • Can the 3G service in an ipad be used in south america where at&t or verizon do not have services?

    I want to buy a new ipad that will be mainly used in south america where at&t and verizon do not offer services. Can the 3G option be used with a local carrier? 

    Yes, but before you purchase, make sure you know whether the carriers in South America are GSM (AT&T model) or CDMA (Verizon).  GSM is much more widely used around the world than CDMA.

  • How can I get rid of a type generated by the Data/Services return type wizard?

    Hi All,
    I have a JSON service that returns an object called "error".  The Data/Services "Configure Return Type" wizard automatically turned this into a class "Error".
    However, this caused over a hundred errors to show up inside the generated classes, "Call to a possibly undefined method Error."  That's because of lines like this:
    throw new Error(propertyName + " is not a data property of entity Agreements"); 
    It's trying to throw a regular "Error" object, but now that there's an "Error" class in the same package, that is taking precedence--and that Error object doesn't have a constructor with a single parameter.  At least, that's what I think is going on.
    I tried to fix it by deleting _ErrorEntityMetadata.as, _Super_Error.as, and Error.as from the valueObjects package.  I then opened the FML file and deleted the definition for the entity "Error" and every reference to the Error entity (class) in my FML file.
    I then changed my JSON service so that it returns an object called "serviceError" instead of just "error".
    But, whenever I re-run the "Configure Return Type" wizard, it regenerates the Error class, even though I've deleted it from everywhere I can find it.  That breaks my project completely!  How can I end this and get Flash Builder to *stop* generating this type!
    In the "Configure Return Type" wizard I very carefully inspected the type of every bit of data coming back to make sure none of them show up as type "Error."  And they don't (as expected, since I changed the object's name to serviceError--now the type of that object is ServiceError.
      -Josh

    I think you are facing this known issue https://bugs.adobe.com/jira/browse/FB-29770
    Please vote it.
    Thanks for the link--I just voted for it.
    To avoid this, in the last page of "Configure Return Type", edit return type name to something else (You can also edit subnodes's name too in the wizard).
    Actually, that's exactly what I saw doing; I apologize if that wasn't clear in my post.
    I closed and restarted Flash Builder, and once I did that Flash Builder stopped generating the Error class.  My guess is that the FML file, even though I had updated it (by deleting all references to the Error class), was cached in some fashion by Flash Builder, and restarting Flash Builder forced it to reread the FML file?
    Additional point of clarification: my understanding is that the FML file stores all the metadata about the services that Flash Builder has been able to figure out so far, and when you run the Configure Return Type wizard, it will regenerate *every* type in the FML file, even if that type is not mentioned anywhere in the particular return value that you are working with.
    Edited to provide additional thoughts on FML file.

  • How can i cancel order from HONG KONG apple Online Store? i tried to call the customer service hotline in 1/11/2013 (3pm to 6pm) and no any apple specialist reply and answer me? How can i do now ? Pay for useless????

    How can i cancel order from HONG KONG apple Online Store? i tried to call the customer service hotline in 1/11/2013 (3pm to 6pm) and no any apple specialists reply and answer me? How can i do now ? Pay for useless?

    You may also be able to access https://store.apple.com/ in Safari, log into your account, and review recent purchases (and cancel any that haven't shipped yet).

  • Can I  load Java classes generated by the Web Service Proxy Wizard?

    Hi gurus,
    I am very new to Oracle JDeveloper and I have mainly used it to create and debug PL/SQL procedures. My client app is written in PowerBuilder 11 (Sybase), which claims that it will create a datawindow from a web service. Well, it turned out that PB can only handle simple stuff (it works with a very simple wsdl from the internet) but can't handle more complex ones that we need to use. So I am thinking about using JDev to create the web service proxy for the web service and then load it into Oracle as a Java stored procedure so that PowerBuilder can call the procedure. JDev succsfully generated the proxy and a few Java classes. My question is, do I need to load all the classes into the database? If yes, will the reference to the package work? For example, in a JDev generated class (the soap client class), it has package MyJdev.proxy; at the top. Or, will it work if I load all the classes included in package /MyJdev/proxy into the database?
    Thank you very much for any help.
    Ben

    Thanks again, Bruce.
    What I meant by SOAPElement is that one genereated Java class has this and this class also has the setter for this like this,
    public void setSelection(javax.xml.soap.SOAPElement selection) {
    this.selection = selection;
    And here is the whole class,
    public class CaseSearchByPartyRequest implements java.io.Serializable {
    protected java.lang.String schemaVersion;
    protected java.util.Calendar messageProducedDateTime;
    protected javax.xml.soap.SOAPElement selection;
    protected Restriction restriction;
    public CaseSearchByPartyRequest() {
    public java.lang.String getSchemaVersion() {
    return schemaVersion;
    public void setSchemaVersion(java.lang.String schemaVersion) {
    this.schemaVersion = schemaVersion;
    public java.util.Calendar getMessageProducedDateTime() {
    return messageProducedDateTime;
    public void setMessageProducedDateTime(java.util.Calendar messageProducedDateTime) {
    this.messageProducedDateTime = messageProducedDateTime;
    public javax.xml.soap.SOAPElement getSelection() {
    return selection;
    public void setSelection(javax.xml.soap.SOAPElement selection) {
    this.selection = selection;
    public Restriction getRestriction() {
    return restriction;
    public void setRestriction(Restriction restriction) {
    this.restriction = restriction;
    this.selection is the request that I think I need. And here is the static main method of the soap client class genereated.
    public static void main(String[] args) {
    try {
    MyJdev.proxy.SoapClient myPort = new MyJdev.proxy.SoapClient();
    System.out.println("calling " + myPort.getEndpoint());
    // Add your own code here
    } catch (Exception ex) {
    ex.printStackTrace();
    So, if I need to send the request to the web service, do I need to create the request, correct? I have done it through AQ and Messaging Gateway and works fine by manually creating the request xml in PL/SQL, but now I need to get it to work sychronously from the UI. I believe that I need the request (SOAPElement) because that is the only way that I can supply the parameters. I have not see any setters for the parameters other than some setters for user name and password.
    Did I get something wrong here? If I don't supply the "selection", will JDev do it?
    Thanks.
    Ben

  • If you have a smart phone, can you conect it to the new wrieless ipad's or do you need to order the wireless service from verizon?

    If you have a smart phone, can you connect it to the new wireless ipad's or do you need to order the wireless service from Verizon for ipad's or do you need to order the wireless service from verizon?

    Kneehightoughguy,
    You do not need to purchase service from a carrier unless you want to utilize the iPads connection to a 3G Network on it's own (directly).  You may choose to add a Tethering plan onto your existing cell phone plan and to have an iPad connect to the Wifi connection that the Tethered phone would offer.
    Always compare your usage and your costs, as your mileage may vary.
    Brad

  • Automatic Generate the PO & service entry

    Hi,
    I want automatic generate the PO & service entry after create the shipment cost calculation.
    Can you explain the configuration?
    Useful answers duly rewarded
    Regards,
    Devendra

    dear Devendra 
    You need following IMG settings:
    1) Check box in 101 movtype customizing
    2) Plant shd have been assigned to a standard purchasing org
    3) Default document type for the transaction code (MIGO_GR/MIGO/MB01) in purchasing
    Others things:
    1) Material shd be valuated matl
    2) Info record for vendor, material & standard P.org of the plant
    3) P.grp in material master
    4) GR shd be for stock (not account assigned)
    steps :
    1. Maintain Auto PO in Material master Purchasing view
    2. Select Automatic purchase order in Vendor master- Purchase data
    3. Maintain info-record with tax-codes
    4. Create a PR through ME51
    5. Assign the same in ME57
    6. Execute in background using Tcode ME59.
    PO will be created automatically.
    Hope this helps you.
    Reward points if helpful
    thanks and regards
    ravikant dewangan

  • Can not test the web service in JDeveloper.

    Hi there...
    I created an AppModule, added two custom methods, and generated a webservice for that. When I want to test the webservice I get the error "The Webservice Tester cannot be invoked because the WSDL document of the selected service cannot be read."
    If I right the webservice and select run, I can view the web page to invoke the methods, However I am wondering why I can't test the service inside the developer.
    The settings of my system are as follows:
    OS: windows 7 64bit
    JDeveloper: Studio Edition Version 11.1.1.3.0 , Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660
    I did not install any update for JDeveloper...
    So if anyone is having an idea what this problem is let me know.
    thanks .

    It seems that even if the test web service option does not work and i get the error, it is possible to run the web service, and then by clicking on the link in the log the tester in jdeveloper appears.
    Don't know the reason for such strange behavior.

  • How to change the web service address of NetBeans generated WS client

    I am currently experimenting with web services using netbeans and Sun Application Server.
    Basically I am creating simple web services using net beans and then deploy them on the app server and then create another pfoject with web service reference to that web service to invoke the service.
    My problem is when a project is deliverd to the production site the the client applications web service reference will need to be configured to refer to the production web service address. But when I looked at the generated web service client code the address is hard coded.
    How can I change the address to the web service of a web service reference created in net beans either using some configuration file (without having to recompile the client) or at runtime.
    Thanks in advance

    bump...

  • How can I invoke the web service manually in websphere?

    Hi
    I've developed a webservice application using Rational Application Developer (RAD). I deployed it in a websphere 6.1 application server, using the administration console to import the war file that I had previously exported with RAD.
    My webservice application is listed in the "Enterprise Applications" section of websphere's administration console as started.
    My question is: how can I invoke the web service manually? Is there some kind of websphere generated webpage that I can use to call it manually?
    I tried http://<server:port>/<contextroot> and http://<server:port>/<contextroot>/<servicename> in a webbrowser, but it doesn't work. Is it possible to invoke the web service manually, or do I need to develop a client?
    Thanks in advance
    Pedro

    Hi Bo Wang,
        Go to the Portal -> System Administration -> System Configuration
                               -> Portal Content folder
                               -> Open Visual Composer folder
        There you can see the Webservice Systems you have created through VC.
    You can delete the unwanted system here.
    Regards,
    Shemim

  • How can I find out the previous service provider my device is still registered with?

    When trying to create a BIS account, I received the error message that my device was already registered with a different service provider and that I would have to reregister it. The problem is that I bought it new from cordlessphoneworld.co.uk and it was supposedly "completely refurbished".
    My Pearl 8100 is a BT phone, however BT confirmed to me that it was not registered with their network. The seller,  cordlessphoneworld.co.uk, told me to contact BlackBerry support, and BB support told me to talk to my service provider (O2 UK) who has already told me I would have to get in touch with the previous service provider.
    How can I get my BB released from its current BIS registration, or at least find out who it is registered with, in order to finally enjoy its full functionality and not just the regular phone stuff?
    My BB info:
    PIN: *********
    IMEI: #################
    Happy for any help or ideas!!
    Thanks.
    EDIT: Removed personal information
    Message Edited by Andy on 08-30-2009 02:33 PM

    Theres a high chance it was set up with the original carrier that is was sold with.
    To find this out you need to get the vendor id of the device.
    Do this by holding down (all at the same time ) the ALT+CAP+H button..
    Or
    Whilst pressing down ALT, select E Then S then C then R
    You should see a little page pop up with random info.
    What you are looking for is the vendor ID. a three digit number.
    Then I will post a list of all the vendors IDS at the end of this message as i can't remember the link..
    Anyhow, find the carrier from the list and call them asking them to release the PIN..
    IF... the prev user didn't register it with that carrier (which would mean you phone has possibly been used twice before) then you can call your current Carrier and ask them to escalate the call to RIM who will be able to tell...
    Hope this helps..
    ALT+CAP+H
    OR
    ALT+ E,S,C,R
    100 T-Mobile US
    101 AWS
    102 Cingular Wireless
    103 Nextel
    104 Sprint PCS
    105 Verizon
    106 Alltel
    107 Rogers
    109 BWA (Aliant/Sasktel)
    111 MM02 DE
    113 Telfort
    114 T-Mobile DE/AU
    115 TIM
    116 Hutchison
    117 Bouygues
    118 SFR
    119 Orange_France
    120 VODAFONE (UK)
    121 Telcel
    122 Telstra
    123 T-Mobile (UK)
    124 Vodafone Germany
    125 MM02 UK/IRL/NL
    126 Telus
    127 SMART
    128 Starhub
    129 Telefonica
    130 Swisscom
    131 Cable & Wireless
    132 Vodafone (IT)
    133 Vodafone (ES)
    134 T-Mobile (NL)
    135 Cincinnati Bell
    136 Telefonica_LAM
    137 Vodafone Austria
    138 Vodafone Australia
    139 Vodafone Ireland
    140 Vodafone Sweden
    141 CSL
    142 Orange UK
    143 Vodafone New Zealand
    144 SingTel
    145 Globe
    146 Optus
    147 Orange Mobistar
    148 Vodafone_HU
    149 Bharti
    150 KPN
    151 TIM_Greece
    152 Proximus
    153 Vodafone_Portugal
    154 TIM_Brazil
    155 BT_Mobile
    156 Earthlink
    158 E-Plus
    159 BASE
    160 Dobson
    161 Vodafone_Egypt
    162 Orange_Switzerland
    164 Triton
    165 Maxis
    166 Vodafone_Denmark_(TDC)
    167 MobileOne_(Voda_Singapore)
    168 Vodacom
    169 T-Mobile_PO
    170 T-Mobile_CZ
    171 T-Mobile_HU
    173 MTN
    174 Entel
    175 Amena
    176 SmarTone
    177 TCS
    178 Avea
    179 F100
    180 Turkcell
    181 Partner
    183 Orange_Global
    186 Telkomsel
    188 Vodafone_Greece
    189 USCC
    190 Mobilink
    194 Voda_Luxembourg
    195 Voda_Iceland
    198 Vodafone_CZ
    204 China_Mobile
    205 Movilnet
    209 Sympac
    210 TIM_Argentina
    212 Etisalat
    214 AMX
    215 Telefonica_Venezuela
    217 Orange Romania
    218 KTP
    222 Mobitel Bulgaria
    224 PCCW/Sunday
    227 Mobily
    229 Eurotel
    230 Hutchison Essar
    If your issue is resolved, put a checkmark in the green box that contains the resolution.
    OR
    If it was just/or also really helpful - Give it a Kudos.. Go on Mate.. Help the rest of the clueless blackberry user world find their answer too..
    ~Gday from Down Under~

  • Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Hi Tony,
    Please refer this KB document : Return, cancel, or exchange an Adobe order
    Please let me know if you need any further assistance.
    Regards,
    Rahul

  • Can the order of Account segmentation types be changed?

    Hi Forum,
    I believe it can not be, but would like to confirm from the experts.
    When we create a company with segmentation, the system generates four default segments - Natural Account, Division, Region and Department.
    Most other ERP systems have it as Division, Region, Department followed by the Natural Account code.
    The question I have is, can the above order be changed to   like other ERPs - Division, Region, Department followed by the Natural Account code.
    Thank you.

    Hi,
    This is system design, it is impossible to change segmentation account order.
    Regards,
    TVSon

  • Problem in using the Web Service generated from BAPI_FLIGHT_GETLIST

    Hi all,
       I am trying to use the Web Service generated from BAPI_FLIGHT_GETLIST. I have got the wsdl file, and trying to invoke it. But, while I can test the BAPI using the Airline ID AA, I can't test from the Web Service using the same data. It shows the error message - "Airline AA not found". Anyone having solution, please help. This is urgent.
    Thanks,
    Anirban
    Message was edited by:
            Anirban Das

    Yes, I am connecting to the same system where we have data..
    Anirban

Maybe you are looking for

  • Mail Merge problem with Word 2007

    I recently replaced my laptop and installed Office 2007.  When I try to create mailing labels, it is only merging the first three labels and those are not formatted correctly or even consistently.  It seems like a compatibility problem, but my excel

  • Macmini server

    Hello all, I hope that someone with more knowledge than me can help me out on a few questions and tips. thank you already in advanced macmini is running hamachi, if anyone has a better sugestion on how to use VPN, greatly apreciated cant figure it ou

  • Very slow download speed though modem line rate no...

    Hi I recently noticed (today, 31st December) that our download speed had dropped very low, to approx 0.5Mbps. The upload speed is normal, approx 1Mbps. The modem line rate is however normal (8Mbps dowm, 1Mbps up). I have checked the download speed us

  • Upgrade from Panther Server with Raid1

    Trying to upgrade from Panther Server with software Raid1. Upgrade fails with "Could not prepare disk". I'm guessing it has to do with the RAID1? I need to upgrade and not do a clean install. Could I upgrade to tiger server first?

  • 10g RHEL5.2 error when installing - need help

    Newbie to the forum; am trying to install 10g on RHEL 5.2 X86_64 and get 65% through the install and encounter errors related to makefiles. I do have all the prerequisite RPM packages installed per the manual. Here is the error:"error invoking target