Restrict order type with respect to customer.

Hi SD experts
There is a requirement that there are two sales doc type OR and ZOR for the same sales area , however i want the settings in such a way that one customer in the same sales area can be able to create the ZOR but not the OR. however the other customer can access both the sales docs.
Need your help!!!
Regards

jimi,
the example which you have given, if sales order with order type ZOR and customer xyz is created, then no material with MTART = FERT can be used in that order.
Yes, if you list all the material types in the condition records, then the sales order will not be able to take any material. But order can still be made, with blank materials. And I guess that is ok. As you can here use incompletion functionality and not create any order which is incomplete.
Great and creative solution!

Similar Messages

  • Restrict order creation with respect to previous production order.

    Hi dudes,
    i have a urgent and important requirement like this, if i create a production order until unless this order should get CNF or TECO status other order(next order) should not be created. is there any way to do this or what is way is right whether to go for user exit or zprogram or any configuaration setting.
    i would appreciate for quick response
    Daniel

    Hi
    It is possible throughcustomised programe.
    Pl. coordinate with your technical team member.
    Regards
    YMREDDY

  • How to trace purchase order number with respect to Purchase requestion numb

    Hi friends,
    Can u please help me how to Trace purchase order number with respect to purchase Requetuion  number. Is there any standard report  available in R/3

    Hi Vamsi,
    Thats what!!!
    Goto SE16 - EBAN - Give PR number in the iput screen.
    In the output screen you will have to do field selection from Menu - Settings - formatlist - choose fields.
    There you choose Purchase Order.
    So the output will display for you POs for the PR that you entered.
    Regards,
    Vishal

  • How to restrict Order types KA  and AB in script output form

    How to restrict KA AND AB order types in script output data is coming from  bkpf-blart .
    program is rfkord10.
    and form is f140_acc_stat_1
    in script output i dont want to  display KA AND AB order types ..
    data is coming from standard report.
    i copied form into zform.
    in output it is displaing all order types ..
    is there any solution to restrict above order types.

    Hi
    Check the data structures used in the script
    Since it is account statement of customer it uses the Tables BSID and BSAD in which the field BLART field is there whose values are KA and AB
    check for the structures which are used in the script and in them search for the field BLART in Se11 and accordingly keep the condition
    It will work
    Regards
    Anji

  • Error in Rush Order type with BOM item!!

    Hello,
    I am facing a very strange error while creating a rush Order with BOM item.
    System Error:
    1. No item category available (Table T184 SO ERLA TAQ).
    I except the error. I get next error as
    2. Structure explosion for item 000010 is not possible.
    After this BOM explodes with only first 2 Sub Items ( Item cat for main item is determind as TAQ and Sub Items as TAE) , where as the complete BOM has 7 Sub items.
    I have made the required configs in item cat determination in T184 table for order type SO, as follows.
    SO ERLA - TAQ for Main Item of the BOM
    SO NORM TAQ TAE for the Sub Item of the BOM
    The same item (BOM ) works very well in OR/BV kind of sales order types, by exploding the BOM to full level(i.e all the 7 sub items are determined).
    Has any one come across such an issue. Please let me know what could be the solution?
    Thanks in adv,
    Shripad

    Hi,
    Thanks,
    In vov7 for TAQ Item Cat. the structure scope is maintained as 'A'. And that's the reason for Standard order 'OR' , the BOM is exploding properly.
    It is only with Rush Order , the BOM is not exploding correctly.
    BR
    Shripad

  • Create a Sales order (type) with reference to another Sales order only

    Hi
    I have 2 Order Types (ZRA and ZRC). The ZRA should always be created only with reference to a ZRC. It should not be allowed to create ZRA directly.
    I believe I can remove the Item categories somewhere, but can't figure it out. Any help is appreciated
    Regards,
    Vikas

    Hi
    In sd doc tyoes in t code vov8 in the general control tab you can define mandatory referance and in that you can choose option C which means the referance doc should be only a sales doc not enquiry or quotation
    Pls reply whether my suggestion has helped you
    Raja

  • Is it possible to create Order type with different number ranges-Plant wise

    Hi Experts
    Client wants to get the different number ranges for the order types created in the different plants. Is there any user exit for the same.
    I have assigned the order type to the different plants. And Order type is assigned to a no range. So whenever a order type is created in different plants; order types uses the same number ranges.
    so with this situation one cann't know the total no. of order created within a plant.
    Is there any solution for the same.
    Pease give your valuable solutions.
    Regards
    Pankaj

    Hi
    Best way is to create different order types for different plants.
    like we have order types OR15 ,OR20 & OR30 for different plants 1500 ,2000 & 3000 .
    you can assign different number range for different order type.
    this is simplest solution.
    Regards
    Sujit

  • Freight condition type-With respect to kilometer

    Hi,
    I am working on freight related condition type,my requirement is we have to calculate freight cost based on kilometer or miles.But for us the standard condition type is KF00 which is with respect to Gross Weight.
    Is there any condition type which calculates Freight based on miles/kilometer covered.If so kindly throw some ideas on it.
    My doubt is do we require transportation management.
    Pradeep

    Hi Pradeep,
    without transport management, maybe you need a different approach of calculating freight.
    instead of calculating price per Km/Mile by distance, apply cost based on origin - destination of you sold-to and ship-to.
    You know Price per km/Mile. You can ask distance between origin and destination points and calculate freight cost then.
    The important point here is to determine the different origins and destinations, refine, group, regroup to end in something that may look like:
    Origin: country-state-region-city-zip code... (and even sold-to)
    Destination: country-state-region-city-zip code ... (and even ship-to)
    Freigth cost: (unit cost x distance)
    Once you´ve mapped this in an Excel file, you can think of creating a price condition for your freight costs in SAP based on your mapping.
    Regards,
    JM

  • SharePoint 2013 Custom Content Type with Site Column custom validations

    Hello,
    Can somebody please suggest me how I can create custom content type with site columns with custom validation to site columns programmatically?
    Thanks,
    Praveen Kumar Padmakaran

    Hi,
    From your description, my understanding is that you want to create content type with site column with validation.
    You could create a site column, and add some validation to the site column. After you could create a custom content type, please add the site column with validation to the content type. Please refer
    to this code below:
    static void Main(string[] args)
    // replace your url
    using (SPSite site = new SPSite("http://sp/sites/sp2013"))
    using (SPWeb web = site.OpenWeb())
    //define the type of the field
    SPFieldType type = SPFieldType.Number;
    // create a site column
    SPField field = CreateSiteColumn(web, "newTest", type, "");
    // add custom formula for the field
    SPFieldNumber fieldNumber = web.Fields.GetField("newTest") as SPFieldNumber;
    fieldNumber.ValidationFormula = "=[newTest]>5";
    fieldNumber.ValidationMessage = ">5";
    fieldNumber.Update();
    SPContentTypeId parentItemCTypeId = web.ContentTypes[0].Id;
    // create custom content type
    SPContentType contentType = CreateSiteContentType(web, "newContent", parentItemCTypeId, "Custom Content Types");
    // add the site column to the content type
    AddFieldToContentType(web, contentType, field);
    // add fiedl to contenttype
    public static void AddFieldToContentType(SPWeb web, SPContentType contentType, SPField field)
    if (contentType == null) return;
    if (contentType.Fields.ContainsField(field.Title)) return;
    SPFieldLink fieldLink = new SPFieldLink(field);
    contentType.FieldLinks.Add(fieldLink);
    contentType.Update();
    // create a custom content type
    public static SPContentType CreateSiteContentType(SPWeb web, string contentTypeName,SPContentTypeId parentItemCTypeId, string group)
    if (web.AvailableContentTypes[contentTypeName] == null)
    SPContentType itemCType = web.AvailableContentTypes[parentItemCTypeId];
    SPContentType contentType =
    new SPContentType(itemCType, web.ContentTypes, contentTypeName) { Group = @group };
    web.ContentTypes.Add(contentType);
    contentType.Update();
    return contentType;
    return web.ContentTypes[contentTypeName];
    // create a site column
    public static SPField CreateSiteColumn(SPWeb web, string displayName,SPFieldType fieldType, string groupDescriptor)
    if (!web.Fields.ContainsField(displayName))
    string fieldName = web.Fields.Add(displayName, fieldType, false);
    SPField field = web.Fields.GetFieldByInternalName(fieldName);
    field.Group = groupDescriptor;
    field.Update();
    return field;
    return web.Fields[displayName];
    You could refer to these articles:
    C# code to create Site Column, Content Type, and add fields to Content Type
    http://spshare.blogspot.jp/2013/10/c-code-to-create-site-column-content.html
    How to do custom validation for site column in SharePoint
    http://www.c-sharpcorner.com/uploadfile/anavijai/how-to-do-custom-validation-for-site-column-in-sharepoint/
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected].

  • SALES ORDER ISSUE WITH RESPECT TO BOM TYPE

    Dear expert team,
    Please some one help me over this,
    I want to create sales order,
    EXAMPLE
    we are into production of Porta cabins business, as we send electrical items to our customer site,
    now problem arises when i try making changes  in my electrical item in the sales order
    The BOM for Electrical item
    ELECTRIC ITEM                  (FINISHED GOODS OF ELECTRICAL ITEM)
    ELECTRIC SUB ITEM 0001 (RAW MATERIAL OF ELECTRICAL ITEM)  QITY=> 10     IN STOCK => 5
    ELECTRIC SUB ITEM 0002 (RAW MATERIAL OF ELECTRICAL ITEM)  QITY=> 10     IN STOCK => 3
    ELECTRIC SUB ITEM 0003 (RAW MATERIAL OF ELECTRICAL ITEM)  QITY=> 10     IN STOCK => 0
    If i have to dispatch only two items
    i.e 1] ELECTRIC SUB ITEM 0001 (RAW MATERIAL OF ELECTRICAL ITEM)  Delivery QTY => 5
         2] ELECTRIC SUB ITEM 0002 (RAW MATERIAL OF ELECTRICAL ITEM)  Delivery QTY => 3
    remaining item to be delivered later,
    So please know me, what are the respective changes to be made in my sales order or BOM  ?

    HI
    You can cearte sales order or sales Delivery against Sales BOM with out change in SALES BOM . only update component Quantity At the time of delivery
    In your Case
    The BOM for Electrical item
    ELECTRIC ITEM (FINISHED GOODS OF ELECTRICAL ITEM)
    ELECTRIC SUB ITEM 0001 (RAW MATERIAL OF ELECTRICAL ITEM) QITY=> 10 IN STOCK => 5
    ELECTRIC SUB ITEM 0002 (RAW MATERIAL OF ELECTRICAL ITEM) QITY=> 10 IN STOCK => 3
    ELECTRIC SUB ITEM 0003 (RAW MATERIAL OF ELECTRICAL ITEM) QITY=> 10 IN STOCK => 0
    At the time of delivery update only component Quantity  
    i.e 1] ELECTRIC SUB ITEM 0001 (RAW MATERIAL OF ELECTRICAL ITEM) Delivery QTY => 5
    2] ELECTRIC SUB ITEM 0002 (RAW MATERIAL OF ELECTRICAL ITEM) Delivery QTY => 3
    And Update this third item with Zero (0) quantity .
    ELECTRIC SUB ITEM 0003 (RAW MATERIAL OF ELECTRICAL ITEM) QITY=> 10 IN STOCK => 0
    remaining item to be delivered later,
    Hope it will helpful for u.
    Thanks
    Khan Imran

  • Can i restrict a movement type with respect to storage location

    Hi
    Is there any way to restrict the movement type for a particular storage locations.
    For eg.
    If am using a Mvt 311 tP btwn storagelocations.
    If there are 10 Stlocs in my plant i want to restrict 311 only for 7Slocs.
    Is it possible
    Guide me
    Sunil

    Sunil
    Please contact your BASIS security team , with the help of Authorization roles you can restrict
    Reward if helpful
    Regards
    venu gopal

  • Check Duplicate PO No. By Sales Document Type with irrespective of customer

    Dear Team,
    Requirement: PO No. shouldn't repeat in the particular Sales document type.
    Currently :
    1. I have set the configuration in VOV8, Check po no.--A
    2.and set the warning to error by using T-code OVAH (E)
    This setting satisfy only ---PO no. is check's by customer wise in that particular sales document type..(not for other customer)
    I mean if i use the same PO No. with other customer in same sales document type it is accepting(it is not giving error message)
    so I need here to check PO no. by sales document type irrespective of customer nos.
    So please guide me regarding this
    Thanks
    YRH SP

    Hello SP,
    The system behaviour is correct, let us take an example.
    I have a customer and he raises a purchase order and sends us the info.. against which we place a sales order and this PO number provided by customer is added in the sales order and it is used for tracking.. however when hewants to place a new order he will  raise a different PO.. it will hav a different PO number...
    Having said that there are chances that two different customers are using the same number range for their purchase order documents and place order with same PO numbers.. in this case system shouldn't ristrict us from creating sales order for both of them, hence system checks based on customer and not based on sales doc type..
    as far as my understanding gose you need to go in for custom development to fulfill your requirement.
    Regards
    Naveen

  • Restrict Award Types in respect of Grant Types in GM-GTE

    Dear Experts,
    We are implementing GM-GTE in our client. As per client, they have provided us 3-4 award types to be used for a single Grant Type. For example, For Grant Type A1, we have got Award Types 01, 02, 03, 04 and for Grant Type A2, we have got Award Types 11, 12, 13, 14.
    Now when we go in GMGRANT for creating a grant and in the box of Award Types, we can see the whole list of Award Types available regardless of Grant Types (in our case that would be 01, 02, 03, 04, 11, 12, 13, 14). I want to know how can we restrict those, so that they can be only used with their relevant Grant Types and not availble to use with any other Grant Type, which does not pertain to it. Is their any standard method to do it?
    Regards,
    Amar

    There is no standard way to accomplish this. Your ABAPER can define customer enhancements related to the business object Grant (BUS0035) for the required functionality.
    Br

  • Freight condition type-With respect to Delivery Item (per PC)/Volume/Ship-to party 's region

    Hi Gurus,
    I am working on freight related condition type,my requirement is we have to calculate freight cost based on Delivery Item (per PC) / Volume of that Material (Per PC) and Destination Region of each Delivery Order.
    for example:
    If Material '100001' has volume = 1 M3 per PC and Destination region code (in Delivery Order) is '20'. The Freight cost is 1 USD per PC.
    If Material '100001' has volume = 1 M3 per PC and Destination region code is '22'. The Freight cost is 1.5 USD per PC.
    If Material '100002' has volume = 1.5 M3 per PC and Destination region code is '20'. The Freight cost is 2 USD per PC.
    If Material '100002' has volume = 1.5 M3 per PC and Destination region code is '22'. The Freight cost is 3 USD per PC.
    I'm try to set calculation type = 'T - Multi-dimensional' and having 2 Scale Basis as following:
    Scale Basis = 'F - Volume'
    Scale Basis = 'L7 - Region of Destination'
    but it result in error in calculation when creating Shipment cost document. 
    I don't sure whether my understanding on Multi-dimensional scale is correct or not. Please kindly help.
    Thank You in Advance for every idea.

    I think, from your example, if you maintain condition record with the combination of Destination Region Code and Material, it will work, provided, your freight condition type has Calculation Type as "C".
    So your condition record would be
    100001 / 20  =  1USD per PC
    G. Lakshmipathi

  • Sales order creation with respect to contracts

    Hi Guys,
    I am trying to create a saleorders with referece to contract for which in the background I configured so that during my sales order creation I see the pop-up box with all existing contracts for a specified sold-to party.
    This process is so painful that order entry people have to manually select from the big list (pop up box consisting of huge list).
    Is there any way so that I can automate this process insetead of selecting contracts from that list.
    Regards
    Krishna

    Hi Ravi,
    Thanks for your solution and could you please give me some more details what is the neame of the user exit.
    and welcome for some more suggestions.
    Thanks
    Krishna
    One way is to create the order with reference to the Contract and then the system will not give the pop up for the existing contracts.
    The other way to automate the process is by using a userexit. Here the system should check all the existing valid contracts for this sold to party and should select the oldest or latest valid contract, as per the client choice.
    Thanks,
    Ravi

Maybe you are looking for

  • Installing WIndows XP

    I am able to run Boot camp and after I insert the WIndows XP service pack it runs through the formatting bit ok. When it starts to copy files I get an error message that 'installer cannot copy' some random file i can retry a few times but it never wo

  • [SOLVED] openbox keyboard probs

    Hi all, am trying to configure my keyboard shortcuts in openbox. this is what i got so far (edit: file attached, xml pasting makes problems here :? ) When i paste this bunch of lines into my rc.xml file, overwriting my previous/default keyboard setti

  • ADOBE FLASH PLAYER UPDATE

    I have a Macbook Pro. My Adobe based downloaded info such as video's etc does not want to operate, it flags 'Flash out-of-date'. I have tried downloading the 'official' compatible Adobe update from the 'only update' recommended from these pages, but

  • Search for users and non-ASCII characters

    I am having a little issue with the "Accounts - Find Users" functionality. The search breaks on what I assume is non-ASCII characters (we use the following three up here in Denmark: �, �, �). To be precise, I have a user with the first name "J�rgen".

  • "new line" in dictation not working in Outllook for Mac 14.2.4

    Today I tried using dictation and it works except when I give it the commands "new line". Again, the dictation is working in all Apple applications.