What is Toll manufacturing and which module is responsible for it ???

Dear All
I have a general query, the client has the toll manufacturing as the client is providing the service of manufacturing the products to another companies then give it back to the customer or act as a reseller of the products
I want to know which module is responsible to do the toll manufacturing and what is the scenario in details of that industry
Regards
Jacopo Françoise

Hi Jacopo,
This is related to MM module and they will define the out source job method.
Regards,
Anil

Similar Messages

  • What is discrete manufacturing and REM?

    Hello All,
    What is discrete manufacturing and REM?
    Sincerely,
    Ketan

    Hi ketan,
    -Discrete manufaturing is  Lot based production system, Porduction order is cretaed for Every Lot and order based confirmation & Cost control is carried out.
    -Repetative manufacturing is period based production system, production order concept will not work, so period based confirmation & cost control is carried out.
    Below points helps to underdstand the difference between them.
    - A typical characteristic of discrete manufacturing is the frequent switching from one manufactured product to another. The products are typically manufactured in individually defined lots, the sequence of work centers through production varying for each one of these. Costs are calculated on the basis of orders and individual lots.
    - In Repetitive Manufacturing, products remain unchanged over a longer period and are not manufactured in individually defined lots. Instead, a total quantity is produced over a certain period at a certain rate.
    - Discrete manufacturing typically involves varying the sequence of work centers through which the products can pass during production. The order of work centers is determined in routings, which can often be very complex. There can be waiting times between the individual work centers. Also, semi-finished products are frequently placed in interim storage prior to further processing.
    - Repetitive Manufacturing, on the other hand, normally involves a relatively constant flow on production lines. Semi-finished products are usually processed further immediately without being put in interim storage. Routings tend to be relatively simple.
    I hope u have understood if yes please reward and close the thread.
    Regards
    Pardeep

  • I have a Apple MacBook Pro "Core i7" 2.8 13" Late 2011. i want to upgrade its RAM from 4GB to 16GB. But OWC sells two kinds of RAM, the DDR3 and the DDR3L.What is the different and which one would work better for my mac. Thanks!!!

    Please help! I have a Apple MacBook Pro "Core i7" 2.8 13" Late 2011. i want to upgrade its RAM from 4GB to 16GB. But OWC sells two kinds of RAM, the DDR3 and the DDR3L.What is the different and which one would work better for my mac. Thanks!!!

    I don't see any DDR3L on the page for the RAM that would fit your model -> http://eshop.macsales.com/shop/memory/Apple_MacBook_MacBook_Pro/Upgrade/DDR3_133 3MHz_SDRAM.
    But the answer is that it doesn't really matter - just make certain to get 1333MHz.
    Good luck,
    Clinton
    MacBook Pro (15-inch Late 2011), OS X 10.??, 16GB Crucial RAM, Crucial M500 960GB SSD, 27” Apple Thunderbolt Display

  • My 5 year old MacBook Air is telling me it "cannot save information about your mailboxes because there isn't enough space in your home folder.  Quit mail, delete files you don't need, then reopen mail."  What is "home folder," and which files to delete?

    My 5 year old MacBook Air is telling me it "cannot save information about your mailboxes because there isn't enough space in your home folder.  Quit mail, delete files you don't need, then reopen mail."  What is "home folder," and which files to delete? Thanks.

    The home folder is where all of your personal files are kept.
    Best candidates to delete are movies, videos, music and photos since they generally take the most space.
    Don't forget to empry the Trash after you delete the file because the space is not returned until the Trash is emptied.
    Allan

  • What is the AlwaysFilter and when it is used for?

    What is the AlwaysFilter and when it is used for?
    Could you explain it in the details.
    Thank you

    jetq wrote:
    Sorry.
    cache.aggregate(AlwaysFilter.INSTANCE, new LongMin("getAge"))
    That doesn't really help.
    Where does AlwaysFilter come from? Is it part of the core API, or a 3rd party library? If the latter, which one? And in what do the API docs for this class not answer your question?

  • What is authorization object and how to create it for a table

    Hi All,
    What is authorization object and how to create it for a table?
    Thanks

    Hi
    Authorization
    For authorization checks, there are many ways of linking authorization objects with user actions in an SAP system. The following discusses three possibilities in the context of ABAP programming.
    Authorization Check for Transactions
    You can directly link authorization objects with transaction codes. You can enter values for the fields of an authorization object in the transaction maintenance. Before the transaction is executed, the system compares these values with the values in the user master record and only starts the transaction if the appropriate authorization exists.
    Authorization Check for ABAP Programs
    For ABAP programs, the two objects S_DEVELOP (program development and program execution) and S_PROGRAM (program maintenance) exist. They contains a field P_GROUP that is connected with the program attribute authorization group. Thus, you can assign users program-specific authorizations for individual ABAP programs.
    Authorization Check in ABAP Programs
    A more sophisticated, user-programmed authorization check is possible using the Authority-Check statement. It allows you to check the entries in the user master record for specific authorization objects against any other values. Therefore, if a transaction or program is not sufficiently protected or not every user that is authorized to use the program can also execute all the actions, this statement must be used.
    AUTHORITY-CHECK OBJECT object
                            ID name1 FIELD f1
                            ID name2 FIELD f2
                            ID namen FIELD fn.
    object is the name of an authorization object. With name1, name2 ... , and so on, you must list all fields of the authorization object object. With  f1, f2 ... , and so on, you must specify the values that the system is to check against the entries in the relevant authorization of the user master record. The AUTHORITY-CHECK statement searches for the specified object in the user profile and checks the useru2019s authorizations for all values of f1, f2 ... . You can avoid checking a field name1, name2 ... by replacing FIELD f1  FIELD f2 with DUMMY.
    After the FIELD addition, you can only specify an elementary field, not a selection table. However, there are function modules available that execute the AUTHORITY-CHECK statement for all values of selection tables. The AUTHORITY-CHECK statement is supported by a statement pattern.
    Only if the user has all authorizations, is the return value sy-subrc of the AUTHORITY-CHECK statement set to 0. The most important return values are:
    ·        0: The user has an authorization for all specified values.
    ·        4: The user does not have the authorization.
    ·        8: The number of specified fields is incorrect.
    ·        12: The specified authorization object does not exist.
    A list of all possible return values is available in the ABAP keyword documentation. The content of sy-subrc has to be closely examined to ascertain the result of the authorization check and react accordingly.
    REPORT demo_authorithy_check.
    PARAMETERS pa_carr LIKE sflight-carrid.
    DATA wa_flights LIKE demo_focc.
    AT SELECTION-SCREEN.
      AUTHORITY-CHECK OBJECT 'S_CARRID'
                      ID 'CARRID' FIELD pa_carr
                      ID 'ACTVT' FIELD '03'.
      IF sy-subrc = 4.
        MESSAGE e045(sabapdocu) WITH pa_carr.
      ELSEIF sy-subrc <> 0.
        MESSAGE e184(sabapdocu) WITH text-010.
      ENDIF.
    START-OF-SELECTION.
      SELECT  carrid connid fldate seatsmax seatsocc
        FROM  sflight
        INTO  CORRESPONDING FIELDS OF wa_flights
        WHERE carrid = pa_carr.
        WRITE: / wa_flights-carrid,
                 wa_flights-connid,
                 wa_flights-fldate,
                 wa_flights-seatsmax,
                 wa_flights-seatsocc.
      ENDSELECT.
    Regards
    Hitesh

  • Which user and which procedure takes snapshots for AWR in 10g??

    Hi, all.
    Which user and which procedure takes snapshots for AWR in 10g??
    The snapshot interval is 1 hour.
    I checked dba_scheduler_job, and dba_job.
    However, I was not able to find a job which takes a snapshot.
    On EM, I can see snapshots are being taken per one hour.
    Thanks and Regards.
    Message was edited by:
    user507290

    Dear Shmyg and VAS.
    Thanks for your reply.
    MMON takes a snapshot and stores snapshot information in DBA_HIST_** tables.
    Right??
    Does MMON have something to do with dbconsole and emagent??
    Even when I stopped dbconsole and emagent, snapshots are being taken.
    If so, what does do dbconsole and emagent??
    Thanks and Regards.
    Message was edited by:
    user507290

  • I just purchased Adobe Photoshop Elements 13 for a Mac and trying to install. I am at the point to enter the serial number but it won't take letters. What do I do and where do I go for help?

    I just purchased Adobe Photoshop Elements 13 for a Mac and trying to install. I am at the point to enter the serial number but it won't take letters. What do I do and where do I go for help?

    If the code you are trying to enter has letters then you are not looking at a serial number.  A serial number only contains numbers - 6 sets of 4 numbers.
    Find your serial number quickly
    You might be dealing with a redemption code.  This is especially so if you purchased it from a store or the like.
    Redemption Code Help
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • What is "use SSL" and "S/MIME" mail settings for?

    What is "use SSL" and "S/MIME" mail settings for?

    it has do with encrypting your mail when sent over the web

  • What is the best and least expensive wireless printer for ipad2?

    What is the best and least expensive wireless printer for ipad2?

    Do you mean a external cd/dvd drive that connects by usb port? If you do then any brand will work. It does not have to be a apple brand for it to work on your mac. Most go for around $30 in the usa.
    I use a asus brand that cost me just under $30. Works on any computer it is connect to.

  • Which MBean is responsible  for Control MDB in JBOSS

    Hi,
    Is JBoss MDB layer are integrated using MBeans? Which MBean is responsible for this?
    Can I control this MBean programatically?
    /sh

    Depends what data. The Server service is for File and Printer Sharing. For database access it may one of several
    OLEDB / ODBC drivers.
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Which file is responsible for the BEA WL Console page

    Can anyone tell me, which file is responsible for the BEA WebLogic Server
    Administration Console web page?
    For example, the URL for the Admin Console
    http://<domainname>/console is being redirected to
    http://<domainname>/console/login/LoginForm.jsp.

    I would strongly discourage any modification of this as it would not be supported. Perhaps you should explain in more detail why you want to do this?
    The files on WLS 10.0 appear to be here:
    BEA_HOME\wlserver_10.0\server\lib\consoleapp\
    Specifically in the webapp\WEB-INF\web.xml subdirectory you can see how things are set up to redirect in the login-config element.

  • Which module suits more for Software engineer ???

    hai
    i need some suggestions, i am doing masters in software technology in GERMANY  and i am a fresher with no work experience and i am very interested in doing SAP certification and i want your valuable suggestions to choose the specific module. i am thinking do SAP in ERP would it be right choice ??
    if not what would be a better choice to get into the SAP career ??
    Are there any chances to grab a job as a fresher in SAP market??

    Hi,
    There is no suggestion which can be given for deciding a module in SAP. This selection is driven by knowledge in a specific area together with personal interest. Pursuing a career in SAP or not depends upon your take on consulting and business knowledge. You may visit the Career Center space in SCN to get some more food for your thoughts and decide.

  • Want to learn SAP - which module should opt for...

    one of my friend is in to Retail domain..non SAP Domain working with one retail channel as a store manager. ...Wants to learn SAP....which module should he go for..SD / CRM / or direct IS_Retail certification...as a fresher where he will be able to get chance...???
    i am working as a SAP Recruiter in some company..so i am aware that there is not much demand for fresher in this industry..
    please guide...

    Plenty of information about Retail education on <a href="https://websmp104.sap-ag.de/RETAIL">Service Marketplace - Retail</a> where you will find course descriptions.  For example:
    This curriculum comprises an Overview Course (Level 2), which explains the main retailing processes in SAP for Retail, plus seven Detailed Courses (Level 3), which examine specific retailing processes and how these are mapped and controlled in SAP for Retail.
    The Overview Course IRT100 (Retail Process Overview) explains the core processes of a retailing company. Based on a scenario in which merchandise is sold from stores, the course demonstrates how the store and distribution center are supplied with goods. Further process examples are the special cases of promotions and return of merchandise.

  • Which module can adding for catalyst 4006

    My network will upgrade backbone use 100 base single mode fiber optic,at present we'd been used catalyst 4006,and catalyst 2950.Could you tell me which module I need to install for two catalysts.
    (At present, two catalysts onlu use 10/100 (RJ 45) module.
    Thank you very much.

    you will need a fiber to copper converter.THere are quite a few available on the web.
    Unless of course you want to do a hardware upgrade.

Maybe you are looking for