Nested Material Discontinuation and follow-up possible?

Hello Experts,
We have a scenario where we have Material A, Material B, and Material C.
We'd like to set to the discontinuation flag on Material A and have it follow-up with Material B.
We'd also like to set the discontinuation flag on Material B and have it follow-up with Material C.
We can get a 1-to-1 relationship working properly but adding another material to the mix gives us an error message stating that the material is already a follow-up material.
Is there any way around this?  We have several older revision material that we'd prefer to use up before continuing on the active material.
Many thanks,
~Adam

Hi Adam,
have you found solution for your issue?? I have the same problem. I've even tried put deletion flag for component A but no results.
maybe somebody else has any clue how to deal with it??
i'm looking forward for any help.

Similar Messages

  • Same discontinue and follow up material?

    I have used before this function having a follow up material with indicator 1 and effective-out date. However, this time I have 3 materials A, B, C.
    The logic I want to use is the following but I'm not sure if SAP supports this:
    A = discontinue material and B = Follow-up material. Using indicator 1
    B = discontinue material and C = Follow -up material. Using indicator 1.
    So far, SAP is not allowing me to have B as discontinue and follow-up material at the same time. Any insights?
    Thanks for your help.

    Hi Lee,
    If you try to set the discontinuation for a follow-up material, then error message "Message no. 61224 -Multi Level Discontinuation not suported" will be generated when you try to run MRP. Refer Note 398238 - Error message 61224 for parts provided
    For more information on Discontinuation data, refer Concept of Discontinuation Data - Material Master and BOM
    Thanks & Regards,
    Ramagiri

  • Discontinuity and Follow-up Materials for Finish Goods

    Dear all,
    We have used for a long time the Discontinuity functionality and Follow-up Materials for Raw and Packaging materials (components in BOMs).
    We would like to use the same functionalities for Finish Goods, but after setting fields in MRP4 View, it seems not to work as it did for components.
    Is it possible to reproduce the same effect in Finish Goods as we had with components, i.e., use some kind of Discontinuity and Follow-up materials for Finish Goods?
    We currently work with R/3 V.4.7.
    Thank you all in advance for any support.
    Best Regards,
    Alberto

    Dear Alberto,
    If my understanding is correct then this discontinued material concept works only for the components and not for the finished
    product during MRP.
    Discontinuation Data Use
    In MRP, the discontinuation functionality is used to transfer dependent requirements of a component to one or several follow-up
    materials, if the requirements are no longer covered by stock. You can also define a follow-up material in the bill of material.
    Check this link to explore more.
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/b1/c044d1439a11d189410000e829fbbd/frameset.htm
    Regards
    Mangalraj.S

  • Discontinued part and follow up material

    Dear Guru,
    How to use discontinued and follow up material with effective date. I am using MTS Scenario.
    Please help.
    Regards,
    Sanjay Sahoo

    Hi Sanjay,
    refer to the below link, it should answer your query:
    Re: Discontinuation Indicator - Need Guidance
    In addition to the above details:
    In material master for the material which is being discontinued, in MRP-4 view you need to maintain discontinuation indicator, effective-out date & Follow-up material.
    If you need any additional info, revert.
    If helpful award points
    Regards,
    Vivek

  • Discontinuation indicator and follow up material.

    Hi,
    I am facing the strange issue for which i need your expertise. The requirement is like:
    1. "X" material is discontinued and "Y" is as follow-up in two plants A & B. Discontinaution group and follow-up group has also been assigned in the BOM.
    2. Now The client want to reverse the settings . means "Y" should be discontinued and "X" should be follow-up in both plants A & B.
    Now I have removed the discontinuation indicator and follow up material from "X" in both plants. But when I am going to discontinue the "Y" material and putting " X" as a follow-up material, The system is giving the message "The specified follow-up material results in recursiveness
    Message no. M3609
    Diagnosis
    You have entered a follow-up material. However, the BOM explosion for the follow-up material leads to the discontinued material, resulting in unpermissible recursiveness.
    Procedure
    Enter another follow-up material or cancel the entry.
    Please suggest me where I am missing in my settings and what is the reason for this message.
    Regards
    Deepak Sharma

    Dear ,
    Check the following  :
    1.Validity of the Bill Of Material or any deletion flag is set in the present BOM.
    2.Please check the following SAP notes :
    Note 161742 - Consulting note: BOM recursion/low-level code 999
    Note 839879 - Trace 'BOM is recursive'
    Note 139517 - Recursiveness for follow-up materials
    Note 42891 - Recursiveness check
    Hope this will help you to figure it out
    Regards
    JH

  • Trnsfr Rqmnt created via PP for discontinuation mateiral and follow up mat

    Hi,
    Production order was created and it has PN A which has been set for discontinuation (1) with follow up material B. The effective out date is in the future.
    When generating WM Picklist, TR was created for both parts and issued. On confirmation only the part marked with discontinuation was consumed.
    How can i not generated TR for the follow up part?
    Thanks
    Jithin

    In the production order components details, there is a column for Discontinuation of the components.
    If you do not want the TR to be generated for follow up material, then in the material master(MRP 4) view of the parent component remove the followup material first and then uncheck the Discontinuation column in the order.
    If you want to discontinue the parent component from now with a followup material put "5" into the column it.It also has a option of simple discontinuation as "1" where in TR for the followup material will not be generated.

  • Query rewrites with Nested materialized views with different aggregations

    Platform used : Oracle 11g.
    Here is a simple fact table (with measures m1,m2) and dimensions (a) Location (b) Calendar and (c) Product. The business problem is that aggregation operator for measure m1,m2 are different along location dimension and Calendar dimension. The intention is to preaggregate the measures for a product along the calendar dimension and Location dimension and store it as materialized views.
    The direct option is to define a materialized view with Inline queries (Because of the different aggrergation operator, it is not possible to write a query without Inline query). http://download-uk.oracle.com/docs/cd/B28359_01/server.111/b28313/qradv.htm#BABEAJBF documents the limitations that it works only for 'Text match' and 'Equivalent queries' and that is too limiting.
    So decided to have nested materialized view, with first view having just joins(my_dim_mvw_joins), the second view having aggregations along Calendar dimension (my_dim_mvw_calendar) and third view having aggregations along the Location dimension(my_dim_mvw_location). Obviously I do not want the query I fire to know about materialized views and I fire it against the fact table. I see that for the fired query (Which needs aggregations along both Calendar and Location), is rewritten with just second materialized view but not the third. (Had set QUERY_REWRITE_INTEGRITY as TRUSTED) .
    Wanted to know whether there are limitations on Query Writes with nested materialized views? Thanks
    (Have given a simple testable example below. Pls ignore the values given in 'CALENDAR_IDs', 'PRODUCT_IDs' etc as they are the same for all the queries)
    -- Calendar hierarchy table
    CREATE TABLE CALENDAR_HIERARCHY_TREE
    (     "CALENDAR_ID" NUMBER(5,0) NOT NULL ENABLE,
    "HIERARCHY1_ID" NUMBER(5,0),
    "HIERARCHY2_ID" NUMBER(5,0),
    "HIERARCHY3_ID" NUMBER(5,0),
    "HIERARCHY4_ID" NUMBER(5,0),
    CONSTRAINT "CALENDAR_HIERARCHY_TREE_PK" PRIMARY KEY ("CALENDAR_ID")
    -- Location hierarchy table
    CREATE TABLE LOCATION_HIERARCHY_TREE
    (     "LOCATION_ID" NUMBER(3,0) NOT NULL ENABLE,
    "HIERARCHY1_ID" NUMBER(3,0),
    "HIERARCHY2_ID" NUMBER(3,0),
    "HIERARCHY3_ID" NUMBER(3,0),
    "HIERARCHY4_ID" NUMBER(3,0),
    CONSTRAINT "LOCATION_HIERARCHY_TREE_PK" PRIMARY KEY ("LOCATION_ID")
    -- Product hierarchy table
    CREATE TABLE PRODUCT_HIERARCHY_TREE
    (     "PRODUCT_ID" NUMBER(3,0) NOT NULL ENABLE,
         "HIERARCHY1_ID" NUMBER(3,0),
         "HIERARCHY2_ID" NUMBER(3,0),
         "HIERARCHY3_ID" NUMBER(3,0),
         "HIERARCHY4_ID" NUMBER(3,0),
         "HIERARCHY5_ID" NUMBER(3,0),
         "HIERARCHY6_ID" NUMBER(3,0),
         CONSTRAINT "PRODUCT_HIERARCHY_TREE_PK" PRIMARY KEY ("PRODUCT_ID")
    -- Fact table
    CREATE TABLE RETAILER_SALES_TBL
    (     "PRODUCT_ID" NUMBER,
    "PRODUCT_KEY" VARCHAR2(50 BYTE),
    "PLAN_ID" NUMBER,
    "PLAN_PERIOD_ID" NUMBER,
    "PERIOD_ID" NUMBER(5,0),
    "M1" NUMBER,
    "M2" NUMBER,
    "M3" NUMBER,
    "M4" NUMBER,
    "M5" NUMBER,
    "M6" NUMBER,
    "M7" NUMBER,
    "M8" NUMBER,
    "LOCATION_ID" NUMBER(3,0),
    "M9" NUMBER,
    CONSTRAINT "RETAILER_SALES_TBL_LOCATI_FK1" FOREIGN KEY ("LOCATION_ID")
    REFERENCES LOCATION_HIERARCHY_TREE ("LOCATION_ID") ENABLE,
    CONSTRAINT "RETAILER_SALES_TBL_PRODUC_FK1" FOREIGN KEY ("PRODUCT_ID")
    REFERENCES PRODUCT_HIERARCHY_TREE ("PRODUCT_ID") ENABLE,
    CONSTRAINT "RETAILER_SALES_TBL_CALEND_FK1" FOREIGN KEY ("PERIOD_ID")
    REFERENCES CALENDAR_HIERARCHY_TREE ("CALENDAR_ID") ENABLE
    -- Location dimension definition to promote query rewrite
    create DIMENSION LOCATION_DIM
    LEVEL CHAIN IS LOCATION_HIERARCHY_TREE.HIERARCHY1_ID
    LEVEL CONSUMER_SEGMENT IS LOCATION_HIERARCHY_TREE.HIERARCHY3_ID
    LEVEL STORE IS LOCATION_HIERARCHY_TREE.LOCATION_ID
    LEVEL TRADING_AREA IS LOCATION_HIERARCHY_TREE.HIERARCHY2_ID
    HIERARCHY PROD_ROLLUP (
    STORE CHILD OF
    CONSUMER_SEGMENT CHILD OF
    TRADING_AREA CHILD OF
    CHAIN
    -- Calendar dimension definition
    create DIMENSION CALENDAR_DIM
    LEVEL MONTH IS CALENDAR_HIERARCHY_TREE.HIERARCHY3_ID
    LEVEL QUARTER IS CALENDAR_HIERARCHY_TREE.HIERARCHY2_ID
    LEVEL WEEK IS CALENDAR_HIERARCHY_TREE.CALENDAR_ID
    LEVEL YEAR IS CALENDAR_HIERARCHY_TREE.HIERARCHY1_ID
    HIERARCHY CALENDAR_ROLLUP (
    WEEK CHILD OF
    MONTH CHILD OF
    QUARTER CHILD OF
    YEAR
    -- Materialized view with just joins needed for other views
    CREATE MATERIALIZED VIEW my_dim_mvw_joins build immediate refresh complete enable query rewrite as
    select product_id, lht.HIERARCHY1_ID, lht.HIERARCHY2_ID, lht.HIERARCHY3_ID, lht.location_id, cht.HIERARCHY1_ID year,
    cht.HIERARCHY2_ID quarter, cht.HIERARCHY3_ID month, cht.calendar_id week, m1, m3, m7, m9
    from retailer_sales_tbl RS, calendar_hierarchy_tree cht, location_hierarchy_tree lht
    WHERE RS.period_id = cht.CALENDAR_ID
    and RS.location_id = lht.location_id
    and cht.CALENDAR_ID in (10,236,237,238,239,608,609,610,611,612,613,614,615,616,617,618,619,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477)
    AND product_id IN (5, 6, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20)
    AND lht.location_id IN (2, 3, 11, 12, 13, 14, 15, 4, 16, 17, 18, 19, 20)
    -- Materialized view which aggregate along calendar dimension
    CREATE MATERIALIZED VIEW my_dim_mvw_calendar build immediate refresh complete enable query rewrite as
    select product_id, HIERARCHY1_ID , HIERARCHY2_ID , HIERARCHY3_ID ,location_id, year, quarter, month, week,
    sum(m1) m1_total, sum(m3) m3_total, sum(m7) m7_total, sum(m9) m9_total,
    GROUPING_ID(product_id, location_id, year, quarter, month, week) dim_mvw_gid
    from my_dim_mvw_joins
    GROUP BY product_id, HIERARCHY1_ID , HIERARCHY2_ID , HIERARCHY3_ID , location_id,
    rollup (year, quarter, month, week);
    -- Materialized view which aggregate along Location dimension
    CREATE MATERIALIZED VIEW my_dim_mvw_location build immediate refresh complete enable query rewrite as
    select product_id, year, quarter, month, week, HIERARCHY1_ID, HIERARCHY2_ID, HIERARCHY3_ID, location_id,
    sum(m1_total) m1_total_1, sum(m3_total) m3_total_1, sum(m7_total) m7_total_1, sum(m9_total) m9_total_1,
    GROUPING_ID(product_id, HIERARCHY1_ID, HIERARCHY2_ID, HIERARCHY3_ID, location_id, year, quarter, month, week) dim_mvw_gid
    from my_dim_mvw_calendar
    GROUP BY product_id, year, quarter, month, week,
    rollup (HIERARCHY1_ID, HIERARCHY2_ID, HIERARCHY3_ID, location_id)
    -- SQL Query Fired (for simplicity have used SUM as aggregation operator for both, but they will be different)
    select product_id, year, HIERARCHY1_ID, HIERARCHY2_ID,
    sum(m1_total) m1_total_1, sum(m3_total) m3_total_1, sum(m7_total) m7_total_1, sum(m9_total) m9_total_1
    from
    select product_id, HIERARCHY1_ID , HIERARCHY2_ID , year,
    sum(m1) m1_total, sum(m3) m3_total, sum(m7) m7_total, sum(m9) m9_total
    from
    select product_id, lht.HIERARCHY1_ID , lht.HIERARCHY2_ID , lht.HIERARCHY3_ID ,lht.location_id, cht.HIERARCHY1_ID year, cht.HIERARCHY2_ID quarter, cht.HIERARCHY3_ID month, cht.calendar_id week,m1,m3,m7,m9
    from
    retailer_sales_tbl RS, calendar_hierarchy_tree cht, location_hierarchy_tree lht
    WHERE RS.period_id = cht.CALENDAR_ID
    and RS.location_id = lht.location_id
    and cht.CALENDAR_ID in (10,236,237,238,239,608,609,610,611,612,613,614,615,616,617,618,619,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477)
    AND product_id IN (5, 6, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20)
    AND lht.location_id IN (2, 3, 11, 12, 13, 14, 15, 4, 16, 17, 18, 19, 20)
    GROUP BY product_id, HIERARCHY1_ID , HIERARCHY2_ID , HIERARCHY3_ID , location_id, year
    ) sales_time
    GROUP BY product_id, year,HIERARCHY1_ID, HIERARCHY2_ID
    This Query rewrites only with my_dim_mvw_calendar. (as saw in Query Plan and EXPLAIN_MVIEW). But we would like it to use my_dim_mvw_location as that has aggregations for both dimensions.

    blackhole001 wrote:
    Hi all,
    I'm trying to make my programmer's life easier by creating a database view for them to query the data, so they don't have to worry about joining tables. This sounds like a pretty horrible idea. I say this because you will eventually end up with programmers that know nothing about your data model and how to properly interact with it.
    Additionally, what you will get is a developer that takes one of your views and see's that of the 20 columns in it, it has 4 that he needs. If all those 4 columns comes from a simple 2 table join, but the view has 8 tables, you're wasting a tonne of resources by using the view (and heaven forbid they have to join that view to another view to get 4 of the 20 columns from that other view as well).
    Ideally you'd write stored routines that satisfy exactly what is required (if you are the database resource and these other programmers are java, .net, etc... based) and the front end developers would call those routines customized for an exact purpose.
    Creating views is not bad, but it's by no means a proper solution to having developers not learn or understand SQL and/or the data model.

  • Link material type and item category.

    Hi,
    Can you brief me on how following setting in SPRO works?
    Plant maintenance - Maintenance and service processing - Maintenance and service order - General data - Define default values for componenet item category
    When i checked, this setting is to link item category with the material type and item category is defined based on the material type and maintenance plant. But what is the relation in term of the order type i.e. whenever i create any order with a specifica order type, the default item category should get reflected on the componenets tab of the order?
    Is it possible?
    Can you guide me how to do this setting.
    Thansks

    Hi,
    Yes it is posible to make all order types item category mark as stcok item "L" as default value. Very well u can set it at following menu path under PM&CS Node
    Maintenance and Service Orders
    Functions and Settings for Order Types
    General Data
    Define Default Values for Component Item Categories
    Ramesh

  • Problem in fast refreshing nested materialized views

    Hi all,
    While developing an ODS(Operational Data Store) system, i've created base materialized views from production database to ODS database which would use fast refresh. Now, i need to create nested Materialized views on these base MViews which contains joins and aggregations which should refresh on FAST mechanism.
    But while doing so, got several problems though Nested materialized views can be built using Complete Mechanism. The reporting queries is important and we want it should not hit the production database, rather it should hit the ODS db. But we are failing to build the Nested Materialized views which works on FAST.
    I tried google, oracle docs but all in vain. i tried to do a simple testing which also failed. I would be grateful if anyone can help in in this regard. I'm attaching the test case experimented,
    SCOTT >CREATE MATERIALIZED VIEW LOG ON EMP
    2 WITH ROWID, SEQUENCE(EMPNO, ENAME, JOB,
    3 MGR, HIREDATE, SAL,
    4 COMM, DEPTNO)
    5 INCLUDING NEW VALUES;
    Materialized view log created.
    Elapsed: 00:00:00.03
    SCOTT >
    SCOTT >CREATE MATERIALIZED VIEW LOG ON DEPT
    2 WITH ROWID, SEQUENCE(DEPTNO, DNAME, LOC)
    3 INCLUDING NEW VALUES;
    Materialized view log created.
    Elapsed: 00:00:00.06
    SCOTT >
    SCOTT >CREATE MATERIALIZED VIEW MV_EMP
    2 NOCACHE
    3 ENABLE ROW MOVEMENT
    4 NOLOGGING
    5 NOCOMPRESS
    6 PARALLEL(DEGREE DEFAULT INSTANCES DEFAULT)
    7 BUILD IMMEDIATE
    8 REFRESH FAST ON DEMAND
    9 WITH ROWID
    10 ENABLE QUERY REWRITE
    11 AS
    12 SELECT * FROM EMP;
    Materialized view created.
    Elapsed: 00:00:00.21
    SCOTT >
    SCOTT >CREATE MATERIALIZED VIEW MV_DEPT
    2 NOCACHE
    3 ENABLE ROW MOVEMENT
    4 NOLOGGING
    5 NOCOMPRESS
    6 PARALLEL(DEGREE DEFAULT INSTANCES DEFAULT)
    7 BUILD IMMEDIATE
    8 REFRESH FAST ON DEMAND
    9 WITH ROWID
    10 ENABLE QUERY REWRITE
    11 AS
    12 SELECT * FROM DEPT;
    Materialized view created.
    Elapsed: 00:00:00.14
    SCOTT >CREATE MATERIALIZED VIEW LOG ON MV_EMP
    2 WITH ROWID, SEQUENCE(EMPNO, ENAME, JOB,
    3 MGR, HIREDATE, SAL,
    4 COMM, DEPTNO)
    5 INCLUDING NEW VALUES;
    Materialized view log created.
    Elapsed: 00:00:00.04
    SCOTT >
    SCOTT >CREATE MATERIALIZED VIEW LOG ON MV_DEPT
    2 WITH ROWID, SEQUENCE(DEPTNO, DNAME, LOC)
    3 INCLUDING NEW VALUES;
    Materialized view log created.
    Elapsed: 00:00:00.03
    SCOTT >
    SCOTT >CREATE MATERIALIZED VIEW MV_EMP_DEPT
    2 NOCACHE
    3 ENABLE ROW MOVEMENT
    4 NOLOGGING
    5 NOCOMPRESS
    6 PARALLEL(DEGREE DEFAULT INSTANCES DEFAULT)
    7 BUILD IMMEDIATE
    8 REFRESH FAST ON DEMAND
    9 WITH ROWID
    10 ENABLE QUERY REWRITE
    11 AS
    12 SELECT D.ROWID DEPT_ROWID, E.ROWID EMP_ROWID, E.ENAME, D.DNAME, D.LOC, E.JOB, E.SAL
    13 FROM MV_EMP E,
    14 MV_DEPT D
    15 WHERE E.DEPTNO=D.DEPTNO;
    FROM MV_EMP E,
    ERROR at line 13:
    ORA-12053: this is not a valid nested materialized view
    Elapsed: 00:00:00.17
    SCOTT >
    SCOTT >CREATE MATERIALIZED VIEW MV_EMP_DEPT
    2 NOCACHE
    3 ENABLE ROW MOVEMENT
    4 NOLOGGING
    5 NOCOMPRESS
    6 PARALLEL(DEGREE DEFAULT INSTANCES DEFAULT)
    7 BUILD IMMEDIATE
    8 REFRESH FORCE ON DEMAND
    9 WITH ROWID
    10 ENABLE QUERY REWRITE
    11 AS
    12 SELECT D.ROWID DEPT_ROWID, E.ROWID EMP_ROWID, E.ENAME, D.DNAME, D.LOC, E.JOB, E.SAL
    13 FROM MV_EMP E,
    14 MV_DEPT D
    15 WHERE E.DEPTNO=D.DEPTNO;
    Materialized view created.
    Elapsed: 00:00:00.25
    SCOTT >
    SCOTT >EXECUTE DBMS_MVIEW.REFRESH('MV_EMP','F');
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.04
    SCOTT >EXECUTE DBMS_MVIEW.REFRESH('MV_DEPT','F');
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.04
    SCOTT >EXECUTE DBMS_MVIEW.REFRESH('MV_EMP_DEPT','F');
    BEGIN DBMS_MVIEW.REFRESH('MV_EMP_DEPT','F'); END;
    ERROR at line 1:
    ORA-12004: REFRESH FAST cannot be used for materialized view "SCOTT"."MV_EMP_DEPT"
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2254
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2460
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2429
    ORA-06512: at line 1
    Elapsed: 00:00:00.11
    SCOTT >EXECUTE DBMS_MVIEW.REFRESH('MV_EMP_DEPT','C');
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.35
    SCOTT >

    Sorry,
    By mistake this got posted in the CERTIFICATION forum,
    you can view the same question in the following link:
    Problem in fast refreshing nested materialized views

  • I bought a brand new mac and follow through setting up process with my apple id but when I open App Store I don't see lion into the purchases list. why?

    I bought a brand new mac and follow through setting up process with my apple id but when I open App Store I don't see lion into the purchases list. why?

    Updates come through Software Update not the App Store. If you have to reinstall Lion that is done via Internet Recovery.
    OS X Lion- About Lion Recovery
    OS X Lion- Run Software Update to use Lion Internet Recovery
    Lion maintenance and recovery operate via the Recovery HD. It's possible to create a separate recovery disk on a flash drive using OS X Lion: About Lion Recovery Disk Assistant.
    To boot into the Recovery HD:
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.

  • Regarding Material Determination and free goods determination

    Hi Gurus,
                 I understand the Material Determination to be substitution of a new material for the old one for any possible reasons such as sales Campaign,non availability etc.
    Could anyone one explain the concept whether material determination and Free good determination can co-exist in a sales order ?
    How to substitute by material determination procedure for a free good in a sales order?
    Regards,
    S.Ravi kumar

    Hi.,
              We can use material determination and free goods,as per my knowledge material determination takes first and to the swapped material free goods determiination takes place
    Award points if helpful
    Narayana

  • How to change material type and industrial sector of the exsisting material

    Hi,
    There is an issue where user wants to change material type and industrial sector of the exsisting material .Is  it posible to do so??
    IF not ,how can we delete that material from material master so that another material with same number and required material type and industrial sector  can be created.
    Points will be definitely rewarded.
    Thanks
    Rohit

    Hi Rohit,
    You can change the material type in MMAM trxn code if the material dosenot conatain any open purchase requisitions, open reservations & open purchase orders. Also material stock should be zero.
    Remember the new material type should have same attributes same as old material type.
    OLD Material New Material
    1) Standard Price 1) Standard Price
    2) Manufacture part 2) Manufacture part
    profile actvated profile actvated
    3) Quantity & Value 3) Quantity & Value
    Updation in all areas Updation in all areas
    4) should have same GL 4) Should have same GL acs
    acs
    It is not possible to change Industry sector once created.
    If you want to delete the Material, you can flag it in MM06 trxn code.
    Reg,
    Ashok
    Dont forget to Assign points if useful.

  • Variance between Material Ledger and General Ledger of

    There is again a variance between Material Ledger and General Ledger of
    7.026,64 (Tcode MB5L) as it was already in $$100036500(G/L).
    The strange thing is, that there is only a difference in the GL Account
    Balance report (FS10N) for S240077000(G/L ). In the Line Item report (FBL3N)
    all documents are available. This issue impacts at least the Balance
    carry forward negativ at the year end, because the system will forward
    the the amount of the balance for S240077000, which is now 7.026,64 to
    less.
    Ther first investigations results:
    - all Material- and FI documents are available.
    - the variances in June refer to FI-documnets 4900015286 and 4900015293.
    - the documents, e.g. 4900015292 and 4900015287, are correct and was
    posted at the same day by the same user and with the same transaction
    MI07.
    - there are no differences for the posted materials identificable from
    the other materials

    Material Ledger/Actual costing  MLAC
    MLAC is used where the FG cost varies every month due to external procurement variation.
    Ex: Jan 2011
    FG cost of manufcature internally = 100
    FG cost of procurement externally = 120 ( Company procures due to capacity constraint)
    FG Standard price at the end of month = 110...This is standard price of FG
    Due to heavy fluctuations in the month of February 2011 in procurement...
    Ex: Feb 2011
    FG cost of manufcature internally = 140
    FG cost of procurement externally = 460 ( Company procures due to capacity constraint)
    FG Standard price at the end of month = 300...This is standard price of FG.
    The variance is very high in Feb 2011 and company want to absorb this variance in Feb 2011 iteslef hence they will use MLAC.
    So if the variance is within reasonable limits company usually do not follow MLAC.
    Where as if the variance is very high company usually follow MLAC.
    In Pharma Industry usually the variance is very high on month to month basis hence they follow MLAC.
    Where as in Industrial Mahcineery Manufacturing Company the variance is with in reasonable limits hence they do not follow MLAC. Ofcourse they can use MLAC as well.
    Srinivas

  • Error in Smartform:  Nested output of tables is not possible....

    Hi ,
      I am getting the below error while executing the smartform.
    Nested output of tables is not possible
    Message ID: SSFCOMPOSER
    Message Numer : 171
    could any one plese help me?
    Thanks & Regards,
    surendra

    Dear
    AS i reply in thread ,
    this error comes  with  some problem in functional Module .
    as we know that two FM use in smartforms -
    SSF_function_mudule
    call   funcion .
    so you check both and  i hope you handle this problem .
    Regards,
    Ravi

  • No bluetooth in my G500 and is it possible to install a SSD in place of existing HDD?

    Started a new Thread as per your suggestions
    This laptop is bought on Thanks giving day from best buy and I'm not sure if there is bluetooth, from beginning, I'm using Wifi. As per the website and maintenance manual there exists a bluetooth. This is no good for a brand new laptop. My friends already cautioned me from buying items listed in thanks giving sale as they are either faulty or rejected items. But this laptop is not listed in the sale and hence I bought it. But I'm not happy, as the lenovo website lists bluetooth but I'm not sure if the laptop has bluetooth. The customer support too insists me to send laptop to lenovo for a refit or replacement. But I'm not interested as I need to move on and I can't wait till I get a replacement.
    Now I will try based on your suggestions!
    1) I will check in Drivers folder for anything that says bluetooth - NO. But the maintenance manual says bluetooth is integrated with Wif-fi. Today I'm trying with Ethernet card.
    2) I will make sure I will download the drivers for bluetooth and model from below link
    http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS035531
    I will  Hook up my ethernet cable. Now should I directly start installing the drivers to detect bluetooth or should I reboot my laptop
    3) Can I install a SSD in addition to my existing HDD (somewhere in web it says to enable TRIM functionality too)?
    or is it possible to install a SSD by removing the existing HDD?
    Solved!
    Go to Solution.

    hi  beswaminathan,
    Usually, if a machine comes with a bluetooth device, you can check it under Device Manager > Bluetooth (a generic Windows driver will used if there's no OEM driver installed- see image below).
    Looking at the spare parts, the one below is the Wi-Fi card that has a built-in bluetooth for this model. If you have a different Wi-Fi adapter, it's possible that it's Wi-Fi only. Try to search the specs in google and observe.
    WLAN LITEON WB225 1X1 BGN+BT4.0 HMC
    For the SSD, there appears to be no slot for an mSATA or M.2 (NGFF) SSD at the back side. You will need to remove the stock 2.5" HDD and replace it with a 2.5" SSD.
    Link to picture
    For TRIM to be enabled on an SSD, you will need to re-install Windows in AHCI mode and follow these tips and tricks..
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for

  • Multiple devices with seperate icloud accounts

    Ok, I am going to try and explain this as best as possible.  On my itunes account between me and my fiancee we have 2 computers, 2 ipads and 2 iphones.  He set up an icloud account that is showing my email address as the itunes account but it is then

  • Mac Mini (OSX6) freezes on boot if USB cable to KVM connected

    I have a Mac Mini (OS X 10.6.8) that has started freezing with a solid grey screen on boot up (i.e., no Apple logo, no spinning wheel). The work around is relatively easy: all I need to do is disconnect the USB cable running to my ATEN KVM CS1768 swi

  • Greyscale images convert to CMYK

    I have created an Illustrator file containing a spot color and a grayscale placed image. When saving as a pdf, the Grayscale image separates (or converts) to CMYK. Am on deadline and appreciate any help.

  • How to upgrade Crystal report to 10.5.3700

    Hi All, I have standalone Crystal report 10 and VS2008 Professional 2008 SP1 Installed. the version number for crystal report shown for Crystal report 10 with SP6 is 10.0.1.2522 the version number for VS2008 built in crystal report is 10.5.1943. I ha

  • After Effects CS6 super long render times.

    I am trying to render multiple 30 second long compositions and the renders are reaching over 5 hours each. There is nothing special in any of the compositions. I have rendered these same compositions in the past with minor changes in AE CS5 and they