Block Particular material for a DC and Plant combo

Hi All,
Iam working for a FMCG client at the movement and i have a peculiar requirement which at the outset seamed easy but iam not able to find a solution.
The client wants to block selling of a particular material for specific distribution channel and plant combo. i did explore the following options
1. "X-distr.chain status" in the material master sales org1 view but this will block for all DC
2. "DChain-spec. status" this will block the material for the DC for all plants
3. If i don't assign the plant to that SO and DC combo then you can't sell from that plant to SO DC at all
can any of you give a solution
Regards
Godwin

HI,
In Material Master you can find field DC and Plant specific status .The values for the same are defined in config . to block the material at various level like quotation,order, delivery etc.
Thanks,
Pramod

Similar Messages

  • Can we block a material for particular storage location ?

    We can allow material to storage locations by MMSC. Can we block a material for particular storage location ?
    Please share ur view.

    Hi,
    If you want a material to be blocked, go to the Basic data 1 view of the material,there in the genral data you have " X-plant material status ". Also in Cost estimate 1 view of the material you have Plant Specific Material status. Use the options available to block the material in these two views.
    Also u can goto MM06 where put material,plant,storage location.When u select enter just tick the check box of material,plant and storage location and save it.
    Pls reward if found useful.
    Regards,
    Indranil
    Message was edited by:
            INDRANIL BHATTACHARYYA

  • Block a material for production

    Hi.
    I need to block a material for production  (HALB - semifinished products).
    In the material master > MRP1 > Plant-Specific Material Status
    I can choose "02" => Blocked for task list/BOM
    Will this block the material for production?
    Thanks
    Geiri

    Hi Geiri,
    Yes it will block the material for the production.
    Also you can try the following things
    1.  Maintain the MRP type ND: Means no requirement will be generated.
    2. Also you can flag the material for deletion(MM06) for the time being so that it can not use by any other dept too..
    Please check and revert.
    Thanks
    Hrishi

  • Hi i need material for module pool and alv's.

    hi
      i need material for module pool and ALV's(not object oriented) if any one have pls do send that to my
    ID [email protected]
    thanx in advance.

    Hi
    Check the below link:
    http://wiki.ittoolbox.com/index.php/FAQ:What_is_module_pool_program_in_abap%3F
    http://help.sap.com/saphelp_46c/helpdata/en/35/26b1aaafab52b9e10000009b38f974/content.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/index.htm
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://www.sap-img.com/
    http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm
    http://www.sapgenie.com/links/abap.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm
    You can also check the transaction ABAPDOCU which gives you lot of sample programs.
    Also you can see the below examples...
    Go to se38 and give demodynpro and press F4.
    YOu will get a list of demo module pool programs.
    One more T-Code is ABAPDOCU.
    YOu can find more examples there.
    See the prgrams:
    DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement
    DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    ALV
    ABAP List Viewer
    The common features of report are column alignment, sorting, filtering, subtotals, totals etc. To implement these, a lot of coding and logic is to be put. To avoid that we can use a concept called ABAP List Viewer (ALV).
    This helps us to implement all the features mentioned very effectively.
    Using ALV, We can have three types of reports:
    1. Simple Report
    2. Block Report
    3. Hierarchical Sequential Report
    There are some function modules which will enable to produce the above reports without much effort.
    All the definitions of internal tables, structures and constants are declared in a type-pool called SLIS.
    1. SIMPLE REPORT.
    The important function modules are
    a. Reuse_alv_list_display
    b. Reuse_alv_fieldcatalog_merge
    c. Reuse_alv_events_get
    d. Reuse_alv_commentary_write
    e. Reuse_alv_grid_display
    A. REUSE_ALV_LIST_DISPLAY : This is the function module which prints the data.
    The important parameters are :
    I. Export :
    i. I_callback_program : report id
    ii. I_callback_pf_status_set : routine where a user can set his own pf status or change the functionality of the existing pf status
    iii. I_callback_user_command : routine where the function codes are handled
    iv. I_structure name : name of the dictionary table
    v. Is_layout : structure to set the layout of the report
    vi. It_fieldcat : internal table with the list of all fields and their attributes which are to be printed (this table can be populated automatically by the function module REUSE_ALV_FIELDCATALOG_MERGE
    vii. It_events : internal table with a list of all possible events of ALV and their corresponding form names.
    II. Tables :
    i. t_outtab : internal table with the data to be output
    B. REUSE_ALV_FIELDCATALOG_MERGE : This function module is used to populate a fieldcatalog which is essential to display the data in ALV. If the output data is from a single dictionary table and all the columns are selected, then we need not exclusively create the field catalog. Its enough to mention the table name as a parameter(I_structure name) in the REUSE_ALV_LIST_DISPLAY. But in other cases we need to create it.
    The Important Parameters are :
    I. Export :
    i. I_program_name : report id
    ii. I_internal_tabname : the internal output table
    iii. I_inclname : include or the report name where all the dynamic forms are handled.
    II Changing
    ct_fieldcat : an internal table with the type SLIS_T_FIELDCAT_ALV which is
    declared in the type pool SLIS.
    C. REUSE_ALV_EVENTS_GET : Returns table of possible events for a list type
    Parameters :
    I. Import :
    Et_Events : The event table is returned with all possible CALLBACK events
    for the specified list type (column 'NAME'). For events to be processed by Callback, their 'FORM' field must be filled. If the field is initialized, the event is ignored. The entry can be read from the event table, the field 'FORM' filled and the entry modified using constants from the type pool SALV.
    II. Export :
    I_List_type :
    0 = simple list REUSE_ALV_LIST_DISPLAY
    1 = hierarchcal-sequential list REUSE_ALV_HIERSEQ_LIST_DISPLAY
    2 = simple block list REUSE_ALV_BLOCK_LIST_APPEND
    3 = hierarchical-sequential block list
    REUSE_ALV_BLOCK_LIST_HS_APPEND
    D. REUSE_ALV_COMMENTARY_WRITE : This is used in the Top-of-page event to print the headings and other comments for the list.
    Parameters :
    I. it_list_commentary : internal table with the headings of the type slis_t_listheader.
    This internal table has three fields :
    Typ : ‘H’ – header, ‘S’ – selection , ‘A’ - action
    Key : only when typ is ‘S’.
    Info : the text to be printed
    E. REUSE_ALV_GRID_DISPLAY : A new function in 4.6 version, to display the results in grid rather than as a preview.
    Parameters : same as reuse_alv_list_display
    This is an example for simple list.
    2. BLOCK REPORT
    This is used to have multiple lists continuously.
    The important functions used in this report are:
    A. REUSE_ALV_BLOCK_LIST_INIT
    B. REUSE_ALV_BLOCK_LIST_APPEND
    C. REUSE_ALV_BLOCK_LIST_HS_APPEND
    D. REUSE_ALV_BLOCK_LIST_DISPLAY
    A. REUSE_ALV_BLOCK_LIST_INIT
    Parameters:
    I. I_CALLBACK_PROGRAM
    II. I_CALLBACK_PF_STATUS_SET
    III. I_CALLBACK_USER_COMMAND
    This function module is used to set the default gui status etc.
    B. REUSE_ALV_BLOCK_LIST_APPEND
    Parameters :
    Export :
    I. is_layout : layout settings for block
    II. it_fieldcat : field catalog
    III. i_tabname : internal table name with output data
    IV. it_events : internal table with all possible events
    Tables :
    i. t_outtab : internal table with output data.
    This function module adds the data to the block.
    Repeat this function for all the different blocks to be displayed one after the other.
    C. REUSE_ALV_BLOCK_LIST_HS_APPEND
    This function module is used for hierarchical sequential blocks.
    D. REUSE_ALV_BLOCK_LIST_DISPLAY
    Parameters : All the parameters are optional.
    This function module display the list with data appended by the above function.
    Here the functions REUSE_ALV_FIELDCATALOG_MERGE, REUSE_ALV_EVENTS_GET, REUSE_ALV_COMMENTARY_WRITE can be used.
    3. Hierarchical reports :
    Hierarchical sequential list output.
    The function module is
    A. REUSE_ALV_HIERSEQ_LIST_DISPLAY
    Parameters:
    I. Export:
    i. I_CALLBACK_PROGRAM
    ii. I_CALLBACK_PF_STATUS_SET
    iii. I_CALLBACK_USER_COMMAND
    iv. IS_LAYOUT
    v. IT_FIELDCAT
    vi. IT_EVENTS
    vii. i_tabname_header : Name of the internal table in the program containing the
    output data of the highest hierarchy level.
    viii. i_tabname_item : Name of the internal table in the program containing the
    output data of the lowest hierarchy level.
    ix. is_keyinfo : This structure contains the header and item table field
    names which link the two tables (shared key).
    II. Tables
    i. t_outtab_header : Header table with data to be output
    ii. t_outtab_item : Name of the internal table in the program containing the
    output data of the lowest hierarchy level.
    slis_t_fieldcat_alv : This internal table contains the field attributes. This internal table can be populated automatically by using ‘REUSE_ALV_FIELDCATALOG_MERGE’.
    Important Attributes :
    A. col_pos : position of the column
    B. fieldname : internal fieldname
    C. tabname : internal table name
    D. ref_fieldname : fieldname (dictionary)
    E. ref_tabname : table (dictionary)
    F. key(1) : column with key-color
    G. icon(1) : icon
    H. symbol(1) : symbol
    I. checkbox(1) : checkbox
    J. just(1) : (R)ight (L)eft (C)ent.
    K. do_sum(1) : sum up
    L. no_out(1) : (O)blig.(X)no out
    M. outputlen : output length
    N. seltext_l : long key word
    O. seltext_m : middle key word
    P. seltext_s : short key word
    Q. reptext_ddic : heading (ddic)
    R. ddictxt(1) : (S)hort (M)iddle (L)ong
    S. datatype : datatype
    T. hotspot(1) : hotspot
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    Reward points if useful
    Regards
    Anji

  • How to write a validaton rule for Cost Center and plant in PO

    Hi,
    I need to write a Validation Rule for Cost center and Plant in Purchase Order to get the error message if the Plant and cost center combination didnot match.
    But i am not sure in which transaction code do we need to write this validation. Kindly help me by giving T.Code or path to do validation at PO level.
    Thanks
    Sunil

    >
    Sunil Pal Raj wrote:
    > Hi,
    >
    > I need to write a Validation Rule for Cost center and Plant in Purchase Order to get the error message if the Plant and cost center combination didnot match.
    >
    > But i am not sure in which transaction code do we need to write this validation. Kindly help me by giving T.Code or path to do validation at PO level.
    >
    > Thanks
    > Sunil
    Check OKC7
    Regards,
    Indranil

  • Can somebody help me in getting some good material for Regular Expressions and IP Community list

    can somebody help me in getting some good material for Regular Expressions and IP Community list

    I'm not sure what you mean by "IP Community list", but here are 3 reference sites for Regular Expressions:
    Regular Expression Tutorial - Learn How to Use Regular Expressions
    http://www.regular-expressions.info/tutorial.html
    Regular Expressions Cheat Sheet by DaveChild
    http://www.cheatography.com/davechild/cheat-sheets/regular-expressions/
    Regular Expressions Quick Reference
    http://www.autohotkey.com/docs/misc/RegEx-QuickRef.htm

  • Blocking the material for issue

    Dear friends,
    I have got the stock of 10 for one material.
    I want to block this material for issue. It shall not be issued to anybody unless until i unblock it.
    Any provision is there in SAP.
    Regards,
    Canand

    hi,
    If you are having the stock of 10 nos as unrest .stock, you can move the stock to blocked stock by  transfer posting using mvt type 344 .
    it can be taken to unrest by 343.
    Regards,
    velu

  • Can we have more than One DC for the sales organization and Plant combo?

    Can we have more than One DC for the sales organization and Plant combination?
    If yes can you please site a practical example to clear the picture

    Hi
    First of all in SAP sales orgs are assigned to distribution channels and the combination of sales org and distribution channel which is called distribution chain is assigned to plant
    There is  no direct link  between sales org  and plant or distribution channel and plant
    So  sales org  and plant combination doesnot exists and
    it is only sales org and dist channel combination which is  called as distribution chain only exists
    Nowhere in SAP we are assigning sales org to plant
    It is because sales org alone doesnot make sense and its combination with dist channel only makes sense
    because sales org is a selling org and the distribution channel is the route to sell and this combination has only to pick the material from plant to process sales to customers
    The relation between sales org and distribution channels is many to many and also vice versa
    Multiple sales orgs can be assigned to one distribution channel and
    Multiple distribution channels  can be assigned to one sales org
    Similarly the relation ship between Distribution chain (sales org+dist channel) to plant is also many to many and vice versa
    Similarly plants from other company codes can also be assigned to Distribution chain to facilitate intercompany processes
    In whatever way look at it the multiple distribution channels can be fit anywhere
    Regards
    Raja

  • Creation of material  for  both service and delivery

    Hai all,
    we want to create a material for which both delivery and service is to be possible simultaneously.
    Is it possible  if yes let me know the material type for this.
    Thanks in advance,
    S.Jenibalet.

    Hi,
    You can create a new material type if you want to or use any of the exxisting material types that have qty and value updating set on.
    This is because you simply have to use an account assignment category on the PO etc. to post the costs to a GL upon receipt. leave this at space (for the same material) and you will; bring it into stock and update the stock account.
    So the main thing is the account assignment category and NOT the material type.
    Steve B

  • Material for CROSS APPLICATIONS and NETWEAVER

    Hi all
    can u give links to sites that have good material on CROSS APPLICATIONS and NETWEAVER.
    Regards,
    Navaneeth

    Hi,
    NetWeaver is an application builder from SAP for integrating business processes and databases from a number of sources while exploiting the leading Web services technologies. Part of the company's mySAP product group, NetWeaver is getting a lot of industry attention as the first fully interoperable Web-based cross-application platform that can be used to develop not only SAP applications but others as well. NetWeaver allows a developer to integrate information and processes from geographically dispersed locations using diverse technologies, including Microsoft's .NET, IBM's WebSphere and Sun's Java technologies.
    NetWeaver has been tagged as a product that could help spur industry adoption of Web services. Although Web services are often seen as the development model of the future, the implementation rate has not been high, often because of competition and incompatibility between enabling products
    We have a forum itself for Netweaver.
    https://www.sdn.sap.com/irj/sdn/collaboration
    1. http://searchsap.techtarget.com/searchSAP/downloads/Joshua_Greenbaum_Talk_818.ppt
    2. http://www.sapgenie.com/netweaver/
    3. http://www.sap.com/solutions/netweaver/index.epx
    4. http://www.sap.com/solutions/netweaver/components/portal/index.epx
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/nw/sap netweaver for dummies chapter one.pdf
    /people/dominic.uliano/blog/2004/05/31/sap-netweaver-for-dummies-why-youre-not-a-dummy-for-reading-this-book
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/nw/sap_netweaver_for_dummies_ch13.pdf
    https://www.sdn.sap.com/sdn/search.sdn?contenttype=url&content=/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fSDN!2fiViews!2fWCM!2fcom.sap.sdn..wcm.search.search_adv_0%3FSearchVisible=false%26SelectedCustomProps=sdn_product(value=SAP Netweaver)%26SearchPluginName=sdn_library
    Books: SAP NetWeaver for Dummies
    Hope it helps you.
    Regards,
    Anjali

  • Material for cars (optional and standard configurations)

    Hi All!
    I have to chose the best solution to define a material for a car witch has standard and optional configuration. This material will be used in SD area, a car configuration (color etc.) can have a price or the price is 0 if the configuration is standard. The customer may chose to buy just a part of the optional configuration of a car.
    Should I create a BOM Material for the car?...If you have any hint for me...
    Thanks.

    Hi
    U need to maintain a material <b>super</b> <b>BOM</b> for the car with different combination and depend upon the cutomer needs respective BOM will pick up.
    Super BOM is basically used in Variant Configuration scenario, this is also a Simple BOM with all possible components which can be used to built a product.
    Component for Individual Order gets picked up based on the product configuration, selection of components will be driven through "Selection Procedure", "Variant Table", "Function", "Dependency" etc...
    Example of Super BOM can be a BOM of any CAR. It will have a simple BOM with all possible components to produce all the variants of the CAR, once the customer places order, based on his needs in the sales order the Product is configured, which drives the Production Order BOM.
    Ravi<a href="http://help.sap.com/saphelp_470/helpdata/en/92/58c0fb417011d189ec0000e81ddfac/frameset.htm">http://help.sap.com/saphelp_470/helpdata/en/92/58c0fb417011d189ec0000e81ddfac/frameset.htm</a>

  • Validation for profit center and plant in material master

    Hi,
    I have a requirement where in when a material is created for a plant, only a designated profit  center should be able to enter in the "Costing 1" view.
    For eg
    Plant            Profit center.
    2000            200000
    2100            210000
    2200            220000
    Please let me know how this can be done.
    Best Regards,
    Arahant

    tell us the solution also
    sap mm

  • Table for Pur Grp and Plant

    Hi Guys
    Is there any table where we can see the Plant number with Purchase Group. I tried MARC but its associated with Material and iam getting huge number of results.
    Thanks
    ronnie

    I dont think that you have a message type at EBAN level.
    B912 is a condition table, that is specific to the access sequence. that is used to determine an output table. However ZFAX can be used in several other  condition tables, too.
    You can do an download to a text file.
    The text file can then be imported to MS ACCESS Database and be analyzed there.

  • Course material for SAP TERP10 and SAP FICO

    please provide some study material and some guidance for certification exam of SAP TERP10 and SAP FICO as i am planning to sit for my certification exams

    Hello there!
    I found a cool website, that specialized in FICO:
    http://fico-forum.de/zertifizierung/zertifizierung.php
    if you cant read in German, I can advice you to use Google Translator

  • Sending a material for service outside the plant(Material having Material .

    Hi Every One
    i want send the material (Having material no.) out of the Plant for Service by creating Purchase order.(this is not a subcontracting Process)
    Can any one tell me the process or any alternative Process
    regards
    manju

    hi,
    Make new material with material type DIEN....this shd solve your problem....
    Since services cannot be stored, a material master record of this material type does not contain inventory data or inventory management data. No fields for gross weight, net weight or unit of weight are included in the basic data for a service, as are for other material types.
    Hope it helps...
    regards
    Priyanka.P

Maybe you are looking for

  • Profit center in corss company transactions

    Hello guys, Im facing the following problem when posting an FI Cross-company document, as follows: I create the following document in FB01. DR Expense account. CoCo 1000. Profit Center PC01. CR Vendor. CoCo 2000. Profit Center Blank. When I simulate

  • Time Machine backups after a clean install

    I recently performed a reinstalled Snow Leopard on my Macbook Pro as it was suffering from running quite slow. Since I had upgraded this machine from an old Tiger install, I decided to manually migrate my files from a second backup, rather than resto

  • Snow Leopard - english version

    I live in Sweden and I want to buy english version of upgrade to Snow Leopard. But when I try to go to the Apple Store, it offers me only swedish version (it is not mentioned until I see application and there is upgrade-swe). Do I need to go direct t

  • HP Altec Lansing Speakers

    Hi, I have the HP DV6-3126sa with built in Altec Lansing speakers. The problem is when im listening to stuff say on YouTube, when it hits a certain pitch it starts to buzz/whistle. I have tried playing around with the Sound Control settings in Equali

  • FBCJ - opening balance

    Hi all, I am developing the FI Cash Book Journal, can anyone help me to find the table-field for opening balance value & closing balance value.