Getting Warning while assigning Dimension in to Model in version 10.0

Hi,
Iam getting an warning message "Control definition not valid because new Dimension are added in to Model" & "Control result was reset because new Dimension are added in to Model" while assigning Dimensions to the Model.
Please help me on this issue. Screenshot attached.
Regards,
Sudheer

Hi,
Controls might exist on this model.
To check for the existing Controls.Goto Aministartion-->Rules -->Controls .  After you adding the new dimension you have to revisit the controls which were already existing.
Thanks,
Raju

Similar Messages

  • Getting Warning while adding Dimension table to FACT LTS

    Hi,
    While i am applying join betwwen fact and Dimension at BMM level, i am getting warning as there is no join with Fact Source, even though i provided join there.
    Can any one help in this.
    thanks
    Manu

    Hi
    Make sure you have set the Content Level of all LTS of all Fact Tables...
    Double click on LTS of fact, go to Content Level --> change to Logical Level to 'Column (or) Detail Level'
    then u will not get warnings..
    Please mark helpful or correct if this helped you out

  • Getting warning while running the report

    hi all am getting warning while running the report .
    the log file is given below
    +---------------------------------------------------------------------------+
    Process Manufacturing Inventory: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXVIS_OPM_STOCK_STATEMENT module: Visaka RG1 Register
    +---------------------------------------------------------------------------+
    Current system time is 11-OCT-2011 20:42:05
    +---------------------------------------------------------------------------+
    **Starts**11-OCT-2011 20:42:05
    **Ends**11-OCT-2011 20:43:25
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    +------------- 1) PUBLISH -------------+
    Unable to find an Output Post Processor service to post-process request 15845789.
    Check that the Output Post Processor service is running.
    +--------------------------------------+
    +------------- 2) PRINT   -------------+
    Not printing the output of this request because post-processing failed.
    +--------------------------------------+
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 11-OCT-2011 20:43:25
    +---------------------------------------------------------------------------+what is mean by output post processor?
    why am getting this problem?
    Please help me to fix this problem .
    Thanks for all in advance

    Hi;
    Unable to find an Output Post Processor service to post-process request 15845789.
    Check that the Output Post Processor service is running.Check OPP Cm are up and run. Please also check logs for can see why you are getting this message
    Regard
    Helios

  • Getting warning while installing distribution certificate after device test successfully done

    I am getting warning when i created appstore method and installed distributted certificate: "A valid signing identity matching this profile could not be found in you keychain". Any solution for this..remaining all done. struck in this..

    I have given a proper entry in hosts file. The same problem persists. How did you restart the installation? Did you clean your previous installation?
    Might be because of corrupt zip files ?Could be. How did you create the stage area?

  • Getting error while assigning ABAP Query to Tr.Code

    Hi Guys,
    There is a problem iam facing with ABAP query while transporting which need to solved asap. It will very greatfull if u guys can resolve this problem.
    My problem is, I created one ABAP Query with Name ASSETOVERVIEW. I had transported this even, now when iam going to assign it to one transaction code with se93 lets say ZAOR. I need to give its description and program name in se93 right. now my question is what is program name i need to give in se93. Bcoz in SQ01 where i created the query, there is no name as 'program name' rather there is 'Name' in that we will create the query name i.e, ASSETOVERVIEW. In se93 u give tr.code and when u see down there will be radiobuttons in 'start object',in that i had checked program and selection screen (report transaction) is this right button i had checked or any other i need to check?. I had assigned this name i.e,ASSETOVERVIEW and development class and then when i check the name for syntax check its giving "'ASSETOVERVIEW' does not exist". I don't understand what program name i need to give.
    If u guys can help me out with this problem it will be very much appreciable and definetly can get the reward points.
    Thanks for as usual help in advance.
    Regards.

    Hi omer,
    1. Just run the query.
    2. one selection screen will come
    3. then using SYSTEM---->STATUS, (from menu)
       look for the program name
    4. the program name will be something wired foramt.
    /asdfasdf/asdfdas etc.
    5. Give that name in se93.
    regards,
    amit m.

  • Urgent: Getting warn while changing a field value...How to disable this?

    Hi All,
    I have one customizated PG which is getting different parameter value from a seeded PG.
    Now in Seeded PG there is multiple line (multiple line requisition) with Qualtity & Price field. We have added one link for each line. This link is custom one. Now what we are facing is whenever user change the vakue in Quantity or Price User getting "The changes you made to this page have not been saved. If you continue, the changes will be discarded. Do you wish to continue." warning. Due to this the current change is not reflecting in next PG that is custom PG.
    I have tried to make false of the property of "Warn About Changes" of that field. Though m not able to turn of that warning. Could you please let me know what can be done to turn of this waring?
    Thanks
    Debashree

    Hi,
    Here is the code I m using now...But m getting null pointer exception when I M clicking the last line of the multiple line requisition.
    String reqLine = pageContext.getParameter("RequisitionLineId");
    if(pageContext.isLoggingEnabled(1))
    pageContext.writeDiagnostics(this, "processFormRequest reqLine from parameter " + reqLine, 1);
    ChangeOrderAMImpl am = (ChangeOrderAMImpl)pageContext.getApplicationModule(webBean);
    ChangeOrderLinesVOImpl vo = am.getChangeOrderLinesVO();
    //Debashree
    int length = vo.getRowCount();
    if(pageContext.isLoggingEnabled(1))
    pageContext.writeDiagnostics(this, " row.length " + length, 1);
    //Debashree
    ChangeOrderLinesVORowImpl row = (ChangeOrderLinesVORowImpl)vo.first();
    String strQuantity = null;
    String strUnitPrc = null;
    do
    if(!vo.hasNext())
    break;
    if(pageContext.isLoggingEnabled(1))
    pageContext.writeDiagnostics(this, " row.getRequisitionLineId() " + row.getRequisitionLineId(), 1);
    pageContext.writeDiagnostics(this, " reqLine " + reqLine, 1);
    pageContext.writeDiagnostics(this, " row.getQuantity() " + row.getQuantity(), 1);
    pageContext.writeDiagnostics(this, " row.getUnitPrice() " + row.getUnitPrice(), 1);
    pageContext.writeDiagnostics(this, " row.getCurrencyUnitPrice() " + row.getCurrencyUnitPrice(), 1);
    if(reqLine.equals(row.getRequisitionLineId().stringValue()))
    strQuantity = row.getQuantity().stringValue();
    strUnitPrc = row.getCurrencyUnitPrice().stringValue();
    if(pageContext.isLoggingEnabled(1))
    pageContext.writeDiagnostics(this, " match found quantity, price " + strQuantity + " " + strUnitPrc, 1);
    break;
    row = (ChangeOrderLinesVORowImpl)vo.next();
    } while(true);
    Please let me know what would be the reason?
    Thanks
    Debashree

  • User is getting Error while opening a Discoverer report::Model Manipulation

    Hi,
    I am stuck with a peculaiar error as reported:
    While opening a Discoverer Report its giving Error:
    Model manipulation via state object.Server writes and pass through reads can only be made on objects attached to the model
    instance of
    oracle.disco.model.corbaserver.ScheduleRunWorkbookInfoImpl made state from:removed from
    oracle.disco.model.corbaserver.schedule.ScheduleRunWorkbookInfoImpl
    Kindly any help will be benefitial for me.
    Thanks and Regards

    Pl post details of OS, database and Discoverer versions. Pl detail the steps to replicate this error. This MOS Doc may be helpful
    734850.1- Error "Failed to Find Workbook ParameterValue.." When Trying to Edit Scheduled Discoverer Workbooks
    HTH
    Srini

  • Getting warning while running concurrent program for XML report

    HI,
    Am trying to run a xml-publisher report by converting a D2k report and am getting the following warning message and not getting the out put.
    Receivables: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XX_EMPLOYEES module: XX_EMPLOYEES
    Current system time is 04-DEC-2007 12:25:37
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    APPLLCSP Environment Variable set to :
    XML_REPORTS_XENVIRONMENT is :
    /dplay/applmgr/product/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /dplay/applmgr/product/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    AMERICAN_AMERICA.UTF8
    Report Builder: Release 6.0.8.25.0 - Production on Tue Dec 4 12:25:38 2007
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 2057165 on node CRMAP102.ASHOKLEYLAND.COM at 04-DEC-2007 12:25:42.
    Post-processing of request 2057165 failed at 04-DEC-2007 12:27:43 with the error message:
    The Output Post-processor is running but has not picked up this request.
    No further attempts will be made to post-process this request, and the request will be marked
    with Warning status.
    Setting the profile option Concurrent: OPP Response Timeout to a higher value may be necessary.
    ------------- 2) PRINT   -------------
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 04-DEC-2007 12:27:43
    pls help
    Thanks

    Hi
    pls see this post
    OPP Timing out
    Thanks
    Rahul

  • Getting warning while trying to start the Jdeveloper for first time

    Hi ,
    Every day i am facing this problem while trying to start the Jdeveloper first time, and not able to start till some time.
    i am getting the below exception...
    Unable to create an instance of the java virtual Machine Located at path
    E:\Oracle\Middleware\jdk160_24\jre\bin\client\jvm.dll
    Please can i have the solution to this..
    Regards,
    Rajesh

    user,
    better you remove the contact number. dont leave those things in forums,
    some one may misuse that.
    nice, you can search over forums.
    Jdeveloper installation issue
    https://cn.forums.oracle.com/forums/thread.jspa?messageID=9665899
    http://adfhowto.blogspot.in/2011/09/troubleshooting-unable-t-o-create.html
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=1070230
    unable to create an instance of the Java Virtual Machine Located at path:
    http://pisceansheart.wordpress.com/2009/08/06/solution-to-unable-to-create-an-instance-of-the-java-virtual-machine-for-jdeveloper/

  • Getting Error while assigning Chart of Depriciation to Company code

    Hi Every one,
    I was doing configuration in Asset Accounting. It won't allow me to assign chart of depn to company code. It showing me with the error tht"Inconsistency between FI company code SA01 and chart of depriciation"
    I have assigned my group currency with legal valuation(0) in FI.
    Can any one help me on the same?
    With Rgds,
    Sanket

    Hi,
    Thanx for the above answer. Can you please let me know what kind of deprecation area I need to select if I have not defined additional currency & what if I have defined additional currency?
    Thanks,
    Sanket

  • Getting dump while assigning resource to role

    Hi,
    We are using BAPI_BUS2177_STAFFING_ADD  to assign resource to role.
    It is assigning first resource to first role in first project. And giving dump for next resource to role assignment for the same project.
    Short dump description is like as follows:
    The exception 'CX_DPR_FATAL_ERROR' was raised, but it was not caught anywhere
      along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
      'CL_DPR_AUTHORIZATION_SERVICES=CP' has to be
    terminated.
    The problem is of "COMMIT". I ma not understanding where to write exact commit. Even if we are commiting at project level it is giving dump.
    Could you please give any suggestion on it.
    Thanks & Regards,
    Anil Salekar

    Hello Kaixiang,
    When you add staffing to project then commit after each resource assignment. That will avoid the dump.
    Use:
    CALL FUNCTION 'BAPI_CPROJECTS_COMMIT_WORK'
             TABLES
               return = it_return.
    Note: Re award if useful
    Thanks,
    Appasaheb..

  • I have installed updated to latest version but, upon opening get warning that I need to update to latest version

    I downloaded, then ran and installed latest version of firefox, but each time, upon opening, I get a warning that I need to install latest version.

    It looks that the update wasn't successful because your "More system details" list still shows a Firefox 3.5.7 version.
    If there are problems with updating then best is to download the full version and uninstall the currently installed version.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • Getting warninig while running the report

    hi all am getting warning while running the report .
    am getting following errors in log file .
    log file is given below
    please help me
    +---------------------------------------------------------------------------+
    Process Manufacturing Inventory: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXVIS_OPM_STOCK_STATEMENT module: Visaka RG1 Register
    +---------------------------------------------------------------------------+
    Current system time is 11-OCT-2011 20:35:56
    +---------------------------------------------------------------------------+
    **Starts**11-OCT-2011 20:35:57
    **Ends**11-OCT-2011 20:37:26
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    +------------- 1) PUBLISH -------------+
    Unable to find an Output Post Processor service to post-process request 15845786.
    Check that the Output Post Processor service is running.
    +--------------------------------------+
    +------------- 2) PRINT   -------------+
    Not printing the output of this request because post-processing failed.
    +--------------------------------------+
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 11-OCT-2011 20:37:26
    +---------------------------------------------------------------------------+
    [\code]
    thanks for all in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Ask this in the Oracle eBusiness Suite forum. This doesn't look like a Reports problem.

  • Getting problem while installing Snow Leopard (10.6.3) on my Mac Mini. The following issue is showing :  "mac os x snow leopard cannot be installed on this computer"  And My Mac Configuration details:  Model Name: Mac Mini Model Identifier: Macmini2,1

    Getting problem while installing Snow Leopard (10.6.3) on my Mac Mini. The following issue is showing : 
    "mac os x snow leopard cannot be installed on this computer" 
    And My Mac Configuration details:  Model Name: Mac Mini Model Identifier: Macmini2,1
    Intel Core 2 Duo
    1.83Ghz
    l2Cache: 2mb
    Memory : 2GB
    Bus Speed: 667MHz
    Please help me......
    Thanks

    Actually i have Mac OS X 10.5.4 DVD, I need to upgrade it to Snow Loepard(OS X 10.6)...
    Please suggest me what to do???
    Thanks

  • XML form in not getting displayed in the option while assigning

    Hello Experts,
    I have created a XML form and now assigning it to a folder. While assigning Folder>new>forms> .. here I can see other forms but not the new one which I have recently created. Please let me know I can assign the newly created form to the folder.
    Regards,
    Abhi

    Hi,
    Please check for the Form Based Publishing for your KM folder
    System Administration-->System Configuration >Knowledge Management->Form Based Pulishing>Forms Availability>Folder Settings check for the Forms to include and Exclude for your folder path. In this you can include or Exclude forms which you form by adding the XML form ID.
    Regards,
    Nivas209.
    Edited by: Nivas209 on Jan 12, 2012 8:12 AM

Maybe you are looking for