Material Issuance problem

Hi,
     I am issuing a material from my storage location but system errors me 0 Material available but when i see in mmbe there is one unit in unrestricted use and one in schedule for delivery. i have checked all open sale orders in va05 but there is not open sale order. Please tell me how could i delete this schedule for delivery unit. Remeber there is not open sale order.
I'll be thankful for ur valuable feedbacks.

Hi,
The qty 1unit in the unrestricted use and the qty 1unit in the scheduled for delivery is one and the same.
which means there is an open delivery for the material with qty 1.
u can cancel this delivery and then system will allow to deliver your current sales order.
Please check and revert back.
Thanks & Regards,
Hegal

Similar Messages

  • Goods Issuance problem on COIK

    Hi all,
    I am facing Goods issuance issue on COIK transaction. Actually i am issuing one component in KG on a process order and its base unit is Litre. Problem is even after picking that material completely, it still gets populated in COIK transaction everytime and doesnt disappear..Process order shows that the component has been withdrawn completely but its final issuance indicator is not checked. Then i tried to call that process order on MB1A and it shows that there is still 0.001 quantity to be issued. The root cause is probably rounding from Literes to KG, Please guide me how can i resolve this issue on COIK.
    Note: Issuance through MB1A is working fine, the problem is only with COIK.
    Best Regards,
    Shah
    Edited by: PP Hasnain on Sep 11, 2009 10:29 AM

    Hi,
    This problem may be due to unit of measure KG as for the KG number of decimals defined in CUNI transaction iszero or 2.please check CUNI transaction for KG ,if it is 2 make it 3 and try.
    Please let us know if you are not getting the value

  • Fast Refresh Nested Materialized View problem in ORACLE 9i 9.2.0.7

    Hello
    My problem is in creating fast refresh nested materialized view in oracle 9i
    In below is an example of my problem
    ( I need to say when I run this example in Oracle 11g all things is OK )
    create table ali.alitest1(id number primary key,n1 number,n2 number);
    create table ali.alitest2(id number primary key,n3 number);
    CREATE MATERIALIZED VIEW LOG ON ali.alitest1 WITH ROWID,PRIMARY KEY ,SEQUENCE
    (n1,n2)
    INCLUDING NEW VALUES;
    CREATE MATERIALIZED VIEW LOG ON ali.alitest2 WITH ROWID,PRIMARY KEY ,SEQUENCE
    (n3)
    INCLUDING NEW VALUES;
    CREATE MATERIALIZED VIEW ali.alitest1_mv
    REFRESH WITH PRIMARY KEY FAST
    AS
    select id,n1 from ali.alitest1;
    CREATE MATERIALIZED VIEW LOG ON ali.alitest1_mv WITH ROWID,PRIMARY KEY ,SEQUENCE
    (n1)
    INCLUDING NEW VALUES;
    CREATE MATERIALIZED VIEW ali.alitest2_mv
    REFRESH WITH PRIMARY KEY FAST
    AS
    select t1.id,t1.n1,t2.n3,t1.rowid "t1_rowid",t2.rowid "t2_rowid" from ali.alitest1_mv t1,ali.alitest2 t2 where t1.id=t2.id;
    SQL Error: ORA-12053: this is not a valid nested materialized view
    12053. 00000 - "this is not a valid nested materialized view"
    *Cause:    The list of objects in the FROM clause of the definition of this
    materialized view had some dependencies upon each other.
    *Action:   Refer to the documentation to see which types of nesting are valid.
    do you know what is problem ?
    thanks

    Take look for this link :
    http://rwijk.blogspot.com/2009/08/fast-refreshable-materialized-view.html

  • Material costing problem in import to arrive at batch profitability?

    Dear all,
    Here my client requirement is to arrive at a material profitability with respect to that batch(shipment), but some times in import procurement exact profitability will not be arrive due to practical problems, which are
    1. freight & demurrage paid to shipper is not the exact cost which need to be incurred on to material because the freight is imaginary (20%) in order to have assessable value at the time of PO, however this can be adjusted at the time invoice but what about the demurrage demurrage paid by company to shipper will be in turn collected from handling agent, and hence net demurrage will not be known at the time of PO.
    Kindly suggest me on this to arrive at batchwise profitability with respect tom material?
    regards,
    Sanjana....

    Batch management is used to safe gaurd the homogenity fo material.
    Batches also maintained if you want to split value of the material
    Batched are identified with batch numbers. These numbers are created manually or dynamically while entering goods receipt.
    *One batch can be posted once.
    Batch will have two statuses Un-restricted and Batch restricted.*
    Batches can be maintained with classification with which we can assign some characteristics like quality related for shelf life related.
    To activate the batchmanagement for a material you must select the batch management check box in material master purchasing view or in general plant storage.
    Manual creation:
    Create Batch -> MSC1N
    Enter material
    Batch number (Unique for material)
    Create PO -> Click on batch tab -> Assign batch number (created) and Post.
    Batch with Classification:
    Create Characteristics : CT04
    Create Class: CL02 -> Click or char tab -> Enter Characteristics.
    Create Material with Classification View -> Select Class type.
    Just try like this you will get it and create PO and check the posting with Movement 341 & 342 for Batch restricted and un-restricted stocks.
    Regards
    Ravi

  • Materialized view problem ORA-00904: "from$_subquery$_ error

    Hello everyone,
    I've created data warehouse star schema and I'm trying to set up materialized view. DBMS_MVIEW.EXPLAIN_MVIEW passes and also the select query passes and is executed with no problems but when I try to CREATE MATERIALIZED VIEW... then error ORA-00904: "from$_subquery$_003"."SERVICE_ID_2_2": invalid identifier pops-up. How does Oracle 9i (9.2.0.1.0) managed to do this ? How to make it to work ?
    This is the query, and the schema:
    CREATE MATERIALIZED VIEW analiza_profitabilnosti
    BUILD IMMEDIATE
    REFRESH FAST
    ON COMMIT
    AS
    select
    GROUPING_ID(t.y,t.q,t.m,t.w,t.d,s.service_type,s.service_id,c.customer_category) as g_id,
    t.y, t.q, t.m, t.w, t.d,
    s.service_type , s.service_id ,
    c.customer_category ,
    COUNT(*) as c_star,
    SUM(cost) cost, COUNT(cost) c_cost,
    SUM(number_of_units) number_of_units, COUNT(number_of_units) as c_number_of_units
    from fact f
    inner join timeline t on f.datum = t.datum
    inner join service s on f.service_id = s.service_id
    inner join customer_category c on f.customer_category=c.customer_category
    group by
    ROLLUP(t.y, t.q, t.m, t.w, t.d),
    ROLLUP(s.service_type, s.service_id),
    ROLLUP (c.customer_category)
    and the schema:
    FACT (
    DATUM DATE,
    HOST_ID NUMBER,
    SERVICE_ID NUMBER (5),
    CALLED_PREFIX_ID NUMBER (10),
    CUSTOMER_CATEGORY NUMBER,
    TRAFIC_PERIOD_ID NUMBER (5),
    CALL_DURATION NUMBER,
    COST NUMBER,
    NUMBER_OF_UNITS NUMBER,
    NUMBER_OF_CALLS NUMBER)
    TIMELINE (
    Y VARCHAR2 (5),
    Q VARCHAR2 (5),
    M VARCHAR2 (5),
    W VARCHAR2 (5),
    D VARCHAR2 (5),
    DATUM DATE NOT NULL)
    SERVICE (
    SERVICE_ID NUMBER (5) NOT NULL,
    SERVICE_CODE VARCHAR2 (15) NOT NULL,
    SERVICE_NAME VARCHAR2 (63),
    SERVICE_TYPE NUMBER (5),
    SERVICE_TYPE_CODE VARCHAR2 (4) NOT NULL,
    S_ID NUMBER (5))
    CUSTOMER_CATEGORY (
    CUSTOMER_CATEGORY_NAME VARCHAR2 (65) NOT NULL,
    CUSTOMER_CATEGORY NUMBER NOT NULL)
    Thanks,
    Igor

    Yes, thank you. I suspected that version is problem, and patch 9.2.0.6 helped. It works under 9.2.0.6

  • Materialized view, problem in selecting a particular field

    Hi,
    can anyone please help me with this issue.
    I have table which contains data for 3 different years. It usually contains data for the current year, the next year and the previous year i.e the calender current year.
    YEAR TL JN Q
    2006     1 1 30
    2007 1 1 6
    2008 1 1 4
    2006 1 2 5
    2008 1 2 4
    This is how my table looks like. For this table i have created a view which looks like this
    TL JN Q1 Q2 Q3
    1 1 30 6 4
    1 2 5 50
    The view is a summary for the table.
    The problem now is that the Master table on which the view is based keeps getting updated. In some cases it may so happen that the table can contain data for a year other than the calender current year, previous year and next year.
    In this case how do i identify the year to create the view.
    For example the table can get populated with records for the year 1999, in this case how can i identify the year .
    This is the code i have written to create the view
    create view vw_summary(TL,JN,Q1,Q2,Q3)
    AS SELECT TL.,JN,
    MAX(DECODE(YEAR,TO_CHAR(SYSDATE,'YYYY'),Q,NULL)Q1,
    MAX(DECODE(YEAR,TO_CHAR(SYSDATE,'YYYY')-1,Q,NULL))Q2,
    MAX(DECODE(YEAR,TO_CHAR(SYSDATE,'YYYY')+1,Q,NULL))Q3
    FROM TABLE GROUP BY TL,JY
    CAN ANYONE PLEASE HELP ME.?
    I am creating a materialized view for the table

    one more opint to be added is that inside this procedure, i am checking for athe value of column "FLAG" in an other table param. if this flag is set to Y then i wil populate the table(on which the view is based) according to the parameter passed to the procedure. But if the flag value in the table params is set to N then i am suppose to check an other column called ACHYR in the table params. This column holds a year value say 1999.
    In this case the procedure should populate the table with the records for the year 1999.
    But how do I check this parameter in the view?

  • Urgent!!!! Material Number Problem

    Hi Experts,
      i am facing the simple problem,
    I Loaded the Hierachy Data from IS-R/3 to Bw,
    Its Loaded successfully, but the Problme is that its not
    showing in the BEx Report,
      The Problme is , in the Hierarchy the Material number
    is like Ex:3530014 this is not displaying in the BEx(displays like not assigned nodes)
    But When i am inserted the Same Material number manually
    its inserted like EX:000000000003530014(this is displaying in the bex hierarchy)
    to the same node which 3530014 is having.
       The Problme is that this Same material number is differing between leading'zeros and the non-leading zeros.
    is there any convesion exit routine problem,
    i am unable to find out this... help plzzz

    In BW system , if you set material length 18 and checked leading zero option.
    when material no is below 18 length, the leading zero will be added, in your case 3530014(below 18).
    How the infoobject(0material) masterdata looks?
    with leading zero or not?
    also check conversion routine(MATN1) is set.
    thank you
    senthil kumar

  • Material ledger problem raised by material type

    Hello Expert
    I activated matrial ledger for plant ZNST and also processed production startup. But something strange is that for material with type 'ROW', in MM03 from accounting view, I can see mutiply tabs for current period data, previous period data, future costing run, etc. But for material with type 'Finished', in MM03 from accounting view, it likes the one without mateiral ledger.
    Can someone give me a hint? What customizing is missing?
    Best Regards
    Nicole

    Hello Nicole,
    There are some configurations in MM (eg. OMSR, OMS9) under Logistics General >> Material Master where you can customize the screen for the material master and this is at the material type level. Since this is happening for one material type and not for the other then it seems that the problem is there in those configurations. I think it would be better if you can consult your MM counterpart as he would be more conversant with those screens and would be able to help out. You have the hide, display etc. options there.
    If you are trying to do that yourself then what you can do is find out the field name and the table name from the material master of ROW Material where it is displayed (you can do this by going to the field , press F1, and then click on the hammer icon in the performance assistant screen). Then in OMS9 you can look for that combination for example "MBEW-MLAST" for the Material Price Determination: Control field. Then you can select the radio button 'display' for the material type FERT.
    Please revert back in case you need more help.
    Kind Regards // Shaubhik

  • Consignment material number  problem

    Hi
    Please help
    It was noticed the material number 2000XXXX was keyed as consignment which was wrong.
    The right consignment material number should have been Z03520553 and I would appreciate if someone let me know on hot to make a change to reflect on Z03520553 and maintain 20007890 as normal stock.

    The material number does not decide whether the material is a consignment material. If this is the case in your company, then it is just an internal rule, a kind of policy, which seems not even be supported by a user exit, otherwise you would not have the problem that you have.
    The process defines if a material is used for consignment, e.g. the item category in the purchase order and  the info record type
    for sales process it is the sales order type and its item category.
    Based on this info you should be able to tell exactly at which point you have a "wrong" material number.
    in case of purchasing info record ýou need to flag the info record for deletion and then you can archive it.

  • Excise material posting problem

    while doing migo for excise material the excise in the excise invoice tab the option list automatically going to the only refer excise invoice - 04 .i want to capture and post excise invoice doing migo itself.how to rectify this problem.

    hi
    if u can see only refer option then check that u might have already captured the excise invoice with PO
    if you are getting it for all invoices then check following settings
    spro>log gen >Tax on Goods Movements>India>Basic Settings>Maintain Excise Groups
    here you have tick for capture and post excise for the excise group
    spro>log gen >Tax on Goods Movements>India>Business Transactions>Incoming Excise Invoices>Define Processing Modes Per Transaction
    here check that u have activated capture and post to be display in j1iex
    regards
    kunal

  • Material Extend Problem within same company code

    hello all,
    In my company there is one company code '1000' and TWO plant 'ABC' & 'XYZ'. problem is that when i extend the material in XYZ plant from ABC then when i change somthing in material view in any plant then it is getting reflected in other plant also. it is same hapening during BOM extend. can anyone please tell me why it is hapening? is there any solution for the same?
    Regards saurabh.

    Hi
    Can you explain little more ? like what field you have changed?
    If you change the fieldd which are specific to the client level then it will reflect in both the plant.
    THanks/karthik

  • Variable size material assigning problem

    Hi friends,
    I am trying to assign a variable size material for an activity. There is a scenario in which they are giving only one dimension and no formula is been used to calculate but the required qty field is rounding off for next decimal point for eg: if the size of material i am giving as 0.912 mm then the required qty is round off to 0.920. Can any one please tell me do we have any config setting to be done to take out this rounding off decimal point.
    Thanks
    Satish.

    the data element for required quantity CO_MENGE has 3 places of decimal - so basically it should be fine
    I have checked in my system and I can see 0.912 for a material with dimension length
    the other thing is check the material master - additional data for units of measure - or there might be some program rounding off the units to 2 digits
    If you are using a custom unit then check CUNI and make sure it is not set to 2 decimal places

  • Material Assignment Problem urgent!!

    Hi!! All,
    I need your help, In a perticular Recipe(PPPI)
    I am getting Information message that "Double assignment Exist' I am able to assign materials to Operations but msg is same.
    if I remove all assignments... from all operations mgs is still coming
    I am nt able to sort out whts the matter.
    Looking forward your help
    -Asheesh

    Asheesh,
    Got your problem...looks like the Component is available in the list more than once, if that was the correct scenario you are working with then... <b>in transaction "O05C" define message "C5" - 709 with "W" - Warning or " " - Blank for no message</b>.
    Hope this resolves your problem, reward your points and close this thread.
    Regards,
    Prasobh

  • Materialized view problem

    Hi all,
    while refreshing MV I have the following error any idea why ?
    SQL> exec dbms_mview.refresh('ACCT_STMT_MV','c');
    BEGIN dbms_mview.refresh('ACCT_STMT_MV','c'); END;
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDO'
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2255
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2461
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2430
    ORA-06512: at line 1Regards

    Try:
    ALTER TABLESPACE {YourUndoTS} ADD DATAFILE '...etc...';or
    ALTER DATABASE DATAFILE '{YourUndoDatafile} RESIZE 10240M;

  • Import purchase Material Invoice Problem

    Dear All,
    In Import Purchasing after GR Itried to post the Material Vendor Invoice with referance to Delivery Note no,But in MIRO item level system not capturing the GR Qty and Value.That two field is Empty.
    Then I tried to post with referance to PO ,But in the Pop-Up Box Material Import Vendor Code not appearing.can Anybody tell me the reason?
    Thanks,
    Manis.UK

    Hi Mani,
    Please be confirmed in above screen of MIRO there is transaction here did you select invoice and above layout there is one more selection did you select here Goods/Service items.
    Regards
    Vivek
    -- Reward if helpful

Maybe you are looking for