Making Fire ID process web based

Hi, I am very new to Essbase. I am asked to investigate making the Fire ID process web based, whereas at the moment the manager has to change the password directly in Essbase. We are using Essbase 7.1.5. I was going through the posts and found out that Essbase doesn't provide for changing the passwords directly through any Java API, but can be done so through MAXL script. Can you please tell me what classes and methods I can use to first create the MAXL script on the fly and then execute it. Thanks.

You can use the IEssDomain.openMaxlSession() method to open a MaxL session; the IEssMaxlSession object that is returned lets you execute maxl statements.
Note: these methods go away in the System 9 Java API (but I don't know for sure which version).. Java API 9.3.1 has security functionality built in; it has an IEssOlapUser object with a changePassword method.
Tim Tow
Applied OLAP, Inc

Similar Messages

  • Automating a process through VBA using web-based tool PMD

    I'm currently trying to automate a process of extracting information from PMD into an excel (or access if necessary) spreadsheet by using VBA in Microsoft Excel. So far i haven't found a way of communicating through VBA code with PMD. In our company's SAP there is a recorder that creates a code to simply copy into VBA but with PMD being a purely web-based tool there are not any options "clearly" available.
    Does anyone know of a script-recorder, or just any method, to include PMD processes within VBA? I'm stumped..

    I'm new to the community and I just realized I may have posted this in the wrong place. Still, any help would be great.

  • Making a screen in module pool program web based

    I have developed a module pool program with screens and flow logic. I want to make that application web based. Is there any option to make it web based or I have to write the fresh application in bsp. Please suggest

    Sucheta,
    You unfortuantely need to re-write that application as BSP.  If you separated your business logic from the screen logic, then all you will need to do is rewrite the screen logic and not the whole application.
    Take care,
    Stephen

  • Fat Client-Web based architecture design help ?????

    Hellow experts
    i have recently joined a java project
    which is a fat client-web based application.
    clients can work from any location or place using the internet
    they will connect to the web server which will be provide the data
    to the clients application
    i am working on the improvement of architecture n design of the project
    pls help me in deciding the best and the fastest way to develop this application further.
    i am designing a framework based on my experience and
    am also doing some research on whats latest which can accelerate
    and improve the development process.
    here's what i have and want to know what u think abt it.
    pls suggest some new good frameworks if you are aware of.
    Technologies to be used
    Fat client front end : Java Swings
    Web server : Tomcat,Struts
    Database : Mysql
    FrameWorks
    Client side
    XXXView.Java(is the GUI layer) (where xxx is any module specific name)
              |
    XXXWebHandle.java(this java file will have the code to
    connect to the webserver using the apache httpclient)
    it will call a struts action file specifically
    the data collected from the gui components will be transformed
    into xml and sent to the struts action file.
    Server Side
    xxxaction.java(this file will parse the xml data from client side
    and save it to the datbase using jdbc statements
    it will also retrive data and metadata from database using jdbc queries
    and convert it into xml and send it back as http response to the XXXwebhandle.java
    which then parses back the xml data and puts it on the GUI components of XXXview.java files.
    THe Problems
    1) the conversion of database query resultset to xml at server and the xml back to fields data
    takes a lot of time and is cumbersome to code as we need code the xml
    defination pattern for every data exchange between server and client.
    we need to remove XML .................is it possible????
    can we send data back to client as java objects and if yes then how??.
    2) right now we are making JDBC calls to mysql database using a common Utility class file
    created for handling all kinds of sql statements and return the data via a hashtable object.
    We need to use a ORM tool here............dont know which to use and how to use.
    heard of hibernate and EJB.pls suggest which one to use
    Overall i would appreciate if someone can suggest me good architecture.
    is there any framework readily available for developing these kinda apps
    pls guide or give me links where i can get info abt this.
    thanks
    Jags

    Hellow experts
    i have recently joined a java project
    which is a fat client-web based application.
    clients can work from any location or place using the
    internet
    they will connect to the web server which will be
    provide the data
    to the clients application
    Okay. As an aside, you can 'fatten' up a standard web page with technologies such as Pushlets or Ajax.
    i am working on the improvement of architecture n
    design of the project
    pls help me in deciding the best and the fastest way
    to develop this application further.
    i am designing a framework based on my experience and
    am also doing some research on whats latest which can
    accelerate
    and improve the development process.
    here's what i have and want to know what u think abt
    it.
    pls suggest some new good frameworks if you are aware
    of.
    Technologies to be used
    Fat client front end : Java Swings
    Web server : Tomcat,Struts
    Database : Mysql
    IMO, you should take a look at Eclipse's SWT in addition to Java's Swing. SWT has outstanding performance and looks native. Struts is not a web server. Place that entry instead down in 'frameworks'. MySQL is a good database, but I prefer Postgres, which is also free and implements more of ANSI SQL.
    FrameWorks
    Place Struts here. Also consider using Spring on your server side. BTW, what is Struts doing other than acting as a Controller? Presumably your fat client is the View. No?
    Client side
    XXXView.Java(is the GUI layer) (where xxx is any
    module specific name)
              |
    XXXWebHandle.java(this java file will have the code
    to
    connect to the webserver using the apache
    httpclient)
    it will call a struts action file specifically
    the data collected from the gui components will be
    transformed
    into xml and sent to the struts action file.
    Any thoughts of using either RMI, SOAP or JAXB since you will have Java objects on both ends of client and server?
    Server Side
    xxxaction.java(this file will parse the xml data from
    client side
    and save it to the datbase using jdbc statements
    it will also retrive data and metadata from database
    using jdbc queries
    and convert it into xml and send it back as http
    response to the XXXwebhandle.java
    which then parses back the xml data and puts it on
    the GUI components of XXXview.java files.
    So, a database exists. Fairly normal stuff there.
    THe Problems
    1) the conversion of database query resultset to xml
    at server and the xml back to fields data
    takes a lot of time and is cumbersome to code as we
    need code the xml
    defination pattern for every data exchange between
    server and client.
    Again, take a look at JAXB, SOAP and/or XMLBeans.
    we need to remove XML .................is it
    possible???? Yes
    can we send data back to client as java objects and
    if yes then how??.RMI + Java Serialization or JAXB/SOAP/XMLBeans.
    2) right now we are making JDBC calls to mysql
    database using a common Utility class file
    created for handling all kinds of sql statements and
    return the data via a hashtable object.
    No, no no. Hashtable (and all Maps) have no type-safety. You can introduce lots of programming errors casting from Object to another type. It is far better to create an actual Java object that will hold the data. It seems to take more time, but you will have far fewer runtime errors in your application during development, which IMO, actually speeds up the process overall.
    We need to use a ORM tool here............dont know
    which to use and how to use.
    heard of hibernate and EJB.pls suggest which one to
    use
    Hibernate and, to a lesser extent, JDO are popular now.
    Overall i would appreciate if someone can suggest me
    good architecture.
    is there any framework readily available for
    developing these kinda apps
    pls guide or give me links where i can get info abt
    this.
    Rapidly? Hard to say. I would steer clear of full blown J2EE with EJB's or MDB's if you want to speed up development. Ruby on Rails also generates some press for rapidly putting sites together.
    thanks
    JagsYou are welcome. Best of luck.
    - Saish

  • Web-based UI without portal

    Hi,
    Is it possible to use the web-based UI for travel management without installing a portal?  If so, does anyone have a guide/some useful links around this?
    Thanks
    Adrian

    Hi Adrian,
    You can read the Scope, Architecture, Transaction Flow & Development Tools.
    Scope
    The scope is to define the architecture using
    SAP as an ERP
    BAPI as Business API for SAP
    Liferay as the Content management System.
    Architecture
    The architecture followed here is disconnected where the SAP system, the BAPI and the Liferay are setup to be disconnected, when there is a need of data all three systems connect together and the data is queried and posted. The data is queried form Liferay using BAPI and the response is them posted to Liferay. Liferay will be responsible to process the data using its inbuilt features and post the final information to SAP for further processing it.
                  JAVA
                CONNECTOR
    SAP SYSTEM -
    >  BAPI----
    > WEB UI - LIFERAY :
                                                        User Management
                                                       ESS
                                                       MSS
                                                       HR Admin Scenario
                                                       Time Admin Scenario
                                                       Payroll Admin
                                                       Statutory Reports
                                                       Liferay Workflow
                                                       Liferay Announcement
                             Liferay Database -
      Liferay User Defined tables
    SAP system as an ERP which holds the Employee information.  Business Application Programming Interfaces (BAPIs) enable access to SAP functions by making use of Java Connector (JCo). Liferay will make of BAPIs for creating, retrieving and updating information in SAP system. Liferay holds the Web User Interface. Liferay internally has its own database which contains many user defined tables. The Organization Unit (OU) details which include Users, Roles, Communities, Organization is stored in Liferayu2019s internal database.
    Transaction Flow
    The data transaction pattern in this application needs to go thru a series of events to complete the cycle of posting information to sap.
    Where a transaction is started the data first resides into a temporary location under liferay database, exposing itself to workflow, the workflow will then pick the data for its process if there is no workflow setup it is considered the record as approved and post the data to sap. Else it will expose the record to the respective levels and positions and wait until the records gets approved. Once the record is approved it is posted to SAP.
    The Flow diagram below shows how the data is transacted to sap system.
                   Data Submitted in Liferay UI
                   Temp Storage table in Liferay Database
                   If Record has Next Level Approval   - - - - if no then post data to SAP
                   (Perform Workflow Task)
                   If Record is approved
                   Record Marked as Rejected
    Development Tools
    Application  - Netbeans 6.9
    Database -  My SQL
    Tomcat 6.0
    Cheers
    BLITZZ27

  • Authentication between Single Sign-On and Web based applications

    Hi everyone,
    I need to create a way in Portal 10g (10.1.2.0.2) that allow me to do the following:
    Once the user is logged on Portal (against Single Sign-On - SSO) he doesn't need to retype his username/password when he access a web based application throught the portal, in my case, an ASP application (not .NET, just ASP).
    I made a test creating a External Application in SSO and after publishing this portlet (external application) inside portal.
    It worked, BUT I was prompted to inform username/password to log on the aplication.
    So, the user end up entering his password twice.
    Does anybody know a way to acomplish this task?
    The documentation I'm researching is:
    Oracle Application Server Single Sign-On
    Administrator's Guide
    10g Release 2 (10.1.2)
    B14078-02
    Oracle Application Server Single Sign-On
    Security Guide
    10g Release 2 (10.1.2)
    B13999-03
    Thank you very much,
    Diogo Santos.

    have figured out how to secure any HTML, ASP, PHP, CFM, etc. web page again Portal / OID using the PDK toolkit.
    Using AJAX (Asynchronous JavaScript and XML) and one Oracle Stored Procedure just adding a simple Javascript call to any HTML, ASP, PHP, etc. web page can secure it via Oracle SSO (OID). Access to any secured web page will require that it to be linked from an authenticated Portal session or a page opened in an authenticated Portal session.
    This process can be easily modified to add in group security etc. This is just my starting point.
    1) Create a stored procedure
    # Make sure it has access to portal.wwctx_api.is_logged_on
    CREATE OR REPLACE PROCEDURE login_ajax_check (
    display_error IN number default NULL) AS
    BEGIN NULL;
    If portal.wwctx_api.is_logged_on = false then
    htp.prn('DENY');
    ELSE
    htp.prn('ALLOW');
    END IF;
    Exception when others then htp.p('DENY');
    END;
    2) Use this Javascript in any page you wish to secure.
    <-- Begin Paste Here -->
    <script>
    var allowgo=2
    function ajaxCallRemotePage(url)
    if (window.XMLHttpRequest)
    // Non-IE browsers
    req = new XMLHttpRequest();
    req.onreadystatechange = processStateChange;
    req.open("GET", url, false);
    req.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    req.send(null);
    else if (window.ActiveXObject)
    // IE
    req = new ActiveXObject("Msxml2.XMLHTTP");
    req.onreadystatechange = processStateChange;
    req.open("GET", url, false);
    req.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    req.send();
    else
    return; // Navigateur non compatible
    // process the return of the "ajaxCallRemotePage"
    function CheckPortal()
    ajaxCallRemotePage('[Your page calling the procedure from above]');
    function processStateChange()
    if (req.readyState == 4)
    if (req.status == 200)
    if (req.responseText.substring(0,4) == 'ALLO')
    allowgo = 0;
    else
    allowgo = 1;
    function doPage()
    if (allowgo==1)
    window.location='[Your login or error page]';
    CheckPortal();
    doPage();
    </script>
    <-- End Paste Here -->
    That's it!!! Super easy. It works great too.
    Larry Schenavar
    [email protected]

  • Web based worklist not working...

    Hello,
    (on wlpi 2.1 on weblogic sp2)
    I've created a process that utilizes a stateless session bean. Every thing works
    fine when using the fat-client worklist.
    I wanted to use the web-based worklist with my process, so I did the following:
    1.) Installed the %wlint_home%/samples/bpm_api/jsp/worklist.war from the weblogic
    console.
    2.) Tweaked the "startWeblogic.cmd" file (I'm in NT) to add the wlpi-worklist.jar
    file into the classpath. (this is all in the reamde file in %wlint_Home%/samples/bpm_api/jsp/)
    This works at first, as I can get to the login screen, but as soon as I log in, I
    get a "Classnotfound error" saying it can't find my home interface for my session
    bean.
    So, I figured, "Must not be in the classpath (somehow)". I added my bean .jar file
    into the classpath, and then try again. I get a different error that says "Classnotfound
    error" for the EJBHelper. Same error happens on the fat client in both cases.
    I can simply take out my startWeblogic classpath changes, and restart the server,
    and the fat-client works again (but the jsp worklist doesn't not -- no surprise.)
    Has anyone been able to get the jsp-based worklist to work with a process that uses
    an EJB?
    dave

    I totally lost my internet connection via the router WRT54GS V6
    I am connected directly into the computer from my cable modem.
    I have tried everything. Upgarded firmware, factory default reset, setting the software again and again.
    When I run Easylink Advisor it always reads, no internet...like I said the modem is working when plugged directly into my computer.
    All proper lights are working on the router and modem.
    Could the router be just be broken?
    It seems to be getting worse and worse.
    help please.

  • How can I distribute my web-based app properly?

    I created a web-based application that contain CWGraph3D.ocx and CWAnalysis.ocx. My ComponentWork's version is 6.0. During development and compilcation, there is no problem (I developed my app. in VB6sp5). After that I use Package and Development Wizard of VB to create HTML page and its cab file. During this operation, I got the message mentioned that my CWAnalysis.ocx (only this ocx) doesn't match with the register in the registry. I just clicked on 'No' to accept this. Finally, I create LPK file to include in my html page file. My LPK file includes runtime licenses of CWArray, CWMatrix, CWComplex, CWDSP, and CWGraph3D. After I uploaded my app to web site, the other computers can load my web page, but it is the bla
    nk page because something wrongs in the components. There is no any nofication or error from Internet Explorer. So I tried to test something to find out the problem. I remove CWAnalysis and redo all processes, it doesn't work. I remove CWGraph3D and redo again, it works! So I moved back CWAnalsysis, and redo it again, it doesn't work. I assume that there are some problems in ComponentWorks. But I don't know how to solve this problem.
    Thank you.

    So the error message basically says that CWanalysis control does not match with the information in the registry. Did a re-install help any? Is this the only development machine causing the problem. One thing to try is re-installing the control, by uninstalling Measurement Studio, unregister the cwanalysis.ocx ( using regsvr32), delete the ocx file, reboot and then re-install Measurement Studio. This would make sure that the controls get installed correctly.
    Also, check out this link for dealing with issues of the Package and Deployment wizard.
    I hope this helps
    Bilal Durrani
    NI
    Bilal Durrani
    NI

  • Converting a web-based text page to XMP

    I have a live, web-based text feed that contains all of the metadata I want to capture. I want to tag this metadata to video and image files, and I want that information to stay with the video and image files throughout the production process (ie. the metadata information should be available in transcoded copies of the video files and so on).
    I'd also like to use this metadata to create data-driven graphics in Photoshop. At this stage I can get basic datasets working in PS, but I have to cut-and-paste the info from some cells into a .csv file first. Ideally I'd like to eliminate this manual step as it introduces the possibility of human error, which is what I'm trying to eliminate in the first place.
    Photoshop can't read the whole text file as a dataset because I think it's in an array (I'm not sure, I don't get it), and from my understanding datasets will only work with .csv files.
    It should be a relatively simple process to grab information from a live, web-based text feed and convert it to useable metadata, but I find the XMP SDK completely indecipherable. Apologies for my ignorance but I have no coding experience whatsoever and it seems like it's written in an alien language. Can someone please offer some advice as to how I go about this? Attached is a copy of the text file I'm trying to use.
    Thanks to anyone with enough smarts or nerd power to crack it... it's beyone me, I've wasted weeks staring at a blank page and I'm more confused now than when I started.

    Hi,
    what you are planning to do seems technicaly possible with our XMP C++ SDK. But you really need programming skills in C/C++ to realize this project.
    Regards,
    Samy

  • Need help for the web based project

    I am using netbeans 5.5 and Sql server for db.What is the full form for DAO and how is it going to help me in my project.U also talk about uml want ot know about it.
    and how is it coming to help me.Its a very wast topic i serached.what will be helpful to me of the UML.
    What should i start first --- jsp or db design.
    What should i use for web based project --- only use jsp(presentation)+dao or jsp+servlet+dao.What would be best ?
    provide some nice link based on dynamic fetching of values from the database and showing it at runtime.
    Message was edited by:
    java@mani

    As stated in http://forum.java.sun.com/thread.jspa?threadID=5167752 start reading the Java EE tutorial to get insights in the material.
    what will be helpful to me of the UML.UML generally visualizes the core functionality. See http://www.google.com/search?q=uml+tutorial for some tuts.
    What should i start first --- jsp or db design.Start with both and end with the best balance between both.
    What should i use for web based project --- only use
    jsp(presentation)+dao or jsp+servlet+dao.Depends on the business needs. Generally 3-tier webapplications are the best: web, business and data.
    provide some nice link based on dynamic fetching of values from the
    database and showing it at runtime.Check some SQL and JDBC tutorials how to fetch and process the data:
    http://www.google.com/search?q=sql+tutorial
    http://www.google.com/search?q=jdbc+tutorial
    How to process it in the business and web layer is stated in the Java EE tutorial I've linked in your former topic.
    For applying the patterns, check the http://java.sun.com/blueprints/corej2eepatterns/

  • Errors when processing web service call

    Hello Experts,
    Based on a requirement, I got a URL based on WSDL, using which I created a Consumer Proxy in SAP.
    I created a Logical Port in SOA Manager with type selected as 'WSDL'.
    When I'm trying to execute the proxy class to call the webservice using the logical port through SE80  it is throwing an error log as stated below.
    1) SOAP:14 Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/
    2)Error when processing Web service call
    3)Error when calling SOAP Runtime functions: Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/
    Kindly help me out.
    Thanks,
    Vamshi

    Hi,
    Check Anton's reply in this thread: External WS Consumption Issue
    Also refer the below doc which may help you: Consume an External Web Service in a Nutshell with Good Old ABAP
    Calling WebServices from ABAP via HTTPS
    Regards,
    Kiran

  • INotes web based emails

    Why I can't print all my iNotes web based emails in one go to PDF file? Error message "There was an error processing a page. There was a problem reading this document (109)" always appear and give no solution

    Hi Bernd, thanks for replying. As my company mailbox size is limited, I need to archive my iNotes emails by printing in PDF format; but it can't be print in one go, seems like it can't take more than 30 pages per print, is this common? I would think it must be able to print all in one go irregardless of the number of pages, right? Please enlighthen me, thanks much!

  • Embed Web based reviews into PDF

    We are using the ESM solution accelerator which initiates web-based reviews.  The comment files created by Acrobat are stored as RSS feeds.  At the end of a stage, I need to deliver a self-contained PDF with all the comments.  I'm looking for DDX or the process to do that.  I have the logic to get at all the supporting files (PDF, comment files) but, I can't seem to figure out how to "import" the RSS feeds as annotations into the source PDF.
    Thanks,
    Charles

    The comments are stored in xml in the review zone provider.
    You can use a DDX to import the comments in the PDF.
    See http://livedocs.adobe.com/livecycle/8.2/ddxRef/000653.html
    Jasmin

  • Web-based mail program as default for emailing photos?

    I'd prefer to use my gmail account to send photos, rather than my Mail account. But the options are only for Mail, Entourage, and AOL, I think.
    I can't seem to figure out how to do this any other way than from gmail, click "attach a file" and browse through my directories and select each individual photo. This would be fine, except that the attachments are enormous and I can't figure out how to resize them to a manageable size.
    So, to summarize. Is it possible to use a web-based mail program as your iphoto default? If not, how can I shrink the size down to 240X320 or 640X480, or somewhere in that range?
    I'm using iphoto 4.0.3. Thanks.

    There are programs that allow you to designate a web mail page for the default email program (WebMailer for one). I would guess they should work the same jumping from iPhoto, but don't know how well they'd work at attaching an image since that is usually a process specific to how the page is designed.
    Probably, it'd be easiest to leave Mail as the default email app with Gmail set as the default account, for situations like this, and use the regular webmail interface when you're not planning to attach an image if you like that interface more.

  • IOS 4.2.1 breaks web-based authentication to wifi access points

    Whenever I tried to access the *wifi access points* I use more often *whose authentication is web-based*, like the one at my public library or at my office, although I input my username and password correctly, I am always bounced back to the login form.
    Before iOS 4.2.1 I know that there was a problem of this sort already, related to *some incompatibility between Safari's auto-fill features and the access points*, that could be solved by simply turning off auto-fill, and I did that. But know *it looks like the problem got to a new level of subtlety*.
    Interestingly, *everything worked nicely while I was using the Gold Master version of iOS 4.2.0* that never made it to release, so the solution has to be found among the differences between 4.2.0 and 4.2.1, if you're an Apple engineer reading this.
    Can you help? Any idea or trick to try that I didn't already? Thanks!
    Giacecco

    Hi Richard,
    You mentioned that 'Apple put the AirPrint spec out there for all printer makers'. I've been looking around but I haven't found any spec. Where did you find it?
    Do printer makers have to buy a license in order to be able to advertise that they've implemented the AirPrint protocol? Is there maybe an Apple review process in place?
    TIA
    Geert

