Table for Assembly indicator checkbox in BOM

Please inform me about Table for Assembly indicator checkbox in BOM
Field name--- STLKZ.
If table is not there then how to find if this field is checked or Not checked  in development program

Dear Mayuresh,
There is no table where in you can get this information which has got an assembly of its won.
Either you can use CS11,CS12 or CS13 for limited level explosion or else to identify for which
components an assembly exists for itself.
Or else at Functional module level.
Regards
Mangalraj.S

Similar Messages

  • Table field for Assembly indicator

    Hi,
    What is the table in which the assembly indicator (BOM) is getting stored?
    Regards,
    Charumathi.B

    Hi,
    Check table STPO and field is STKKZ.
    You can check out this link for BOM related tables-
    http://www.sap-basis-abap.com/sappp007.htm
    Regards,
    Sujit

  • How to find 'Assembly' indicator in a BOM explosion FM

    Hi experts,
    I need a function module to explode BOM for Materials which are having checked by Assebmly indicator.
    I tried fm : CS_BOM_EXPL_MAT_V2. But i didnt find a field for this indicator.
    Can any of you tell me how to find weather 'Assembly' indicator of a material is checked, using a FM. 
    Please !
    Thanx.
    Matt.

    Hi,
    U can find it in another way by using Table MARC,
    if the value of SOBSL field is 50 in MARC then its an assembly.
    Hope it helps!!
    Regards,
    Pavan

  • Table for Valid to date in BOM item

    Hi Exeprts,
    Can any one help me on this in which db table Valid to date:DATUB is Updates with reference to Change Number.
    Best Regards,
    Venkata Siva.
    Edited by: venkata siva reddy on Apr 27, 2011 9:28 PM

    Hi
    The Valid-to date will always be set to 31.12.9999. Instead you can get the valid-to date using the below logic.
    -> Get all the BOM from T415A table for the material number into T_T415A
    -->LOOP AT t_t415a.
        ON CHANGE OF t_t415a-matnr OR t_t415a-werks OR t_t415a-stlal.
          IF sy-tabix NE 1.
            MOVE : v_matnr TO t_dates-matnr,
                   v_werks TO t_dates-werks,
                   v_stlan TO t_dates-stlan,
                   v_datuv TO t_dates-datuv,
                   v_stlal  TO t_dates-stlal.
            IF v_matnr NE t_t415a-matnr.
              t_dates-datub = c_99991231.
            ELSE.
              t_dates-datub = t_t415a-datuv - 1.
            ENDIF.
            APPEND t_dates.
            CLEAR :
            v_matnr,
            v_werks,
            v_stlan,
            v_datuv,
            v_stlal.
          ENDIF.
        ENDON.
        v_matnr = t_t415a-matnr.
        v_werks = t_t415a-werks.
        v_stlan = t_t415a-stlan.
        v_datuv = t_t415a-datuv.
        v_stlal = t_t415a-stlal.
      ENDLOOP.
    Regards
    Dhurga

  • Table for control indicator

    hi
    in which table i wil get link between material and MICs ?
    and i also want table for long term inspection in Control indicator

    hi,
    please try QMAT.

  • Table for control indicator in inspection characteristics(QP03)

    Hi
    can any one tell me in which table " Control Indicator " data is stored?
    in QP03 there is a control indicator tab for MICs in that i want Long term inspection details for ALL MICs
    can any one tell me the control indicator table?
    Regards
    Smitha

    Refer the reply given by Gaint in QM Gajesh Nagesh
    Re: Control Indicator field in Inspection plan characteristics
    This will solve your perpose .....use Bapi
    iNSPECTIONPLAN_DISPLAY
    INSPECTIONPLAN_CHAR_DISPLAY
    this will at least give you some idea...........

  • Assembly indicator in BOM doesnu2019t consider BOM Usage

    In a business scenario we are using two types of BOM 1. Production BOM & 2. Engineering BOM.
    Letu2019s say for Material 'A' there is an engineering BOM & it consists of two components say 'B' & 'C'.
    Material 'C' has its own BOM but with usage "Production".
    Still in transaction CS03, when we display Engineering BOM (Usage: 2) for Material A.
    Assembly indicator for material 'C' is active though there is no engineering BOM for material 'C'.
    Is there is any condition for checking BOM usage for assembly indicator? Or what can be the solution to take into consider BOM usage.
    PP gurus please help.
    Many thanks in advance.

    Hi Sumedha
    BOM usage defines the area (such as engineering/design or production) where a BOM can be used.
    when ur material A is having C as component and C is having its own bom so it will show that in the system. bom usage is only for using the bom in diffrent area
    if u have an engineering/design BOM and if u want to use that in production that time it will give an error
    or massage that BOM usage is not as per requriement
    hope u got it
    regards
    Sachin

  • BOM Exlposion for Assembly Materials

    Dear Friends,
       I want function module to be explode the BOM for Materials which are Having checked by Assebmly(Field is STLKZ) .I am able to explode the BOM which are Having Phatum Indicator using CS_BOM_EXPL_MAT_V2 which is having DUMPS(Phantun Indicator) .I need to find out the Assembly Indicator .
    Pls Help me How to Find out Assemble Indicator for Materials.

    You can pass the component material  to the table MAST. If any value exists against the component number than this material has Assembly indicator active.
    Another option is when using the FM CS_BOM_EXPL_MAT_V2 . Check if table STB(Structure-Stpox) with field XTLTY(BOM Category) is equal to  type 'M'.The passing condition will give Assembly indicator.
    Regards,
    Anurag

  • Assembly Indicator in BOM Level

    hi,
    can any one let me known any function module to get the list of all materials at BOM
    i,e if i give a material number i should get all the material including the assembly for materials.
    or let me known where the assembly indicator will stored at table level
    i have seen CS_BOM_EXPL_MAT_V2 function module which give all levels of the materials and gives the assembled
    material also but
    My requirement is for given date range, plant and material i should get materials including assemblies with the total quantity used  in that  given date range.
    Regards,
    R K.
    Edited by: R K on Aug 12, 2010 2:17 PM

    hi,
    Thank you very much for effort in helping me on the issue,
    I have already seen all the table in the list previously.
    i closed the issue, using the fm CS_BOM_EXPL_MAT_V2 
    after using the above fm we will get all the assembly materials
    into table MATCAT and passed all those materials and date range to S026 table which gives
    quantity day wise, collected those quantities material wise into another final table .
    Regards,
    R K

  • Table for BOM changes

    Is there a report that I can run to find all BOM changes for a specific date? Is there a table that I can query that would hold this information?
    I would also like to perform the same search for recipies and material master changes.

    Hi
    YOu can use CS80.
    I think you must be aware about the BOM history maintenance which you select at the time of customization.
    After you select the indicator please go to the table MKAL and find out the BOM.
    It will show you all the changes made in a particular BOM
    also you can find the change records in tables CDHDR (Header records), CDPOS (Item records), CDATA (Details)
    Material master changes - MM04
    Recipe change report - check C260 and C261
    regards
    Srinivas

  • BOM assembly indicator

    Dear Gurus
    Please tell me, In which table I can find assembly indicator with related to a BOM.
    Thanks & Best Regards
    Charith

    Hi Rupesh,
    Use FM  CS_BOM_EXPL_MAT_V2 with input as given below.
    CAPID - PP01
    DATUV -System date
    EMENG - Quantity as 1
    MKTLS = X
    MEHRS = X
    MTNRV = Parent Material Number
    SVWVO = X
    WERKS = Plant
    From the output internal table STB get the Field XTLTY. If XTLTY = M, then consider that as Assembly. Apart from this you can also use the Internal table MATCAT. All the Materials MATNR in this table MATCAT are nothing but assemblies.
    Hope its clear.
    Thanks & Regards,
    Ramagiri

  • Copying assembly indicator in BOM

    hI ,
    i AM COPYING A bom FROM ONE plant to other plant ..In first plant item is a sub-assembly with assemby indicator. When i am copying to other plant this indicator is not copying. Because of which i couldn't able to see its components.
    Regards
    Patnaik

    Patnaik,
    BOM Copy happens at single level only. When you are copying the BOM from one plant to another only the Header material BOM gets copied. You need to create/Copy the subassembly BOM for the new plant. Once this is done system would automatically activate the "Assembly Indicator" in the header level bom for subassembly components.
    Regards,
    Prasobh

  • Tables for BOM Header and Components

    Dear Friends,
    Please let me know which tables provide a link between the header Material and corresponding Component Materials of a BOM?
    I have seen STKO and STPO but couldn't find such a link in them. STPO gives the component material but I couldn't get any link to Header material.
    Regards,
    Alok.

    Hello Alok,
    Table for BOM header             - STKO
    Table for BOM item                - STPO
    Table for material to BOM link - MAST
    Check if MARC table has a material in it and the same material is available in MAST also, it means that BOM has been created for that material..
    If Material is available in MARC and not available in MAST, it means BOM has not been created for that material.
    Reward Points, if useful.
    Regards,
    Nitin.

  • APO Bapi - ERROR - No entry found in transportation indicator table for fol

    Hi
    Experts .. need help on a APO bapi
    Iam being doing BAPI for transportation lane to add new material through the bapi BAPI_TRLSRVAPS_SAVEMULTI
    iam passing  the following to BAPI
        Logical system
        model
    and in tables .
        TRANSPORT_LANE
        TRANSPORT_LANEX
        PROD_PROCUREMENT
        PROD_PROCUREMENTX
        LOCATION_FROM    = '1010'.
        LOCTYPE_LOC_FROM = '1001'.   
        LOCATION_TO =   '1101'.
        LOCTYPE_LOC_TO =  '1001'.
    the above data is common for passing all the four bapi tables and in
    addition iam passing
    prod-valfr =  Converted value by passing to FM - IB_CONVERT_INTO_TIMESTAMP.
    prod-valto =  Converted value by passing to FM - IB_CONVERT_INTO_TIMESTAMP.
    prod-product = material number.
    AFter excuteing bapi iam getting an error
    No entry found in transportation indicator table for following objects
    the above error occured when passed the given data to bapi table -  PROD_PROCUREMENT  
    if we pass the data to   PROD_PROCUREMENT and   PROD_PROCUREMENTX
    then there is no error in  table return of bapi but the data is not uploaded in transportation lane.
    I will really appreciate if some guide me where iam wrong or some other solution for this .
    Regards .
    Thanks .

    Hi,
    I am writing bdc code for uploading changing inspection plan data using qp02 . I saw your post in sdn .I think you have solution .can you tell the solution .
    Regards
    Nandan.

  • Table for bom

    Dear Experts,
    Pls can u tell me table for multilevel bom exposion where i can get the lower level material.
    Regards,
    Sunil Patil

    Dear Mr.Sunil,
    Use tables MAST,STKO,STPO,STAS.
    STPO               BOM Item Details
    STPU               BOM Sub Items (designators)
    STKO         BOM Header Details
    MAST              BOM Group to Material
    STZU              BOM History Records
    STAS              BOM Item Selection
    STPF        BOM Explosion Structure
    PLMZ     Allocation of bill of material items to operations
    T codes are CS11 - Display BOM Level By Level
    CS12 - Display Multilevel BOM
    CS13 - Summarised BOM.
    Regards
    Mangal

Maybe you are looking for

  • Itunes 7 wont update....help

    I recently purchased a new 2nd generation shuffle for my kids and have been having trouble ever since I first plugged it in. It apparently needs itunes 7 to run but itunes 7 wont update on my computer. Everytime I try to install itunes 7 I get the fo

  • Monster ITV Link

    HI guys after seeking advice from apple over the phone as to the best way to connect my macbook to my TV they advised I get a Monster ITV Link cable with a scart adapter. The picture displays by using this but in black and white, is there anything I

  • "key not valid for use in specified state" when installing itunes

    I recently uninstalled an older version of itunes, and every time i try to install the newest version it wont work. I just keep getting the message "key not valid for use in specified state". If you know what to do could you please make it simple. al

  • Firefox won't recognize javascript

    I got 2 replies for my problem. One was too technical. The other option, disabling No Script and AdBlock, doesn't work. I did come across a new option which was to type "about:config" in the address bar, and eventually found that javascript is marked

  • Published .exe file won't start in IE

    I published a .exe file. It works as a stand-a-lone file, but if put it in a file storage area and use IE to link to it, the file will not start. It Works fine in Firefox. What setting(s) do I need to change in Captive to get the .exe file to work in