Launch Webi URL for a specific Instance

Hi,
Is there a way I can Launch a specific Instance of Webi from Xcelsius? Is so can someone tell me what would be the syntax to include in the URL.
Thanks!
Sam

Hi Sam
Do you mean a specific instance of a WebIntelligence report? 
If so look at using the &sInstance URL parameter.
openDocument.jsp?iDocID=346&sType=wid&sRefresh=Y&sInstance=xxxx
xxxx can be User (the last instance owned by the user), or Last (the latest instance of the report), or Param (link to instance based on the parameters given)
Alternatively each instance is just a doc and so has a unique Doc Id, so you could just link to that Doc id directly.
Regards
[Charles|http://www.reportex.co.uk/xc_waterfallchart.html]

Similar Messages

  • Can we have two different web url for a same instance ??

    Can we have two different web url for a same instance ??
    I have read it somewhere that it's possible in R12....please correct me if I am wrong...and if it's correct please let me know the doc id for it...

    Hi again;
    Pelase also see Hussein Sawwan previous great post
    Multiple URL (hostname.domain) to the same instance
    Multiple URL  (hostname.domain) to the same instance
    Regard
    Helios

  • While listening to a podcast on my iPhone I can e-mail the podcast ID. The email contains the url for the specific podcast. So you would assume that you could put that url into iTunes and it would take you to the podcast. This used to work but no longer.

    While listening to a podcast on my iPhone I can e-mail the podcast ID to share it with someone else. The email contains the url for the specific podcast. So you would assume that you could put that url into iTunes and it would take you to the podcast. This used to work but no longer. Months ago when I would e-mail myself the url all I had to do was click on the link in the e-mail and it took me right to the specific podcast in iTunes. Now it only opens iTunes and I can't figure out how to find the specific one. What good is the e-mail tab on the iPhone if it doesn't connect you to the podcast you sent?

    Same here. I just posted a question too.

  • How to find public and private url for an EBS instance?

    I am asked to find public and private url for an instance. I did in the following way. Can u please correct me if following is wrong.
    1) Go to .xml file.
    2) found s_external_url and corresponding entry is public URL.
    3) found s_login_page and corresponding entry is private URL.
    Please correct me any thing is wrong.
    Regards
    DBA.

    please give a hand. online waiting....
    thanks....

  • Retrieving the destination location of output for a specific instance

    Hi,
    I have reports that run daily and create output PDFs in Enterprise location. I am now trying to access these output PDFs using a C# program using SDK. I see that when i query for PDF instances, the query does not give me SI_SCHEDULEINFO. How do I access the destination location information for all output instances?
    I am using CRS 2008. Thanks for the help.
    Bin.

    I just found it. It is in the SI_FILES  property. Select SI_FILES in the query and infoobject.files would give the file information you need.

  • How to define a standard web template for a specific group of queries?

    Hello experts,
    I had to enhance the standard web template 0ADHOC and saved it as ZADHOC.
    Then in SPRO t-code I defined it as the standard web template. The problem is: it started to be the standard web template for all the company queries.
    Is there a way to define it as standard only for the queries of my project? Like adding some parameter in the web link only for my project queries?
    Thanks in advance,
    Helder

    I have figured out how to  slice it up myself,  however it appears as though I have to do it all  manually, drawing  each box myself.
    Yes, that's how it will have to be. There is no pertinent slicing in the PSD.
    This will result in either ALLOT of  work making sure  that each box is perfectly aligned with the one before  it, or uneven  slices.
    I am obviously doing something wrong.
    Yes, you are not using guides. You know, those cute turqoise lines of which the document already has a few when opening it...
    As for everything else - the template is simply rubbish. It's poorly organized and mostly unsuitable for building a website template right off the bat. Your work needs to start there by properly grouping items to mimic button states and then exporting them in two passes. And then there's things like this large dummy text etc. that simply don't make sense. Anyway, even if it sounds liek the same record over again: The biggest failure of any such work is to assume that PS could even spit out a working web page. All a web designer would use it for is to extract the graphical elements, but teh rest would stil lbe designed properly with standards compliance in mind in a web design app...
    Mylenium

  • Submit bulk web URLs for categorization effort

    Hi,
    Looking at my logs, I see a number of uncategorized websites and I want Cisco to prioritize the categorization of them. However, I'm not going to go and figure out what the categorization is in advance - there's about 1,000 URLs - I want Cisco to do that.
    What is the method to bulk upload a list of URLs that need categorization without sponsoring or suggesting what that categorization should be?  These are URLs that have already failed to be categorized based on the Dynamic Content Analysis Engine to my knowledge.  (Side question: if DCAE determines what the category is, does it still show up in the logs as uncategorized?)
    Cheers,

    Hi,
    Attachment in Ondemand are Always Child objects, they need to be associated to a parent in you case which is CustomObject1, as you can see you have not specified the CustomObject Record Id to which the Attachment needs to be associated to.
    Specify the Row Id of the record to which the Attachment needs to be associated to
    //Specifing the Record's RowId
    myCustom1Data[0] .Id='AXSA-1234'
    Regards,
    Deepak H Andeli

  • Getting error while refreshing a Webi reports for a specific universe

    Hi Experts I am trying to refresh a WEBI Report but getting this error: A database error occured.
    The database error text is (cs)"Specified network layer is invalid" Previously this was working fine...
    from today itself I am getting this error
    My DB is DB2 DB Drivers: DB2 V9 ->JDBC Driver

    Test Connection is always successful...
    Not sure whats wrong

  • Web Dynpro for ABAP

    can any one can help me??? when will SAP is going to launch web Dynpro for ABAP????...........plz no guess...........no ideas......if u have anything concrete then reply only.......as its not their with Netweaver'04 edition....
    thank you
    kamaljeet

    hi,
    @Hans, SDN site is the place to see the latest anouncement and news from SAP about NetWeaver.
    WebAS for ABAp and full edition are displayed as "coming soon' in the download page.
    for more info info about latest discussion you can join
    forum: More Discussion > sample code/downloads
    @Kamaljeet, I don't have any link etc. but it is espected by the end of sep.
    Rgds,
    Viilsh

  • Reloading JSP for a specific role's users

    Hi all,
    We have a web application using JSPs.
    Our application has users and roles. A user is associated to a role. These are defined in 2 tables:
    create table role
    ( id int not null primary key,
      name varchar(50) not null )
    create table user
    ( user_name varchar(50) not null primary key,
      user_password varchar(50) not null,
      role_id int not null foreign key references role(id) )
    For example:
    insert into role values (1, 'HR')
    insert into user values ('michaelK', 'password', 1)
    insert into role values (2, 'Payroll')
    insert into user values ('babarA', 'honest', 2)We have 2 tables where we store all our application's web pages and buttons on each page:
    create table web_page
    ( id int not null primary key,
      name varchar(50) not null )
    create table web_page_button
    ( id int not null primary key,
      name varchar(50) not null,
      web_page_id int not null foreign key references web_page(id) )
    For example:
    insert into web_page values (1, 'Personal_Info') // "Personal Info" Screen has 2 buttons: update and cancel
    insert into web_page_button (25, 'update', 1)
    insert into web_page_button (26, 'cancel', 1)We have a requirement that the administrator want the facility to enable/disable buttons on each web page for a specific role. So we have created a table where we define enable flag for each button of a web page w.r.t a Role:
    create table role_web_page_button
    ( id int not null primary key,
      role_id int not null foreign key references role(id),
      web_page_button_id int not null foreign key references web_page_button(id),
      enable_flag int not null )So if the administrator say that for users belonging to "Payroll" role the "Update" button on "Personal Info" Screen will be disabled.
    insert into role_web_page_button values (100, 2, 25, 0)The user first go to login.jsp and provide login information. If successful we store his user_name and role_id in the session as an attribute. We then redirect the user to index.jsp. In this jsp we have a header.jsp on top. This JSP remains there on all web pages user visit.
    In that JSP we generate one Javascript function getButtonEnableFlags(). This function defines each button's enable flag of each screen for the user's role_id. So when a user of "Payroll" role logins then this is generated:
    function getButtonEnableFlags()
      var buttonEnableFlags = new Object();
      buttonEnableFlags["Personal_Info::update"] = "0";
      return buttonEnableFlags;
    }We also have a javascript function which tells us the enable flag's value for a button of a screen.
    function getButtonEnableFlag(webpageName, buttonName)
      var buttonEnableFlags = getButtonEnableFlags();
      var keyName = webpageName + "::" + buttonName;
      return buttonEnableFlags[keyName];
    }Each Web Page after loading calls a common javascript function setupButtons(webpageName). This function receives a webpage name, picks all buttons on the form of that web page, then call getButtonEnableFlag(webpageName, buttonName) to get enable flag for each button and then set it.
    This solution is working fast and perfect. The javascript function getButtonEnableFlags() is generated once when user logins so each web page does not have to call the server to figure out enable flag for their buttons.
    I have created a maintenance screen for the Administrator which provides the facility to enable/disable buttons on each web page for a specific role. This screen updates the role_web_page_button table.
    Problem is if the Administrator makes any changes for a Role how can I reflect that change on the user's of that role which are already login in the system? For example suppose 2 users of "Payroll" role are login in the system and for "Peson_Info" web page the "update" button is disabled. Now administrator changes the "update" button of "Personal_Info" web page to enable for "Payroll" role through the maintenance screen. How can I reload the header.jsp on only those 2 user's computer?
    Thanks

    I suppose you can use AJAX to change the end-users JSP page that is displayed on his browser as he is vieiwing it.
    However, I suggest against changing permissions on a JSP page while the user is using it (I believe most programmers do not do that). If I was an end-user with a JSP page displayed and I suddenly see the 'update' button disapear, I would be very upset.I suggest waiting for the user to close his session (and not simpily navigate to another page within the session, but actually ending the session by either calling up another web site or closing the browser) and when he next logs into the applcation again, the button is gone. If the administrator does take away a permission such as an 'update' button, do you really need to deny permission to everyone right then? I think you can wait for users to log off.
    An alternative is to create a batch job that when the admin removes permission, the batch job runs at midnight to actually change the permission in the database. Since few people are logged on at midnight, few people will see the change while they are working.
    Another possiblity is when they click the update button, don't do an actual update to the database. Instead, redraw the page with the update button disabled (not removed) and add a note on the JSP page that the administrator has just removed permission for all users to update at this time.

  • How to open oracle listner for three database instances

    please help me with following questions
    I have 3 database instances
    orcl
    JIP02T
    JIP04T
    when i start the oracle database, does it start all 3 instances? when i start the oracle listner, does it start listner for all 3 instances?
    when i echo $ORACLE_SID
    [ora112@localhost admin]$ echo $ORACLE_SID
    orcl
    i can only see orcl and oracle listner is started only for one database instance.i can connect to only one database instance usign sql developer how can i start oracle database listner for other database instances as well

    ShishirTekadeR wrote:
    . oraenv
    Note that is "dot" SPACE oraenv
    You will be prompted for the value of ORACLE_SID (one of the databases). It looks like this:
    oracle:orcl$ . oraenv
    ORACLE_SID = [orcl] ? dwsbx
    The Oracle base for ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1 is /u01/app/oracle
    oracle:dwsbx$
    HIGHLY APPRECIATED U R IMP Tips!!!!!
    But it’s very difficult to remember & manually enter oracle SID & HOME details every time after run (. Oraenv)
    .profile creation is simple method and no need to remember SID & HOME details.(for multiple DB in one server)You don't have to "remember & manually enter oracle SID & HOME details every time after run " oraenv sets all those details for you. All you have to remember is the name of the instance you want to work with. The same thing you'd have to remember if you if you created (as you suggested) three different "profiles" - actually three different shell scripts, each to set the environment for a specific instance.
    Yes, I do place "default" settings in .bash_profile. But with multiple databases the "default" settings are often not going to be what you need so you'll still have to run some process to change them. Either a home-grown script or oraenv. And either way you will have to remember the names of the instances you have to chose from. So in general I see no advantage of reinventing the wheel.
    >
    >
    >
    As per user information
    He is using different port number for different instanceWhich accomplishes absolutely nothing except extra configuration headaches. It accomplishes nothing for security. It accomplishes nothing for availability.
    And also it is very simple method to manage three different DB in three different listener entry (for DB maintenance activity.)Not as easy as managing one default listener. By far the most frequent listener configuration issue I see on this forum is when people try to configure one listener per database.
    Single listener in multiple instance (if listener down all DB connection will affect)And why would the listener be down? I've been working full time with Oracle since version 7.3 - somewhere around 1995. I've NEVER seen a listener fall over and die. I have seen many people on this forum whose db connections failed because they were trying (unsucessfully) to configure multiple listeners.
    All of my servers are running multiple databases. I have one test server that is running close to a dozen separate databases. One listener. I've NEVER had a situation where I thought to myself, "Gee, it would really help if I had created a separate server for each database"
    >
    >
    Best Regards,
    Shishir Tekade.
    My Blog: http://shishirtekade.blogspot.com
    Edited by: ShishirTekadeR on Dec 27, 2012 10:29 PM
    Edited by: ShishirTekadeR on Dec 27, 2012 10:30 PM
    Edited by: ShishirTekadeR on Dec 27, 2012 10:31 PM

  • CSS Script to search for a specific Keyword for keepalive

    Hello
    I am trying to figure out if this is possible. I want the CSS to check a web page for a specific word such as "ClientABC" any where in the page. If the word is found, then CSS will assume that page is working fine.
    The reason for this is: we want to know if database does not send the output to the page, CSS should tell us that.
    I found one script close to this but not sure if this will help me at all..
    !no echo
    ! Filename: ap-kal-httptag
    ! Parameters: HostName WebPage HostTag
    ! Description:
    ! This script will connect to the remote host and do an HTTP
    ! GET method upon the web page that the user has asked for.
    ! This script also adds a host tag to the GET request.
    ! Failure Upon:
    ! 1. Not establishing a connection with the host.
    ! 2. Not receiving an HTTP status "200 OK"
    if ${ARGS}[#] "NEQ" "3"
    echo "Usage: ap-kal-httptag \’Hostname WebPage HostTag\’"
    exit script 1
    endbranch
    ! Defines:
    set HostName "${ARGS}[1]"
    set WebPage "${ARGS}[2]"
    set HostTag "${ARGS}[3]"
    ! Connect to the remote Host
    set EXIT_MSG "Connection Failure"
    socket connect host ${HostName} port 80 tcp
    ! Send the GET request for the web page
    set EXIT_MSG "Send: Failed"
    socket send ${SOCKET} "GET ${WebPage} HTTP/1.0\nHost: ${HostTag}\n\n"
    ! Wait for a good status code
    set EXIT_MSG "Waitfor: Failed"
    socket waitfor ${SOCKET} "200 OK"
    no set EXIT_MSG
    socket disconnect ${SOCKET}
    exit script 0

    Hi there !
    I am not sure about the current status of your investigation but I believe there are a number of ways to do what you want by just using the http keepalives / get statement.
    I think that what you really want to do is to monitor the database connection and for this you can create a test page (asp) that connects to the backend db and returns either a 'success' or 'failed'.
    The page contents only change on failure causing the CSS to pull that webserver out of the cluster.
    Regards,
    Leonel

  • Web URL on Data target

    hi 
    do any one have information on Web url for Data target?
    what is it and how they are implemented and what benefit can be reaped from them.

    Hi Olav,
    We had the same problem. Implementing note 973197 does not work. Do you have any other suggestions?
    Thanks,
    Guus

  • Lync Discover Internal & External Web URL

    we have Lync 2013 standard deployment with one front end & Edge server role. we have use our firewall as a reverse proxy by natting live IP with Frontend server.
    now we have deployed same web URL for internal and external access that is lync.domain.com. Now we are not able to access lync discover from mobile client who is connecting from internal.
    Please find herewith the result of Lync Connectivity Analyser :
    Total server discovery time: 0.1 seconds
    Server discovery succeeded for unsecure (HTTP) internal channel against URL http://lyncdiscoverinternal.domain.com/
    Starting automatic discovery for secure (HTTPS) external channel
    An error occurred while sending the request.
    Unable to connect to the remote server
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond X.X.X.X(external IP):443
    For troubleshooting, try using a browser to open the server discovery URL https://lyncdiscover.domain.com/[email protected]
    Server discovery failed for secured external channel against https://lyncdiscover.domain.com/
    Starting automatic discovery for unsecure (HTTP) external channel
    An error occurred while sending the request.
    Unable to connect to the remote server
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond X.X.X.X(external IP):80
    For troubleshooting, try using a browser to open the server discovery URL http://lyncdiscover.domain.com/[email protected]
    Server discovery failed for unsecured external channel against http://lyncdiscover.domain.com/
    Automatic discovery meant for external network access failed. Please verify the server requirements at http://go.microsoft.com/fwlink/?LinkId=278998 .
    Automatic discovery meant for internal network access succeeded from an external network which could be a potential security concern.
    Kindly let me know , how we can use same web URL for external and internal access of lyncdiscover in 2013 version.

    You can refer below link to help you in your issue
    http://blogs.technet.com/b/nexthop/archive/2012/04/25/lync-server-2010-mobility-deep-dive-autodiscover-service.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blogs: Technical

  • What is the URL for an external web service

    I have an external web service that I want to invoke a BPEL process. I was wondering how to find the URL for the BPEL process.
    cheers
    James

    We're invoking the BPEL endpoint from a .NET app using the 'endpoint location' but seemed to be forced to use the embedded version number. For instance we have to say 'http://<server>:<port>/orabpel/<domain>/<process>/1.0' and I can't seem to get rid of the '1.0'. This contrasts to the WSDL location where I can use a browser and remove the version number to get the current default.
    Am I doing something wrong? I'd like to avoid embedding the version in the endpoint.

Maybe you are looking for

  • Hard drive will not mount - SMART STATUS "not supported"

    I was in the process of "sanitizing" an iMac G5 last night by erasing the data with Disk Utility and the hard drive is not not recognized...and some alarming noises periodically come from the drive. Is there something else I should try to determine i

  • PS CC Converting to profile and embedding a profile

    Hi, I just started using PS CC 2014. I have a number of variables that have changed, such as a new iMac, secondary monitor etc. I am working in aRGB when processing and I go to print via the Canon plug-in for Photoshop. I convert to profile using the

  • Migration from DB2 to Oracle 10g using free tools

    Dear all, Im currently using DB2 database and wish to migrate data over to Oracle 10g express. However, i could not find any free tools or methods to migrate without using tools as i could not use tools like Oracle Migration Workbench as the migratio

  • Querry assistance in sql

    SELECT CASE WHEN e.EA_STATUS IN ('E4', 'U4', 'P5', '02', '03', '04') and t.TRANS_GROUP IN ('3500', '9100') THEN 1 -- PROJECT WHEN e.EA_STATUS NOT IN ('E4', 'U4', 'P5', '02', '03', '04') and t.TRANS_GROUP IN ('3500') THEN 2 -- NON PROJECT ELSE 0 -- UN

  • Mods: Re Creative and conflicting statemen

    I'm an extremely annoyed X-Fi Fatality owner on Vista Ultimate 32bit.On XP this was a good, if not great, card, with good performance and features. It was used extensi'vely for recording and processing in Ableton Li've and Sonar, using the front pane