Issue in creating Finish Good Material for specific sales area

I am trying to create a new "finished good material" through "MM01" , after selecting  "industory sector" & "Material type" I have also selected the views the next screen comes is for Organization level ,
when I select Plant , sales org & distribution channel and press enter an error comes "Company Code 1000 is not set up for Material Managment".
please help me out.

hi,
Check few things:
1. Check whether the plant is assigned to the co.code which it is showing and the Material is maintained for the same plant...
2. Check whether there is proper assignment of the porg to co.code
Porg to plant, etc...
If plant is not assigned to cocode then assign it in OX18....
Or
If you are using the IDES, then try with the other plant and material...
Regards
Priyanka.P

Similar Messages

  • Reports for specific sales areas

    Hi,
    I am looking for standard reports for the following from areas:
    1. Sales Document Schedule Line
    2. Sales-Shipping Allocation Schedule Line
    3. Sales Document Header Status
    4. Billing Document Item Data
    5. Delivery Item Data
    I have looked at the Information System for SD reports, but they don't seem to be the ones I would want to use. Are there reports to display these areas separately or altogether for large volume reporting?
    Thanks

    Hi,
    Please check transaction SD01.
    SAP Easy Access Sales and Distribution:
    Sales -> Inquiries, Quotations, Orders, Scheduling Agreements, Contracts etc.
    Click on Inquiries for standard reports on Inquiries,
    Click on quotations for standard reports on quotations etc.
    Regards,
    Ferry Lianto

  • Open Customer for Multiple Sales Areas

    We need that when we save a customer from a specific sales area this customer will be opened automaticly in several sales areas and company codes (because of buisness reasons we do not use consumers).
    I was not able to find a function/BADI that gives this functionality.
    Please asssit,
    Uri Dembo

    Hello Uri
    Please correct my understanding
    What you are saying is , when you create a customer in a specific sales area, it should get extended to rest of the sales areas, is that what you are saying?
    If yes, then you might want to take help from your technical folks (Abapers) for auto extension of customer in other areas.
    Before you do that, it is essential to understand that you have the right configuration in place.
    Regards
    Kalpesh

  • Good Issue batch Flows at GR for finish good Material

    Hi Gurus,
    Please Help me on below scenarios
    1)Good issue material batch and its characteristic automatically flows to Finish Good Material at the time of Good receipt of Process order.
    2) If Component of Finish Material ie Good issue material is having the different batches issued to the Finish material Process order then System should only consider those batch which is having the Characteristic values is having more that 50%
    Exam : Good Issue material X and requirement qty 10
    Then Component issue 10 qty with 2 batches  A and B
    Batch A  Qty 5 : Char              Value          Batch B Qty 5       Char      Value
                               Density            10                                             Density     15
    Tthen Finished Good batch consider only batch B which is having the maximum density.
    Here we want the same batch B and it should automacticaly flows  to the Finish product at the time of GR ( Process order )
    I tried with Batch derivation but we want the same Good issue batch to finished material
    Please help me on this scanrios and if we are going for development then how it is possible technically ( with Functioan specification)
    Regards,
    Saurabh

    Hi Gurus,
    Please look above the scenario and reply.
    Regards,
    Saurabh

  • Excise Invoice cannot be captured for RG1(Finished Goods) material

    Dear Friends,
    While creating GR and choosing the option only capture Excise Invoice system showing error as follows:
    Excise Invoice cannot be captured for RG1(Finished Goods) material
    Message no. 4F276
    The Material is a Raw Material(ROH) and Price control is "V".Pl tell me and earlier 3 times GR is done on this material w/o error.
    Pl help me how to get rid of this error.
    Regards,
    Ask

    In GR check in Excise item tab under excise item whether it is showing Raw Material or Finished goods?
    Simulteneously check in J1ID for the said material & chapter-id combination what material type has been maintained?
    Regards,
    Indranil

  • Stop user creating process order with material for specific order type

    Hey Team,
    Is there a way where I can stop creating process order with material for specific order type says Z*. We are using ZNMA  order type to create trial batch and we do not want to create process order with material for this order type.
    Any ideas?
    Thanks
    Bhavesh Patel.

    You can restrict the order creation in CO01 based on authorization, Remove the authorization for Z order type for the particular user,  Check with your basis Guy

  • Call BAPI_GOODSMVT_CREATE to create a goods receipt for purchase order

    Hi,
    I'm calling the bapi BAPI_GOODSMVT_CREATE to create a goods receipt for purchase order, but the following code doesn't work. It doesn't give me any kind of error message but it does nothing as well...
    Can anyone help me please?
    Thank You
    Hugo
    Code
    DATA: wa_goodsmvt_header  LIKE bapi2017_gm_head_01,
                            wa_goodsmvt_code    LIKE bapi2017_gm_code,
                            wa_bapi2017_gm_head TYPE bapi2017_gm_head_ret-mat_doc.
                      DATA: it_goodsmvt_item LIKE bapi2017_gm_item_create OCCURS  0 WITH HEADER LINE,
                            it_return        LIKE bapiret2 OCCURS  0 WITH HEADER LINE.
                      wa_goodsmvt_header-pstng_date = SY-DATUM.
                      wa_goodsmvt_header-doc_date   = SY-DATUM.
                      wa_goodsmvt_header-ref_doc_no = '4500000020'.
                      wa_goodsmvt_code-gm_code = '01'.          "Goods receipt for purchase Order
                      it_goodsmvt_item-stge_loc  = 'BPF2'.
                      it_goodsmvt_item-move_type = '101' .
                      it_goodsmvt_item-entry_qnt = 17.
                      it_goodsmvt_item-entry_uom = 'KG'.
                      it_goodsmvt_item-mvt_ind   = 'B'.
                      it_goodsmvt_item-po_number = '4500000020'.
                      it_goodsmvt_item-po_item   = '00010'.
                      it_goodsmvt_item-material  = '50'.
                      APPEND it_goodsmvt_item.
                      CALL FUNCTION  'BAPI_GOODSMVT_CREATE'
                        EXPORTING
                          goodsmvt_header  = wa_goodsmvt_header
                          goodsmvt_code    = wa_goodsmvt_code
                        IMPORTING
                          materialdocument = wa_bapi2017_gm_head
                        TABLES
                          goodsmvt_item    = it_goodsmvt_item
                          return            = it_return.
                        data: begin of errmsg occurs 10.
                                include structure bapiret2.
                        data: end of errmsg.
                        data: wmenge like iseg-menge,
                              errflag.
                        clear errflag.
                        loop at errmsg.
                          if errmsg-type eq 'E'.
                            write:/'Error in function', errmsg-message.
                            errflag = 'X'.
                          else.
                            write:/ errmsg-message.
                          endif.
                        endloop.
                        if errflag is initial.
                          commit work and wait.
                          if sy-subrc ne 0.
                            write:/ 'Error in updating'.
                            exit.
                          else.
                            write:/ 'Ok'.
                          endif.
                        endif.
                        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                        EXPORTING
                        wait = ' '.

    Hi,
    Thank you for the asnwer! I'm a rookie at ABAP so please forgive my stupid questions
    I've changed the code to:
    DATA: wa_goodsmvt_header  LIKE bapi2017_gm_head_01,
                            wa_goodsmvt_code    LIKE bapi2017_gm_code,
                            wa_bapi2017_gm_head TYPE bapi2017_gm_head_ret-mat_doc.
                      DATA: it_goodsmvt_item LIKE bapi2017_gm_item_create OCCURS  0 WITH HEADER LINE,
                            it_return        LIKE bapiret2 OCCURS  0 WITH HEADER LINE.
                      wa_goodsmvt_header-pstng_date = SY-DATUM.
                      wa_goodsmvt_header-doc_date   = SY-DATUM.
                      wa_goodsmvt_header-ref_doc_no = '4500000020'.
                      wa_goodsmvt_code-gm_code = '01'.          "Goods receipt for purchase Order
                      it_goodsmvt_item-plant     = 'BP01'.
                      it_goodsmvt_item-stge_loc  = 'BPF2'.
                      it_goodsmvt_item-move_type = '101' .
                      it_goodsmvt_item-entry_qnt = 10.
                      it_goodsmvt_item-entry_uom = 'KG'.
                      it_goodsmvt_item-mvt_ind   = 'B'.
                      it_goodsmvt_item-po_number = '4500000020'.
                      it_goodsmvt_item-po_item   = '10'.
                      it_goodsmvt_item-material  = '50'.
                      APPEND it_goodsmvt_item.
                      CALL FUNCTION  'BAPI_GOODSMVT_CREATE'
                        EXPORTING
                          goodsmvt_header  = wa_goodsmvt_header
                          goodsmvt_code    = wa_goodsmvt_code
                        IMPORTING
                          materialdocument = wa_bapi2017_gm_head
                        TABLES
                          goodsmvt_item    = it_goodsmvt_item
                          return            = it_return.
                          write:/ it_return-message.
    And the return message is : Material document data and PO data do not match (Material)
    Any idea of what might be the problem?
    Thanks

  • Costing Report summarized production cost by Finished Goods Material

    Dear Expert,
    I am looking for a report that can summarized the production cost in production order by Finished Goods Material Number.
    or a report that can show me the cost components incurred related to a Finished Goods Material.
    Can any expert enlighten me? please help.
    Thanks a lot.

    Hi
    I would recommend the product drilldown reports in KKO0...
    For this you will have to do settings in OKN0 (Asisgn a Cost Comp Structure and specify the Product Group)
    After this, execute KKRV to collect the summarized data and then you can use KKO0 reports
    It gives cost of production as per the Cost Comp Str and also the product no, product group, Prod Order etc
    Regards
    Ajay M

  • Background Usage decision of FERT material (Finished good material)

    DEaR ExPert,
    I have some problem regarding background Usage decision of FERT material (Finished good material)
    A inspection lot will be generated against production order fert material  and all batch will be post  movement type  321 Trough qa16 UD Foreground but when i doing UD thorught  UD background this error will be appear
    No batch input data for screen SAPLIPW1 0200
      Message no. 00344
    Kindly elaborate me
    Regards
    Pirya Sharma

    This is more related to your i/p data screen or Variant which you are executing.
    Nitin

  • 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

  • Creation of Material for multiple sales organizations

    Hello,
    is there a way to create a material for one sales organization and that this material can easily be copied
    to other sales organisations? Now it takes a lot of time to create the materials for different sales organizations with
    transaction MM01. Thanks in advance,
    Ivo

    is 5 seconds a lot of time?
    make use of copy from fields in MM01 initial screen, enter as copy from material the material number you want enhance with a new sales org view.
    At the organisation pop-up make sure you enter the copy from sales org and plant on the right.
    next step is just to go into the material and click save button.

  • How to  check how many Material Download from R3 to CRM for 1 sales area

    Hi Guys
    Thanks in advance.
    We are having CRM 5.0 Implementation. In our organization landscape we are having R3 system as well.
    All the master data for CRM comes from R3. We are performing the initial download of materials on the basis of Material Type , Sales area.
    For Example In R3ac1 T-Code
    We have set up filters for "Material" object in such a way that middle ware should allow flow of materials of
    material type = xyz
    Sales org = 1100
    Devision = I0
    D.Channel = XX
    My filters condition's are working fine.
    Now after running the initial download I am want to cross check in CRM ,
    How many materials got downloded for material type "XYZ" & for particular sales area "1100"?
    Please let me know if there is any table for the same ?
    or
    If there is any standard report program ?
    Thanks & Regards
    Abhay Newaskar

    Hi Rupesh
    The information & Z report is really helpful. But unfortunately its not solved my issue .
    In table CNCCRMPRSAP004  there is no entries in my CRM system.
    but when I open an Product In COMMPR01 table & go to Sales & Distribution channel tab. Then I can see that this product is available in two salea area.
    For example
    Product ID : REPAIR-NOWARRANTY
    In Tab SAP BASIC data following info available
    Category ID : MAT_ZERV
    Item Category group :ZERV
    In Tab Sales & Distribution
    we can see that this product is extended to two sales area.
    1206
    1290
    Now I want to run a report on the basis of following selection
    Sales area  = 1206
    Item category Group = ZERV
    Then the report should show me the above product used for example.
    Thanks & Regards
    Abhay

  • Block releasing to accounting for a specific sales area

    Is it possible to block a billing document from 'releasing to accounting' for a specific sales area?
    Posting block on the billing type is not an option since the billing type will be used in other sales areas.
    Thanks
    KM

    Hi,
    Do some enhancement,
    If perticular sales area exist in sales order or delivery document then system sould set accouning block indicator for invoice.
    kapil

  • Create directly an IDOC for a sales orders

    HI,
    I would like to know if it exists a program to create an output IDOC for a sales order directly as does the program
    RBDSEMAT for materail / product.
    With RBDSEMAT we give the product's numeber the message type and the logical system.
    Of course before was customizing all the ALE flow.
    But for sales orders (VA02 / VA01) I don't find any program which allow us to have the same function.
    Does this program / function exist? I want juste to give the sales order number  the logical system and the message type.
    Thanks you
    Henri

    Funtion Module IDOC_OUTPUT_ORDRSP is used by standard SAP when output determination is used. I think you can populate the control record and use this function module directly. This will return the IDoc data, but the IDoc will not exist on the Database.

  • I added photos of our company's products to the Goods App for our sales team to use as an electronic catalog.  Some of the pictures display perfectly.  Others are blury.  How can I fix this?

    I added photos of our company's products to the Goods App for our sales team to use as an electronic catalog.  Some of the pictures display perfectly.  Others are blury.  How can I fix this? I Googled pixel size for Ipads and checked this size against the blury photos.  They seem to be less than the max pixels allowed.  Must be another solution????

    Ged,
    whilst generally I agree with you a question (or two) for clarification so we can be sure we're not comparing apples with oranges
    I'm not familiar with O2's product lineup but given you're on Annex M is that a business package?
    Are you on an Infinity residential or business package?
    On the subject of the offshore support teams my experience from the other sife of the fence is that many, many of them are very technically orientated. The problem is that the ISPs they work for don't give them access to many of the tools that are needed (they need to raise internal requests to even get line checks done in some cases) and also they are very heavily scripted & monitored in what they do/say on a call.
    Sounds like O2 are operating as a contact centre rather than as a call centre which is much more preferable from the customers point of view.
    DISCLAIMER: although I work in the industry I do not work for BT and any opinions given are purely my own.

Maybe you are looking for

  • Mini Use with PC Keyboard

    How can I get my new Mac Mini to recognize the right hand side keys that need the num lock? Thanks, Howie

  • 1099 Report doesn't include Down Payments

    Hi, While running 1099 report we figured out that it is not including down payments made to the vendor.  Can anybody please tell me if there is a configuration required for this?  We are on v4.7. Thanks.

  • Fund related issues

    Dear Sir, I want to carry forward the PR ,PO made in previous year to next fiscal year in Fund management. I ve done one customisation as which PR , PO have been transferred to next fiscal year. But still fetching the Budget from new fiscal year not

  • Converting an XDCAM 1080/60i 35 VBR timeline to SD 16:9 quicktime

    I've created a project in an XDCAM 1080/60i 35VBR timeline. I'd like to export a standard definition 16 x 9 quicktime out of it for presentation purposes to people without the facility to play XDCAM discs. I know I can do this with FCP and/or Compres

  • Planning book issue for one OBD.

    Hi friends, We are getting sales data from ECC to APO through  BW cube. In Planning book  for one material on Feb month open delivery qty showing as 1 but when we checked in cube there are no  open deliveries even ic ECC also zero. The Process chain