How to check MAxl is running properly or not

Hi All,
i am working on ASO cube which has to implement Automation for dimension building and data loading. I am unable to execute even a single sample systax with out error. Is there any specific method to use Maxl in ASO cube or any precautions to be taken in ASO for Maxl scripts.
I don't know it is a foolish question or not to ask like "how to check the Maxl is working properly or not" bcoz it is raising me doubt by raising error for sample script also.
please help me out from this issue .
Regards

Can you log into Essbase through MaxL interactively.
If so, can you do it from a script? Something like:
login username password on servername ;
exit ;
If you can't do the first, yup, your MaxL client is hosed or you don't have a valid username/password. Or you don't know the servername.
If you can't do the latter, perhaps your client (could be the server itself, if you're running it from there) has a pathing issue when running batch files.
If both work, it is a syntax issue. Now you're just faced with your mistake(s). :) But at least you don't have to spin wheels trying to figure out if MaxL is working or not.
Regards,
Cameron Lackpour
P.S. You might want to try using the MaxL editor in EAS and see if your login code works there. I believe (not sure, but I think so) that EAS has its own flavor of MaxL as I know you can run code there without having the Essbase client installed on a local machine.

Similar Messages

  • How to check was the object bound or not without exception handling?

    context.lookup("someName");throws NameNotFoundException in case object was not bound to someName.
    How to check was the object bound or not without exception handling?

    context.lookup("someName");throws NameNotFoundException in case object was not bound to someName.
    How to check was the object bound or not without exception handling?

  • Hi Guys 'n' Gals! I have a problem with my computer going into 'Display Sleep' mode and it actually goes into full sleep mode. anyone know how to keep my Mac running software and not go into full sleep after I have set it to 'Never go into computer sleep

    Hi Guys 'n' Gals!
    I have a problem with my computer not going into 'Display Sleep' mode but actually goes into full Computer Sleep mode. Anyone know how to keep my Mac running software and not go into full sleep after I have set it to 'Never' go into 'Computer Sleep' within the 'energy saving' section!
    Any ideas guys?
    Miffa!

    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the  appropriate method.

  • Help! how to check the SQL run in Oracle?

    Hi all,
    I have a problem. the developer said the SQL written in Java code are not the one executed in Oracle DB. that mean the query is some how manipulated by some PL/SQL so the final query run in Oracle is different. So can someone teach me how to check the actual SQL run in Oracle?
    Thanks a lot.
    Regards,
    Jason

    Hi Michel Thanks. But it looks like the query stored in v$sqlarea is not the final executable SQL. for example, the code in application is "select column_A from default_table where column_A = ?" and this ? will be given some value in run time. the query stored in v$sqlarea will be like "select column_A from default_table where column_A = :1"... what is this :1?
    Also if some PL/SQL procedure appends some condition to the SQL, is it possible to view the full query from database side?
    ok, let me try trace and tkprof first.

  • How to check whether MRP run has been executed for a sales order or not

    Dear Experts,
    In Strategy:20, Make to Order scenario, I have run MRP for sales order in T Code:MD50,
    then how can I check whether MRP run has been executed for a sales order or not.  Is there any report where I can find some indication?
    Thanks and regards,
    Vikas

    Dear,
    In MTO scenario with Planning strategy group 20 in material master .
    After sales order is created, Run MRP , then planned order will be created then go to planned order details in MD04 or MD12 you will get sales order number in assigment tab.
    or check the Table PLAF field  PALTR ,and field name KDAUF its sales order, for all created planned order.
    Regards,
    R.Brahmankar

  • How to check program is running or not

    Hi,
    Is it possible to check whether a program is running or not?
    I know when you try to compile a package which is running, oracle does not allow you compile it, it hangs. That is, somehow, Oracle knows the program is running. How can we check this information?
    Suppose procedure below. If i ran it in one session, how can check that procedure p is running in other session?
    I searched the forum. There is one( checking if a package procedure is already running ) thread but noone has replied.
    Thanks....
    SQL> DROP TABLE T;
    Table dropped
    SQL> CREATE TABLE T AS SELECT DUMMY D FROM DUAL;
    Table created
    SQL> CREATE OR REPLACE PROCEDURE p IS
      2    s VARCHAR2(12);
      3  BEGIN
      4    SELECT d INTO s FROM t;
      5    LOOP
      6      EXIT WHEN s = 'Y';
      7      SELECT d INTO s FROM t;
      8    END LOOP;
      9  END p;
    10  /
    Procedure created
    SQL> exec p;

    I found the answer from another thread.( Package Compilation Hangs )
    Answer is : http://www.ixora.com.au/scripts/sql/executing_packages.sql

  • How to check oracle is running or not

    Hi,
    Can any one help me the command to check whether oracle is running or not, in UNIX flatform.How to check the Disk+Work proess is running or not.

    Option1 :Logon to SAPDBA...U will be able to see whether Oracle is running or not.
    Option 2:
    Sqlplus /nolog;
    connect / as sysdba;
    startup;
    If it is already running: you will get msg that Oracle is already running
    Oprion 3: ps -eaf|grep ora
    to determine whether disp+work is running or not:
    Option 1: ps -eaf|grep sap
    Option 2: dpmon pf = <path of instance profile>
    Reward Points if helpful!

  • How to check a XMLTYPE table for corrupted (not invalid!) XML records ??

    Hello,
    I'd like to get help on the following issue, please. I need to check the XML data in a number of tables with XMLTYPE data type. Some of the data is corrupted but in terms not that the XML format is wrong but there is no XML at all in the fields but just only, for example, control characters (no tags, no anything, just corrupted data).
    So, I have made a PL/SQL procedure cursor to get all the tables from a list, and then another cursor inside to browse each table for corrupted records. But can you help me how to check this? Any of the XML functions like for example: XMLIsValid, isFragment(), getrootelement(), etc. return to me an Oracle error "ORA-31011 XML parsing failed" and the procedure gets stuck on the first found bad record. But I need to continue and check all of them. Is it possible to get the ORA-31011 error with EXCEPTION, write to a logging table the corrupted record ID, and then continue?
    Here is my simple procedure:
    CREATE OR REPLACE PROCEDURE CHECKXML (v_schema in VARCHAR2)
    IS
         v_Message     VARCHAR2(254);
         sql_stmt1     VARCHAR2(1000);
         sql_stmt2     VARCHAR2(1000);
         c1           SYS_REFCURSOR;
         c2           SYS_REFCURSOR;
         cur_tab          varchar2(100);
         cur_appl     varchar2(100);
         cur_rec     varchar2(200);
         valid_flag     number;
         criteria     VARCHAR2(20);
         tab1          VARCHAR2(20);
         tab2          VARCHAR2(20);
    BEGIN
         criteria := 'XMLTYPE';
         sql_stmt1 := 'select id, path from ' || v_schema || '.stubfiles where type=:bcriteria';
         open c1 for sql_stmt1 using criteria;
         loop
         begin
              fetch c1 into cur_tab, cur_appl;
              exit when c1%notfound;
                   insert into system.log_table values (sysdate, v_schema, 'next table', 'id ' || cur_tab, 'appl ' || cur_appl, '');
              sql_stmt2 := 'select t.recid, t.xmlrecord.isFragment() from ' || v_schema || '.' || cur_tab || ' t';
              open c2 for sql_stmt2;
              loop
              begin
              fetch c2 into cur_rec, valid_flag;
                   exit when c2%notfound;
                   insert into system.log_table values (sysdate, v_Schema, 'next record', 'id ' || cur_tab, 'recid ' || cur_rec, 'valid ' || valid_flag);
                   commit;
              EXCEPTION
                   WHEN OTHERS THEN v_Message := sqlerrm;
                   dbms_output.put_line('Error for ' || cur_tab);
                   dbms_output.put_line('-' || v_Message);
                   insert into system.log_table values (sysdate, cur_tab, 'id err' || c_Row.ID,'appl err' || c_Row.path, v_Message,'');
              end;
              end loop;
              close c2;
              commit;
         end;
         end loop;
         close c1;
         commit;
    END CHECKXML;
    Thanks in advance
    Evgeni

    Hi
    Why do you use a GTT? Just keep your xml in memory...
    HTH
    Chris

  • How to check whether portal user exists or not using UM API.

    Hi Experts,
    Let us say i need to create an user account "PortalUser",i know how to create an user,setting first name,lastname,password for that.
    but here before creating the portal user, i need to check whether that user exists or not.If user already exists ,then i  need to skip the below for creating the user.
    IUserFactory userFact = UMFactory.getUserFactory();
    IGroupFactory groupFact = UMFactory.getGroupFactory();
    IRoleFactory roleFact = UMFactory.getRoleFactory();
    IUser tuser = userFact.getUserByLogonID("PortalUser");
    IUserMaint newUser = userFact.newUser("PortalUser");
    newUser.setFirstName("PortalUser");
    newUser.setLastName("Test");
    newUser.setEmail("PortalUser.Testatgmaildotcom");
    //Locale PortalLanguage = new Locale(Lang.toLowerCase(), "");
    Locale PortalLang=new Locale("en");
    newUser.setLocale(PortalLang);
    newUser.save();
    newUser.commit();
    IUserAccount userAcc = UMFactory.getUserAccountFactory().newUserAccount("PortalUser", newUser.getUniqueID());
    userAcc.setPassword("test1test$");
    userAcc.save();
    userAcc.commit();     
    Thanks in advance.
    Thanks
    Sony.

    Hi,
    Try this code,
    IUserFactory factory = UMFactory.getUserFactory();
    IUser user = factory.getUserByLogonID(userId);
    lastName = user.getLastName();
    firstName = user.getFirstName();
    refer this pdf,its very helpful
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/webinars-nw-rig/using%20the%20user%20management%20api%20with%20ep%20applications%20-%20webinar%20powerpoint.pdf
    Regards,
    Sunaina Reddy T

  • How to check  DBMS_JAVA package is installed or not a database

    Hi all,
    I 'm using an oracle 10g on Solaris 10 machine.Does any one knows how to check if the DBMS_JAVA package is installed or not in my database
    thanks.

    Handle:      user11191992
    Status Level:      Newbie
    Registered:      Feb 9, 2010
    Total Posts:      60
    Total Questions:      29 (18 unresolved)
    So many question & so few answers
    :-(

  • How can check rollup level and autoconfigure or not on 11i

    Hello;
    I installed a vis 11i, wondering how can I check my rollup level and autoconfigure or not, please give advice. -thanks first

    portcommand wrote:
    Hello;
    I installed a vis 11i, wondering how can I check my rollup level and autoconfigure or not, please give advice. -thanks firstUsing AutoConfig to Manage System Configurations with Oracle Applications 11i [ID 165195.1]
    Autoconfig FAQ [ID 218089.1] -- 7. Is AutoConfig compatible with Oracle Applications 11.5.x?
    How to check, which EBS Techstack Patchsets have been applied on 11i or Release 12.1.x ? [ID 390864.1]
    How to Get The Patchset Level of Oracle Applications Products in R12 [ID 550654.1]
    Oracle Applications Current Patchset Comparison Utility - patchsets.sh [ID 139684.1]
    Thanks,
    Hussein

  • Copying files from one to other location.. How to check status in run mode on front panel?

    Hi guys , can anyone tel me that how can I check the copying status in real time while VI is running.. e.g lets say I am coping files from location A to location B and the data is quite large so if somewhere in between there is an error I can not figure out when the problem occurred. Is this possible that I know while staying on the front panel about the amount of data copied and how much is left etc..because I think it will be easy to track error if there will be any..
    Naqqash

    Hi,
    I tried to do it, but from some reason I failed. Here are some links about function and how to do it:
    http://msdn.microsoft.com/en-us/library/bb762164%28v=vs.85%29.aspx
    http://msdn.microsoft.com/en-us/library/bb759795%28v=vs.85%29.aspx
    http://www.docstoc.com/docs/31464530/Passing-Labview-Cluster-to-C-Structure-in-DLL
    In the attachment is what I've been trying for the last half an hour. I did it before, but never using cluster -> structure casting.
    Paul
    Attachments:
    copyfile.vi ‏13 KB

  • How to check process is running for an application pool on remote server

    Hi,
    I am creating console application which will check whether WCF is up and running. I am thinking of the approach whether w3wp prcoess is running for a particular application pool using some .net API. We have different website with different application pool.
    I know we can use metatdata or any operation inside WCF service to test svcutil or proxy methods but i don't want that. Please help.
    Thanks,
    Dhanaji

    I assume your goal is to simply provide a heartbeat to periodically make sure that a service is running?  There is no real guarantee that a service will be available until you actually try to call it.
    Also please realize that you're going to impact the server's performance by doing this.  IIS is set up to idle out apps that aren't being used. If you periodically poll the service then you will prevent IIS from doing this.  The result will be
    that you'll see a WCF service running even if nobody every uses it.  Is this really what you want?  Hence if you have a lot of WCF services being checked then the server is wasting resources on services that might not be needed. 
    IIS doesn't work like a normal application.  It hosts your WCF service.  You should let IIS handle the lifetime of your service rather than using a heartbeat.  It would take a catastrophic failure for IIS to be unable to start a service when
    a request comes in.  The app pool itself may be running even without the WCF app running. An app pool is a collection of apps so if any app is running then the pool is running.  Checking the pool tells you nothing about the apps in it.
    You mentioned that you don't want to use IIS metadata or a proxy but that is the only 2 options you have.  Personally I would just hit the endpoint with a HttpWebRequest and verify you get a response but the IIS metadata would be a close second.
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • How to check site is running or not

    I want to check whether a particular site like xyz.com running or not from java
    desktop application to perform action if it is not running .
    Thanks

    If you want to get more thorough you can use the HttpUnit library, which is designed for excercising a web site and testing the responses are as expected.
    Try sourceforge.net

  • How to Check whether laptop is OEM or Not ?

    I had bought a  Envy 15 notebook through flipkart. But due to technical problem I had refreshed my pc using HP recovery. At last I cant activate windows 8. When I contacted Microsoft technical support I had given my product ID and they told me that it was not a product of OEM. Whats the solution for this problem ?

    Hi,
    It will blow air out. You can use you hand or a piece of tissue to check. Normally fan will only work when machine is getting warmer. You may run machine for 10 or 15 mins then check. BUT making beeping noise at startup is not a good news, what is the actual noise ? How many times ?
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for

  • Dynamic proxy client error

    hello, im running a dynamic proxy client for a simple web service. I have the web service up and running but when i run the client i get the following error: run-client: [java] java.lang.NoClassDefFoundError: dynamicproxy/BookClient [java] Exception

  • Slight water damage to iphone 6

    hey! So today my phone had gotten some water on it. I dried it off and shook the phone carefully to get rid of water. Well now when people call me i can only answer their calls and speak to them on speaker phone. Also if my phone is on ringer mode it

  • Messenger on mac problems

    Just want to know how i go about adding a display pic onto my messenger account. I can log in and out no problem but for some reason cannot open any pic to use as my display pic. What pic format is required? and is there a difference between Microsof

  • Good external HD? Also, problems with wired TM use?

    I have a multi part question here: I recently got a new MBP and I want to get an external hard drive to use with Time Machine. Is there any sort of consensus on which external hard drives generally work well? I have a 500 GB Western Digital MyBook th

  • HT1382 how t ouploadmy itunes from back up

    My laptop broke. I have just purchased a new one my itunes was back up to a external hard drive. How to I upload it on my new pc?