Passing dynamic values in WebElements

Hi
I have created a report with webelement using WESelect. For drop down values we are creating a sting of values with allelements.Is there a way i can get the values from a database column or dynamic values.
For example a Week WESelect is created with values as follows:
string allelements:= ("week","wk01|wk02","wk01|wk02",{?week},"")
instead of this values can we get values from database column like {week.weeknumber} ?
How can this be solved.
Thanks & Regards
Mahesh

hello Mahesh,
in the tips and tricks section of the webelements user guide there is the following information...
Can webElements be used with live data?
Yes. Controls such as select menus that require that data be rolled up or
amalgamated before the control is created are populated by running a
Report Header subreport that rolls the data up. The data is then passed
to the main report via a shared variable which is used in the control.
Please see the DCP reports in the webElements .zip package for ideas on
how to do this.
Controls such as check boxes or radio buttons can be populated by
placing the formula containing the control in the Details section or the
Group Header / Footer section where the control is needed. Ensure that
the controls do not span more than one page. See the Requirements
section of the User Guide for more information.
i hope this helps,
jamie

Similar Messages

  • Pass dynamic values to search-query in wlp-syndication-config for RSS

    Hi All,
    I want to pass dynamic values to the <search-query> element for the <syndication-feed> node in the wlp-syndication-config.xml file for implementing RSS feeds.
    Here's a sample
    <syndication-feed>
              <name>RSSFeed</name>
              <search-query>cm_objectClassInstance=='Node' &amp;&amp; date == 'x'_</search-query>
              <search-type>pubmeta</search-type>
         </syndication-feed>
    I tried passing the parameter in the url but the feed doesn't read it. The only option i have is to manually put the value to get the content from the repository, which sucks...because the values can change any time. is there any way that I can avoid it
    Any help on this would be appreciated.
    Thanks,
    K

    James:
    Passing filters to an IR within the URL is described here
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/app_comp.htm#sthref989
    Varad

  • How to Pass Dynamic values to XML in flex

    Hi,
    i just want to pass dynamic values. it must be stored in XML
    List or XML .for Ex: In my App i want to pass
    Edu_Institute,From_date,To_Date,Qualification fileds to
    Education table. I have used Webservices to connect with the
    Backend.
    At that time of processing, i want to pass 2 or more sets of
    Dynamic Values of Edu_Instiute,From_Date,To_Date....... to my
    webservice .
    i fetch the Edu_Institute value from text1.text From_Date
    from Datefield1.text etc... when i click the Add Button it must be
    stored in XMLnode[0],XMLnode[1]......& i will pass this nodes
    to my table
    How to do that??
    Can anyone please find out the solution for me??
    Thanks
    Regards,
    Thenmalar v

    Are you asking how to build XML in Actionscript?
    If so, the "literal" syntax is easy:
    var xmlData:XML = <root><text
    myAttr={test1.text}</root>
    You can also work directly with the XML class methods.
    Tracy

  • How to pass dynamic values to JDBC Database adapter in PureSQL operation?

    I want to fetch the records from the table via JDBC database adapter with the criteria but I should not hardcode the values inside my query. I am using Execute by PureSQL operation. Values might change in future and it is the reason I should not hardcode the values and instead I should pass it dynamically.
    This is my query:
    SELECT FROM Table0 t0, Table1 t1 WHERE t0.Field1= 'ABC' AND t0.Field2= 'DEF' AND t0.Field3 = 'CBA' AND t1.FLAG IS NULL AND t1.Field1 = t0.Field4*
    The values 'ABC', 'DEF', 'CBA', 'NULL' are not fixed and it can be changed. Hence, I need to pass the values for these fields dynamically. What must be passed in the query and where to pass the User Defined Values during the run time.
    Please can anyone suggest how to resolve this. I am using SOA 11g.
    Thanks in advance.

    Hi,
    Ensure that you use the Adapter Configuration Wizard to do the query modification suggested by Arik. This will allow the schema for the DB Adapter getting created automatically. Also revisit this schema to assure that the data types of the bind parameters (parameters with #) have been correctly populated in the schema.
    You can get some help from this too although this doesn't fully match your use-case.
    Regards,
    Neeraj Sehgal

  • How to pass dynamic values in standard text......

    Hello,
    I have no idea that how to create the standard text with transaction SO10,and how to pass the dynamic values to that standard text.Will you guide me with step-by-step procedure.
    Thanking you in advance,
    Regards,
    Asmitha.

    Hi,
        Goto SO10 Tcode
    Give :- Text Name:- any Name
               Text Id :- ST
                Language:- required language
    Now the Text which you want to print along with the Dynamic variable,
    Ex:-  Sales order number is &VBAK-VBELN&
    Save and Activate
    above is i have given it VBAK-VBELN, you can give field name which hold dynamic value.
    Now call the above created Standard text in your Form and check it.
    Regards
    Bala Krishna

  • Is it possible to pass dynamic values to custom tag?

    Hi there, I'm trying to build a calendar custom tag so I can drop the calendar into an existing webpage easily.
    I have got the calendar displaying on the page but the problem I have is when I try to create 'previous' and 'next' links. Is it possible to pass parameters to a custom tag that have dynamic values?
    In PHP it would looks something like:
    <a href="bla.php?page=$pagenumber">next page</a>When I create the calendar object I set it to the current date so when I try to increase or decrease the month (next/prev month) it doesn't work because the code is run again and hence setting the current date again.
    Any ideas?
    Cheers in advance
    Message was edited by:
    MajorMahem

    for eg
    <a href=" Display.jsp?id='+<%=customerId%>">Result Page</a>
    Please try this,
    i didn't work out, any how apply this sample to your code

  • Passing Dynamic Values to a Stored Procedure

    I have a stored procedure to create a Table. How to I pass a
    value to the procedure to name the Table. This SP works except the
    name of the table is @newcomm not the value I am trying to pass in.
    What is the proper syntax to make this happen.
    CREATE PROCEDURE [dbo].[sp_newcommenttbl]
    @newcomm varchar (50)
    AS
    BEGIN
    CREATE TABLE [dbo].[@newcomm] (
    [configid] [int] IDENTITY (1, 1) NOT NULL ,
    [email] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
    NULL ,
    [adminemail] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [erroremail] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [toCommentFormEmail] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dsn] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
    NULL ,
    [gmdsn] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
    NULL ,
    [dbusername] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbpassword] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [acfcpath] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [acfcpath2] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [acfcpath3] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [urlactivate] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [urlresetpassword] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [initialized] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename1] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename2] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename3] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename4] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename5] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename6] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename7] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename8] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename9] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename10] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [pageheader] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL
    ) ON [PRIMARY]
    END
    GO
    <cfstoredproc procedure="sp_newcommenttbl"
    datasource="xxxxx" returncode="no">
    <cfprocparam type="in" maxlength="50"
    cfsqltype="cf_sql_varchar" value="pighg3">
    </cfstoredproc>

    When I create the procedure I don't get an error. I get an
    error when I call it.
    [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect
    syntax near the keyword 'ON'.
    ColdFusion cannot determine the line of the template that
    caused this error. This is often caused by an error in the
    exception handling subsystem.
    Here is the call.
    <cfstoredproc procedure="sp_newcommenttbl"
    datasource="pisecurity" returncode="no">
    <cfprocparam type="in" maxlength="50"
    cfsqltype="cf_sql_varchar" value="pighg3" variable="newcomm">
    </cfstoredproc>
    Here is the syntax for the SP.
    CREATE PROCEDURE [dbo].[sp_newcommenttbl]
    @newcomm varchar (50)
    AS
    BEGIN
    EXEC('CREATE TABLE [dbo].['+@newcomm+'] (
    [configid] [int] IDENTITY (1, 1) NOT NULL ,
    [email] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
    NULL ,
    [adminemail] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [erroremail] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [toCommentFormEmail] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dsn] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
    NULL ,
    [gmdsn] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS
    NULL ,
    [dbusername] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbpassword] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [acfcpath] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [acfcpath2] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [acfcpath3] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [urlactivate] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [urlresetpassword] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [initialized] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename1] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename2] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename3] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename4] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename5] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename6] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename7] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename8] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename9] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [dbtablename10] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL ,
    [pageheader] [varchar] (50) COLLATE
    SQL_Latin1_General_CP1_CI_AS NULL
    ON [PRIMARY]')
    END
    GO

  • Pass Dynamic value to a field in xslt

    Hi,
    I have 5 different bpel processes & 5-10 xslts. I need to pass a hardcoded value(user) to one of the field in xslt which will be common for all xslt files. Now i want not to do hardcoding in every xsl. Rather, i want to make change at a place which will be effective for all others. what's the best approach to achieve this.
    Thanks,
    Vinit

    Hi Vinit
    I hope the following will solve your problem
    1) create variable of type 'parameters'.
    Ex:
    xmlns:ns4="http://schemas.oracle.com/service/bpel/common"
    <variable name="XSLTParam" element="ns4:parameters"/>
    2)
    <assign name="Assign9">
    <copy>
    <from><com:parameters xmlns:com="http://schemas.oracle.com/service/bpel/common">
    <com:item>
    <com:name>USER</com:name>
    <com:value/>
    </com:item>
    </com:parameters></from>
    <to variable="XSLTParam"/>
    </copy>
    <copy>
    <from variable="your_user"
    query="xpath+query of user"/>
    <to variable="XSLTParam"
    query="/ns4:parameters/ns4:item[ns4:name='USER']/ns4:value"/>
    </copy>
    </assign>
    3) pass these values to xsl
    EX:
    <assign name="Assign1">
    <copy>
    <from expression="ora:processXSLT('xsl/Transformation_1.xsl',bpws:getVariableData('Receive1_execute_InputVariable','part1'),bpws:getVariableData('XSLTParam'))"/>
    <to variable="Invoke1_Produce_Message_InputVariable"
    part="body"/>
    </copy>
    </assign>
    4) in xsl file
    define parameter
    EX:
    <xsl:param name="USER"/>
    <xsl:variable name="User_value">
    <xsl:value-of select="$USER"/>
    </xsl:variable>
    <inp1:user>
    <xsl:value-of select="$User_value"/>
    </inp1:user>
    Regards
    Vamsi..

  • EmailNotification- passing dynamic value to From address

    hi,
    on configuring email activity,
    we are passing the from address dynamically.
    From address is taked from the payload.
    but when the email is triggered, the email comes from the address which we have configured in the UMS in the server side..
    why does this happens.. ??

    i am referring to From Account name only..
    configured the From account name in the server UMS (for eg: [email protected])
    but, i need this to be passed dynamically from the payload..
    in the Email assign activity, From account name is mapped to the payload From address..
    but its not taking that address from the payload..
    the account name configured n the server is taken as default..
    what should be done for dis?

  • How can I pass dynamic value as a user input parameter in discoverer?

    Hi,
    I have a requirement for a discoverer report like this: The report will display only details for Suppliers that have expired (or soon to be) Insurance details. That is the Expiration Date is less than or equal to the day the report is being run plus any days specified in the Number of Days in the Future Parameter.
    The sample code as:
    SELECT s.segment1 vendor_number
    ,s.vendor_name
    ,flv1.meaning classification
    ,pca.certificate_number
    ,pca.certifying_agency
    ,pca.expiration_date
    ,flv2.meaning status
    FROM ap_suppliers s
    ,pos_bus_class_attr pca
    ,fnd_lookup_values flv1
    ,fnd_lookup_values flv2
    WHERE pca.vendor_id = s.vendor_id
    AND flv1.lookup_code = pca.lookup_code
    AND flv1.lookup_type = pca.lookup_type
    AND flv2.lookup_code = pca.class_status
    AND flv2.lookup_type = 'POS_BUS_CLASS_STATUSES'
    AND pca.expiration_date <= trunc(sysdate) + <No. of Days in the Future>
    order by pca.expiration_date asc
    Now the parameter is Number of Days in the Future (Enter the number days in the future to extract the data. This will default to 0).
    Is it possible in discoverer to do so as in query i do that like a condition as pca.expiration_date <= trunc(sysdate) + <No. of Days in the Future>.
    How can I pass <No. of Days in the Future> as a user input parameter in discoverer?
    Please help.

    Hi,
    All you need to do is to create the condition in the discoverer instead of in the query.
    Create a custom folder containing the following sq (note that i removed the condition)l:
    SELECT s.segment1 vendor_number
    ,s.vendor_name
    ,flv1.meaning classification
    ,pca.certificate_number
    ,pca.certifying_agency
    ,pca.expiration_date
    ,flv2.meaning status
    FROM ap_suppliers s
    ,pos_bus_class_attr pca
    ,fnd_lookup_values flv1
    ,fnd_lookup_values flv2
    WHERE pca.vendor_id = s.vendor_id
    AND flv1.lookup_code = pca.lookup_code
    AND flv1.lookup_type = pca.lookup_type
    AND flv2.lookup_code = pca.class_status
    AND flv2.lookup_type = 'POS_BUS_CLASS_STATUSES'
    Then create a discoverer report using this folder using all fields.
    Create a new calculation as (use this exact syntax):
    Sysdate + :No_of_Days_in_the_Future
    Create a new condition:
    pca.expiration_date <= <your calculation>
    To complete it add a sort as you did in the SQL.
    That's it.
    Tamir

  • How to pass dynamic values to value mapping? please help!

    Hi Experts,
           I have requirement where I am using email adapter to send emails. Now the "To" email address is different for different environment. In other words:
    DEV - [email protected]
    TEST - [email protected]
    PROD - [email protected]
    When the XI code is migrated to TEST environment the email address will be [email protected] and in production it will be [email protected]
    Similarly, there are many more environments.
    Now to handle this I have decided to use value mapping where Agency refers to the type of environment.
    Now my problem is how do I use it in message mapping.
    I have wriiten a java function that returns me the type of environment. But now how to use this value for value mapping. I mean when using value mapping in message mapping we hardcode the agency (environment type).
    Is it possibel to specify a variable in value mapping for agency. The variable will be populated by java function before connecting to value mapping?
    Please help!
    Thanks
    Gopal

    Hi Gopal,
    why don't you use a "if" after your UDF. Depending on the return parameter of the UDF you call different value mappings?
    Regards Mario

  • Passing dynamic value into HTML from webforms

    We're setting up an imaging application on the web, and I need the ability to read an image path from the database with forms (or a stored PL/SQL procedure I can call from forms), and have that open an HTML file in a web browser and pass it the name of the file I need opened. The HTML file is mostly static, but needs to accept the filename parameter at runtime.

    For our application, we're using an image viewer called Spicer Image a.X 7.20 for the web.
    What I had to do was build a procedure named web_image in pl/sql to be called from a webform with web.show_document('server/pls/portal30/web_image?filename_in='||<oracle_file_id>,'_blank')
    That call worked just fine and I get a new instance of the web browser with the HTML I set up in my web_image procedure.
    Here's the procedure.
    create or replace procedure web_image(filename_in varchar) as
    begin
    htp.p('<HTML>');
    htp.p('<HEAD>');
    htp.p('<TITLE>AEC Web Image Integration</TITLE>');
    htp.p('</HEAD> ');
    htp.p(' <BODY>');
    htp.p('<!-- Embed the Image aX View Control. -->');
    htp.p('<OBJECT');
    htp.p(' CLASSID="clsid:1120C1B3-8768-11D1-8108-020701190C00"');
    htp.p(' ID="SpicerViewControl"');
    htp.p(' ALIGN="center" WIDTH="800" HEIGHT="500" BORDER="0" VSPACE="0" HSPACE="0">');
    htp.p('</OBJECT> ');
    htp.p('<!-- Embed the Image aX Document Control. -->');
    htp.p('<OBJECT');
    htp.p(' CLASSID="clsid:895CDC65-8837-11D1-8109-020701190C00"');
    htp.p(' ID="SpicerDocumentControl"');
    htp.p(' ALIGN="center" WIDTH="1" HEIGHT="1" BORDER="0" VSPACE="0" HSPACE="0">');
    htp.p('</OBJECT> ');
    htp.p('<!-- Open a file. Bind the View Control to the Document Control. -->');
    htp.p('<SCRIPT LANGUAGE="JavaScript">');
    htp.p(' <!--');
    htp.p(' SpicerDocumentControl.OpenFile("'||filename_in||'"');
    htp.p(')');
    htp.p(' SpicerViewControl.BindToDocumentControl(SpicerDocumentControl)');
    htp.p(' //--> ');
    htp.p(' </SCRIPT>');
    htp.p(' </BODY>');
    htp.p(' </HTML>');
    end;

  • Dynamic Values in OAM Header

    Hi,
    Is it possible to pass dynamic values like IPAddress in OAM Headers?.Thanks.

    Not sure why you would since the IP Address is already on the Request object.
    You can get at some of the request objects within a Custom Auth Plugin and then set it as a header dynamically. But again it already there, but you could set it to some other name if you needed it on a backend system names something else.
    Hope this helps.

  • BCS passing dynamic inputs to methods & calling using in O365

    Hi all ,
    I have a requirement to pass dynamic values to BDC methods & retrieve data, for this I have created a BDC model file(which has SQL server as external source) with GenericInvoker methods & upload same to Admin central. how do we access these generic
    methods in Office 365 using JavaScript client object model.
    what are the options we have to invoke methods manually by passing dynamic values.
    I tried below code. but I getting below error.
    The web with URL 'http://XXXXXXXX:26110/sites/RA5' is not an app web. The GetAppBdcCatalog method must be called on an app web.
    Any help on this would be appreciated
    function retrieveListItems() {
    // This code runs when the DOM is ready and creates a context object which is needed to use the SharePoint object model
    $(document).ready(function () {
    context = SP.ClientContext.get_current();
    web = context.get_web();
    context.load(web);
    entity = web.getAppBdcCatalog().getEntity("PersonalDetails", "New external content type");
    context.load(entity);
    lob = entity.getLobSystem();
    context.load(lob);
    lobSystemInstances = lob.getLobSystemInstances();
    context.load(lobSystemInstances);
    context.executeQueryAsync(GetLobSubscribesystemInstance, onQueryFailed);
    function Entity() {
    alert("Reached the Entity method");
    //these are the helper methods and variables
    var context;
    var web;
    var user;
    var entity;
    var lob;
    var lobSystemInstance;
    var lobSystemInstances;
    // Initialize the LobSystemInstance.
    function GetLobSubscribesystemInstance() {
    var $$enum_1_0 = lobSystemInstances.getEnumerator();
    while ($$enum_1_0.moveNext()) {
    var instance = $$enum_1_0.get_current();
    lobSystemInstance = instance;
    context.load(lobSystemInstance);
    break;
    context.executeQueryAsync(Entity, onQueryFailed);
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    ragava_28

    Hi all ,
    I have a requirement to pass dynamic values to BDC methods & retrieve data, for this I have created a BDC model file(which has SQL server as external source) with GenericInvoker methods & upload same to Admin central. how do we access these generic
    methods in Office 365 using JavaScript client object model.
    what are the options we have to invoke methods manually by passing dynamic values.
    I tried below code. but I getting below error.
    The web with URL 'http://XXXXXXXX:26110/sites/RA5' is not an app web. The GetAppBdcCatalog method must be called on an app web.
    Any help on this would be appreciated
    function retrieveListItems() {
    // This code runs when the DOM is ready and creates a context object which is needed to use the SharePoint object model
    $(document).ready(function () {
    context = SP.ClientContext.get_current();
    web = context.get_web();
    context.load(web);
    entity = web.getAppBdcCatalog().getEntity("PersonalDetails", "New external content type");
    context.load(entity);
    lob = entity.getLobSystem();
    context.load(lob);
    lobSystemInstances = lob.getLobSystemInstances();
    context.load(lobSystemInstances);
    context.executeQueryAsync(GetLobSubscribesystemInstance, onQueryFailed);
    function Entity() {
    alert("Reached the Entity method");
    //these are the helper methods and variables
    var context;
    var web;
    var user;
    var entity;
    var lob;
    var lobSystemInstance;
    var lobSystemInstances;
    // Initialize the LobSystemInstance.
    function GetLobSubscribesystemInstance() {
    var $$enum_1_0 = lobSystemInstances.getEnumerator();
    while ($$enum_1_0.moveNext()) {
    var instance = $$enum_1_0.get_current();
    lobSystemInstance = instance;
    context.load(lobSystemInstance);
    break;
    context.executeQueryAsync(Entity, onQueryFailed);
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    ragava_28

  • Default Parameter Dynamic Values in BIP

    Hi All,
    I have Period Name which is Varchar data Type and has values like JAN-2014, so I want to set the Default Parameter value to previous month dynamically. I tired setting with {$To_Char(Add_Months((Sysdate),-1),'MON-YYYY')$) but it didn't work as I thinking for using this Data Type should be only DATE format.
    Any Help or Thoughts
    Thanks
    SYK

    Hello,
    We are trying to create a BI Publisher Report in Siebel by passing the values dynamically from Siebel field to report. Is it possible to
    1. Pass dynamical values to parameter values of type picklist from Siebel, while executing BI Publisher Reports?
    As far as I am aware, it is not possible to have picklist values to be passed on from Siebel while executng BI Publisher reports.
    2. Select more than one value in the parameter values while executing the report?
    Parameters can have one of the many values defined while generating the report.
    3. How to attach Calendar as a parameter to the report?
    No, one cannot have calender as a parameter to the report. You can define the parameter as a sting and users can enter a date value in that string.
    Thanks
    Swarna

Maybe you are looking for