Not able to extend material to plant 102

Hi Experts,
I have a problem to extend material.
I am trying to extend material to plant 102, but when I click costing view I am getting error that "Valuation of Material 1288Z in valuation area 102 inconsistent"
Please help me to resolve this
Thanks in Advance,
Regards,
Vineela

Hi Experts,
In the material Master there is no Accounting View 1 and 2.
How can I  get these views in material master.
Regards,
Vineela

Similar Messages

  • MRP Views not able to extend

    Hi
    I had material type FERT/ROH
    Material was created with Basic data/sales org views.
    when i tried to extend MRP/Costing views not able to extend in MM01/MM50.
    I checked in SPRO->logistics general->material master ->material types->define attributes of material types user departments there for FERT/ROH-- MRP/workscduling costing views are selected.
    what is the possible reasons.
    Regards,
    srihari.M

    Hi
    This issue is only in Dev
    Quality and Prodcution are fien..
    I am not able to create  MRP1/MRP2/MRP3 views in MM01..
    is it authorisation issue..
    Regards,
    srihari.M

  • To Extend material to plant using MATERIAL_MAINTAIN_DARK .

    I am tryin to extend material into plants using MATERIAL_MAINTAIN_DARK  function module.Can someone please check the code below and tell me how i should modify it to work.Is BDC a better option?
    DATA: t_amara_ueb LIKE mara_ueb OCCURS 0 WITH HEADER LINE.
    DATA: t_amarc_ueb LIKE marc_ueb OCCURS 0 WITH HEADER LINE.
    t_amara_ueb-mandt = sy-mandt.
    t_amara_ueb-matnr = it_reqdata-material.
    t_amara_ueb-tcode = 'MM01'.
    t_amara_ueb-tranc = 1.
    APPEND t_amara_ueb.
    CLEAR t_amara_ueb.
    t_amarc_ueb-mandt = sy-mandt.
    t_amarc_ueb-matnr = it_reqdata-material.
    t_amarc_ueb-werks = it_reqdata-plant.
    t_amarc_ueb-tranc = 1.
    t_amarc_ueb-KZKRI = 'X'.
    APPEND t_amarc_ueb.
    CLEAR t_amarc_ueb.
    call function 'MATERIAL_MAINTAIN_DARK'
      exporting
      flag_muss_pruefen = 'X'
    p_kz_no_warn = 'N'
    kz_prf = space
    kz_verw = 'X'
    kz_aend = 'X'
    kz_dispo = 'X'
      tables
       amara_ueb                       = t_amara_ueb
       AMARC_UEB                       = t_AMARC_UEB
    EXCEPTIONS
       KSTATUS_EMPTY                   = 1
       TKSTATUS_EMPTY                  = 2
       T130M_ERROR                     = 3
       INTERNAL_ERROR                  = 4
       TOO_MANY_ERRORS                 = 5
       UPDATE_ERROR                    = 6
       OTHERS                          = 7
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ELSE.
    COMMIT WORK.
    ENDIF.
    Thanks and Regards,
    Pratima.

    Hi ,
    Use the below code.
    DATA : lt_mara_ueb TYPE TABLE OF mara_ueb INITIAL SIZE 0,
           lt_marc_ueb TYPE TABLE OF marc_ueb INITIAL SIZE 0,
           lt_errors TYPE TABLE OF merrdat INITIAL SIZE 0.
    DATA : wa_mara_ueb TYPE mara_ueb,
           wa_marc_ueb TYPE marc_ueb,
           wa_messtab TYPE merrdat.
    DATA : l_mstring(480).
    parameters: l_matnr like mara-matnr.
    * Set up I_MARA
    REFRESH lt_mara_ueb.
    wa_mara_ueb-mandt = sy-mandt.
    wa_mara_ueb-tcode = 'MM01'.
    wa_mara_ueb-matnr = l_matnr.
    wa_mara_ueb-tranc = '0000000001'.
    APPEND wa_mara_ueb TO lt_mara_ueb.
    CLEAR wa_mara_ueb.
    SELECT SINGLE * FROM marc INTO CORRESPONDING FIELDS OF wa_marc_ueb
    WHERE matnr EQ l_matnr AND werks EQ '01FC'.
      IF sy-subrc EQ 0.
        MOVE '01BV' TO wa_marc_ueb-werks.
        wa_marC_ueb-tranc = '0000000001'.
        WA_MARC_UEB-PSTAT = SPACE.
        APPEND wa_marc_ueb TO lt_marc_ueb.
      ENDIF.
      CALL FUNCTION 'MATERIAL_MAINTAIN_DARK'
        EXPORTING
    *   FLAG_MUSS_PRUEFEN               = 'X'
    *   SPERRMODUS                      = 'E'
    *   MAX_ERRORS                      = 0
          p_kz_no_warn                    = 'N'
          kz_prf                          = 'W'
    *   KZ_VERW                         = 'X'
    *   KZ_AEND                         = 'X'
    *   KZ_DISPO                        = 'X'
    *   KZ_TEST                         = ' '
    *   NO_DATABASE_UPDATE              = ' '
    *   CALL_MODE                       = ' '
    *   CALL_MODE2                      = ' '
    *   USER                            = SY-UNAME
    *   SUPPRESS_ARRAY_READ             = ' '
    *   FLG_MASS                        = ' '
    * IMPORTING
    *   MATNR_LAST                      =
    *   NUMBER_ERRORS_TRANSACTION       =
        TABLES
          amara_ueb                       = lt_mara_ueb
    *   AMAKT_UEB                       =
          amarc_ueb                       = lt_marc_ueb
    *   AMARD_UEB                       =
    *   AMFHM_UEB                       =
    *   AMARM_UEB                       =
    *   AMEA1_UEB                       =
    *   AMBEW_UEB                       =
    *   ASTEU_UEB                       =
    *   ASTMM_UEB                       =
    *   AMLGN_UEB                       =
    *   AMLGT_UEB                       =
    *   AMPGD_UEB                       =
    *   AMPOP_UEB                       =
    *   AMVEG_UEB                       =
    *   AMVEU_UEB                       =
    *   AMVKE_UEB                       =
    *   ALTX1_UEB                       =
    *   AMPRW_UEB                       =
    *   AMFIELDRES                      =
    *   AMERRDAT                        =
    EXCEPTIONS
       KSTATUS_EMPTY                   = 1
       TKSTATUS_EMPTY                  = 2
       T130M_ERROR                     = 3
       INTERNAL_ERROR                  = 4
       TOO_MANY_ERRORS                 = 5
       UPDATE_ERROR                    = 6
       OTHERS                          = 7
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      COMMIT WORK.
    Regards,
    Raghav

  • Not able to post material

    Hi,
    I am not able to post material in  MB1C.I am getting error,"posting only possible in periods 2002/11 and 2002/10 in company code ZVAN".  I have already done,OMS2 and OMS2.

    Welcome to this forum.  Please make a search in the forum before posting any repeated questions.  This question has been answered many times and you will get inputs from there.
    thanks
    G. Lakshmipathi

  • Segments Not Able to Extend Count

    Hi,
    I keep getting the warning "Segments Not Able to Extend Count". When I query dba_segments, there is no segment where extents is anyhere near max_extents. Am I doing an incorrect analysis? what should I be looking for?
    Is there any documentation that outlines the queries run by Grid Control to arrive at a certain value, for its out of the box monitoring?
    Thanks a lot!
    Maria

    The beauty of asking questions is that half of the time, just formulating the problem helps you discover the solution yourself :)
    I had confused the metric "Segments Not Able to Extend Count" with the metric "Segments Approaching Maximum Extents Count". It seems as if Grid Control is calculating the size of the segment's next extent, and checks whether there is enough space in the tablespace to hold that next extent. The metric is completely unnecessary on our system, since we are using auto-extend on all of our tablespaces. This is not taken into account by Grid Control.
    Cheers!
    Maria

  • Segments Not Able to Extend

    How do I set metric "Segments Not Able to Extend" which is under "Tablespaces with problem segments" category? Its current status is "Not set". When set, will it email an alert?
    Thank you.

    You should be able to set this metric in
    Preference => rules=> Database Availability and Critical States (edit)
    OR
    under Metric and setting for the individual target database.
    The value should be set to > 0
    It sound like someone created a rules called "Tablespaces with problem segments"
    Hope this helps.

  • Not able to see material and operation overview as tab in production order

    Hello Friends,
    While creating the production order by T.C CO01, after giving the material code , production plant and order type, system took me inside it.There i am not able to see component overview, operation overview as tab.Whereas in menu option Goto - overview - component , i can see there.But i want this things as tab in screen where we give qty and dates.
    So guys do you know where to do configuration for it.
    Thanking you guys in ad

    Dear Jitendra,
    In Production Order you will find Component and Operation screen under two different icons (not tab) production Header screen.
    - For Component Overview it is something like Balance or on pressing F6 you will branch to Component overview Screen.You will find it just after Hat icon
    - And for Operation over view it looks like ladder or on pressing F5 you will branch directly to operation screen.you will find this icon just after Component overview Icon.

  • Extend material to plants

    Hello,
    I am trying to extend an existing material in several plants. I am using the BAPI, BAPI_MATERIAL_SAVEDATA. Now if I choose the purchasing view and pass plant related data, it extends the material but does not update certain fields like MRP controller,MRP profile,Availability check,loading group etc , even though I have marked all these fields X in MARCX structure.
    Also if I select all the data required and populate other views, if the material does not exist it gets created but if it exists in a plant and it needs to be extended into other plants it gives error material number xxxxx in version already exists for plant yyy.
    So basically the same program is being used for new materials and extending materials, if material number exists then extend to all plants else create in all plants. Getting error that the material already exists when trying to extend it.
    Please suggest.
    Regards,
    Sachin

    Hi,
    Did you check the fields in BAPIMATHEAD for extending the view.
    Check [this|http://forums.sdn.sap.com/search.jspa?threadID=&q=Extendmaterialtoaplant&objID=c42&dateRange=all&numResults=15&rankBy=10001]

  • Extend Material by Plant

    Hi Gurus,
    I need to extend large no of materials to other plant in the same sales org and distribution channel. If I have few materials can be extended to other plant each one  by going thru MM01, copy material from plant, sales org, dist channel.
    Kindly help me how to extend if large no of materials to be extended by plant?
    Regards,
    Vamsi.

    Hello Vamsi,
    There are many techniques available for changing data on a large basis for same parameters like CATT, MASS, LSMW, BDC.
    You can use transaction MASS and can give object type BUS1001001(material: retail) or BUS1001 Material:Industry) and execute.
    Then select the table MARC as you need to change Plant data and execute. Provide necessary information and execute.
    This transaction MASS updates information at table level. So ensure all the things before using the transaction.
    Regards,
    Priyanka

  • Not able to extend the disk partition in our server 2008

    Hi  all,
    extend the partition but t it not able to do that.We are using the windows server 2008 in our setup. one of my exchange server I want to extend the partition. I had already extend the partition but now its not able to do that and shows the below  error.
    in the diskmangement view I can  see the partition  in splitted format when ever I previously extended  it shows the same( I extended 3, 4 times).  is it ok to delete the Splitted partition?
    awaiting for the solutions eagerly.
    Jags

    When the unallocated space is not behind the assigned partition, you cannot directly extend your wanted partition in Disk Management. That may be why you’ve failed at first.
    But, without using disk management tools, you also can try to extend your partition with partition resizing software within several steps.
    Here are detailed steps for you to go on extending your partition space:
    http://www.partition-magic-server-2003.blogspot.com/2013/11/resize-server-2003-partition-free.html
    I hope you can get some clues there.
    Back up all partition data well in advance in case of data loss. 

  • Extend Material to Plant via IDOC

    I was under the assumption that I can create a material with my idoc type : J3AMAT and then extend that material to any plant I want using the same idoc given that I provide the plant data.  Is that correct or am I going crazy?

    If you are creating the Material via the SAP GUI with MM01 and simply enter the Basic Data1, Basic Data 2 data, the Material will create.  In the same SAP GUI session you then re-enter MM01 and attempt to create data for that new Material for tab "Sales: General/Plant Data".  SAP GUI will allow you to select a Plant, and if you have no data created for that Plant it will say that "The material already exists and will be extended".
    I wanted to replicate that same thing with the IDoc.  So I created the Material with only the Basic Data 1, and Basic Data 2 data via LSMW IDoc Matmas05.  Then using the same IDoc, I used the created Material Numbers and added the Plant Number I wished created to the Load File, along with all the data I had to add as a result of troubleshooting the missing data errors from repeated extension Idoc posting attempts.  Once I had all the data required for the Plant data, the Material was extended to the desired Plant.  I could go to MM03 and see it for that Material & Plant combo.  The only problem was that it took more fields than I thought.  That most likely has something to do with how the Material Master fields were configured I think.
    I did not need to create the Material & Plant data first, and then extend the Material & Plant data to a new Plant.  It was Material Master Basic Data to New Plant.

  • Not Able to do PGI for Plant to Plant Stock Transport Order through SD Dlvy

    Hi Gurus,
    We have created a PO in which supplying plant and receiving plant both has split valuation which is configured.
    Now when I am creating delivery the material has batch and the batch number and valuation type both are same and available in delivery. I have checked in material for both for supplying plant and receiving plant valuation type is same.
    Now when I do PGI, I am getting an error.
    Message No. M7048
    Use one-step procedure for transfer posting to mat. subj. to valuation
    Anybody can help us what is missing so that we can fix and do PGI.
    Regards
    Shiva Prasad

    OSS note 1261604 - Two step stock transfer and batch level valuation
    may help you out.

  • Not able to post material in MB1C.  Please help with proper answer.

    Hi I am posting material in IDES thru MB1C, since i am not allowed to do PGI if i dont do a stock upload.
    While doing MB1C error is below
    "MB1C=Period  003/2008 is not open for account type S and G/L 799999."
    I used the below transaction and written the status.
    OMWD=
    Val area       Co Code   Company name      chrt/Accts     Val. Grpg
    BK00                 BK00        BK            INT                0001
    MMRV:
    Posting periods
    Current period    03 2008
    Previous period  02 2008
    OBYC:
    VAL AREA GENERAL MODIFICATION    VALUATION CLASS    DEBIT          CREDIT
    BKOO                                                         BSA      7920                          799999     799999
    i dint not use OB52 , i dont know how to assign.
    Please reply with proper and describtive answer and proper assignment.
    Points would be awarded if  the problem get solved. \
    my AOL id is supratiproy, any one can ping me as well.
    Please help it is very urgent.
    Thanks & Regards
    Supratip

    Hi,
    Go to SPRO.
    Financial Accounting -> Financial Accounting Global Settings -> Company Code -> Enter Global Parameters -> Select the Company Code you are processing.
    Check the Posting Period Variant.
    in OB52
    For that same variant for Account Type S, in Column From Period 2, make it as 1 and in To period (next to that) change it to 16 and also year as 2008, Save.
    Hope this helps.
    Thanks
    Krishna.

  • Not able to extend volume in Windows 2008 R2 Sp1

    Hi,
    I have increased the capacity from IBM storage and it appear as unallocated space in disk manager but when I tried to extend the volume through disk part it's giving me error " you don't have 1 MB free disk space available to extend this volume"
    Disk Type: Dynamic
    Partition Style: MBR
    Capacity: 2813952 MB
    Unallocated: 716802 MB
    Reserved Space: 0 MB
    Regards,
    Hakim. B
    Hakim.B Sr.System Administrator

    Hi,
    Please try to rescan the disk in question to check if you can extend the volume. For more detailed information, please refer to the thread below:
    there is not enough space available on the disk (s)to complete this operation
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/8119a78e-c3e7-4033-bb18-00bb2ebda303/there-is-not-enough-space-available-on-the-disk-sto-complete-this-operation?forum=winserverfiles
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Not able to clear material from quality stock

    Hi,
    There is a stock inconsistency between inspection stock in materials management and inspection stocks managed in inspection lots.Due to this, unable to clear inspection stock. I tried with QA08 ,MB1B also assiging inspection type 08 but still posting not happening fron inspection  stock to unrestricted stock.
    Regards,
    Ravi

    Hi Ravi,
    Please note / clarify following :
    1) If  in material master of QM you have activated  post to inspection (no lot generation with 01 or 04 type insp) then stock will appear in quality, and you should or can only clear it using MB1B 321 movement type.
    2) If already you have activated 01 or 04 or 08 then you will be allowed to post stock through inspection only (QA11).
    3) Check one more important point :
    From old lots somebody might have done result recording and given UD but forgot to do stock posting. you can find such lots with status 'SPRQ'. go to QA32 put particular material, remove range dates and select all insp lots. from the list apply filter to column 'system status' check for ' SPRQ ' in the filter. you will lots where UD given (green radio button)  but stock posting pending.
    Please elaborate if problem if not resolved.
    Best Regards,
    Shekhar

Maybe you are looking for

  • SAINT Error in Phase CHECK_REQUIREMENTS

    Hi.Experts, In a new SAP component installation with "t-cd:SAINT", an error occurred. ERROR MESSAGE ============================================= Phase CHECK_REQUIREMENTS: Explanation of Errors Open conversion requests still exist in the ABAP Diction

  • SAP Netweaver ABAP 7.01 Trail Version

    I've installed the SAP Netweaver ABAP 7.01 Trail Version successfully on my system Window Server 2003. But i m facing problem when i m statring Application Server ,the message is displaying  Service name is Invalid.Can anybody help me.

  • Unable to install VMM Console

    I have several people at my organization that cannot install the VMM 2012 R2 console onto their workstations. This is the detail from the last person who tried to. "When launching setup.exe, the installer would seem to hang. After some digging into t

  • I'm receiving a "blocked plug-in" message in Safari

    A user in my group has recently upgraded to Mac OS 10.8.4. The user has recently started receiving the following message when logging into workamajig and a few other sites: "Blocked plug-in" And no access to the requested site. I've tried updating Ad

  • 3.0 Release Time - UK

    I've a mate that works at O2 who has informed me that the update will be available from 6pm tomorrow.