Retrieve the link from Bookmark of Report view on Enterprise Poral

Hi All,
We are running the BEx queries on Enterprise Portal. When I try to Bookmark a particular View of the query it says:
"Bookmark 4XX9XXYJF84229XXQF2TBAZZD saved".
If at a later stage I want to run the same view of the report, from where can I retrieve the 'Link' of this Bookmark (considering I did not save the link initially).
I tried to T-code 'RSWR_BOOKMARK_REORG', but that does not give me the link.
Regards,
Shreyas.

Please take a look at the FAQ for Portal.It has a section on the same topic.
http://otn.oracle.com/products/iportal/htdocs/portal_faq.htm
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Milan:
I have made a form in Portal EA 3.0.6.3.3, and I have tried to find a way to link the forms result to a report (as input).
The Form is base on a non-updateable view and is use in order to use LOVs. The report is showing the details based on the search result of the form.
What I need is a way to link the result of the form with the report parameters.
I know I should use the On successful submission of a form, execute this PL/SQL block or PL/SQL procedure: in the firs form tap.
I is should be something like this call('http://artemis/pls/portal30/APPS.RPT_DETAIL.show');.
Artemis = local host/server
APPS.RPT_DETAIL.show = the reports call interface
I do a make the link with appropriate parameters???
Yours thankfully<HR></BLOCKQUOTE>
null