Maybe you are looking for

  • Error installing SOA in Solaris 10 x86 VM

    I am trying to install SOA 11.1.1.2.0 on Solaris 10 x86 VM machine. When the runInstaller is invoked from Disk1, i get the following error and the installer quits. Any clues? -bash-3.00$ ./runInstaller ./runInstaller: /export/home/oracle/ofm_soa_gene

  • I can't open any links in my mail.

    I can't open any links or attachments in mail, but I do have internet access.  Did I turn something off by mistake?  This only started happening a couple do days ago.

  • Problem with Watched Folder endpoint

    Hi, We have a problem with a watched folder endpoint. The watched folder is set in a directory in a linux server. The directory then is mapped to a windows directory where files arrive from time to time. Everything works fine until the watched folder

  • Vpn is not working with manual IP setup in Yosemite

    After upgrade to Yosemite, my VPN stops working. I have tried to switch to another VPN (of my friend's), still no luck. I tried to use DHCP, rather than manual IP setup, it worked perfectly.  It is a pity that my company policy does not allow me to u

  • To get selected rows in Class  cl_salv_hierseq_table

    Hi, Following is the code I have used to get checkbox in parent entry using class CL_SALV_SELECTIONS . DATA: gt_parent TYPE TABLE OF scarr. DATA: gt_child TYPE TABLE OF sflight. DATA: gr_table  TYPE REF TO cl_salv_hierseq_table. DATA: gr_selections T