Assign Batch Class Automatically to A Retail Article

Dears,
Please i want to know if i have the possibility to assign  a batch class 023 to An Article once i create it ?
Thanks in Advance
Abdallah Galal

Is there any Update?

Similar Messages

  • Assign Batch Class to Material - Using Upload

    Hi All,
    I have a requirement to assign batch class to material master (MM01 / MM02) - Classification view - Batch Class (022).
    This assignment has to be done through a upload program (BDC / LSMW / BAPI). Can someone please suggest me the best possible option.
    Note:
    1. I don't want to assign batch characteristics values. Just wanted to assign batch class to material.
    2. I have already created LSMW to load material master using LSMW direct input approach.
    Thanks,
    Somu

    Hi Dev,
    My existing LSMW was created using direct input approach which has no option to assign Batch Class to material.
    So my thought is to create a separate program (LSMW / BDC / BAPI) to assign batch class to material.
    Any best possible option please?
    Thanks,
    Somu

  • Batch class at plant level

    Hi Guys,
    Is it possible to assign batch class for a material at plant level, the scenario is the material is produced in two plants the batch characteristics for the both plants are different , and hence i want to assign two different batch class to a material .
    Thanks and regards
    Thamizhchelvan G

    Thamizhchelvan,
    You cannot have Plant wise Batch Class as this is client level data.
    What can be done is assign all the possible characteristics to the Batch Class and assign that class to Material master and you can define the Inspection plan with MIC which are as required by individual Plants, based on this Results would be recorded and Inspection Results can be transferred to Batch Classification for that particular data.
    Regards,
    Prasobh

  • Batch class for MM

    HI
    I have assigned batch class 023 in Material Master.
    I wanted to retrive this information from tables. Can any one please guide how to retrive this information from SAP tables
    SK

    Please check these answered links:
    batch table
    What is the field and Table for "Batch Class" and "Class Type" in QM.
    TO FIND BATCH MATERIALS
    Table name for Batch Class type
    Re: table involved in mmbe transaction
    Edited by: Afshad Irani on Jun 1, 2010 10:47 AM

  • Assign production order number to batch number automatically

    Hi All,
    I have been trying to assign production order number to batch number when clicked on create icon in t-code CO02, and successfully assigned Production order number to batch number through EXIT_SAPLV01Z_001
    Question:
    Now i want to assign same production order number to batch number automatically... is it possible"
    If yes, provide me the exit or badi.
    Best Regards,
    Krishna K

    Hi,
    Try to use any enhancement point in below mentioned  FORM.
    In Program : SAPLCOKO1
    Include : LCOKO1F3J
    Inside below FORM.
    FORM header_update.
      DATA: flg_q_upd.
      DATA: quan_old LIKE caufvd-gamng.
    ENHANCEMENT-POINT header_update_01 SPOTS es_saplcoko1 STATIC.
    ENHANCEMENT-POINT HEADER_UPDATE_05 SPOTS ES_SAPLCOKO1 .
    BR,
    Vijay

  • Assign batch number from sale order to production order automatic

    Dear all, I have a question for all. Please help me in this case
    My scenario is make to order
    I have a sale order, when i create sale order, i have assigned batch number at each line item.
    When i run MRP for sale order (MD50), the system generate a planned order for it and I've converted to production order.
    So when I view production order, I think that batch number what I've assigned to sale order will be assign to production order but that is not happen.
    So, can you help me solve this problem. I think that sap can assign batch number from sale order to production order automatic but i don't know how to configure that
    Thanks all

    Hi,
    To the best of my knowledge, when system is generating planned order / production order from sales order system doesnt copy batch number from sales order.
    In fact , you are following wrong practice for generating batch no.
    Follow procedure like this :
    Create sales order without any batch assigning there. Run MRP with MD50 and then convert planned order to Production Order.
    While creation / releasing of Production order, you have option to generate batch automatically by following way :
    Go to OPKP (Production Scheduling Profile) -> Take your plant & give suitable name to Production scheduling profile-> Batch Management tab -
    > Automatic Batch creation in the order maintain this field as
    1     Automatic batch creation at order creation
    or
    2     Autom. batch creation at order release
    This will generate batch number automatically at the time of creation or release of order.
    Then follow same process i.e. Goods Issue, Confirmation & GR for production order.
    So you will get sales order stock in the form of batch managed.
    Check & revert if any issue in above flow.
    Regards,
    Tejas

  • Batch Class Assignment

    Dear All,
    I have created a material with batch management & i have assigned a Class of type "023" in the classification view.
    When i open the same material again there is no class assigned to the material.
    this is happening to all materials.....
    plzzz guide
    Cheers

    Hi,
    Refer below thread which is similar to your problem,
    [Class not assgin|Re: Batch class assignment on a material]
    Regards,
    Dhaval

  • Assigning New Batch Class

    Dear All,
    Having a material A with Batch class B1 & many transactions happened with this batch class
    Need to assign a new Batch class B2 with different characteristic
    Is it possible to change in material master?
    If so, what are all the prerequisite & how to proceed
    Kindly advise
    With Regards,
    V.B.Saravanan

    So you're saying you have this code:
    node1 = new DefaultMutableTreeNode();but you want to arrange things so that when it runs, it actually creates an object of some subclass of DMTN?
    No can do. While you're changing all the instances of that code, think about refactoring your application so that you don't have so many instances of it.

  • How to assign multiple batch class to material in classification view

    Dear Gurus,
    How to assign multiple batch class to material in classification view.
    plz explain what are the procedure and what are the configuration required before assignment.
    Thanks
    Mani

    OK, Thanks for your reply.
    Regards
    Mani

  • Assignment of Class to Vendor automatically

    I've got a requirement where any vendor that I create needs to have a class assigned to it during creation. Is this possible ? If it is possible, how can it be done ?
    Thanks in advance.

    Thanks for your reply guys.
    I know that we can assign a vendor class during creation of vendor master.
    But, I would like to know if there's any way to have a vendor class automatically assigned to an account group (or something) so that when I create a vendor master, the class shows up in the classification screen automatically.
    Appreciate your time and help.

  • Recursive generic classes - Automatically assign default class?

    Hello,
    I'm working on a kind of ArrayList with some extra features... (named FullRangeList)
    To realize this, I need a way to create a new Object of my generic type for the current instance.
    Basicly, it works for me as described here: http://forum.java.sun.com/thread.jspa?forumID=31&threadID=5221886
    But in my case, my generic type will very often be the very same class, and I want my class to set its default class automatically.
    Here is my code:
    public class FullRangeList<E>
      private Class<?> defaultClass;
      public void setDefaultClass(Class<?> def)
        this.defaultClass = def;
      @SuppressWarnings("unchecked")
      public E getOrCreate(int index) throws Exception
        E elem = this.get(index);
        if (elem == null)
          if (this.defaultClass == null) throw new Exception("Cannot create Default Element: no default class set");
          try
            elem = (E)this.defaultClass.newInstance();
            if (elem instanceof FullRangeList)
            { // <- Here is the problem ;-)
              //elem.setDefaultClass(foo);
            this.set(index, elem);
          catch (Exception e)
            e.printStackTrace();
        return elem;
    }There are two problems now:
    1. I have no idea how to get to know what foo should be.
    if defaultclass is FullRangeList<FullRangeList<String>> foo is FullRangeList<String>... but how to realize that?
    2. It turns out that I have to cast elem in order to use ist.
    ((this.defaultClass)elem) causes a "Syntax error on token "elem", delete this token"-Error... what's wrong about that?
    hope anyone can help...
    nafur

    nafur wrote:
    I want the "getOrCreate" method to fetch an item and, if it has not been created yet, to create it.
    For this, I need the class, and that works so far.
    But what, if E is again a FullRangeList?
    Then, this child would need a default-class too!
    If I have a FullRangeList<FullRangeList<FullRangeList<SomeObject>>> list, i would say "list.setDefault(Class<FullRangeList<FullRangeList<FullRangeList<SomeObject>>>>)"
    But how do I get to know in my code, that a child of list should get "Class<FullRangeList<FullRangeList<SomeObject>>>" as default class?
    and their Childs "Class<FullRangeList<SomeObject>>"?As spoon_ already mentioned, there are no generic types at runtime. Working with reflection targets runtime, so no Generics.
    Another point is, that there is no FullRangeList<SomeObject>.class but only a FullRangeList.class. Hence, what you desire does not make sense in Java.
    Reading your approach, I would suggest working with some factory approach rather than implicit contracts on parameters given. Initializing the FullRangeList with some factory would provide what you need.

  • Assigning valuation class when creating Material

    Hi
    I want assign "3100 -Trading Goods valuation class" to my material which i am creating. in Tr.code MMH1
    In the accounting1 view, under the current valuation section, there are no options at all to select valuation class.
    please help me figure out how to get the 3100 option into my valuation class.
    i will send u a screen shot of my problem,if u need..gimme u r email id.
    i will assign points
    thanks

    hi
    u need to assign val classes to act cat ref.That act cat ref assign to mat type .
    then syst automatically will give option of val class when ur creating mat of that mat type.
    Log gen->mat master-> basic settings-> def att of mat type
    here u assign act cat ref to mat type.
    MM-> val & act assign ment -> act detr wth wizard-> def val class
    here u assign val classes to act cat ref.
    ok
    if its ok
    assign points
    nani

  • Traceability with batch class characteristics in batch where used list.

    Hi,
    I have a process order which issues 5 pallets or material and produces 5 pallets of another material. Each pallet is a seperate batch in my scenario.
    All materials are assigned to a batch class and i will be using a class characteristic to enter the issued pallet number (includes material number and batch number)  to the produced pallet batch. This way i want to create a traceability system.
    the problem is i need a way to create a hierarchical view or integrate this scenario to batch where used list.
    there is a badi for where used list to read external data. but i guess that is for something called "external batches"
    can you please guide me for the best practice of doing this?
    Thanks,
    Alper,

    Hi!,
    I think you have to use the mix of two functionalities:
    1. Original batch function
    2. Batch derivation
    This way you can pull the characteristics of the source material batch in to raw material as well as finish material batches.
    In this you have to create a nonvaluated material which is used as original batch mateial. You have to assign this material in material master of the RM and FG alongwith other required entries.  Also you have to use batch derivation function to pull the charactristics of this original material batch in to the RM and FG.
    Please go through the SAP help regarding Original batch and Batch derivation function to have more clarity.
    Please revert back in case of any further issue.
    Regards,
    Uday

  • FI-AA: Assignment asset class to chart of depreciation

    Hi all,
    does anybody know whether it's possible to assign asset classes to a specific chart of depreciation (or let's say to delete this assignment)?
    The background of the question is the following: Some asset classes should not be used in some company codes. All these company codes use the same chart of depreciation, so I thought there must be a possibility to delete the assignment of this asset class to this chart of depreciation. Unfortunately, I haven't found this setting in the IMG.
    The SAP Message no. AC 012 tells for example, that there is an assignment "asset class to chart of depreciation". This is the message:
    In order to be able to assign chart-of-depreciation-dependent data to asset class 120204, the following conditions have to be met. You have to have already
    1. Defined at least two active charts of depreciation
    2. Assigned asset class 120204 to more than one chart of depreciation
    However, at the moment this asset class is only assigned to chart of depreciation 1.
    As we have definitely more than one active chart of depreciation, there must be this assignment, but how can I change it?
    I've seen that I can set a block for an asset class in a chart of depreciation in transaction OAYZ (ANKB-XSPEB / Indicator: Block asset class chart of depreciation-specifc). But I think that I will still see the asset class in the match code search (F4) when I set this indicator.
    Does anybody know how I can delete an asset class form a chart of depreciation so that it won't be found via match code search? I've checked almost the whole FI-AA tree but haven't found a solution...
    Thank you very much!
    Regards,
    Peter

    Hi Eric,
    thanks for your answer. As far as I can see, the option "chart of depreciation only" in transaction AM05 has the same effect than the parameter "chart of depreciation" in transaction OAYZ.
    As I receive a transport request via transaction AM05, it seems that this changes the same customizing table.
    Fortunately, all company codes in this chart of depreciation need the same settings, so a validation rule seems not to be necessary.
    It's just strange that there is no possibility to edit the assignment asset class to chart of depreciation in customizing (I think the assignment to all asset classes in the system will be created automatically when I copy the chart of depreciation). I think the only possibility would be to edit the respective tables manually (what I definitely won't do).
    Another strange thing I see in the system: There are 2 asset classes 120203 and 120204, which are both set up equally. When I try to block these in AM05, I'll receive the error message AA 111 for asset class 120204, while the asset class 120203 can be blocked without problems. When I use matchcode search F4, I can see 120203 while 120204 is not found.
    Message AA111 is the following:
    Chart of dep. 100 does not exist in class 120204 (Create chart of deprec.)
    Diagnosis
    Chart of depreciation 100 does not exist in class 120204.
    Procedure
    Create the chart of depreciation 100 for asset class 120204 using the transaction 'Create asset class' and the function 'Create chart of dep.'.
    There is the assignment asset class to chart of depreciation.
    When I check asset class 120204 in OAYZ (Determine Depreciation Areas in the Asset Class) I'll get the following message (I don't get this message when I check 120203):
    Deprec. area 50 was changed and deactivated. Please check.
    Message no. AC 631
    Diagnosis
    Depreciation area 50 was added to asset class 120204 because this depreciation area was newly created in Customizing.
    System Response
    The system adds the new depreciation area to the asset class, but its status is 'deactivated.'
    Procedure
    Check if this action by the system is correct. Maintain the depreciation areas in the asset class, and remove the 'deactivated' indicator there, if you choose.
    For sure, depreciation area 50 was not newly created in customizing (as stated in the error message), as this depreciation are is in production for years! There must be another reason for this.
    However, this says to me that the assignment asset class to chart of depreciation is created by SAP automatically and this can't be influenced.
    Therefore I'll just block the asset class in the chart of depreciation with the disadvantage, that I'll see this asset class when I use the matchcode search F4 (e.g. in AS01). This seems to be the only solution.
    Thanks again for your help (you got some points for that ;-).
    Regards,
    Peter

  • Assigning of Classes to superior classes Using SXDA_Tools...Urgent

    Hi All,
    I have a requirement in which i have to create classes(Material classes, CL01) and subclasses for them. In the second step i will have to assign the created sub classes to their respective superior classes.
    I could create classes using batch input program "RCCLBI01" and object type BUS1003 from transaction SDXA_TOOLS.
    However i am not sure how to assign the created classes to their respective superior class. Does anyone know any direct input program or batch input programs to assign a class to its superior class ??

    See [http://forums.sun.com/thread.jspa?threadID=5333060&tstart=0]. In general, if you use third-party libraries in your code, you should include these libraries in Javadoc's classpath option when generating documentation.

Maybe you are looking for

  • How to create a link on a biller direct screen for downloading a pdf file

    Hi, My requirement is to create link on biller direct screen, when I click on that link a pdf document will be downloaded in local system. I need help on that

  • Can't see my sent mails

    I am a recent user, coming from Eudora. It's all working pretty well, but I just noticed that my sent mails are not being stored anywhere. I have searched in different ways but can't find them. I have checked prefs, and all relevant boxes are correct

  • Mac mini and mouse: Curious bug

    My Mac mini shows a quite curious bug. When I move the mouse while logging off an user - whether an admin or one with restricted rights - the mouse freezes. I have to log in and off again to make the mouse move again. I changed the mouses and re-inst

  • Script date object

    Hi, I have a date/time field. I want to initialize it with the current date. In the initialize event of this the field, I have an issue with this script : xfa.host.messageBox("before new date()"); var d1 = new Date(); xfa.host.messageBox("after new d

  • All pages in merged file blank?

    Has anyone had problems in Pro X where all pages in a merged file of all .pdfs are blank?