URL Action

All,
I have a URL Action (defined on cells based on condition specified in MDX) defined in my SSAS 2005 Cube that opens a page in our ASP .Net application. 
I use custom MDX statements within SSRS to generate report. Is it possible to expose the above action in a report generated using reporting services ? (in which case I can use the "Jump to URL" feature in SSRS to redirect the user to the appropriate web page) If so, please can you specify how?
Thanks in advance,
Arun

Hey Arun,
can you describe me, how can I trought URL Action open one ASP .Net application?
Best Regards

Similar Messages

  • Image with URL action in a table

    Hi,
    it is possible to assign a hyperlink to an image so o click an window with the given URL will open. How can I do this with an image wihtin a table. I assign the same URL action but the image is not clickable although the table is set to selectable and editable. Can anybody help?
    Thanks in advance!
    Regards,
    Kevin

    Hi Kevin,
    You can define an Image control uppon a Grid that has Resutls (with URL action as you did ).
    If your grid with no results the Image won't be clickable.
    Another importent thing for you to notice is the image scale-mode (make sure that it's on Original-size/ fit to scale).
    - if you still having problem regardring this issue, please replay with your Visual-Composer version.
    Thanks,
    Kobi.

  • Passing parameter values to another report using URL actions (reportserver)

    Hi guys,
    I have two reports that I link with eachother. For report A - B everything works perfect. When I try to do the same for report B - A it works, but the parameter value is not filled in.
    =Iif(
    Parameters!PAR_LinksEnabled.Value, 
    Globals!ReportServerUrl & "?" & Replace(Globals!ReportServerUrl, "_vti_bin/ReportServer", "")
    & "Reporting/POS Reporting/Reports/POS Report.rdl&POS_ID=" & Parameters!CONNECTION_ID.Value & "&POS_LANG=" & Parameters!POS_LANG.Value & "&PAR_Date=%5BDate invoice%5D.%5BBonus Calendar - Week%5D.%5BBonus
    week of year%5D.%26%5B" & Left(Parameters!YEAR_WEEK.Label, 4) + "%5D%26%5B" & CInt(Right(Parameters!YEAR_WEEK.Label, 2)) & "%5D",
    Nothing
    Even tho I specify the parameter he has to pass through, the report opens with parameter period : <select a value>. Anyone has an idea why such behaviour happens?
    Thanks!

    Hi Yvanlathem,
    Per my understanding that you want to use the expression above to conditional add the hyperlink to pass the value to the parameter of anpother rreport via the URL in the SharePoint integrated mode report server, right?
    I have check the expression you have provided and the issue can be caused by the wrong way you have write the expression to pass the parameter, please check detais information below to make sure you have pass parameter in the URL correctly:
    Please modify the expression to below structure :
     =Iif( Parameters!PAR_LinksEnabled.Value="Enabled", "URL",Nothing)
    I saw you have use expression like "&POS_ID=" & Parameters!CONNECTION_ID.Value & "" which is incorrect, we need to set a report parameter within a URL, use the following syntax:
     parameter=value(not Value=Parameter)
    If you are using the following syntax like "Parameter1=Parameter2", both parameters and from different report, if you have add the "Go to URL" action from  report2 to Report1, please make sure Parameter1 is from the Report1
    and Parameter2 is from Report2, change the order will not work
    More detail information:
    Pass a Report Parameter Within a URL
    So, In your scenario, please make sure the value is from one report's field (POS_ID) and the the parameter(CONNECTION_ID) is from another report (e.g:"&CONNECTION_ID=" &Fields!POS_ID.Value &"")
    Similar thread for your reference:
    SSRS 2012 Drill Through report cascading Parameters not refreshing
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Error with buttons in an interactive PDF with "go to URL" action applied

    Hello, I am having an issue with buttons in an interactive PDF, specifically buttons that have a “go to URL” action applied to them. Most of the buttons in the document work fine and link out correctly however, some of the linked buttons InDesign is adding spaces to the end of the url, which the browser interprets as “%20” and breaks the link i.e. (http://helpx.adobe.com/pdf/indesign_reference.pdf%20). The added space effects multiple buttons in my document seemingly randomly, potential Bug? When the added space is deleted from the URL via the Button and Forms Panel’s URL field it is re-added by InDesign upon deselecting the button. Obviously the links can be updated in acrobat after export, but this is tedious and time consuming. Any help that can be provided would be much appreciated. Thanks!

    But I have InDesign documents with sometimes 60-100 buttons in them. Previously I had to do nothing other save out of InDesign as an interactive PDF - perfect, with no editing in Acrobat at all apart from for a couple of document javascripts. It also applies to any interactive element. Buttons that are used for “show/hide” with others to create reveals and builds etc. Buttons that link to other pages within the document.
    InDesign allows master page interactive buttons… make once use many times, Acrobat allows individual and painstaking editing of however many pages and buttons there are in the document, sometimes hundreds.
    The solution is, until Adobe do a decent job of DC to revert to Pro XI and pretend its never happened.

  • Download URLs action: Is it possible to add delay between each dowmloaded ?

    Hi!
    This is my first experience with Automator. Everything is working great except for one thing:
    I am automatically downloading images from a site and they all have the same name. Because of that, they get an extra -# in their name when they are downloaded. But when I look them up, they were no incremented in the order they were downloaded. I need theses images in the order they appear on the site to be able to rename them in the right order.
    So I tried renaming them using the time at which they were downloaded, but it happens so fast, this function is not really useful.
    So here is my question: Is it possible to add a delay between each image that gets downloaded in the "Download URLs" action ? A one second delay would most probably fine.
    Thank you for your help!

    Use the Wait step.  On your step palette under the synchronization folder you'll see the Wait step.  Place it down and it should be intuitive what to do.
    Let me know if you have any questions.
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • How to go back one url, action?

    In Golive this was easy, you just created a "go last page" action.
    I have tried for some time now to figure the method in dreamweaver cs4 with no luck, as well I also tried cutting and pasting the code from GO-Live into dreamweaver.
    any direction will be appreciated.
    Thx
    Brad

    Hey Brad. Here is a easy way of what you are trying to do with css and cleans up all the heavy html that only slows things down. Any time you can use css to you advantage then use it and any time you don't need all the html mock up then clean it. Let me walk you through what I did for you...very easy.
    First this is the code you started with:
    <a><a onclick="history.back();return false;"href="/pages/previous.html"><imgsrc="../../../images/beds/tables_spa/diego.gif" class="elitephoto"/></a>
    Replace it with this:
    <a onclick="history.back();return false;" href="/pages/previous.html" class="elitephoto"></a>
    As you can see it is already almost half the html as the original, but it holds all the code you will need as the rest of the magic happens in the css. You already had a class attached to the <a> of "elitephoto" so we will use this in our css to target this <a> tag.
    Here is the css you simply add to your css:
    a.elitephoto{
        display:block;
        width:50px; /*adjust to the size of your image*/
        height:50px;
        background: url(path to image.png) no-repeat center center; /*adjust the position of the image as needed*/
    a:hover.elitephoto{
        background: url(path to swap out image.png) no-repeat center center ; /* this will be the image you are swaping out the original with*/
    The first rule of a.elitephoto makes the <a> tag a block level element, defines the size and then calls for the background image. You simply took the image src out if the html (which you should do when ever possible) and calling it from the css.
    The next rule of a:hover.elitephoto simply calls for the swap over image and will swap out on mouse over.
    Simple...fast and much more efficient then all the embedded html !
    One last note... you could use a single image for both the original and the swap out image. You simply change the position of the image in the positioning of the same image in the css to expose the portion that you want. This is the desired technique as for your css will make a single call for a image and already have it cached and ready to swap out (or in the case...slide into position)   when a user hovers over the original image. Might sound a little tricky, but really simple to do. Try the above way first then fine tune later when you get a hang of it.
    Sitewide Solutions
    David

  • Passing parameters in URL Action in iFrame

    I am using OBIEE 11g, and I have a report R_1 having a column which in turn refers to another report R_2 as an iFrame and I am passing all the parameters which are required for the R_2.
    Below is the example:
    '<iframe name="sparklineGraph" src="saw.dll?Go&path=%2Fshared%2FRSDP%2Fgauge single&Action=Navigate&P0=4&P1=eq&P2="TAG"."TAG_NAME"&P3='|| "TAG"."NAME" ||'&P4=eq&P5="ASSET"."NAME"&P6='|| "ASSET"."NAME"||'&P7=eq&P8="ASSET_TAG_MAPPING"."IS_READING"&P9=Y&P10=bottom&P11="ASSETS_READINGS"."TIMESTAMP_VALUE"&P12=1+1" frameborder=0 scrolling=no height=50 width=150> </iframe>'
    But when I look at the result after putting this in Column Formula, I do not see the report output and get an exception in the column:
    Sax parser returned an exception. Message: Invalid document
    and if I manually update the URL after the saw.dll, I pass the values to each parameter manually and I can see the report output. The URL example is:
    http://server.oracle.com:9502/analytics/saw.dll?Go&path=/shared/RSDP/gauge single&Action=Navigate&P0=4&P1=eq&P2="TAG"."TAG_NAME"&P3=DISCHARGEAIRTEMPSPTACTIVE&P4=bottom&P5="ASSETS_READINGS"."TIMESTAMP_VALUE"&P6=1+1&P7=eq&P8="ASSET_TYPE"."ASSET_TYPE_NAME"&P9=Air Conditioner&P10=eq&P11="ASSET_TAG_MAPPING"."IS_READING"&P12=Y
    Please advise.
    Edited by: deearora on Jan 10, 2013 2:01 AM

    I have tried removing the space between the iframe opening and closing tag but it did not work. It still gave that exception: Sax parser returned an exception. Message: Invalid document
    Please help

  • Go to url action not working, and no tech can fix the issue?  hard to believe nobody can help....

    i attempt to write "navto://article name" and it gives a error 101 when i pre-view it on my testing ipad.  because of this i cannot send my folio to apple.  i have been on the phone with just about every tech in the call center, and nobody has been able to fix the problem.  they tell me they have "escalated" my issue to a "senior tech" and they will "call me within 24 hours".  this has benn going on for a month, and a senior rep has yet to call me.  i am embarrassed with my client who has been waiting patiently.
    who do i send my complaint to?
    when will my issue be resolved?
    why should i pay monthly subscription payments while i wait a month before a "senior tech" calls me back?
    dude, adobe, you really need to step your tech support up!  please because without a strong support team us designers/ developers would be unsuccessful!

    this is where i start.  each of these images is a button that goes to another article in the folio
    when i create a simple button(goto url) and instruct it to go to an article in the folio (navto://***) it doesnt open within the folio.  in fact, as you can see, the options "open in folio, open in device browser" are unselectable.
    i then get an error on my testing ipad through content viewer that i have an "invalid url"

  • URL action to open PDF on a shared drive with credentials

    I am using "Go to URL" feature of SSRS 2008 to open a PDF file saved on a shared drive. It works fine for me as I have access to the drive.
    I don't want to give access to this drive to all the business users who will be using the report. There are several reports on the drive which they should not access. Is there a way to pass generic credentials with URL to allow opening the relevant document
    without giving permissions to every single user.
    Thanks
     AY

    Hi  AY,
    As far as I know, we cannot pass generic credentials with URL. In your case, we can set permissions for Shared Drive to work around the issue. It is assign permission to specific user on the network.
    These articles are about Give Permissions to a Shared Drive, Set Permissions for Shared Folders, you can refer to it.
    http://www.ehow.com/how_6187022_give-permissions-shared-drive.html
    http://technet.microsoft.com/en-us/library/cc726004.aspx
    Hope this helps.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Passing a list of URLs from Applescript to Display Webpages in Tabs Action

    Hi All,
    I have an Applescript to generate a bunch of URLs and I would like to pass them to the Display Webpages in Tabs action. The script is generating the URLs correctly but I can't seem to get them into the action successfully. Does anybody know how to get output from the script passed to subsequent Automator actions?
    Thanks,
    Nigel

    Try using the "get content from textedit" action. More specifically, use your Applescript to dump the urls into a textedit doc and then use the "get contents..." action to feed the "get specified urls" action.

  • How to send URL link along with text in an email using FM.

    Hi Experts,
    I am sending an e-mail for status notifications.
    In the mail, the user will clik on the URL to do actions through the link.
    Ex:
    Dear,
    Please go through the link htttp://appear.upload/records/update.
    When user clicks on htttp.... url it should open the portal.
    I am sending text mails but unable to open the site url action .
    Regards,
    prasad

    Hi ,
    Pls check below link.
    http://wiki.sdn.sap.com/wiki/display/ABAP/SendingMails-HomePage

  • What's the right way to enter a URL addy?

    I have a flash site that links out to plain html pages.
    I created text links in Flash that are SUPPOSED to open the
    html pages.
    What the heck is the correct way to type them in?
    My site exists in a file called August10SixthMan. This file
    has a "Site" folder that holds all the html pages.
    The web address is actually videoimagination.net.
    So if I want to link a "Click Here" off the Flash to go the
    the html, how do I type it, exactly?
    I highlight the text, then go to the URL button and then?????
    Please help. I'm down to only a few brain cells.
    Regards,
    Allison

    > I created text links in Flash that are SUPPOSED to open
    the html pages.
    > What the heck is the correct way to type them in?
    > My site exists in a file called August10SixthMan. This
    file has a "Site"
    > folder that holds all the html pages.
    > The web address is actually videoimagination.net.
    > So if I want to link a "Click Here" off the Flash to go
    the the html, how do I
    > type it, exactly?
    > I highlight the text, then go to the URL button and
    then?????
    > Please help. I'm down to only a few brain cells.
    If you highlight text and use "text block" as link, you do
    not use GET URL action.
    Select text and hit CTRL F3 to open properties panel, than
    type in the largest
    box at the bottom of the panel (link icon:
    Site/filename.html
    than from the TARGET window you can define _blank to open in
    new window or _self
    to open in current window.
    If you want to apply actual getURL action than you need to
    make the text into a
    button, select it, hit F9 to open action script editor and
    have something like
    on (release) {
    getURL("Site/filename.html", "_self");
    again, _self for current window _blank for new window.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Javascript Problem for Drill Down Action in SSRS Report when integrated to PPS 2010

    Hi all,
    I have a SSRS report which is integrated to PPS 2010(Performance Point Services) and it is having a drill down action through Go to URL action(I wrote javascript:void(window.open('xxxxx')) to open drill down report in new window).
    This report has 5 parameters and all are multiple valued. Drill down report is opening very well when I open the report form Report Manager for any number of parameters values selected. But when I integrate the same report is PPS and deployed to SharePoint
    then it is working only for 23 parameter values selected in PPS filters. If I select more the 23 values in PPS filters then the drilldown report is not opening.
    But it is working well in Chrome, I verified in IE and Mozilla, both browsers are having problem.
    When I look at Error Console of Mozilla, it is showing a javascript error as "Error: uncaught exception: ReferenceError: window is not defined" but the same report is working well if I select less than 24 filter values.
    Please provide me the solution
    Thanks in advance

    Hi Vasu,
    The issue might occur due to the Microsoft security update MS11-100 which limits the maximum number of form keys, files, and JSON members to 1000 in an HTTP request. Here, I suggest that you modify the Web.config file of the SharePoint site as follows:
    <appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="10000" />
    </appSettings>
    If the SharePoint site uses the port 80, the web.config file of the SharePoint site is located in the C:\inetpub\wwwroot\wss\VirtualDirectories\80 folder.
    Reference:
    An ASP.NET request that has lots of form keys, files, or JSON payload members fails with an exception
    If the issue persist, please check whether there are any related errors in the Reporting Services log file which is located in <Drive>:\Program Files\Microsoft SQL Server\MSRSXX.<Instance Name>\Reporting Services\LogFiles.
    Regards,
    Mike Yin
    TechNet Community Support

  • Presenter 10 Quiz Pass URL is set to Current but opening in New Tab

    Hello,
    We use Presenter to create quizzes among other things.  Previously, we were using version 7 but had to upgrade to 10 recently.  I have just tried creating the first quiz under 10 and ran into an issue.
    We offer the quizzes via our intranet site and utilize the Open URL Action under the Pass or Fail Options tab to redirect those who pass to a completion URL.  The target is set to Current.  We display the Presenter output's HTM file via an iFrame.  In version 7, the URL would simply display within the iFrame.  Now, it is opening in a new tab.
    It does this regardless of whether it is set to Current or New.  I have looked at the data/viewer.xml file and confirmed that passingGradeActionArg2 is set to 0 when we set the option to Current and it changes to 1 when we set it to New, so it does seem to be registering the change when published.  I have tried this out on Internet Explorer 11, Internet Explorer 11 in Compatibility View, and FireFox all with the same behavior.
    Has anybody encountered a similar issue with Presenter 10?
    Thanks in advance.

    There is no Contextual menu for the Location bar drop-down, so you need to use {Ctrl + Click} or Middle-click the item to have browsing history items load in a new tab.

  • ActionScript parameter in reportserver url not working

    I am trying to get a javascript call back on any action that is performed on a report. I am using URL access to get a report. Url  looks like this:
    http://localhost/ReportServer/Pages/ReportViewer.aspx?MyReport&rs:Command=Render&rc:ActionScript=alert
    Documentation for the rc:ActionScript url parameter at
    http://msdn.microsoft.com/en-us/library/ms155395.aspx says that the parameter "Specifies the name of the JavaScript function to use when an action event occurs,
    such as a drillthrough or bookmark click. If this parameter is specified, an action event will trigger the named JavaScript function instead of a postback to the server."
    The report renders fine. Actions on a report work - clicking on a text box that has "go to report" action defined takes me to the right report. However, the alert function mentioned in the url doesn't seem to be called. 
    I know I can use a "go to URL" action to invoke a javascript of my choosing, but I'd rather keep using "go to report" action in 70+ reports that we have already written as it is cleaner and makes development and testing in VS easier.
    Any ideas how to get the ActionScript parameter working? I have tried passing in "window.alert" as opposed to just "alert". Doesn't seem to work.
    Thanks!

    Same problem with ActionScript-Setting in DeviceInfo. I'm getting only normal hyperlinks with href. Any ideas?

Maybe you are looking for