Similar Messages

  • Make the link from the single cell of Bex Report and the image of bill

    Hi guys,
    my client scan every bill and archive the image by File.net technology.
    In our Bex Report we have the Bill number and we want to make the link from the single cell and the image of bill.
    The possible paths to solve the problem are:
           Replicate the image in BW and crate a link from the single cell and the image of document.
           Create an URL link from the single cell and the image of document archived on File.net server.
    In witch way we can to implement the two paths?
    Thank you.
    Alessandro

    Hi Alessandro,
    Have you seen "How To…Enhance your Web Query with the Table Interface"?
    You can find it in media library:
    https://websmp105.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000194044
    Best regards,
    Eugene

  • Is it possible to retrieve the data from maintainance view?

    Hi experts,
    Am facing one problem.
    Is it possible to retrieve the data from Maintainance View ,If yes how?
    IF it is not possible then Y?
    While am trying to retrieve data from maintainance view it's showing message like
    "it is not a database view or table".
    Can u pls give me ans.
    Thanks&Regards,
    Arun.

    Hi Arun,
    It is not possible to retrieve the data from Maintenance view. Maintenance View is different and Database View is different.
    Maintenance view : Maintenance view permits you to maintain the data of an application object together.The data is automatically distributed in the underlying database tables.
    A standardized table maintenance transaction is provided (SM30), permitting you to maintain the data from the base tables of a maintenance view together.
    In other words, Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Database View: Data about an application object is often distributed on several database tables. A database view provides an application-specific view on such distributed data.A database view is automatically created in the underlying database when it is activated.Database views implement an inner join.If the database view only contains a single table, the maintenance status can be used to determine if data records can also be inserted with the view. If the database view contains more than one table, you can only read the data.
    Database views should be created if want to select logically connected data from different tables simultaneously. Selection with a database view is generally faster than access to individual tables. When selecting with views, you should also ensure that there are suitable indexes on the tables contained in the view.
    Hope this helps.
    Please reward if useful.
    Thanks,
    Srinivasa

  • How can I hyperlink from FM to an external document and make the links work in PDF-XChange Viewer?

    A couple of months ago some of you kindly taught me how to insert links to an external document in FrameMaker. The syntax that made all the difference, was the following:
    message openfile "H:/folder name/to/your/file.ext"
    I converted my FrameMaker file to PDF format using Acrobat Distiller, and everything worked like a charm when the users opened the resulting PDF document in Acrobat Reader.
    Much to my frustration, someone has now decided that the organisation should use PDF-XChange Viewer instead of Acrobat Reader, and my links don't work anymore... Nothing happens when you click on them. (This only applies to links to external documents. Links to e.g. websites work nicely.)
    Has anybody got any idea what I could do to make the links work in PDF-Xchange Viewer as well? Or am I trying to do the impossible now?
    Best regards
    Jorunn

    Jorunn H wrote:
    A couple of months ago some of you kindly taught me how to insert links to an external document in FrameMaker. The syntax that made all the difference, was the following:
    message openfile "H:/folder name/to/your/file.ext"
    I converted my FrameMaker file to PDF format using Acrobat Distiller, and everything worked like a charm when the users opened the resulting PDF document in Acrobat Reader.
    Much to my frustration, someone has now decided that the organisation should use PDF-XChange Viewer instead of Acrobat Reader, and my links don't work anymore... Nothing happens when you click on them. (This only applies to links to external documents. Links to e.g. websites work nicely.)
    Has anybody got any idea what I could do to make the links work in PDF-Xchange Viewer as well? Or am I trying to do the impossible now?
    Best regards
    Jorunn
    Have you tried contacting the PDF-Xchange company's technical support? What results?
    Regards,
    Peter Gold
    KnowHow ProServices

  • Replace the link "Create Bookmark Link" for "Download"

    When I execute a report from interactive columns in principal report ( published in the dashboard), I don't download for default, because this link not exist. Is it possible to replace the link “Create Bookmark Link” for “Download” (excel)?, Can I add additional link "Download" or "Export" to Excel?
    Thank.

    I don't understand what you want. Do you want a link that will download a Dashboard to Excel? Why do you want to replace the "Create Bookmark..." link? What's that got to do with your requirement?

  • How to retrieve the values from a LinkedList

    Hello,
    I have just put this question in java programming forums by mistake...I think that it should be here ...
    I have created a LinkedList to store the results of a query to a database.
    These reasults are decimal numbers and then I want to sum all these numbers to be able to make the average.
    But when I try to retrieve the values of the Linked List I always receive an incopatible types error..
    Here is an extract of my code in a jsp page.
    LinkedList Average = new LinkedList();
    String Media = rst.getString(10);
    Average.add(Media);
    int Size = Average.size();
    double Sum = 0.0;
    for (int i=0; i<=Size; i++)
                    double Result = Average.get(i)     
                  Sum = Sum + Result;
    }If I try to retrieve the value of only one node from the list , I can just putting <%=Average.get(i)%>...but..how can I retrieve all the values (they are decimal numbers) to be able to add them?

    If you want to sum all the values, is there any reason you just don't retrieve the sum from the database rather than the list of values?
    anyway
    List average = new LinkedList();
    while (rst.next()){
      // retrieve the number:
      String mediaString = rst.getString(10);
      Double media = Double.valueOf(mediaString);
      // or maybe like this if it is a number in the database
      Double media = new Double(rst.getDouble(10));
      average.add(media);
    doubleSum = 0.0;
    for (Iterator it = average.iterator(); it.hasNext(); ){
      Double result= (Double) it.next();
      doubleSum += result.doubleValue();
    }

  • Error while link from calendar to report

    Dear,
    Now I try to link from calendar to report. In the SQL Query
    step of the calendar build wizard I've input as follows:
    select
    c.cal_date the_date,
    c.cal_title the_name,
    'PROJECT.CAL_RPT.show_parms?
    p_arg_names=_tab_calendar_cal_id_cond&p_arg_values=%
    3D&p_arg_names=tab_calendar.cal_id&p_arg_values=' || C.CAL_ID
    || ' ' the_name_link,
    null the_date_link,
    null the_target
    from project.tab_calendar c
    order by 1
    But when I click link in calendar, the browser was shown
    that "The page cannot be found HTTP 404 - File not found
    Internet Explorer".
    Why this link is incorrect? Please help me.
    Thank You
    sirin kittichotpanich

    hai eide...
    this is javascript ok..
    i am also having the same problem
    in plsql procedure anyway...
    write this script into javascript event handler 'OnClick' ok
    function open()
    window.open('url','mywindow','width=100,height=100,scrollbars=yes,resizeable=yes');
    open();
    it should work...
    regrds
    hai

  • No data Exists error while retrieving the data from a table

    Hi Everyone!
    I am getting "No Data Exists" error while retrieving the data from a table....where i need to check...if possible please give me example link.....please help me regarding this

    Hi !
    thanks for ur response...
    I have written vo.executeQuery for the table...My page is running but i m not getting the data....I have to select two LOV's and when I click on Go button the data has to display in the table...After the selection of LOV's when I click on Go in the table "No data exists" message is appearing...the table has the data and the query is also executing...please give info where i did the mistake....

  • I recently lost my iphone to which had of alot purchased music on it, but when i've come to retrieve the music from my itunes and the music is not there?  The purchases show on my history but the music is nowhere?  How can i get my purchases back please?

    I recently lost my iphone to which had of alot purchased music on it, but when i've come to retrieve the music from my itunes and the music is not there?  The purchases show on my history but the music is nowhere?  How can i get my purchases back please?

    By any chance, did you have the Find My iPhone app installed prior to it being stolen?
    Reporting a lost or stolen Apple product
    Hopefully you had your iTunes purchases backed up to an external source such as an external drive or CD's?

  • HT4927 I have just downloaded iPhoto from the app store. The photo library from my old laptop was backed up on an external hard drive and I retrieved the photos from there.  Now when I open the photos on my new Mac Book Pro, they are small - am I missing

    I have just downloaded iPhoto from the app store. The photo library from my old laptop was backed up on an external hard drive and I retrieved the photos from there.  Now when I open the photos on my new Mac Book Pro, they are small - am I missing something?
    I am using 10.8.2 Mountain Lion btw

    I dragged the Photo library icon from the backup drive on to iPhoto on the laptop
    That means you imported one Library to another.
    Never import one Library to another. Every version and thumbnail is imported like a distinct photo, you lose all your Albums, Keywords etc., the link between Original and Previews is destroyed, the non-destructive editing feature is ruined and so on. In summary: it's mess.
    So the reason you're seeing small photos is because you're seeing the iPhoto thumbnails from the back up library.
    So, what to do?
    Do you still have the back up? If so, trash this bunged up library and restore from the back up again. HOw to restore will depend entirely on how you made the back up, but no version of restoring includes importing the library.
    Regards
    TD

  • Link from an Answers Report

    I have built an Answers report. This report shows Manager Name and weekly sales count like 'Mike Anderson' - '43'
    I must make this '43' value clickable and when a user clicks on it, it must go to another answers report that displays this 43 sales detail.
    Is there any way to do that?
    What way do I have to follow ?
    Thanks in advance...
    Edited by: user10137960 on 24.Ara.2009 04:14

    1. in the answers request, specify the data format as HTML (Check the overrride Default data format)
    2. goto the Column formula and specify the Column formulae for the request as
    CASE WHEN TB_REPORT.TEMPL_ID = 0 THEN TB_REPORT.REP_SHORT_NAME ELSE '<a href="www.oracle.com/help.aspx?reportid=' || TB_REPORT.REP_SHORT_NAME || ' target=_blank">' || TB_REPORT.REP_SHORT_NAME || '</a>' END
    Customize the above formulae for your requirement and execute your answers page, you can click on the links on this column to view the details in another page..
    This might help you...
    awating for your results
    Regards,
    Vishy

  • SQL Server Import Export Wizard fails while trying to retrieve the data from FastObjects Database

    When trying to import data from FastObjects database to SQL Server 2008 R2 using import/ export wizard we get the following error message :
    "Column information for the source and the destination data could not be retrieved, or the data types of source columns were not mapped correctly to those available on the destination provider."
    Clicked on View button, the source data is retrieved correctly.
    Clicked on Edit Mapping button, the Import Export Wizard failed with the below error message:
    ===================================
    Column information for the source and destination data could not be retrieved.
    "Test" -> [dbo].[Test]:
    - Cannot find column -1.
    (SQL Server Import and Export Wizard)
    ===================================
    Cannot find column -1. (System.Data) 
    at System.Data.DataColumnCollection.get_Item(Int32 index) at System.Data.DataRow.get_Item(Int32 columnIndex) at Microsoft.DataTransformationServices.Controls.ProviderInfos.MetadataLoader.LoadColumnsFromTable(IDbConnection myConnection, String[] strRestrictions)
    at Microsoft.SqlServer.Dts.DtsWizard.OLEDBHelpers.LoadColumnsFromTable(MetadataLoader metadataLoader, IDbConnection myConnection, String[] strRestrictions, DataSourceInfo dsi)at Microsoft.SqlServer.Dts.DtsWizard.TransformInfo.PopulateDbSourceColumnInfoFromDB(IDbConnection
    mySourceConnection) at Microsoft.SqlServer.Dts.DtsWizard.TransformInfo.PopulateDbSourceColumnInfo(IDbConnection mySourceConnection, ColumnInfoCollection& sourceColInfos)

    Hi Chennie,
    Thank you for the post.
    Does the issue persists after you use the "Write a query to specify the data to transfer" option instead of “Copy data from one or more tables or views” option? If so, the issue may occur due to incorrect data type matching between the FastObjects database
    data types and SSIS data types. In this condition, I don’t think it is necessary to upgrade the SQL Server version. Since you can open the Column Mappings dialog box, please try to modify the data type mapping manually.
    In addition, the issue seems to be the same as the issue described in the following blog:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2010/09/09/sql-server-import-export-wizard-fails-while-trying-to-retrieve-the-data-from-pervasive-database.aspx 
    Regards,
    Mike Yin
    TechNet Community Support

  • EVDRE encountered error retrieving the data from web Server

    Hi,
    I know this is the common/generic error message, following is our scenario:
    We installed BPC NW 7.5 on our production box and configured F5 load balancing for two .NET servers.
    We are getting the error "EVDRE encountered error retrieving the data from web Server"when we run the report EVDRE on APSHELL (original Appset). This is the fresh installation:
    The workaround "Clear Local application information". Even this works only sometimes.
    Is there anything else we should have configured on using two .NET servers?
    Please suggest.
    Thanks

    hi Nagesh sorry for the delayed reply..
    We changed some of the parameters at F5 switch like sticky time, timeout..
    And the MDXPARSER connection to one of out application server was failling, thats why we did not had this issue consistently.
    When ever the request goes to that app server fails. It took a lot effort to notice this since we were assuming the F5 switch was only causing the issue.
    Thanks

  • E71: how to remove Nokia links from bookmarks?

    How do I remove the the Nokia links from bookmarks?
    I am unable to delete, or move, them to a folder.

    It easy to remove all those Nokia bookmarks links and folders. Just remove the bookmarks db file...
    Use Y-Tasks (process & threads) to kill "FavoritesSrv.exe"
    You need self sign Y-Tasks.
    Then go to... C:\Private\100012a5 and delete...
    DBS_101FD685_BrowserBookmarks.db
    That's for FP 1 & FP 2 devices for FP 3 devices you need to copy the DBS_101FD685_BrowserBookmarks.db that I included a download link to, copy that to the C:\Private\100012a5, overwriting the original file!
    Then restart your device...
    After you do that the only folders that you will have by default are...
    Web Feeds
    Auto.Bookmarks
    They are left because they are related to the browsers settings...
    FP3 replace db file
    http://rapidshare.com/files/183216086/FP3.rar

  • How to retrieve the values from a table if they differ in Unit of Measure

    How to retrieve the values from a table if they differ in Unit of Measure?

    If no data is read
    - Insure that you use internal code in SELECT statement, check via SE16 desactivating conversion exit on table T006A. ([ref|http://help.sap.com/saphelp_nw70/helpdata/en/2a/fa0122493111d182b70000e829fbfe/frameset.htm])
    If no quanity in result internal table
    - There is no adqntp field in the internal table, so no quantity is copied in itab ([ref|http://help.sap.com /abapdocu_70/en/ABAPINTO_CLAUSE.htm#&ABAP_ALTERNATIVE_1@1@]).
    - - Remove the CORRESPONDING, so quantity will fill the first field adqntp1.  ([ref|http://help.sap.com/abapdocu_70/en/ABENOPEN_SQL_WA.htm])
    - - Then loop at the internal table and move the quantity when necessary to the 2 other fields.
    * Fill the internal table
    SELECT msehi adqntp
      INTO TABLE internal table
      FROM lipso2
      WHERE vbeln = wrk_doc1
        AND msehi IN ('KL','K15','MT').
    * If required move the read quantity in the appropriate column.
    LOOP AT internal_table ASSIGNING <fs>.
      CASE <fs>-msehi.
        WHEN 'K15'.
          <fs>-adqnt2 = <fs>-adqnt1.
          CLEAR <fs>-adqnt1.
        WHEN 'MT'.
          <fs>-adqnt3 = <fs>-adqnt1.
          CLEAR <fs>-adqnt1.
      ENDCASE.
    ENDLOOP.
    - You could also create another table with only fields msehi and adqntp and then collect ([ref|http://help.sap.com/abapdocu_70/en/ABAPCOLLECT.htm]) the data to another table.
    Regards,
    Raymond

Maybe you are looking for

  • How to change default english Language to Chinese in DSEE 6.0

    Hi,      Anybody knows how to change language for DSEE 6.0. I want to change default language to Chinese.

  • Error when using FPM_GAF_Component.

    Hi ,       I did FPM application configuration and component configuration.  When I test from Application configuration it works perfectly. But when I run it from SE80 application->test it dumps. Below is the dump. Can some one help me please. The fo

  • 4.2.207.0 to 4.2.176.51M

    We have WLC 4402 software version 4.2.207.0 and LWAP 1510 Our wireless network is mesh but i don't know why this release support mesh access point because i found below text in Cisco help center: "Do not upgrade to controller software release 4.2.207

  • Still no multiple selection for output destination?

    Selecting multiple transcodes and clicking the settings dropdown changes the settings for all the transcodes at once (you don't have to do it individually for every transcode). Why can't I do the same with the output destination? Apple Compressor has

  • How do i check which iTunes accounts are purchasing against my card

    In my work team we have several itunes accounts all using the same credit card.  I know how to check purchase history on MY itunes account but how do i check which itunes accounts and what are the items purchased on the other accounts tied to this ca