Not able to find path

Hi guys,
I am using 11.1.2.0 for Planning and Essbase.
I need the information that where does our LOCATION ALIAS, Data cache setting, DataFile cache setting, and Index cache settings are saved. either in Essbase server or in RDBMS.
And i want to know the complete path.
NOTE: I want this setting for specific Application Wise
Thanks,
Avneet
Edited by: Avneet on Jun 16, 2011 5:04 AM

There is no path to these (well there is it where ever the Essbase application lives). The cache settings are stored in the dB files in a binary format so you can't edit them. I don't know for sure where the location alias is stored, but I'll guess it is in one of the database files as well as it is tied to the application.

Similar Messages

  • FindClass() not able to find the class in the same path

    Hi,
    I have a c prototype which calls a java function which push a message in JMS. i'm using jdk1.6. i have set JavaVMInitArgs vm_args.version = JNI_VERSION_1_6 when i compile the c code as gcc -g -lgcj -I $JAVA_HOME/include -I $JAVA_HOME/include/linux CallJMS.c the JNI_CreateJavaVM(&jvm, (void*)&env, &vm_args)* returns JNI_ERR. After changing version to 1.4 JavaVMInitArgs vm_args.version = JNI_VERSION_1_4 finally it gives me an executable which calls the java function (how ever the required functionality is not got)
    To get the required functionality i had to use jdk1.6 so i changed the version property to JNI_VERSION_1_6 and the compiling command as gcc -g CallJMS.c -I $JAVA_HOME/include -I $JAVA_HOME/include/linux -L $JAVA_HOME/jre/lib/i386/server -ljvm .This gave me an executable, but when i execute it is not able to find the java class file. I have kept both the java and c file in the same path and also set the CLASSPATH. Please help.

    Hi jschell,
    I got solution to this problem. As you said it is due to wrong CLASSPATH set .
    Before:
    JavaVMInitArgs vm_args;
    JavaVMOption options[3];
    options[0].optionString = "-Djava.class.path=.:/home/programs/JbossMetro/jboss-5.1.0.GA/server/default/deploy/JMSforCNew.war/WEB-INF/classes";
    options[1].optionString="-Djava.library.path=.:/home/program/jdk1.6.0_23/jre/lib/i386/server";
    options[2].optionString="-verbose:jni";
    vm_args.version = JNI_VERSION_1_6; //JDK version. This indicates version 1.6
    vm_args.nOptions = 3;
    vm_args.options = options;
    vm_args.ignoreUnrecognized = 0;
    int ret = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    if(ret < 0)
    printf("\nUnable to Launch JVM\n");
    else
    printf("\nLaunched JVM\n");
    I was setting the CLASSPATH to the Path where my java class files were kept. When the JVM instance is created only this path (where my java class is residing) is identified and the JMS and other paths which was already set in the CLASSPATH environment variable is lost. Thus when i call the java class from the c program it is not able to find the dependent class files and it was aborting.
    After:
    Before setting the path where my class files are residing to CLASSPATH, get the path's in the CLASSPATH to a variable, append the path where my class files are kept to this variable and then set the CLASSPATH . Similarly do for the LD_LIBRARY_PATH. This works fine.
    char cpathBuff[100000];
    char ldpathBuff[4096];
    JNIEnv *env;
    JavaVMInitArgs vm_args;
    JavaVMOption options[3];
    cpath = (char*) getenv("CLASSPATH");
    sprintf(cpathBuff,"%s%s:%s","-Djava.class.path=",cpath,"/home/programs/JbossMetro/jboss-5.1.0.GA/server/default/deploy/JMSforCNew.war/WEB-INF/classes");
    options[0].optionString = cpathBuff;
    ldpath = (char *)getenv("LD_LIBRARY_PATH");
    sprintf(ldpathBuff,"%s%s:%s","-Djava.library.path=",ldpath,"/home/program/jdk1.6.0_23/jre/lib/i386/server");
    options[1].optionString = ldpathBuff;
    vm_args.version = JNI_VERSION_1_6; //JDK version. This indicates version 1.6
    vm_args.nOptions = 2;
    vm_args.options = options;
    vm_args.ignoreUnrecognized = 0;
    int ret = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    if(ret < 0)
    printf("\nUnable to Launch JVM\n");
    else
    printf("\nLaunched JVM\n");
    Thanks for your support Peter and JSchell.
    Edited by: 844094 on Mar 15, 2011 2:37 AM

  • Not able to find out the path where i need to place the .plx file on server

    I have to make some changes in the PLL (library) file and compile it into it's .plx file and move the .plx to the server.
    I am not able to find out the path where i need to place the .plx file on the server.
    I have placed it in /iasapp01/app_name/library,but it is not taking it into effect.
    Please help,if anyone knows about this,as to how to solve this issue
    Thanks
    GAG

    Hi Andreas,
    My Forms Version is 9.0.2 and the application server is 9iAS( 9.0.2)
    The variable FORMS90_PATH in the .env file has the following entries
    FORMS90_PATH=/iasapp01/app_name/fmx:/iasapp01/app_name/library:/iaspp01/app_name/html
    and i have placed the plx in the /iasapp01/app_name/fmx path,but somehow its not referencing it.
    My Formsweb.cfg has the following entry...
    [app_name]
    pagetitle=app_name_WEB
    serverapp=/app_name/app_name
    width=800
    height=550
    colorscheme=blue
    separateframe=true
    form=log.fmx
    otherparams=REPORT_PATH=/iasapp01/app_name/html/report_files/ FILE_PATH=/iasapp01/app_name/rep/
    WEB_PATH=http://server.com:7778/app_name/
    envfile=/ias01/app/oracle/product/ias_9.0.2/forms90/server/app_name.env
    I have another question which is ..Does applciation built on Forms 9.0.2 would work on Internet Explorer 8 and Windows 8 environment using Sun JRE.
    I was going through this website
    http://nutthaphon.blogspot.com/2009/05/how-do-jinitiator-and-jpi-parameters.html
    and followed the steps as mentioned,but it did not work for me.
    Can you help me if you have any info on this?
    Thanks
    GAG

  • Not able to find mod_oc4j.conf file for setting Load Balancing on ESB

    Hi Guys,
    I am trying to set load balancing on ESB ,I got one document from oracle site for setting the load balancing on ESB. According to that document we have to change mod_oc4j.conf file for setting the roundrobin:weighted,metric,random algorithms.
    But I am not able to find mod_oc4j.conf file in my ORACLE_HOME directory.
    Actual path is
    ORACLE_HOME/Apache/Apache/conf/mod_oc4j.conf file
    I have All folders up to conf but in conf folder there is no mod_oc4j.conf file.
    I just want to know is there any installation problem or we have to create
    mod_oc4j.conf file in that conf folder for seting the loadbalancing on ESB
    kindly give me the exact solution on this .
    Thanks in advance

    Hi Chintan,
    I have apache folder ,but there i have cong folder but in that I am not able to find mod_oc4j ,I know ESB it maintain load in transparent way but in my project we have heavy load on ESB we have to maintain this load in a proper way
    Please give me the exact solution to set load balancing On ESB.
    Thank you
    Bollineni

  • Not able to find userChrome.css file for customizing the Firefox browser. I just installed 20.0.1 firefox browser. Want to disable/remove navigation bar.Pls Hlp

    Not able to find userChrome.css file for customizing the Firefox browser. I just installed 20.0.1 Firefox browser version.
    I want to disable/remove navigation bar from the browser window, making the browser to work like kiosk mode.
    Please Help,
    Thanks,
    Vishal.

    hello,
    here is the complete path ..
    ''C:\Documents and Settings\XXXXXXX\Application Data\Mozilla\Firefox\Profiles\chrome"
    Let me know
    Thanks,
    Vishal.

  • Not able to find JNDI Destination WLS

    Hi all,
    I am trying to send a message to a JMS Queue. Everything seems ok, the test in the physical architecture is successful, I create the logical architecture, the model, and the data store with the columns.
    I create the interface with IKM SQL to JMS Append, I execute it but I get an error, it is not able to find the destination.
    Could someone tell me which could be the problem??
    Thanks!!!

    Hi Avinash
    Use the below path in NWA
    NWA--->Troubleshooting--->JNDI Browser
    then select context name and search by the JNDI name of the module.
    JNDI name will be found in the ejb-j2ee-engine.xml

  • Not able to find help.sap link for SAP CRM

    Hi,
    I am not able to find the appropiate link for CRM w.r.t. BW where I could find datasources, cubes and queries.
    Can anybody please show me the path?
    Thanks,
    Akshara

    hello,
    here is the complete path ..
    ''C:\Documents and Settings\XXXXXXX\Application Data\Mozilla\Firefox\Profiles\chrome"
    Let me know
    Thanks,
    Vishal.

  • Not able to find SMD Agent in SMP

    Hi,
    I need to install SMD agent in all the NW2004s servers, but i am not able to find the SMD agent for NW2004s in Service Market Place.
    SMD agent is not available in the below mentioned path:
    service.sap.com/swdc --> Download --> Support Packages and
    Patches --> Entry by Application Group -> SAP Technology Components --> SAP
    SOLUTION MANAGER --> SOLUTION MANAGER 4.0 --> Entry by Component -->
    Agents for Satellite Systems --> SMD AGENT 7.00 --> <choose OS>
    Regards,
    Ranjith

    Hi Shyam,
    Thanks for your reply.
    I already tried downloading the SMD Agent from the OS independent, but after extracting the SAR file, i am unable to see the sapinst in it.
    I have all the monitored systems of version NW2004s SR1/SR2, in this version of installation master, will i be able to install the SMD agent?
    Regards,
    Ranjith

  • Not able to find "ume.logon.anonymous_user.mode" in UME service

    Hi,
    I am not able to find "ume.logon.anonymous_user.mode" parameter in the "com.sap.security.core.ume.service" service in config tool path "Global Configuration | Server | Services". We are in EP7 SP14.
    Can i get this parameter anywhere else.
    regards
    Marcus.

    Hi,
    try to check in Clusttered configuration\server\services and let me know the results.
    narsi

  • Not able to find data in Cube

    Hi All,
    Good Evening!
    I am loading data from ODS to Cube. I am not able to find values for 0ORDER_CURR in the cube and also in the report which I built on the Cube. But they are present in the ODS.
    Please help me to find the problem. Thanks in Advance...
    With regards
    Mahi

    Hi Mahi..
    Try to check is there mapping in ur Update rules for this 0ORDER_CURR.. if not then maintain the same..
    Also let us know whether u have used this object at the cube level or not??? if not then try to maintain and then maintain the mapping as well from the DSO.....
    this will solve the issue....
    thanks..
    Assign points if this helps...

  • Not able to find driver page for HP 15-r007tx

    Not able to find driver page for HP 15-r007tx.
    The web site is able to detect my product, but when clicked on link Software & Driver Downloads, it says page not found.
    Please help. I am looking drivers for windows 7 ultimate.

    Hi Anoop22Sharma
    Install:
    Intel Chipset Installation
    Intel Video Driver 
    NVIDIA High-Definition (HD) Graphics Driver
    Synaptics Mouse Driver
    Realtek Ethernet Controller Drivers  
    MediaTek(Ralink)802.11 b/g/n Wireless LAN (WLAN) Adapter
    Ralink Bluetooth Software Driver
    Intel USB 3.0 Driver for Intel 8 and U/Y Series
    Realtek High-Definition (HD) Audio Driver
    Realtek PCIe Media Card Reader Driver
    HP 3D DriveGuard

  • Not able to find values in LOV of field "Help Desk" of Global contract

    Not able to find values in LOV of field "Help Desk" of Global contract defaults.
    This value should be coming from resource setup.
    Resource is already created.

    Issue resolved:
    The resource should ahve valid Email id in HR People setup

  • I am not able to find Template Builder in MS Word 2003

    Hi All,
    we have installed MS Word 2003 Ver in our work station for BI Publihser Reports, but i am not able to find the template builder in the Menu bar.
    i was try to add in tool -> Template and add-Ins also, but still i dint get the template builder in top menu's.
    Any one can help me on this.
    Thanks in advance.
    Regards,
    Loganthan

    Hi,
    Did you installed BI Publisher first? usually we installed MS Word first then BI Publisher then it appears in the top bar.
    HTH,
    Vikas

  • If I do not select F11 ( full screen ) a big part of the screen "falls" of the right hand side of my monitor and is not readable, I am not able to find the neccesary adjustments.

    Question
    If I do not select F11 ( full screen ) a big part of the screen "falls" of the right hand side of my monitor and is not readable, I am not able to find the neccesary adjustments.
    Screen 2/3 blanco on the left side
    With F11 all OK.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Not able to find Source System in BI 7......

    Hi All,
    I am working on BI 7
    I am exctracting the data from Flat File Source System like SMID(Characterstic) and PQTY,SALE,PROFIT as a KeyFigures
    I have taken SMID as Characterstic and PQTY,SALE,PROFIT as a KeyFigures..
    I hav created InfoObject Catalog for Characterstic and Keyfigures...
    I Created a Application Componenet and Assigned Objects to InfoSource also...
    But i struckked while assigning the Source System to the InfoSource...
    I am not able to find how to assign the Source System like we do in 3.0b,3.1c & 3.5..
    Can anybody tell me the Step by Step Navigation procedure for to assign Source System to the InfoSource and Other Things also....
    Regards,
    Kiran Telkar

    Hi,
    These are the settings needed for the broadcaster:
    http://help.sap.com/saphelp_nw70/helpdata/en/55/1b9940ccd42a54e10000000a1550b0/frameset.htm
    Eddy
    PS. Reward useful answers and earn points yourself

Maybe you are looking for

  • Can't Ping or access via SNMP Inside interface of 5505

    I have a remote site I'm trying to setup monitoring on and I can't get the inside interface to respond to a ping or SNMP requests.  I have tried everything I can find in the forums and on the web but this location will not cooperate.  I have full acc

  • My iPod touch 4g is having a huge lag.

    Well, I had an iPod touch 4g before, but then it cracked and I got a new one. The new one is a 4th generation,16gb. I have this huge lag that won't go away. Sometimes it does go away. How I make it go away is let it charge for at least an hour, and t

  • HT1825 15" PowerMac Studio Display

    Does anyone know the fair market value for a 15" Power Mac G4 studio display?

  • Use of (SYNONYMS)

    Hi , What are the benifites of SYNONYMS in database. Plz explain with example. Thank's in advance

  • ADF- Iterator and Where Clause

    Hi all: How can I do where clause on the iterator? Thanks in advance.