Navigation from UI map to Report Submission page using Script.

Hi All,
I have a requirement such that I need to pass the parameters from a UI Map to a report submission page. In such a case I’m able to pass single parameter but whenever I pass two parameters then second one overrides the first one. This leads to a problem when parameters are more than one. So is there is any way to resolve this issue I’m doing parameter passing using a BPA script.
OR
If there is a way by which I can submit a report by using a UI Map. Whenever an OK button is pressed on UI Map then automatically report submission happens with the parameter defined on UI Map. And BI publisher comes up with the report as a reporting tool.
If anyone of this works it will be fine.
Thanks in advance.

Hi Tim,
I asked R&D about this, and they suggested you add the following command to your script before the VIEW==>REPORT transfer command:
Call WndShow("VIEW")
They said that showing the VIEW panel prior to exporting the map to REPORT makes a difference in the resulting image sent to REPORT.
Brad Turpin
DIAdem Product Support Engineer
National Instruments

Similar Messages

  • How to redirect from list edit form to another page using jquery in sharepoint 2013

    hi friends i have been trying to find a way to redirect from list edit form to another page using javascript and jquery
    i found lot of codes online but non of them are working for me.
    what i need is i have to save the data in the form and after that it has to redirect to another page. it has to get the url from hyperlink field of the item.
    please help me in this regards

    Not sure if you have gone through below links:
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPRedirectWithID
    http://blogs.askcts.com/2013/02/18/using-spservices-and-jquery-to-perform-a-redirect-from-a-sharepoint-list-newform-to-editform/
    Please ensure that you mark a question as Answered once you receive a satisfactory response.

  • Prevent dashboard prompt from filtering a particular report on page?

    I have a dashboard page with 1 prompt and 5 reports. The first object on the dashboard page is a dashboard prompt with a date range for created date.
    The request is to filter the first 4 reports based on the dashboard prompt, and then the last report NOT be filtered based on the prompt.
    Right now - the date range entered in the dashboard prompt is filtering all 5 reports.
    Is there any way to prevent the prompt from filtering a particular report on the dashboard page?
    Thanks!

    Just wanted to provide an update as to what I learned from the SR I opened.
    Dashboard prompts apply to all reports on the page which either:
    * Have the "is prompted" filter selected
    - OR -
    * Are filtered in any other way
    In my case, my last report was filtered on the created date to exclude any data prior to July 1, 2010. Because this hardcoded filter was applied, then the report automatically was picking up the date range filter from the dashboard prompt and applying that date range to the report instead.
    The workaround was to create a new column on the report formatting the date as YYYYMM and applying a filter to the report as >= 201007. With this, the dashboard prompt is now not applied to filter this report.

  • Enable/Disable Reporting in OSB using script.

    Hi,
    I have to enable/disable reporting in OSB proxy service using script like python,etc..
    Each and every time we create a session in console and activate the session.
    But as per our requirement, we need to do this activity using script in back end.
    Can anyone help on this.
    Thanks
    Rajesh

    Hi,
    I have to enable/disable reporting in OSB proxy service using script like python,etc..
    Each and every time we create a session in console and activate the session.
    But as per our requirement, we need to do this activity using script in back end.
    Can anyone help on this.
    Thanks
    Rajesh

  • How about fixing the bug report submission page ?

    I've been trying for I think the 11 time to submit a bugreport to bugreport.sun.com and each time,
    the submission FAIL. And of course you loose everything you entered in the page.
    Email to the address specified when it fail also FAIL.
    rejected by the server for the recipient domain sun.comby userp1020.oracle.com. [156.151.31.79].
    The error that the other server returned was:
    550 5.1.1 <[email protected]>... User unknown
    Please Fix, a bug report page that can't even submit simple text its ridiculous.
    This is not the first time I have difficulties getting your site to work.

    You're complaining to the wrong people.
    Re: bug database does not work?
    OTN forum admin are not responsible for the java bug reporting.  They cannot fix what isn't theirs.
    Locking this thread

  • Add text in any working page using script

    Hi there,
    I am writing a script which creates a text frame and adds text in it. The problem is, I want to add some information below everytime on many documents. Instead of copying from other sources everytime, I thought of writing a scirpt which by clicking creates a text frame and puts text in that because it is the same for all. Now two issues:
    1) It is coming but in the first page. I need that in the working page, for example clicking that it should come in page 2 or 4 and not in the first page.
    2) The text has a word should be in quotes giving like that the script shows error. My example code is given below:
    var myDocument = app.activeDocument;
    var myTextFrame = myDocument.textFrames.add()
    myTextFrame.geometricBounds = ["11.2in", "8in","10.99in","0.5in"];
    myTextFrame.contents = "This is a "sample" text.
    Please try without quotes first. Without quotes for sample word it is coming in the first page. With quotes it shows error.
    What is the solution. 1) need to add on the current working page. 2) should also include a word within quotes.
    Help really appreciated!

    Hey Rohan,
    It did worked. GREAT.
    If you can give the solution for the second one, i.e. getting the text within the quotes, that will be a great help.
    As You and Ken said, I sent this to the scripting forum too. But as you have already got the first one, had a hope that you might get the other too.
    Thanks

  • Inventory Org Specific Report from a OA Submit concurrent Req Page

    Hi,
    I have a requirement where i need to add a button via personalization and using destination URI navigate to submit requests from OA Submit Concurrent requests page using some thing like this..
    OA.jsp?akRegionCode=FNDCPPROGRAMPAGE&akRegionApplicationId=0&programApplName=EAM&programName=EAMWRREP&programRegion=Hide&scheduleRegion=Hide¬ifyRegion=Hide&printRegion=Hide
    The problem is this particular report has parameters which are org specific and the underlying value set has some thing like this..
    WHERE ORGANIZATION_ID =
    :$PROFILES$.MFG_ORGANIZATION_ID
    AND ENTITY_TYPE in ( 6, 7 )
    ORDER BY WIP_ENTITY_NAME..
    I was getting erros/warnings in the parameters page because of :$PROFILES$.MFG_ORGANIZATION_ID.. I know it works only in forms based interface ($PROFILES$ refers to a block).. I tried changing the value set to use
    select fnd_profile.value('MFG_ORGANIZATION_ID') from dual instead of :$PROFILES$.MFG_ORGANIZATION_ID.. Still it is not working.. then i found this bug on the metalink..
    ============================================
    cause: Bug 2679979 In forms, profile MFG_ORGANIZATION_ID is set in database
    session when user use 'choose org lov'; however in java, the session
    concept is different from forms and it is not possible to save the profile in
    the database session and see it through another page(in java middle tier, the
    database connection is pooled and database session may be different when
    navigating from one page to another page, although user session, which is
    maintained in java middle tier is the same). Because of the fundamental
    difference of database connection management
    in forms and java middle tier, this problem cannot be solved for now.
    fix:
    This is the intended functionality.
    ==================================================
    I know i can submit this by extending the controller and i can get the profile value from the PageContext.getProfile() .. I just want to find out if there is any other way of achieving this without extending the controller..
    Hoping to hear from the experts...
    Thanks in Advance,
    Shree..

    why you can not try with this
    select fnd_profile.value('MFG_ORGANIZATION_ID') from dual;
    Thanks

  • Error while navigating from a report in OBIEE

    I get the below error while navigating from one report to another report
    Odbc driver returned an error (SQLExecDirectW).
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 16001] ODBC error state: 37000 code: 1101 message: [Microsoft][ODBC SQL Server Driver][SQL Server]Could not allocate a new page for database 'TEMPDB'
    because of insufficient disk space in filegroup 'DEFAULT'. Create the necessary space by dropping objects in the filegroup
    , adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup..
    [nQSError: 16015] SQL statement execution failed. (HY000).
    Any inputs on this is highly appreciated.
    Thanks,
    Vasavi

    Hi Vasavi,
    There is no Temp space in Data base to run queries .Please contact your DBA to increase your db size
    thanks,
    saichand.v
    Edited by: Saichand Varanasi on Jul 14, 2010 7:35 AM

  • Unable to pass the values from one report to another using navigation links

    Hi All,
    I am facing a strange issue where I have to pass a column value from one report to other.
    I have kept navigation link in the 1st report and 'is prompted' option in the 2nd report
    Issue was , I'm not getting the filtered result in the 2nd report (all the records are being displayed)
    Can anyone advice where I was going wrong
    Thank you,
    AO

    Hi,
    The column which you have given navigation link and 'is prompted' column should same and exist in both the reports.You have to give the guided navigation in the value interaction of the column in the report1.
    mark if helpful/correct.........
    thanks,
    prasanna

  • The Report Server page comes up on local server, but the page does not open from clients

    Hello,
    The Report Server Page opens up just fine on the local server, but page does not open up from desktops and client PCs.   SSRS is installed on a Windows Server 2008 R2 server and with SQL Server 2008 R2 SP2
    Clients are using IE 11 and they see:
    Oops! Internet Explorer could not connect to tumdv-fsql01
    How can make this site accessible from clients?
    Thanks
    Paul

    That did not work.
    What port numbers specifically does SSRS use?  I will check the firewall.
    http://100.100.100.100/CengeaReports/Pages/Folder.aspx
    When I add the IP Address and try the link again, IE says "This page can not be displayed".  When I try the Fix connection problems, IE says:
    "The website is online, but it is not responding to connection attempts."
    Paul

  • Error on open the Report Schedule Page from other application

    Hi,
    I want to open the only "Report Schedule Page" of the InfoView from my application. For this I am using the following url -
    http://servername:8080/businessobjects/enterprise115/desktoplaunch/InfoView/CrystalEnterprise_Report/schedule/get.do?objId=526
    The problem I am facing is that sometime the Report Schedule Page open successfully and sometimes it gives the following error -
    HTTP Status 400 - Invalid path /InfoView/InfoView/logon/logon was requested
    type Status report
    message Invalid path /InfoView/InfoView/logon/logon was requested
    description The request sent by the client was syntactically incorrect (Invalid path /InfoView/InfoView/logon/logon was requested).
    Apache Tomcat/5.0.27
    Please help me in resolving this issue?
    Thanks,
    Vicky

    Hi,
    first of all it is neither supported nor recommended to embed or call single components or pages of InfoView in other applications. You would have to write your own schedule page using the BO SDK.
    The problem you are facing looks like the component you are calling does not get or find a valid session to the BOE system in the desired place. But even if it would (sometimes you are seeing that) I doubt that it would work to schedule a report using this mechanism as the further requests when pressing the OK button will call other parts of InfoView then, which will probably cause other problems. So try to use another solution as stated above.
    Regards,
    Harald

  • Passing prompt value from one report to other using navigation

    I have one dashboard with one prompt (Prompt Name: Date) and a report with date column. This date in the prompt defaults to current date by using server variable ‘CURRENT_DATE’. When a user executes this dashboard the report will be executed for current date. Now I configured navigation on a column (MTD) that will take the user to another report. My Requirement is I have to filter the second report with a condition ‘Date<current date’. In the second report I applied a filter Date<valueof(CURRENT_DATE). To my surprise when I navigate from the first report to second report this filter condition Date<valueof(CURRENT_DATE) is replaced by Date=valueof(CURRENT_DATE). I did not under stand why navigating from the first report replacing the filter condition on the second report. If this is the expected functionality, what is the workaround for this?
    To summarise my user want to see current date data in the first report and all the data less than current date in the second report. I tried with presentation variables. same thing happening with them as well.
    Please let me know if there is any solution for this
    Venkat

    I mean to say,
    fro second report apply filter not as global filters
    To apply as inner fitlers...
    Go to measures fx in answers
    select the code in fx and click on filters options
    and select the date from left pane (selection pane)
    and write CURRENT_DATE by Converting this filter to SQL (the option is something like this)
    see in this way ..
    i didn't get time to work on your issue...
    So please try this and report back..
    Thanks & Regards
    Kishore Guggilla

  • Navigation from One page to another page through hyperlink in webcenter

    Hi All,
    I created ADF unbounded taskflow and want to use it in my webcenter portal application for navigation from one page say Page x to another say Page y by clicking on the hyperlink in the Page x. How to do this in webcenter portal application. When I try to add the taskflow in the navigation model it is taking to the blank page instead of taking to Page x. Many thanks in advance.
    Regards
    Kaushik Gopalakrishnan

    Take a look at this discussion (and referenced resources): http://groups.google.com/group/webcenter-emg/browse_thread/thread/b32d3252228c9e0a

  • Problem in navigating from one report to another in OBIEE 10g

    Hi,
    I am facing an issue with OBIEE 10g while applying navigation on my reports.
    Lets suppose I made a report showing list of all items(in broad categories) sold on a particular day, say Dairy, Frozen Foods, Chocolates etc.In this report there is a date prompt showing the date of sale.
    Now there are certain items that are distributed within these categories, like dairy includes milk, cheese, butter etc.
    Hence, my navigation should be like when I click on a particular item category, the control should move on to the report which has all items under that particular category and the prompt for this report should show the same date as passed in the previous report.
    But sometimes what happens is that on clicking the navigation from first report to the second one, the date is not persisting in the prompt. I say sometimes because at times the navigation does work correctly. This is a bug of Obiee or something which is giving unexpected results.
    Kindly help with your suggestions.
    Thanks
    Ankita

    Ankita,
    This is not a bug in OBIEE...I'm sure something is missing. If this is working for some cases and not working for some other case then you will need to find the root cause. Try in bits and pieces...Step by Step with some dates (unit testing). Ideally this shud work properly.
    For an instance try with OBIEE drilldown feature and not with navigation with a single sale date and observe the behavior.
    Hope its clear...

  • How to hide options from InfoView's "Schedule Report Page"?

    Hi,
    We are using Business Objects XI R2 InfoView (Java version) to schedule the reports.
    Whle schedling the reports, schedule page displays the following option to the users -
    1. When
    2. Database Logon
    3. Filters
    4. Destination
    5. Format
    6. Print Settings
    7. Server Group
    8. Events
    9. Parameters
    And I need to display only three options (When, Format and Parameters) to the user and want to hide the rest of the options from the user.
    Please let me know how to acheive this using the InfoView (Java version)?
    Thanks,
    Vicky

    Thanks for the reply.
    I do not want the user to enter / change the database logon information and other setting of the report. As I set those info using the CMC.
    And writing the our own pages using SDK will take lots of efforts and require java professionals for that.
    I only need to hide those options please let me know how to hide them.
    Thanks.
    Vicky

