XDIM_MEMBERSET ENTITY how to pass parameter dynamically

Hi experts,
I am using the how to guide "How to pass dynamic parameters to script logic" in order to pass the ENTITY parameter dynamically to the following script logic:
*XDIM_MEMBERSET FIL_KAT=
*XDIM_MEMBERSET ORG_EINHEIT=BAS($ENTITY_DIM$)
*XDIM_MEMBERSET VERSION=UMS_TAG_2011
*XDIM_MEMBERSET WAEHRUNG=LW
*XDIM_MEMBERSET ZEIT_TW=TW1.MAR
*XDIM_MEMBERSET ZEIT_UMSATZ=%HR%
*XDIM_MEMBERSET MEASURES=PERIODIC
*XDIM_MEMBERSET POSITION_UMSATZ=UMS_BR,UMS_BASIS,UMS_BAS_STEIG
*XDIM_MAXMEMBERS ORG_EINHEIT=1500
//*BEGIN
//[POSITION_UMSATZ].[#UMS_BR]=
//[POSITION_UMSATZ].[UMS_BASIS]
//+.[UMS_BAS_STEIG]
//*END
*SELECT(%HR%,"ID","ZEIT_UMSATZ",TITEL_HR="HR_GJ_2010")
*WHEN POSITION_UMSATZ
*IS "UMS_BASIS"
*REC(EXPRESSION=%VALUE%+.[UMS_BAS_STEIG],POSITION_UMSATZ="UMS_BR")
*ENDWHEN
*COMMIT
the following statements are in the task manager:
PROMPT(SELECTINPUT,%SELECTION%,,"Bitte Parameter für Kalenderverschiebung angeben (Land)","%ENTITY_DIM%")
'PROMPT(TEXT,%ENTITY_DIM%,"Bitte die Länder ID erfassen: ",)
INFO(%EQU%,=)
INFO(%TAB%,;)
INFO(%SCRIPT_FILE%,CALDAY_MOVE_PLAN.LGF)
INFO(%MODE%,PLAN)
TASK(FX_START_BADI_RUN_LOGIC,TAB,%TAB%)
TASK(FX_START_BADI_RUN_LOGIC,EQU,%EQU%)
TASK(FX_START_BADI_RUN_LOGIC,SUSER,%USER%)
TASK(FX_START_BADI_RUN_LOGIC,SAPPSET,%APPSET%)
TASK(FX_START_BADI_RUN_LOGIC,SAPP,%APP%)
TASK(FX_START_BADI_RUN_LOGIC,LOGICFILENAME,%SCRIPT_FILE%)
TASK(FX_START_BADI_RUN_LOGIC,SELECTION,%SELECTION%)
TASK(FX_START_BADI_RUN_LOGIC,REPLACEPARAM,MODE%EQU%%MODE%)
TASK(FX_START_BADI_RUN_LOGIC,REPLACEPARAM,ENTITY_DIM%EQU%%ENTITY_DIM%)
Everthing ist working fine. However in the log you can see that the script is running for all entities e.g. Spain instead of only Italy which I entered when I started the data manager. Any idea how I could resolve this issue?
Thanks a lot for your help in advance!
USER:INTROEBER
APPSET:FEINPLANUNG_PILOT_4
APPLICATION:UMSATZ_TAG
NO MEMBER SPECIFIED FOR DIMENSION:FIL_KAT WILL QUERY ON ALL BASE MEMBERS.
GET_DIM_LIST(): I_APPL_ID="UMSATZ_TAG", #dimensions=8
FIL_KAT,MEASURES,ORG_EINHEIT,POSITION_UMSATZ,VERSION,WAEHRUNG,ZEIT_TW,ZEIT_UMSATZ
#dim_memberset=8
FIL_KAT:FIL_#,FIL_EXP,FIL_EXPVJ,FIL_OEXP,4 in total.
ORG_EINHEIT:ORG_EINHEIT,1 in total.
VERSION:UMS_TAG_2011,1 in total.
WAEHRUNG:LW,1 in total.
ZEIT_TW:TW1.MAR,1 in total.
ZEIT_UMSATZ:2010.DEC.01,2010.DEC.02,2010.DEC.03,2010.DEC.04,2010.DEC.05,...120 in total.
MEASURES:PERIODIC,1 in total.
POSITION_UMSATZ:UMS_BR,UMS_BASIS,UMS_BAS_STEIG,3 in total.
REC :%VALUE%+.[UMS_BAS_STEIG]
CALCULATION BEGIN:
QUERY PROCESSING DATA
QUERY TIME : 4485.00 ms. 84938  RECORDS QUERIED OUT.
QUERY REFERENCE DATA
QUERY TIME : 7516.00 ms. 155967  RECORDS QUERIED OUT.
QUERY PROCESSING DATA
QUERY TIME : 1156.00 ms. 7012  RECORDS QUERIED OUT.
QUERY REFERENCE DATA
QUERY TIME : 1328.00 ms. 14024  RECORDS QUERIED OUT.
CALCULATION TIME IN TOTAL :255024.00 ms.
91950  RECORDS ARE GENERATED.
CALCULATION END.
ENDWHEN ACCUMULATION: 91950  RECORDS ARE GENERATED.
DATA TO WRITE BACK:
FIL_KAT     ORG_EINHEIT     POSITION_UMSATZ     VERSION     WAEHRUNG     ZEIT_TW     ZEIT_UMSATZ     SIGNEDDATA
FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.01     11107.62
FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.02     32823.36
FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.03     19609.57
FIL_EXP     E_2003     UMS_BR     UMS_TAG_2011     LW     TW1.MAR     2010.NOV.04     32509.49

