Materialized view ....subquery expression not allowed

Hi,
I have been assigned to create a materialized view using the following subquery.
When I executed it is giving error ora-22818:subquery expressions not allowed here. The same query is good for view but not MV.
Can anybody help me in writing MV for my query.
select rownum as ROWNUMBER,f.id Folder_ID, concatyear(f.id) year_name,
(select nvl(fr.requestor,fr.requested_by) from fts_folder_request fr where
fr.folder_id=f.id and fr.status=0 ) Pending_Requestor,
(select nvl(fr.requestor,fr.requested_by)
from fts_folder_request fr,fts_folder_checkout_history fch where
fr.folder_id=f.id and fch.folder_requested=fr.id and fch.return_date is null) CheckOut_To from fts_folder f;
Thanks in advance.

Any help in creating MV for my query.It contains subquery expressions that have to be avoided in MV.
select rownum as ROWNUMBER,f.id Folder_ID, concatyear(f.id) year_name,
(select nvl(fr.requestor,fr.requested_by) from fts_folder_request fr where
fr.folder_id=f.id and fr.status=0 ) Pending_Requestor,
(select nvl(fr.requestor,fr.requested_by)
from fts_folder_request fr,fts_folder_checkout_history fch where
fr.folder_id=f.id and fch.folder_requested=fr.id and fch.return_date is null) CheckOut_To from fts_folder f;
Thanks.
Message was edited by:
user617694