Maybe you are looking for

  • Issue to send email (using sp_send_dbmail) with an attachement located in other server within the same network

    I have two servers. One is for databases (DB) with the mail server configured and the other is for SSIS without mail server. Both servers are in the same network. On the SSIS server the SSIS package exports data from the DB server table to xls file.

  • Getting Error while starting SOA Server OIM 11gR1

    Hi, I am getting following errors while staring SOA server in OIM 11g R1, my OIM server is running fine I can login to OIM and work but SOA server is not coming up. It was working fine suddenly it started throwing these errors. I have done the whole

  • Using part of an already set up template...

    When I go to make a new site, they have all those templates. I love part of one, its called darkroom and if you pick the "welcome" page of darkroom it has 4 pictures of different sizes with white borders around each picture. And you can just drop in

  • Premiere Elements 8 stürzt beim Laden ab

    Hallo, ich habe mir im Januar einen Dell Studio XPS 1640 zugelegt. Dazu habe ich mir das Adobe Elements 8 Bundle gekauft. Leider kann ich nicht wirklich Premiere Elements 8 nutzen. Wenn ich ein neues Projekt laden will und er die ganzen Daten lädt, b

  • Ciscoworks LMS 2.5 don`t working software & devices updates

    Terrible happened The old server with LMS on the Solaris operating system refused to work, but I have backup. I installed LMS 2.5 (CiscoView 6.1.2), RME 4.0.3. Posted all network objects that were in the old system from backup. But none of them can n