Hi Marco,
Let me see if I'm understading your problem,when you try to pass the parameter dynamically  in your entity dimension  *XDIM_MEMBERSET ORG_EINHEIT=BAS($ENTITY_DIM$), But BPC it's always selecting ORG_EINHEIT.....  If that so, try it like this  *XDIM_MEMBERSET ORG_EINHEIT=BAS(%ORG_EINHEIT_SET%).
hope this helps,

Similar Messages

  • How to Pass parameter to Custom Scheduler dynamically

    hi ,
    I am new to OIM.
    Need your help in passing parameters dynamically to Custom Scheduler.
    I have created Custom Scheduler by extending Task Support.
    I have registered the plugin through API , using PlatformService.registerPlugin() method.
    As I need to send the parameter(s) to this CustomScheduler, I have defined them in Metadata (CustomScheduleTask.xml) file as below and got it imported into DB
    through weblogicImportMetadata.sh script by providing the path of the file.
    <scheduledTasks xmlns="http://xmlns.oracle.com/oim/scheduler">
    <task>
    <name>CustomScheduleTask</name>
    <class>org.schedule.custom.task.CustomScheduleTask</class>
    <description>Fetch details of the given user_id</description>
    <retry>5</retry>
    <parameters>
    <string-param required="true" helpText="Login Name">Login Name</string-param>
    </parameters>
    </task>
    </scheduledTasks>
    Iam able to import this plugin as well as register the plugin successfully. Now I have defined a job to which this Custom SchedulerTask is mapped.
    Now in order to run this job(schedule task) I need to provide Login name( or id) which needs to be send as a parameter for the scheduler to get executed.
    But while defining the job with this Schedule Task on OIM console, I was not able to define or pass parameter to this job. hence parameter is null in
    CustomSchedule 's execute method .
    Kindly help me how to pass parameter dynamically while running the scheduler from OIM console so that the execute method would be able to receive it.
    Thank you in Advance.
    Regards,
    Kumar

    Hi,
    When you have created the schedule job for your custom schedule task, you should see your Login Name textfield in the schedule task. If not, then there verify your schedule task xml.
    In your schedule class code, add:
    public void execute(HashMap arg0) {
              final String METHOD_NAME = "execute :: ";
              logger.debug(CLASS_NAME + METHOD_NAME + "Entering Method - execute");
              try {
                   String LoginName = arg0.get("Login Name");
    Regards,
    Sunny

  • Please help how to pass the dynamic value to VO -- Urgent.

    Hi,
    I have an Oracle Standard VO( SQL Query). As per my requriemnt i extended standard VO with one new feild.Now i want to query the new VO dynamically.
    How to pass the dynamic values to new query?
    for refence i am giving my old query.
    select
    secondary_inventory_name as SubInventoryName,
    description as Description,
    from mtl_secondary_inventories
    my new Query is like this:
    select
    secondary_inventory_name,
    description,
    Item
    from mtl_secondary_inventories
    where item='123456'
    I want to pass this "where item="123456" as dynamically. please help where i will do the change's.
    Thanks,
    Sekhar.

    Hi,
    thanks pratap for quick response...but i am extending VO from Standard VO.
    I have a Standard VO which contains a bind variable suppose :1.
    I have extended this above standard VO and i want to add another bind variable say :2 to the custom VO.
    Please tell me how will i pass bind parameter value to the bind variable in runtime ?
    what are files i want to change?
    Thanks,
    Sekhar.

  • How to pass parameter into a source variable of a invoke activity

    I'm an new BPELer, I created a invoke activity to submit Oracle Appplications concurrent program, but I don't know how to pass parameter into source variable.
    BTW, I have created the mapper file (.xsl) file.
    could anyone tell me how to do that?
    Thanks,
    Victor

    Hi.
    How you start application? I think you send message to webservice(BPEL process is webservice too). So construct message with variable and value.
    But I created only processes where input value doesn't matter. I haven't use mapper yet too.

  • How to pass parameter as http POST in pageContext.setForwardURL

    Hi,
    I need to call a third party application page in my custom OAF page. I need to pass parameter to this third party page using POST method. I am using following command to call that -
    HashMap hm = new HashMap();
    hm.put("FirstName",firstName );
    hm.put("LastName",lastName);
    hm.put("AppSignature", signature);
    pageContext.setForwardURL(hopURL,
    null, // not necessary with KEEP_MENU_CONTEXT
    OAWebBeanConstants.KEEP_MENU_CONTEXT, // no change to menu context
    null, // No need to specify since we're keeping menu context
    hm, // request parameters
    false, // retain the root application module
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES, // display breadcrumbs
    OAException.ERROR);
    I am passing parameter to the page using hash map table. That application is expecting the parameters in POST format and I believe using hash map table the parameters will be passed as GET format.
    We figured that out because one of the parameter we have to send is AppSignature which is 160 characters long. When third party applicatoin received that parameter they got only 151 characters, looks like they are truncated by GET method.
    Any idea how to pass parameter using POST format so that this issue could be fixed.
    Regards
    Hitesh

    Sumit,
    Thanks for your reply. I have resolved this issue by forwarding all parameters in session using pageContext.putSessionValueDirect and redirect to a jsp using pageContext.redirectImmediately.
    in jsp I read the params from session and set in the form , and then redirected to my third party application.
    Regards
    Hitesh

  • How to pass parameter /1BCDWB/DOCPARAMS from webdynpro?

    Hi Experts,
    We create a wdp view and indert an adobe form into it. And this form has an interface based on XML schema.
    Now we want to translate this form into multi-language, and in wdp side, we will display diffenent language version of form for different regions.
    I found that there is a paramater /1BCDWB/DOCPARAMS-LANGU, and it seems can control the language version in processing.
    But I donot know how to pass parameter /1BCDWB/DOCPARAMS from wdp to adobe form.
    Its my 1st to use adobe form and wdp, i really have no way out. Any advice will be Appreciated.
    Thank you.
    Richard

    @sahai: Hey no , I am using very very simple example without any query or complex statement. I just have 2 radio buttons in VIEW1. On clicking the radio button, the naviagtion to view2 is done and the value of selected radio button is passed as a parameter in the plug.
    In the view2 , i just have a caption in my layout where i am displaying the parameter value by setting the attribute.THe warning i get is in view2. Here is the code. Apart from this there is no coding in view2.
    METHOD HANDLEPLUG_IN_V2 .
        DATA:
          NODE_CAPT_MSG                       TYPE REF TO IF_WD_CONTEXT_NODE,
          ELEM_CAPT_MSG                       TYPE REF TO IF_WD_CONTEXT_ELEMENT,
          STRU_CAPT_MSG                       TYPE IF_VIEW2=>ELEMENT_CAPT_MSG ,
          ITEM_MSG                            LIKE STRU_CAPT_MSG-MSG.
    *   navigate from <CONTEXT> to <CAPT_MSG> via lead selection
        NODE_CAPT_MSG = WD_CONTEXT->GET_CHILD_NODE( NAME = `CAPT_MSG` ).
    *   get single attribute
        NODE_CAPT_MSG->SET_ATTRIBUTE(
          EXPORTING
            NAME =  `MSG`
            VALUE = PAR_1 ).
    ENDMETHOD.

  • How to pass parameter to the Query String of the Named Queries'SQL

    Firstly to say sorry,I'm a beginner and my English is very little.
    Now I want to know
    How to pass parameter to the Query String of the Named Queries'SQL in the Map editor.
    Thanks.

    benzi,
    Not sure if this is on target for your question, but see #5 in the link below for some web screencasts that show how to pass an input text form field value to the bind variable of a view object. If you're looking for something different, maybe provide some more details such as what you are trying to accomplish and what technology stack you are using - for example, ADF BC, JSF, etc.
    http://radio.weblogs.com/0118231/stories/2005/06/24/jdeveloperAdfScreencasts.html
    Also see section 5.9 and chapter 18 in the developer's guide.
    thanks

  • How to pass parameter to intro.jsp page ?

    Hi all,
    Anybody please tell me how to pass parameter to intro.jsp page.
    Is there any param name defined in <forward > syntax ?
    I have made following configuration in struts-config.xml file.
    I want to pass parameter to intro.jsp page
    <global-forwards>
              <forward name="invalidsession" path="/intro.jsp" redirect="true" />
    </global-forwards>
    please reply soon.
    Thanking you.

    Hi all,
    I have a similar kind of question..
    Iam trying to pass a string variable from JSP to servlet thro URL..
    Im using tomcat5
    COde:
    String fname=request.getParamter("filename");
    <jsp:forward page="/servlet/coreservlets.filedownload?name=" +fname />
    It is generating a unterminated tag error..Please help..

  • How to pass parameter into transaction iview ?

    Hi experts,
    I want to know "how to pass parameter into transaction iview ".
    Regards,
    Krishna Balaji T

    Hi Krishna,
    Not sure if this can help you.
    1) Passing a parameter to a transaction iview (I saw a resolved suggestion)
    Passing a parameter to a transaction iview
    2) Passing a parameter from the portal to R3 (helpful info for you)
    Passing a parameter from the portal to R3
    3) Create SAP Transaction iView using SAPGUI for Windows (Great Blog and info about TA Iview)
    Create SAP Transaction iView using SAPGUI for Windows
    Please check the following link for Transaction Iviews
    http://help.sap.com/saphelp_nw2004s/helpdata/en/02/f9e1ac7da0ee4587d79e8de7584966/frameset.htm
    Just some info: Portal is basically what the end user can see. What he can do, is still maintain in the backend system. If there are parameters setup already for the user in the backend system (in SU01), then those parameters should still valid for the transaction that the parameters are linked to.
    Hope that helps and award points for helpful suggestions.
    Ray

  • How to   Pass Parameter from BIP  to Dashboard  Report

    Hi,
    Parameter from BIP to Dashboard Report
    If I select BIP report paremeter should pass value to dashboard report
    thanks in advance.
    CHEERS ,
    Jel

    Hi Saichand,
    I hav gone through above link its passing values from Dashboard prompt to BIP report only..
    just i need like reverse (if i click on BIP report value then it should pass that value to Dashboard reports) in this this case how to pass parameter from BIP to dashboard report
    Thanks in advance
    Cheers,
    Jel

  • How to pass a dynamic value to jrxml file???

    Hi all,
    let me know a thing,How to pass a dynamic id value to the query in jrxml file.
    <queryString>
    <![CDATA[select currency_id from currency]]>
    </queryString>
    Because for every user,we have to generate a jasper report based on their loginId.So we have to maintain a dynamic value in jrxml file inorder to get records from table.
    <queryString>
    <![CDATA[select currency_id from currency where cid="DynamicId value"]]>
    </queryString>
    is the above mentioned tag possible???If it so kindly let me know how to do this from jsp page to jrxml file(Assume that jsp page calls jrxml file for report generation).
    Thanks in advance,
    sundar,

    hi all
    i m dealing wid same problem
    i used abv code bt some problem is still there
    foll is the code:
    code]
    Enumeration e=request.getParameterNames();
    while(e.hasMoreElements()){
    out.println("fgdgf");
    String name=(String)e.nextElement();
    String value=request.getParameter(name);
    stmt = dbconn.prepareStatement("UPDATE applicants SET statusLocal = 'n' where empNo = '" +value+ "'"); 
    int rowsAffected=stmt.executeUpdate();
    out.println(stmt);
    if(rowsAffected!=0){
    out.println("Successfull");
    else {
    out.println("Failed");
    }           while condition is not satisfied
    control does not enter the while loop
    can u plz tel me wht shud b the problem..
    thnx

  • OIM Reporting: How to pass a dynamic parameter in the xml file

    Hi,
    I am generating a custom report in OIM. My stored procedure is ready and I am getting the required data when I query the database. However,while displaying it through the xml file, I need to filter the fetched data by group name. The glitch present here is that the group name is dependent on the resource selected and so the group parameter is dynamic. How can I pass this dynamic group parameter in the xml file to filter the data. Which attributes are to be used. Can anyone please help me out regarding this?
    Thanks in Advance,
    SK

    The OOTB OIM reporting mechanism does not support dependant LOVs, which is
    what you are asking for.

  • How to pass parameter in webstart/browser mode

    Hello -
    I'm trying to understand how to pass a parameter to my FX2 application with in browser mode or webstart mode.
    So I imported ColorfulCircles project from the Ensemble into Netbeans. Then I modified the code and put in a small snippet to pull a parameter after init method, like so. I just get the parameter and set it as title for the stage.
    @Override public void start(Stage primaryStage) throws Exception {
    init(primaryStage);
    Parameters params = getParameters();
    String myTitle = params.getNamed().get("myTitle");
    primaryStage.setTitle(myTitle);
    primaryStage.show();
    play();
    I then did a clean and build in netbeans...all html, jar, jnlp etc was generated.
    I then manually modified the HTML as shown below. But the title for the stage doesnt update/show, for either modes.
    What is missing here?
    +<html><head>+
    +<SCRIPT src="./web-files/dtjava.js"></SCRIPT>+
    +<script>+
    +function launchApplication(jnlpfile) {+
    +dtjava.launch(            {+
    url : 'ColorfulCircles.jnlp',
    jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iQ29sb3JmdWxDaXJjbGVzLmpubHAiPg0KICA8aW5mb3JtYXRpb24DQogICAgPHRpdGxlPkNvbG9yZnVsQ2lyY2xlczwvdGl0bGU+DQogICAgPHZlbmRvcj5kZW1vPC92ZW5kb3I+DQogICAgPGRlc2NyaXB0aW9uPlNhbXBsZSBKYXZhRlggMi4wIGFwcGxpY2F0aW9uLjwvZGVzY3JpcHRpb24+DQogICAgPG9mZmxpbmUtYWxsb3dlZC8+DQogIDwvaW5mb3JtYXRpb24+DQogIDxyZXNvdXJjZXM+DQogICAgPGpmeDpqYXZhZngtcnVudGltZSB2ZXJzaW9uPSIyLjArIiBocmVmPSJodHRwOi8vamF2YWRsLnN1bi5jb20vd2ViYXBwcy9kb3dubG9hZC9HZXRGaWxlL2phdmFmeC1sYXRlc3Qvd2luZG93cy1pNTg2L2phdmFmeDIuam5scCIvPg0KICA8L3Jlc291cmNlcz4NCiAgPHJlc291cmNlcz4NCiAgICA8ajJzZSB2ZXJzaW9uPSIxLjYrIiBocmVmPSJodHRwOi8vamF2YS5zdW4uY29tL3Byb2R1Y3RzL2F1dG9kbC9qMnNlIi8+DQogICAgPGphciBocmVmPSJDb2xvcmZ1bENpcmNsZXMuamFyIiBzaXplPSIxNzg3NSIgZG93bmxvYWQ9ImVhZ2VyIiAvPg0KICA8L3Jlc291cmNlcz4NCiAgPGFwcGxldC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iY29tLmphdmFmeC5tYWluLk5vSmF2YUZYRmFsbGJhY2siICBuYW1lPSJDb2xvcmZ1bENpcmNsZXMiID4NCiAgICA8cGFyYW0gbmFtZT0icmVxdWlyZWRGWFZlcnNpb24iIHZhbHVlPSIyLjArIi8+DQogIDwvYXBwbGV0Pg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iQ29sb3JmdWxDaXJjbGVzU2FtcGxlIiAgbmFtZT0iQ29sb3JmdWxDaXJjbGVzIiAvPg0KICA8dXBkYXRlIGNoZWNrPSJiYWNrZ3JvdW5kIi8+DQo8L2pubHA+DQo='+
    +,+
    +params: {myTitle: "MyColorfulCircles"}+
    +},+
    +{+
    javafx : '2.0'+
    +},+
    +{}+
    +);+
    return false;
    +}+
    +</script>+
    +<script>+
    +function javafxEmbed() {+
    dtjava.embed(
    +{+
    url : 'ColorfulCircles.jnlp',
    placeholder : 'javafx-app-placeholder',
    width : 800,
    height : 600,
    jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iQ29sb3JmdWxDaXJjbGVzLmpubHAiPg0KICA8aW5mb3JtYXRpb24DQogICAgPHRpdGxlPkNvbG9yZnVsQ2lyY2xlczwvdGl0bGU+DQogICAgPHZlbmRvcj5kZW1vPC92ZW5kb3I+DQogICAgPGRlc2NyaXB0aW9uPlNhbXBsZSBKYXZhRlggMi4wIGFwcGxpY2F0aW9uLjwvZGVzY3JpcHRpb24+DQogICAgPG9mZmxpbmUtYWxsb3dlZC8+DQogIDwvaW5mb3JtYXRpb24+DQogIDxyZXNvdXJjZXM+DQogICAgPGpmeDpqYXZhZngtcnVudGltZSB2ZXJzaW9uPSIyLjArIiBocmVmPSJodHRwOi8vamF2YWRsLnN1bi5jb20vd2ViYXBwcy9kb3dubG9hZC9HZXRGaWxlL2phdmFmeC1sYXRlc3Qvd2luZG93cy1pNTg2L2phdmFmeDIuam5scCIvPg0KICA8L3Jlc291cmNlcz4NCiAgPHJlc291cmNlcz4NCiAgICA8ajJzZSB2ZXJzaW9uPSIxLjYrIiBocmVmPSJodHRwOi8vamF2YS5zdW4uY29tL3Byb2R1Y3RzL2F1dG9kbC9qMnNlIi8+DQogICAgPGphciBocmVmPSJDb2xvcmZ1bENpcmNsZXMuamFyIiBzaXplPSIxNzg3NSIgZG93bmxvYWQ9ImVhZ2VyIiAvPg0KICA8L3Jlc291cmNlcz4NCiAgPGFwcGxldC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iY29tLmphdmFmeC5tYWluLk5vSmF2YUZYRmFsbGJhY2siICBuYW1lPSJDb2xvcmZ1bENpcmNsZXMiID4NCiAgICA8cGFyYW0gbmFtZT0icmVxdWlyZWRGWFZlcnNpb24iIHZhbHVlPSIyLjArIi8+DQogIDwvYXBwbGV0Pg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iQ29sb3JmdWxDaXJjbGVzU2FtcGxlIiAgbmFtZT0iQ29sb3JmdWxDaXJjbGVzIiAvPg0KICA8dXBkYXRlIGNoZWNrPSJiYWNrZ3JvdW5kIi8+DQo8L2pubHA+DQo='+
    +,+
    +params: {myTitle: "MyColorfulCircles"}+
    +},+
    +{+
    javafx : '2.0'+
    +},+
    +{}+
    +);+
    +}+
    +<!-- Embed FX application into web page once page is loaded -->+
    dtjava.addOnloadCallback(javafxEmbed);
    +</script>+
    +</head><body>+
    +<h2>Test page for <b>ColorfulCircles</b></h2>+
    +<b>Webstart:</b> click to launch this app as webstart<br><hr><br>+
    +<!-- Applet will be inserted here -->+
    +<div id='javafx-app-placeholder'></div>+
    +</body></html>+

    Thank you Igor.
    "Released version of JavaFX do not provide support for this scenario."
    --> So current release wont support for both webstart and embedded?
    "Note that doc you are referring to only mention it for embedded applications."
    -->But the code I've shown, doesnt work for embedded app either. That html I pasted, has both embedded and webstart - doesnt work for both.
    "This is improved in JavaFX 2.2 though. "
    -->So does that mean, if I try 2.2, it'll still only work for embedded? Or will it work for both webstart and embedded?
    If only for embedded..then in that case, what's the best way to dynamically pass a parameter (named or unnamed) to a WebStart app?
    Thanks.
    A

  • How to pass parameter to the method in EJB session bean from Managed Bean

    Hi,
    I need some guidance in accessing the EJB session bean methods from one of my backing Bean. I use EJB 3.0 Entity Beans and EJB Session Beans. I have to get value from my page and pass it thro the backing bean to the respective EJB session bean. I have no clue of how to do this,
    When i click a command link on the page, in its backing bean click method, i am able to get a value and store in a variable under its click action. But from there i am not knowing of how to pass it as a variable to the EJB session bean and hence execute the query(this is where we have to pass the variable as a parameter in its where clause) in the entity bean.
    I wanna know how to make a call to the EJB session bean and from there execute the Enitity bean.
    Guide me regarding this....
    Thanks
    ri

    Unfortunately dependency injection doesn't work for jsf backing beans, so you have to use a normal jndi lookup to find your session bean. The following example shows you how to find a session bean and call a method:
    public void commandButton_actionListener(ActionEvent actionEvent) {
    Context ctx;
    try {
    ctx = new InitialContext();
    helloWorldEjb = (HelloWorldEJB)ctx.lookup("HelloWorldEJB");
    hello = helloWorldEjb.sayHello(name);
    System.out.println(hello);
    } catch (NamingException e) {
    e.printStackTrace();
    }

  • How to pass parameter from 1 stored procedure to another stored procedure inside crystal report

    Hi
    I have several stored procedure in my Crystal Report. I am wondering if it is possible for me to pass a parameter to one of the stored procedure and to use the result of that stored procedure E.g. CustomerCode. To another 2 stored procedure to generate the report dynamically?
    I have 3 stored procedure
    The 1st one is used to gather information and process the calculation
    another 2 stored procedure is used for generate the graph and both of them required to take 2 parameters. The 1st stored procedure will require 1 parameter (E.G. Reference Code) and will return a set of information including the data that could be use on the other 2 stored procedures.
    After I added these 2 stored procedure, it requires me to pass 3 parameters to the report. I would like to know if I could only pass the Reference Code for stored procedure 1 and use it to retrieve the information for the other 2 parameter?
    Thanks in advance
    Chi

    Hi Chi
    To pass parameter from 1 stored procedure to another stored procedure, you will have to create sub report. In your case you will have to create 2 sub reports for 2nd and 3rd stored procedure and link those sub reports with the main report using Reference Code field in order to pass the values.
    After creating the report when you will refresh the report, it will ask 4 parameters, one parameter for main report, one for the first subreport and two for second subreport to fetch the data correctly.
    Regards
    Poonam Thorat.

Maybe you are looking for

  • Adobe Livecycle Submit Problems

    I am using Adobe Livecycle ES.  Putting a button on a page to submit the form.   However although it appears to save the settings it sends the form to a  different address and in a different format.  I can even start a blank form set  it to email add

  • Error when installing SCSM 2012 Web Portal

    I am trying to install System Center Service Manager 2012 Web portal. I've got a server that has Service Manager 2012 Management Server installed on it. I am trying to add on the web console (this is just a test/lab/demo environment). The installer g

  • Help needed installing Flash Player 10

    Trying to install Flash Player 10 and get an error message in german sending me for information to wwww.adobe.com/tn_19166. Have tried whatever indicated on that page as well as all the hints i've found on ADOBE website buti'm unable to solve the pro

  • Why are images being copied from a linked library that aren't modified

    I'm trying out the linked library feature and that is my preffered way of using iPhoto but I notice that many images that haven't been modified in iPhoto are being copied as full res modified images. My camera Nikon D2x supports auto rotation of vert

  • Refresh Webi reports automatically after BI data loads ?

    Hello, We are about to install BOE X.1 on top of BI 701. The idea would be that the users would perform their WebI daily reporting, but obviously only after SAP BI night batch scheduling is finished, and the BI infoproviders filled. I've read that BO