Please explain the possible reasons of manufacturing through Subcontractor.

Dear experts,
     The question was asked to me in interview -
     Why we prefer Material manufacturing by Subcontracting Procedure?
     Even though the company is having own machinery set up and man power, then also what  
     Are the Reasons for manufacturing the components by Subcontracting?
     Please mention all the possible reasons on this question.
     Thanks in Advance !

Hi Kiran,
Some of the reasons for sub-contracting-
1. Cost
2. Capacity not available at our plant, due to overload or full capacity booking by other processes
3. Subcontractor has requisite tools and / or better know-how of that process.
4. The volumes does not justify carrying out the process in-house.
Hope the above was helpful.
Regards,
Vivek

Similar Messages

  • Please explain the following terms in SRM

    Hi Forum,
    I am new to SRM and trying to understand some general terms and concepts in SRM.
    Please explain the meaning of below jargons if possible with an example and what is their use in SRM bussiness scenarios...
    1. Company Code
    2. Account Assignment Category - CC, OR etc
    3. Cost Center
    4. Document Types
    5. Transaction Types
    6. Movement Types
    7. Storage Location
    8. Plants
    9. Central Person
    10. Business Partner
    I am trying to understand what is the relevance of above things in SRM/ECC ?
    Thanks,
    Vivek

    Vivek
    It would be great if you go through http://help.sap.com/saphelp_srm30/helpdata/en/8d/f6a93e08503614e10000000a114084/frameset.htm
    This will help you clear most of your queries.
    Regards,
    Nikhil

  • Iphone 5s, Can't easily send sms. already updated in ios 7.1, What could be the possible reason and solution?

    I got my iphone 5s last 2 months, and it's ios is 7.0.6, after a month i can't easily send SMS, i have several apps and games. I tried to update my ios but still the problem persist. What could be the possible reason and what are the solutions? Please help me. 

    Technoboy14 wrote:
    I got my iphone 5s last 2 months, and it's ios is 7.0.6, after a month i can't easily send SMS, i have several apps and games. I tried to update my ios but still the problem persist. What could be the possible reason and what are the solutions? Please help me. 
    What does "can't easily send SMS" mean? What problems are you having with SMS? Without details, no one could possibly give you a reason or solutions.
    Have you tried resetting your device by pressing and holding the Home button and power button until the silver apple appears?

  • My Personal Hotspot suddenly Stopped working..What is the possible reason??plzz reply ASAP

    Please help me. I'm Switching on my Personal Hotspot option but still hotspot isn't getting ON. what are the possible reasons reply ASAP

    iOS: Troubleshooting Personal Hotspot - Apple Support

  • A consent for a new eula, please explain the ramification of these new terms

    4. Your Compliance With This Agreement.
    You acknowledge that your compliance with the terms of this Agreement may require you to provide certain notices to, obtain certain rights from, and impose certain obligations on your Clients and/or users of the websites hosted by the Services. To that end, you agree that each website for which Adobe provides Services on your behalf (including, if you are a Partner, your Clients’ websites) will contain a clear and conspicuous link to a terms of use and a privacy policy that comply with all applicable laws, rules, and regulations.
    5. Partner Obligations.
    (c) You are responsible for your Clients’ compliance with applicable laws in connection with their use of the Services.
    (g) You have or will obtain all rights necessary for you to grant Adobe the licenses granted in Section 16 (“Content”), below.
    16. Content.
    You (if you are a Site Owner) or your End Users (if you are a Partner), and/or each such party’s respective licensors, retain ownership of any information, content and/or materials that they submit in the course of using the Services (“Content”); however, Adobe needs certain rights to Content in order to provide the Services. Accordingly, you hereby grant to Adobe and its service providers and designees a worldwide, non-exclusive, transferable, sublicensable (through multiple tiers), royalty-free, perpetual, irrevocable right and license, without compensation to you: to use, reproduce, distribute, adapt (including without limitation edit, modify, translate, and reformat), create derivative works of, transmit, publicly display and publicly perform such Content, in any media now known or hereafter developed.
    please explain the ramification of these new terms
    Thank you,
    Lana

    Hi guys,
    Correct as Liam noted there are various topics on these concerns. 
    However if still having issues/concerns I would suggest posting in the original thread below after reviewing Magda's response.
    - http://forums.adobe.com/message/4353638
    Kind regards,
    -Sidney

  • Please share the possible T code in MM of ERP to validate the data of MM bex Queries.

    Dear All,
    Please share the possible T code in MM of ERP  to validate data of MM  Standard bex Queries.
    Thanks
    Regards,
    Sai
    Basic Qs
    Message was edited by: Pravender Kumar

    Try something like this..
    data : lv_flag .
    LOOP AT GT_ZKPC2 INTO GS_ZKPC2.
    ld_amount = ld_amount + GS_ZKPC2-SALK3
    at end of prctr.
    <b>lv_flag = 'X'.</b>
    endat.
    at end of prctr1.
    <b>IF LV_FLAG = 'X'.</b>
    ld_amount = ld_amount + GS_ZKPC2-SALK3.
    move GS_ZKPC2-BUKRS_VF to GS_ZKPC3-BUKRS_VF.
    move GS_ZKPC2-PSPNR to GS_ZKPC3-PSPNR.
    move gs_zkpc2-konts to GS_ZKPC3-BUKRS_VF.
    move GS_ZKPC2-ALOC_SAKHA to GS_ZKPC3-ALOC_SAKHA.
    move gs_zkpc2-prctr to gs_zkpc3-prctr.
    move GS_ZKPC2-SALK3 to GS_ZKPC3-SALK3.
    move gs_zkpc2-prctr1 to gs_zkpc3-prctr1.
    move ld_amount TO GS_ZKPC3-RAMOUNT.
    APPEND GS_ZKPC3 TO GT_ZKPC3.
    clear: gs_zkpc3,ld_amount.
    <b>
    CLEAR LV_FLAG.</b>
    endat.
    endloop.
    Thanks
    mahesh <b></b>

  • Please explain,  the job of the  "ASSIGN COMPONENT ".

    Please read this popular example appended below. I am newbie to ABAP.
    At the end of the execution the code is printing 33. Don't get it.
    Please explain,  the job of the  "ASSIGN COMPONENT ". How or why it is printing value 33.  What is the meaning of the statement, "ASSIGN COMPONENT <F2> OF STRUCTURE <F1> TO <F3>." ?
    DATA: BEGIN OF LINE,
    COL1 TYPE I VALUE '11',
    COL2 TYPE I VALUE '22',
    COL3 TYPE I VALUE '33',
    END OF LINE.
    DATA COMP(5) VALUE 'COL3'.
    FIELD-SYMBOLS: <F1>, <F2>, <F3>.
    ASSIGN LINE TO <F1>.
    ASSIGN COMP TO <F2>.
    DO 3 TIMES.
    ASSIGN COMPONENT SY-INDEX OF STRUCTURE <F1> TO <F3>.
    WRITE <F3>.
    ENDDO.
    ASSIGN COMPONENT <F2> OF STRUCTURE <F1> TO <F3>.
    WRITE / <F3>.
    11 22 33
    33

    DATA: BEGIN OF LINE,
    COL1 TYPE I VALUE '11',
    COL2 TYPE I VALUE '22',
    COL3 TYPE I VALUE '33',
    END OF LINE.
    DATA COMP(5) VALUE 'COL3'.
    FIELD-SYMBOLS: <F1>, <F2>, <F3>.
    ASSIGN LINE TO <F1>.
    ASSIGN COMP TO <F2>.      "here you are assigning the column name which is COL3 to <f2>.
    DO 3 TIMES.
    ASSIGN COMPONENT SY-INDEX OF STRUCTURE <F1> TO <F3>.
    WRITE <F3>.
    ENDDO.
    ASSIGN COMPONENT <F2> OF STRUCTURE <F1> TO <F3>.
    ASSIGN 'COL3' of structure <f1> to <f3>. "it is equal to above statement.
    WRITE / <F3>.
    11 22 33
    33
    ASSIGN COMPONENT <F2> OF STRUCTURE <F1> TO <F3>. means
    assigining  COL3  value of the structure <f1> to <f3>, so value is 33 , it will be assigned to <f3> .it prints 33.

  • What are the possible reasons why I cannot reactivate using my AppleID, even though I already change its password with the help of Apple personel

    What are the possible reasons why I cannot reactivate my Iphone5 using my AppleID, even though I already change its password with the help Apple personel

    If the password for your Apple ID works at id.apple.com > Manage Apple ID, then it's likely that the Apple ID the device wants you use is not the same as the Apple ID you are using.
    Exactly what screen are you at on your iPhone?  It sounds like it is in Activation Lock.

  • Please explain the use of all the below movt types

    Hi friends,
    Can you Please explain the use of all the below movt types and how it is triggered.
    901     GR Area for Production
    902     GR Area External Rcpts
    904     Returns
    910     GI Area General
    911     GI Area for Cost Center
    912     GI Area Customer Order
    913     GI Area - Fixed Assets
    914     GI Area Production Orders
    915     Fixed Bin Picking Area
    916     Shipping Area Deliveries
    917     Quality Assurance
    920     Stock Transfers (Plant)
    921     Stock Transfers (StLoc)
    922     Posting Change Area
    980     R/3 --> R/2 cumulative
    998     Init.entry of stock bal.
    999     Differences
    Regards,
    Balu R.V

    Hi,
    The below mentioned objects are interim storage types, not movement types.
    Interim storage types are used as a sort of bridge between IM and WM.
    MZ

  • Please explain the magic! (Question)

    The ActionScript snippet below is from the BlaseDS chat sample app. Can someone please explain the magic that declares the chatMessage property of AsyncMessage.body (IMessage.body?) object? It's not in the docs anywhere so I'm guessing it is not built into AsyncMessage. And it's not defined in any of the sample app source files.
    Coming from a strongly-typed development world, seeing a property that apparently has no declaration and is not explicitly instantiated does not pass the sniff-test.
    Thanks.
    <mx:Script>
      <![CDATA[
       import mx.messaging.messages.AsyncMessage;
       import mx.messaging.messages.IMessage;
       private function send():void
        var message:IMessage = new AsyncMessage();
        message.body.chatMessage = msg.text;
        producer.send(message);
        msg.text = "";
       private function messageHandler(message:IMessage):void
        log.text += message.body.chatMessage + "\n";
      ]]>

    Hold your nose, because that is the dynamic "feature" of Actionscript.  Pretty much every class derives from Object (http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Object.html) which is a dictionary of key-value property pairs.  The {"chatMessage", msg.text as Object} pair is created upon assignment.
    I am fairly new to Flex/AS, and while not having to declare types is convenient for quick and dirty coding, I try to avoid it in production code...I have been bitten by refactoring a class and not catching all the places where it was referenced dynamically.  I'm sure there are comprehensive pro and con arguments out there.

  • 2 GB Limit – Please explain the concept

    I have more than 35000 photos already uploaded into Revel.
    In order to continue to remain a Free member, shall I have to delete all my photos and keep only within 2 GB limit?
    Please explain the new concept... Thanks!

    You may continue to use revel free of charge with the new model change, however, if you have stored more than 2 GB of files, then you will be unable to upload any additional photos/videos until you delete some files to take you below the limit or subscribe to get unlimited uploads.
    Pattie

  • TS1503 In the iPhone, please explain the requirements in settings for Apple id, iPhone and iCloud

    In the iPhone, please explain the requirements in settings for Apple id, iPhone and iCloud

    You can use 1 unified Apple ID for iTunes so you don't have to repurchase apps.   That part is fine.
    For iCLoud/iMessage/Facetime you should each have a unique ID so the 2 phones will be separate and you won't accidentally erase each other's content and overwrite settings, nor will you get the others messaages by mistake.

  • What could be the possible reason for a deployed application to run slow after the target pc comes out of standby mode?

    What could be the possible reason for a deployed application to run slow after the target pc comes out of standby mode?  PC running XP and using the USB to communicate with the DAQ and driver boards.  Application generated with 2010.
    Thanks

    Hello,
    Usually default property is checked 
      system property -> devices ->usb root -> power management -> allow system to switch off device
    Hope this help
    Regards
    Tinnitus
    CLAD / Labview 2011, Win Xp
    Mission d'une semaine- à plusieurs mois laissez moi un MP...
    RP et Midi-pyrénées .Km+++ si possibilité de télétravail
    Kudos always accepted / Les petits clicks jaunes sont toujours appréciés
    Don't forget to valid a good answer / pensez à valider une réponse correcte

  • What's the possible reason to lock a login account?

    If a login account locked not by sp_locklogin. what 's the possible reason to lock a login account?
    for testing purpose, I try to connect ASE 15.4 with a specific account and put a wrong password intentionally more than 5 times with sybase central but the account not locked.

    Do you have ASE configured to lock logins after 5 failed attempts?
    This can be configured serverwide with
    sp_configure "maximum failed logins", 5
    -bret

  • Could someone please explain the difference between Projects Intelligence and Projects Analytics?

    Could someone please explain the difference between Projects Intelligence and Projects Analytics?
    Thanks,
    Adrien

    Older iPads got 3G service and were called Wi-Fi + 3G. Newer iPads can connect to faster cellular networks and those are given different names by the major carrier so to simplify things Apple calls the newer models Wi-Fi + Cellular.
    iPads with 3G or Cellular are NOT used like a mobile phone. They do not make phone calls or send SMS or MMS text messages, They do connect to the data network and can connect to the web.

Maybe you are looking for

  • Max no columns allowed in a table

    i want to know how many columns are allowed in a table.maximum no of columns in table.

  • Issues in FCC

    Hi, I am working on a scenario File to IDOC. I have a CSV source file, so I have usd File content conversion in my sender communication channel. I am unable to convert my file successfully to xml. My Source Structure is like : OrderHeader A B C Item

  • Problem about fill set up table

    Hi all, I got a problem when I run the fill set up table for sales billing data source. what I did is: first delete the setup table then oli9bw->type in a sales document no.(as I only want this order data), then give a run name, last execute, but I g

  • Vendor evaluation - Datasource?

    Hi, is 2LIS_02_ITM  an alternative and a better Datasource over 2LIS_02_S013 for vendor evaluation when purchase order fields are included ?

  • BSOD Caused on Windows 7 64-bit while watching Netflix Instant in Firefox 4.0

    Starting with the latest version of Firefox 4 - I'm getting BSoD's in Windows 7 64-bit SP1 while watching Netflix Instant. My system will crash with a DirectX DLL file being labelled as the culprit.