Similar Messages

  • Help regarding Materialized view ( subquery expression not allowed here )

    Hi all,
    while creating materialized view i got following error
    ORA- 22818
    subquery expression not allowed here
    following is my query
    CREATE  MATERIALIZED VIEW MV_NAV_REC
    BUILD IMMEDIATE
    REFRESH COMPLETE ON DEMAND
    as
    select folio_no FOLIONO,CHKDIGIT as Check_Digit,sch_code SCHEMECODE, sysdate as FOLIODATE ,
         (select case when count(distinct SUBBROKERCODE) =1 then to_char(max(SUBBROKERCODE)) else 'Multiple Broker' end   from transaction_st
         where folio_no = tst.folio_no
         group by  folio_no)  ARN_Number ,
         (select sum(case when tran_type in ('PURCHASE','SWITCH IN') then UNITS else 0 - UNITS end ) from transaction_st
         where folio_no = tst.folio_no AND SCH_CODE = tst.sch_code
         group by  folio_no,sch_code)  NUM_UNITS_NEW ,
    --SUM (case when tran_type NOT in ('REDEMPTION','SWITCH OUT') THEN UNITS ELSE 0 - UNITS END )  AS  Num_Units,
         (select sum(case when tran_type in ('PURCHASE','SWITCH IN') then AMOUNT else 0 - AMOUNT end ) from transaction_st
         where folio_no = tst.folio_no AND SCH_CODE = tst.sch_code
         group by  folio_no,SCH_CODE) as NUM_AMOUNT_NEW ,
    --SUM (case when tran_type NOT in ('REDEMPTION','SWITCH OUT') THEN AMOUNT ELSE 0 -AMOUNT  END )  AS  Scheme_Amount,
    sum(  CASE WHEN upper(tran_type) NOT in ('REDEMPTION','SWITCH OUT') THEN
                 units * (select nav_rs from nav_rec where nav_rec.sch_code = tst.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy'))
               ELSE  (0 - units) * (select nav_rs from nav_rec where nav_rec.sch_code = tst.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy')) END  ) Scheme_Valuation ,
    null as SCHEMEPHRASEID ,
    null as "Prefered Mode of SOA",
    (  select sum(      case when upper(tran_type) NOT in ('REDEMPTION','SWITCH OUT') THEN AMOUNT ELSE 0 - AMOUNT END  ) from transaction_st t where t.folio_no = tst.folio_no group by folio_no )  as Folio_Amount,
                   select sum(CASE when upper(tran_type) NOT in ('REDEMPTION','SWITCH OUT') THEN
                                              units * ( select nav_rs from nav_rec where nav_rec.sch_code = ts.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy'))
                                  ELSE
                                      (0 - units) * ( select nav_rs from nav_rec where nav_rec.sch_code = ts.sch_code and nav_rec."Date" = /*trunc(sysdate)*/to_date('23/03/2009','dd/mm/yyyy')) END     
                                  )  from transaction_st ts where ts.folio_no =tst.folio_no  group by ts.folio_no
    ) as Folio_Valuation
    from transaction_st   tst 
    group by folio_no ,sch_code,CHKDIGIT
    order by folio_no , SCH_CODE
    please help me

    Hi,
    You cannot use scalar subqueries in a materialized view.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4110947624538#22981269011674
    edit
    From 10g doc:
    ORA-22818: subquery expressions not allowed here
    Cause: An attempt was made to use a subquery expression where these are not supported.
    Action: Rewrite the statement without the subquery expression.
    (http://download.oracle.com/docs/cd/B19306_01/server.102/b14219/e19400.htm#sthref6020)
    Edited by: hoek on Jun 10, 2009 7:56 AM

  • Received ORA-22818 subquery expressions not allowed here when creating mate

    Hello,
    I was trying to create a materialized view to describe the referential integrity between the tables in my schema:
    create materialized view user_references
    tablespace tbspc
    build immediate
    using index
    refresh complete on demand next sysdate + 1
    as
    select uic.table_name to_table, uic.column_name to_column,
    ucc.table_name from_table, ucc.column_name from_column
    from user_ind_columns uic, user_constraints uc, user_cons_columns ucc
    where uic.index_name = uc.r_constraint_name
    and uc.constraint_name = ucc.constraint_name
    and uc.owner=upper('my_schema');
    I was able to create this MV in Oracle 9.2. It failed with the following error when I ran it against Oracle 10.1:
    from user_ind_columns uic, user_constraints uc, user_cons_columns ucc
    ERROR at line 9:
    ORA-22818: subquery expressions not allowed here
    Is not allowing subqueries in MV a new restriction in Oracle 10? Is there a workaround?
    Thanks

    Hello
    This may be a bug in your version as I can do it successfully on 10.2
    tylerd@DEV2> create materialized view user_references
      2  build immediate
      3  using index
      4  refresh complete on demand next sysdate + 1
      5  as
      6  select uic.table_name to_table, uic.column_name to_column,
      7  ucc.table_name from_table, ucc.column_name from_column
      8  from user_ind_columns uic, user_constraints uc, user_cons_columns ucc
      9  where uic.index_name = uc.r_constraint_name
    10  and uc.constraint_name = ucc.constraint_name
    11  and uc.owner=upper('my_schema');
    Materialized view created.
    tylerd@DEV2> select * from v$version
      2  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Prod
    PL/SQL Release 10.2.0.2.0 - Production
    CORE    10.2.0.2.0      Production
    TNS for 32-bit Windows: Version 10.2.0.2.0 - Production
    NLSRTL Version 10.2.0.2.0 - Production
    5 rows selected.HTH
    David

  • ORA-22818: subquery expressions not allowed here

    I am currently optimizing my report. Before, this report has only a single query for all. But when I have revised it having subquery it is performing much more faster. The problem is, I cannot perform a calculation on my query since subquery expressions are not allowed in 'group by'. Heres my sample report:
    SELECT     ab.batch_name,
    ai.invoice_amount,
    ai.invoice_date,
    ai.invoice_num,
    ai.invoice_id,
         (SELECT     pv.vendor_name
         FROM     apps.po_vendors pv
         WHERE     pv.vendor_id = ai.vendor_id)vendor_name,
         aid.distribution_line_number,
         SUM(aid.amount * (atc.tax_rate/100))amount,
         (SELECT     gcc.segment2
         FROM     apps.gl_code_combinations gcc
         WHERE     gcc.code_combination_id = aid.dist_code_combination_id)segment2,
         (SELECT     gcc.segment5
         FROM     apps.gl_code_combinations gcc
         WHERE     gcc.code_combination_id = aid.dist_code_combination_id)segment5      
    FROM     apps.ap_batches_all ab,
              apps.ap_invoices_all ai,
              apps.ap_invoice_distributions_all aid,
              apps.ap_awt_groups aag,
              apps.ap_tax_codes_all atc
    WHERE     ab.batch_id = ai.batch_id
              AND ai.invoice_id = aid.invoice_id
              AND aag.group_id = aid.awt_group_id
    GROUP BY ab.batch_name,
    ai.invoice_amount,
    ai.invoice_date,
    ai.invoice_num,
    ai.invoice_id,
         (SELECT     pv.vendor_name
         FROM     apps.po_vendors pv
         WHERE     pv.vendor_id = ai.vendor_id),
         aid.distribution_line_number,
         (SELECT     gcc.segment2
         FROM     apps.gl_code_combinations gcc
         WHERE     gcc.code_combination_id = aid.dist_code_combination_id),
         (SELECT     gcc.segment5
         FROM     apps.gl_code_combinations gcc
         WHERE     gcc.code_combination_id = aid.dist_code_combination_id)
    Can anyone advise on what to do? I really need the computation part but at the same time I would like to optimize my report using subqueries.

    You dont need to group by the actual inline SQL/sub-query but only the columns you used from the main query ( ie, aid.dist_code_combination_id, ai.vendor_id )
    You also have to make sure that the in-line SQL you are using will return not more than 1 row.
    Also, why not just use a normal join (or outer join if necessary)?

  • ORA-22902 CURSOR expression not allowed Error Cause: CURSOR on a subquery..

    Hi,
    I found same issue in a metalink thread which is addressed in Oracle 12.1 which doesn't help me now. I need to rewrite the below query. Does anyone have any suggestions how to go about it?
    thanks,
    April
    working in Oracle 11.2.0.3.1, windows server, doing an upgrade from 10g to 11g. Piece of code is failing with following error via TOAD
    Oracle Database Error Code ORA-22902 Description :
    CURSOR expression not allowed
    Error Cause:
    CURSOR on a subquery is allowed only in the top-level SELECT list of a query.
    The below code is returning a tree of data for projects, units within the buildings.
    Code as follows:
    SELECT LEVEL
    , p.project_id
    || NVL (p.file_ref, ' ')
    || '] ['
    || NVL (p.project_ref, ' ')
    || '] '
    || p.project_name
    || ' ( '
    || (SELECT COUNT (*)
    FROM PROJECT p1
    WHERE p1.parent_project_id = p.project_id)
    || ' sub-projects, '
    || (SELECT COUNT (*)
    FROM PROJECT_ELEMENT pe2
    WHERE pe2.project_id = p.project_id)
    || ' elements)' AS project_description
    CURSOR
    (SELECT pe.element_id
    || pe.element_ref
    || '] '
    || pe.element_name
    || ' ('
    || pe.unit_count
    || ')' AS element_description
    CURSOR
    (SELECT hu.hu_id
    || hu.hu_ref
    || '] '
    || CASE
    WHEN hu.bedroom_count IS NOT NULL
    THEN ', Bedrooms: ' || hu.bedroom_count
    ELSE NULL
    END
    || CASE
    WHEN hu.bedspace_count IS NOT NULL
    THEN ', Bedspaces: ' || hu.bedspace_count
    ELSE NULL
    END AS hu_descripton
    FROM HOUSING_UNIT hu
    WHERE hu.element_id = pe.element_id
    ORDER BY hu.hu_ref
    ) AS housing_units
    FROM PROJECT_ELEMENT pe
    WHERE pe.project_id = p.project_id
    ORDER BY pe.element_ref, pe.element_name
    ) elements
    FROM PROJECT p
    START WITH p.project_id = l_root_project_id
    CONNECT BY PRIOR p.project_id = p.parent_project_id -- connect by used with LEVEL keyword
    ORDER SIBLINGS BY p.file_ref DESC
    , p.project_ref DESC
    , p.project_name DESC;
    Edited by: AprilM on Jul 17, 2012 10:28 AM

    Interesting. I am getting even worse results on 11.2.0.1.0:
    SQL> select * from v$version
      2  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL> select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d
      2  /
    select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00905: missing keyword
    SQL> connect scott
    Enter password: *****
    Connected.
    SQL> select * from v$version
      2  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d
      2  /
    DNAME          CURSOR(SELECTENAMEFR
    ACCOUNTING     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    CLARK
    KING
    MILLER
    RESEARCH       CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    SMITH
    JONES
    SCOTT
    ADAMS
    FORD
    SALES          CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    ALLEN
    WARD
    MARTIN
    BLAKE
    TURNER
    JAMES
    6 rows selected.
    OPERATIONS     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    no rows selected
    SQL> And double CURSOR also works fine in 10g:
    SQL> select cursor(select dname,cursor(select ename from emp e where e.deptno = d.deptno) from dept d) from dual
      2  /
    CURSOR(SELECTDNAME,C
    CURSOR STATEMENT : 1
    CURSOR STATEMENT : 1
    DNAME          CURSOR(SELECTENAMEFR
    ACCOUNTING     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    CLARK
    KING
    MILLER
    RESEARCH       CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    SMITH
    JONES
    SCOTT
    ADAMS
    FORD
    SALES          CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    ENAME
    ALLEN
    WARD
    MARTIN
    BLAKE
    TURNER
    JAMES
    6 rows selected.
    OPERATIONS     CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    no rows selectedSY.
    Edited by: Solomon Yakobson on Jul 17, 2012 1:27 PM

  • Subquery is not allowed within FILTER arguments

    In a report I need to show two columns of same type but with values obtained with different criterias.
    The criterias are difined in 2 different reports
    Report
    Month, ColumnA , ColumnB, Number_of_Nights
    ColumnA refers to the actual column Member_id= criteria are defined with REPORT1 (where joined date between X and Y and market code=Z)
    ColumnB refers to the actual column Member_id=criteria are defined with REPORT2 (where joined date between A and B and market code=C)
    I can not use on ColumnA the normal filter and than filter based on results from another request, because it would apply to columnB as well.
    I need therefore to use the filter from the "Edit Formula" screen and than filter on a column and select REPORT1 for ColumnA and REPORT2 for ColumnB.
    This approach doesn't seem to work because I return :
    [nQSError: 10058] A general error has occurred. [nQSError: 22033] Subquery is not allowed within FILTER arguments. (HY000)
    How do you manage such reports?
    Thanks!!
    Edited by: user6185307 on 14.05.2012 06:00
    Edited by: user6185307 on 14.05.2012 06:01
    Edited by: user6185307 on 14.05.2012 06:02

    Try creating the report in one go...
    Instead of creating a subquery, and then a subquery using that subquery, and finally a "master" query, create the "master" query first, and within the conditions, create your subquery as you go along.
    I'm not sure whether this would work, as I don't currently have access to Discoverer!
    Alternatively, subqueries are rarely the most efficient way of processing information, so consider writing a PL/SQL function to do some of the work for you.

  • SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.

    Hi there,
    Does someone know in SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.
    Thanks,

    Hi,
    Per my knowledge,
    it is by design that the data type multiple lines of text can only use “contains” and “begins with” operators.
    You can also filter the list view using SharePoint Designer,
    Open your list AllItem.aspx page in SPD ->click “Filter” > in “Field Name” select your multipe line of text field, in “Comparison” will displayed four choices.
    Best Regards,
    Lisa Chen
    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]

  • Airport express not allowing PC or xbox on to network with WEP password

    Hi there
    Ever since we switched from PC to Mac about 5 years ago our airport express (purchased 2007) has not allowed a PC or other gaming device on to it's network. I have two MacBooks at the moment which needed to be configured with slightly different IPv4 addresses in order to be on the network. That was about a year ago when we bought a new MB and I thought it strange when both computers would not connect and it was a bit of a drama lugging both computers to the store in order for the techs to manually fix the issue.
    Now we have an international student living with us and it is very important that he is able to connect with his PC to our network. My son's DS and xbox is never allowed to connect to our network using the WEP password that we use for our Macs. It is a very frustrating situation now as I do not think that the Mac store can help us out since I asked for advice a while ago when trying to connect my son's gaming consoles and they said they could not help with non apple products. This is a little odd as I thought that Airport would connect all devices. Our internet provider cannot help us as it is NOT a modem issue.
    I should also add that at least twice a day our Macbooks 'fall off' our network and we have to turn the airport off and on in order to reboot the connection. I also have an iphone and that connects to our network although occasionally it will ask me to rejoin and prompt me to enter the password which I do but it rejects it. I usually press cancel and for some reason it connects fine despite not accepting the password.
    My question is this: Can I connect other devices to airport and if so, how? Or is our airport faulty and should I replace it? I really don't want to buy a new device if the same problem is still going to occur.
    Thanks in advance for the help.

    bump
    I'd love some feedback....anyone?

  • Materialized view - fast refresh not working on joins

    Hello,
    Is it true that fast refresh for materialized view is not possible when I do a union of 2 tables, although both tables have materialized view logs ?

    there are a number of restrictions with fast refresh, read Materialized View Fast Refresh Restrictions and ORA-12052 [ID 222843.1]
    edit: his royal kyteness has posted on this before
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:6506967884606
    Edited by: deebee_eh on Apr 25, 2012 3:13 PM

  • Nonstock material PO value should not allow to change once it picked fromPR

    Hi There,
    when create PO for non stock material it will pick price from PR to PO once it pick the value again it should not allow to change.
    so what ever value is there in PR same should be in PO also even if we try to change PO value system should not allow
    so please advise me

    Dear
    If you want to copy the price from PR to PO do the following settings
    Here we have to do:
    First create a parameter in
    SPRO>Materials Management>Purchasing>Authorization Management>Define Function
    Authorizations for Buyers
    set the following fields:
    Order price adoption, Ref. to PReq, Change source, Change
    OTy./it. cat. and with Field sel. equals to AKTH. After created
    this parameter we have to set the users profile (using SU01 Transaction) with Parameter
    EFB (Function Authorization: Purchase Order).
    After doing all the settings what i mentioned, when you create the requisition that time before saving you have to select the price adoption as net or gross than only it will copy to the po because default is do not copy
    so go Valuation tab in the requisition and in PO price field select as nte price or Gross price than save the reqs
    now if oyu create the PO you will see the price
    Regards

  • Subquery over a subquery is not allowed?

    I am trying to create subquery over another sheet which is a subquery itself, but it seems it is not allowed.
    I have the original sheet S1(A,B,C) with the items A,B,C. I create a new sheet S2(A,B,C,D) and I add an item D with the condition that the value of D is equal to the value of the item B of the original, so I create the following condition with a subquery, S2.D=S1.B. Until here everything goes fine.
    Then I want to create a new sheet S3(A,B,C,D) with the condition S3.D=S2.D. The problem is that the sheet S2 does not appear in the dialog where I should select the subquery sheet. Only the S1 appears.
    Is there anything I can do about it?
    Thank you in advance for any help.
    Th.D.

    Try creating the report in one go...
    Instead of creating a subquery, and then a subquery using that subquery, and finally a "master" query, create the "master" query first, and within the conditions, create your subquery as you go along.
    I'm not sure whether this would work, as I don't currently have access to Discoverer!
    Alternatively, subqueries are rarely the most efficient way of processing information, so consider writing a PL/SQL function to do some of the work for you.

  • Materialized Views indexed are not excluded when exporting ddl

    Hello,
    When exporting ddl of the schema, through the export function of the gui, if I disabled materialized views from the objects to be exported, then the indexes of materliazied view are not excluded of the final DDL.
    This happens on  Version 4.0.3.16, Build MAIN-16.84

    Hello,
    When exporting ddl of the schema, through the export function of the gui, if I disabled materialized views from the objects to be exported, then the indexes of materliazied view are not excluded of the final DDL.
    This happens on  Version 4.0.3.16, Build MAIN-16.84

  • Movement type for GI of material reserved from Network not allowed

    Hi Experts,
    Hope all are doing well.
    I am facing a problem in PS, I have the following scenario.
    I have some material in a storage location say 1010 - project storage location.
    I want to use that material for some project. I have created a reservation from the Network for an activity 0010 with Procurement indicator - Reservation Plan Stock and Item category L.
    After this saved the network, system generated reservation number.
    I want to issue the material against this reservation from the Project Storage Location. (its not marked as Project Stock)
    When I am trying from MIGO system says the material is not maintained for Q i.e., Project Stock.
    I checked the movement type it is 281 Q, GI Network from Project, where as I want the Movement type 221 GI for Project from own.
    The Movement type field in the Where tab of MIGO screen is in grat mode. So I cannot change that field.
    Please tell me how can I issue the material from a storage location to the project for the reservation created from the network.
    I am able to issue the material in case I am creating a manual reservation through MB21 with movement type 221.
    Please guide me on this.
    Thanks and Regards

    First yu will have to bring that much qty to project stock for that WBS element by MVT type 415 vide transfer posting. Then you can issue that qty. against the desired reservation.
    I hope this solved your problem
    Regards.
    Sanjay Bapat

  • Material Master changes are not allowing (MM02)

    Dear All,
    we have done year end activities successfully for the 2010 fiscal year. we are following January to December. In 2011 January 9th date we have activated Material ledger. after that when we try to go to material master the system is giving this error.
    "Currency was not defined at production startup
    Message no. C+040
    Diagnosis
    You have set the material ledger to productive in valuatione area DEL1. Nevertheless, information about the currency settings at the time of production startup are missing.
    System Response
    The system cannot ensure data consistency, since it is not possible to compare the current currency settings with those made at production startup.
    Procedure
    1. Make sure that the currency settings have not been changed since material ledger production startup in valuation area DEL1.
    2. Inform your system administrator."
    Even when I try to create the new material master it is showing the same error.
    Could anybody guide me how to solve this.
    Thanks and regards,
    Mr.Rao

    Hi Mr Rao ,
    Your ML currency settings are incorrect .. which is causing the issue..
    A . Have you checked the following notes which give a detailed information about Material Ledger activation: 596558 Material ledger production startup 384145 Advice note on material ledger production startup 165844 Material ledger production startup Please, check attached note 596558, which provides recommendations on Material Ledger production startup: ...before ML activation .. i hope not ..
    B Always activate the material ledger for a complete company code and copy all currencies from FI. This is the only way to ensure the reconciliation with FI. c) In addition, it is recommended that you activate the material ledger for a complete company code because the invoice verification can neither store invoices that contain materials from plants the material ledgers of which are active nor more materials from plants the material ledger of which is not active. ... Please, consider that only transactions performed after the startup will be taken into account for the actual price calculation.
    C .Now to correct it .. you have to deactive ML and correct the currencies and then re-activate ML . Have a look into SAP  : Note 53947 - Changing currencies after production startup.  Now , are e the actual activities now posted and production is active .. if yes .. the deactivating ML is a pain.
    D .If the Material ledger is already set to u201CProductiveu201D, run the report SAPRCKMJX using SE38. This report should only be run in Development or Testing environment. It is not recommended to be used in Production. It may be used in case there is no activity in the plant (no stock, no movements have happened ever). SAP recommends use of their CO-PC development support for this (OSS Note 108374).
    Please revert back for any further clarifications
    Regards
    Sarada

  • Airport express not allowing to expand range of my bigpond broadband

    i connect my airport express open airport utility choose extend network range then clicked the network and a window says this network cannot be extended and my airport express is up to date.

    Connect an Ethernet cable from one of the LAN <-> ports on your main router to the AirPort Express
    Open up AirPort Utility and click Continue to follow the guided setup
    You want to select the "Create a wireless network option" option when it is presented and then assign the same wireless netowrk name, same wireless security and same password that your main router is using to the AirPort Express as well.
    Select the Bridge Mode option when it appears...if it is not already selected for you...and finish up the configuration by clicking Update to store the settings to the AirPort Express

Maybe you are looking for

  • Upload Sales Historical Data in R/3?

    Hi Guys: We are planning to use forecased based planning MRP Procedure ( MRP Type VV ) for Material Planning , we need historical sales data to execute the forecast. can anybody tell me step by step how to upload 12 months historical data into SAP R/

  • Execution time from explain plan

    Hi How can i get the execution time of a query from explain plan (not tkprof). I don't see the execution time in the plan table output. Thanks

  • Is it possible to post docs to Dummy profit center

    Hi friends, Is it possible to post FI docs to dummy profit center. Posting for customer document. Customer Dr Bank Account Cr. system is not allowing to post document with dummy profit center. If I post document without any proft center, It is giving

  • How Can I Merge duplicate Lightroom folders

    Some how i have TWO folders of Lightroom. 1st is :C>My Pictures>Lightroom 2nd is:C>My Pictures>Lightroom>My Lightroom Photo Library>Lightroom This folder (My Lightroom Photo Library) is all my picture folders on the Drive Can I drag and drop from the

  • GTX 660 with CC 2014

    Hello, I have updated Premiere to CC 2014, and now I can't use GPU acceleration because Premiere says my GTX 660 isn't certified. Considering I bought my graphics card less than 2 months ago, it is slightly annoying, especially since I was looking fo