Creating Webdb Report Links (Help wanted)

(1) I am creating a report that simply pulls in rows from a table
>
(2) We have created "static" HTML biographies (Dynamic Pages) for each one
of these representives and stored them in our schema CIWEB.
(3) I simply want to link each row in that table with their respective
biography
(4) the only way i know to link to something from the report is from the
"links" option. However, this seems to only link each row in that table to
"one" link that you specified...
(5) How do i go about creating a separate link for each record (biography
link) from that report??
Help would be appreciated,null

You need to be able to take information from the row in the table and use it to define the report you are going to. How I would do it is a) create a QBE report on the table.
b) Define the link to call a FORM you build based on a procedure, taking as parameter(s) the data from the row that defines the report you want.
c) In the procedure on which you based the linked to form, take the parameter and use it in some way to construct the name of the destination report and then
d) call this report from the procedure using dynamic PL/SQL and the constructed name.
e) If you don't want to see the actual form that is based on this procedure add the following code to the section '...after displaying the footer' of the PL/SQL code exits area:
htp.script('<name of form>.submit()','Javascript');
Hope this helps.
Fran Brickhill

Similar Messages

  • ESS - Create Expense Report Link is missing for few users

    Hi,
    We are on ECC 6.0 Ehp 3 with EP 7.0.
    We are using the ESS and in that Standard SAP provided Travel and Expenses Module.
    For few of the users, the Create Expense Report  link is missing eventhough the user is assigned with the  Traveller Role
    SAP_FI_TV_TRAVELER
    Request you to let me know if any setting needs to be done in the back end/infotype to make the Create Expense Report link visible in the portal.
    Appreciate your help.
    Thanks and Regards,
    Sekar

    Hello, 
    Same happened on our side.  User is already set with the proper roles, with the correct info types but when logging in the Portal- she, too, could not view the link for Create Expense Report (which is supposed to Create an expense report for a trip without a travel plan).
    When i use my userid, and just switch personnel number to her number, I could create an expense report on her behalf. 
    That made me conclude that her traveller roles are fine.
    Pls help.

  • Create Travel Expense Report link missing in ESS

    Hello Gurus,
    I am unable to see the Create Travel Expense Report link in the ESS Travel & Management tab. I have modified SPRO and details are as below:
    1) In SPRO, I have copied the standard Resource (EMPLOYEE_TRAVEL_EXPENSES_SRV05) and Service (EMPLOYEE_TRAVEL_EXPENSEREPORT05) as new Resource (Z_EMPLOYEE_TRAVEL_EXPENSES_SRV05) and Service (Z_EMPLOYEE_TRAVEL_EXPENSEREPORT05).
    2) I have changed the URL Parameter in Z_EMPLOYEE_TRAVEL_EXPENSES_SRV05.
    3) Later I have deleted the new "Z" Resource and Service that I have created in the SPRO, so that I wanted to default back to the standard.
    After deleting the "Z" Resource and Service in SPRO, I am not able to see the "Create Travel Expense Report" link from the Travel and Expenses area page in portal. Though I was able to execute the iView directly from the Portal PCD.
    Did any one got similar kind of problem ???? 
    Could you please reply with your suggestion or advise how you have fixed this problem.
    Thanks for any help.
    Ram.

    Hi Bharathwaj,
    Thanks for your helpful answer.
    I have checked the Area Page EMPLOYEE_TRAVEL_ERP2005, but I don't see any entry for services.
    It has Area Link Text, Picture Resource, Area Link Type and Link Resource only....
    Can you suggest if I have to see any other setting ??
    Thanks for your help.
    Ram.

  • Need help on creating a report after defining some criteria

    Hi everybody,
    I have been through some of the ebooks and got the idea of apex.
    To give an example what I would like to do is that I want to open two date picker fields and creating the report between the dates which were defined in the date pickers
    Those date picker field could be on the same page of report or they could be on another page. Once create button is pressed then the report between the defined dates should appear
    Any thoughts?
    Thanks from now

    Okay, two date pickers are date to and date from, logically date to must be equal or after date from, right?
    i defined a validation as pl/sql expressin saying that date to >= date from to the expression field
    there is no problem when I put a former date on date from and a latter date to date to.
    the problem occurs when I put same dates on the date pickers. An interesting point here is that when I put the same dates and click the submit button it gives an error BUT when I push again it works!
    it gives me the rows from the table of the date picker date. is there a problem about the caching and how can I solve it.
    Or, as you recommend you can show me an example on your workspace, that would be helpful as well

  • Creating a report for linked work items...

    We are using TFS 2012 and need to create a report (either excel or SSRS) that shows all the user stories under the current sprint and any linked child items across two projects. I can do this easily per project in VS and open it in excel but excel won't
    let me copy/paste two projects work items in one spreadsheet. I tried searching and found a few suggestions but they don't seem to work.
    TIA,
    Vik

    Hi Vik,  
    Thanks for your post.
    We suggest you create a such report using TFS API. Please refer to below code snippet:
                TfsTeamProjectCollection tfs = new TfsTeamProjectCollection(new Uri("UrI"));
                tfs.EnsureAuthenticated();
                WorkItemStore workitemstore = tfs.GetService<WorkItemStore>();
                string wiql ="SELECT * FROM WorkItems WHERE [System.TeamProject] = 'TeamProject' ORDER BY [System.Id] ";
                WorkItemCollection wic = workitemstore.Query(wiql);
                foreach(WorkItem workitem in wic)
                if(workitem.Links.Count!=0)
                    foreach (Link link in workitem.Links)
                        RelatedLink relatedLink = link as RelatedLink;
                        if (relatedLink != null)
                            Console.WriteLine(relatedLink.RelatedWorkItemId);
    You can create your custom work item query to return all the parent work items, then save this query as a .wiq file in local path, then open this .wiq file and you will find the wiql string in it.
    For more information about work item query TFS API, please refer to:
    https://msdn.microsoft.com/en-us/library/bb130306.aspx.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need Help in creating BPC Report

    Hi,
    I want to develop a BPC report as shown below .
    .........................2010.TOTAL... 2011.TOTAL......2011.Q1..... 2011.Q2......2011.Q3.......2011.Q4
    ............................ ACTUAL  ........PLAN..............PLAN....... .PLAN..........PLAN............PLAN
              REVENUE
                COGS
    (.......) have been used for only formatting the report in above format.           
    I am not very much trained in BPC . I have loaded the actual data for 2010 with the proper hierarchy and i am able to see it on the report but i am facing difficulty in below two things.
    1] I am not able to create a report where i can see the Actual of 2010 and i can enter the forecast for 2011.
    2] My 2010.TOTAL is not getting rolled up , I have used proper hierarchy in Time dimension and i have selected YTD as measure.
    Please help.

    Hi,
    I stumbled across SAP note 1506275 today which dieals with the issue, but unfortunately is not helpful at all. What SAP are saying is: replace the pipe with a comma. Well, this quite obviously gives a different result than the one you were aiming at with the pipe in the first place, but that's the official answer.
    Now, I'm wondering, has anyone successfully used the pipe, and in which service pack of BPC? MS or NW? I'm on 7.5 NW SP7 and the pipe casuses the error message mentioned in this post.
    Cheers
    Matthias

  • Can I create an action link(drill through) to a Union report

    hello experts,
    Through my summary report I have created an action link to the detail report. My summary report is coming from one subject area; but my detail report is a union of 4 different subject areas. When I click on my action link to do to the detail report it gives me the whole repor, I am supposed to see just one line and not the whole detail report. Basically if click on order number 123, I should go to that particular order # specifically and not the whole report. Is this b'se of the union or something else?
    I have set all my columns in both reports to "is prompted" I am still facing the same problem..
    any idea
    thx

    With the JavaScript doc.print method: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.511.html
    you can include the printer you want in the printParams object: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.1007.html

  • I want the create this report but how to???????????????????????????????

    I'm created my oracle10g database with oracle XE databaselink and create view on XE for my customer report. And then create simple report. Everythings ok but when I push the run report report came with all data but I don't want to when push the run button. I want to run and then write customer ID and then push the GO button and then only came to 1 data or info. Can I do this and how???
    Help me please, I'm working about this a few days but I can't do anything :(((
    This is so important for me, help me please...

    Hi,
    OK
    Assuming you are using Page 1 for the report, do the following:
    1 - Create a new HTML Region called "Search" and put this above your report on the page layout
    2 - Add a normal Text item called "P1_CUSTOMER_ID" into the new region - this will be where your user enters in the CUSTOMER_ID value that they want the report to filter by
    3 - Add a Hidden Item called "P1_DISPLAY" into the new region. Set the Default Value for this item to N. If this is 'Y', the report will be shown - if this is 'N' the report is hidden
    4 - Add a button called "P1_SEARCH" into the new region
    5 - Add a button called "P1_RESET" into the new region
    6 - Update your SQL statement to include a WHERE clause:
    SELECT ....
    FROM ....
    WHERE CUSTOMER_ID = :P1_CUSTOMER_ID
    (you may have to do TO_NUMBER(:P1_CUSTOMER_ID) if your CUSTOMER_ID field is numeric)
    7 - Add a branch to the page that branches to Page 1 and sets P1_DISPLAY to Y. Set this branch to be run only when the P1_SEARCH button is clicked
    8 - Add another branch to the page that branches to Page 1 and sets P1_DISPLAY to N. Ensure that this has a higher sequence number than the first branch
    9 - Finally, add a Conditional Display to the report region. Set the Condition Type to "Value of Item in Expression 1 = Expression 2". Enter P1_DISPLAY into Expression 1 and Y into Expression 2
    Regards
    Andy

  • I want to display the number of Passed / failed tests in Testtand xml report , please help me

    Hi, I want to display the number of Passed / failed tests in Testtand xml report , please help me.
    My requirement is later i should be able to display these number of passed/failed test in report header too.
    Solved!
    Go to Solution.

    I have attached a sequence to give you an idea of how to get the Result count (I didn't check it's working ), I have used "SequenceFilePostResultListEntry" callback to calculate the Result Count,
    and the Result Count is passed to the "ModifyReportHeader" through File Globals,  where you can edit the XML file to show it in the Repot (follow the link in my previous post).
    Hope this helps
    AshwiN,
    Attachments:
    Get Result Count.seq ‏8 KB

  • Help creating a report

    Hello people I need some help creating a report on 9i. So far:
    SELECT TRUNC(sampled,'MM'), c.name country, o.name operator, SUM(SMS)
    FROM TEST s, operators_info o, countries_info c
    WHERE sampled >= '01/01/2010' AND sampled < '01/01/2011'
    AND s.dest_id = o.id
    AND o.country_id = c.id
    GROUP BY TRUNC(sampled,'MM'), c.name, o.name
    ORDER BY 1, 2, 3;
    I am getting:
    01/01/2010 UK OPERATOR1 100
    01/01/2010 UK OPERATOR2 150
    01/01/2010 USA OPERATOR3 500
    01/01/2010 USA 0PERATOR4 650
    01/02/2010 UK OPERATOR1 50
    01/02/2010 UK OPERATOR2 170
    01/02/2010 USA OPERATOR3 550
    01/02/2010 USA 0PERATOR4 670
    01/12/2010 UK OPERATOR1 0
    01/12/2010 UK OPERATOR2 270
    01/12/2010 UK OPERATOR3 150
    01/12/2010 USA OPERATOR3 570
    01/12/2010 USA 0PERATOR4 800
    How can I create a more efficient report like:
    ........................01/01/2010...01/02/10...01/12/2010
    UK OPERATOR1...100.............50.............0
    UK OPERATOR2...150.............170...........270
    UK OPERATOR3......................................150
    USA OPERATOR3.500..............550............570
    USA 0PERATOR4.650..............670.............800
    Thank you very much in advance

    Hi,
    That's called a Pivot , and this thread shows you how to do it:
    Help for a query to add columns
    Pivoting the output requires more work, so it probably won't be any more efficient that what you're doing now.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data.
    Explain how you get those results from that data.
    Always say what version of oracle you're using.

  • I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 profession​al. The create new report VI opens Excel but throws error (-21471672​62- from automation open VI) when I try to open MS word. please help...

    I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 professional. The create new report VI opens Excel but throws error (-2147167262- from automation open VI) when I try to open MS word. please help...

    Hi Leo22,
    Does this error occur if you use any of the example programs that come shipped with LabVIEW? I would try opening one of the examples that write data to Word and see if those give you an error. Also, have you tried just putting down a New Report.VI and change the report type to Word? If this simple vi (that's all you need to open Word) breaks, I would check to see if there are any instances of Word still open. Check the task manager to see if any word processes are still open. There should not be a problem accessing Word 2003 from LabVIEW 7.0. If neither of these solutions work, please give some more detail about your application and we can research further. Thanks!
    Jeremy L.
    National Instruments
    Jeremy L.
    National Instruments

  • Can't create Word Document report - need help

    Hi,
    I have been trying to create a report using a word document. I downloaded an example from ni.com that has Export_Info.vi. When I try to run it I get this error:
    Error 1003 occurred at Open VI Reference in New Report.vi->Export_Info.vi
    I traced the error back to New Report.vi which is a VI that comes with the LabView package. There is a Open VI reference that when it tries to open Word_Open.vi gives an error. So for some reason I can not open Word_Open.vi without an error, and it comes with the Report generation office library.
    Does anyone know what could the problem be?
    I tried reinstalling everything and i still keep getting the same error. This makes it impossible to create a report now.
    Any help would be VERY appreciated.
    Thank you

    Yes I have it installed. When I went to open up Word_Open.vi it opened with an error and it said that the property was not valid.
    I attached a screenshot of the block diagram for Wor_Open.vi with an error message.
    Thank you
    Attachments:
    word open.jpg ‏115 KB

  • SSRS 2008 Created Commssion Report, now getting error message when I run this ( need Help)

    in SSRS 2008 2 years ago created Commission with sub reports added, it was working fine, some how started to get error  
    message when we entered some invoice # see below screen shot of error message
    but same time if I enter different invoice # it process the report without any error message , donot understand the problem
    what's causing this issue, I have looked each sub report,
    can some one suggest any idea,
    I have spent hrs to figure it out, no luck so far.
    thanks in advance
    see the 2nd screen shot with report process
    any help will be greatly appreciated

    Hi Wendy
    thanks for your reply
    I tried creating new report , I have 1 main report and 3 sub report on this
    on main report when I enter some invoice# and accountnum  data shows up with no problem,
    but same time if I enter different invoice# and accountnum , there is no data return  on same query, I have checked my query so many times, donot understand this issue, what's causing this problem, since all the data pulling from same tables, why its
    not pulling for some invoices,
     other strange thing , I created this report , year ago, there was no problem until now,
    all of the sudden this problem just shows up,'
    I am not that expert in sql , can I really use advise
    see below by query , if you can tell me what's wrong with my query I will be really greatfull I have spend so much time to figure it out, but so far no luck
    SELECT        VENDTRANS.DATAAREAID, SALESTABLE.SALESID, VENDTRANS.VOUCHER, SALESTABLE.SALESTYPE, SALESTABLE.SALESSTATUS, VENDTRANS.TRANSDATE,
                             CUSTINVOICEJOUR.INVOICEAMOUNT, VENDTRANS.INVOICE, VENDTRANS.PAYMMODE, VENDTRANS.ACCOUNTNUM, VENDTRANS.TRANSTYPE,
                             VENDTRANS.LASTSETTLEVOUCHER, VENDTRANS.TXT, CUSTINVOICEJOUR.INVOICEACCOUNT, CUSTINVOICEJOUR.INVOICINGNAME,
                             VENDTRANS.LASTSETTLEDATE, LEDGERJOURNALTRANS.ACCOUNTTYPE, LEDGERJOURNALTRANS.AMOUNTCURCREDIT, LEDGERJOURNALTRANS.LINENUM,
                             CUSTINVOICETRANS.INVOICEDATE
    FROM            SALESTABLE INNER JOIN
                             CUSTINVOICETRANS ON SALESTABLE.DATAAREAID = CUSTINVOICETRANS.DATAAREAID AND SALESTABLE.SALESID = CUSTINVOICETRANS.SALESID
    INNER JOIN
                             CUSTINVOICEJOUR ON CUSTINVOICETRANS.INVOICEID = CUSTINVOICEJOUR.INVOICEID AND CUSTINVOICETRANS.SALESID = CUSTINVOICEJOUR.SALESID
    AND
                             CUSTINVOICETRANS.INVOICEDATE = CUSTINVOICEJOUR.INVOICEDATE INNER JOIN
                             VENDTRANS ON CUSTINVOICETRANS.INVOICEID = VENDTRANS.INVOICE AND CUSTINVOICETRANS.DATAAREAID = VENDTRANS.DATAAREAID
    AND
                             CUSTINVOICEJOUR.DATAAREAID = VENDTRANS.DATAAREAID AND CUSTINVOICEJOUR.INVOICEDATE = VENDTRANS.TRANSDATE INNER JOIN
                             LEDGERJOURNALTRANS ON VENDTRANS.DATAAREAID = LEDGERJOURNALTRANS.DATAAREAID AND
                             VENDTRANS.ACCOUNTNUM = LEDGERJOURNALTRANS.ACCOUNTNUM AND CUSTINVOICETRANS.LINENUM = LEDGERJOURNALTRANS.LINENUM AND
                             VENDTRANS.INVOICE = LEDGERJOURNALTRANS.INVOICE AND VENDTRANS.VOUCHER = LEDGERJOURNALTRANS.VOUCHER AND
                             VENDTRANS.PAYMMODE = LEDGERJOURNALTRANS.PAYMMODE AND VENDTRANS.TRANSDATE = LEDGERJOURNALTRANS.TRANSDATE
    WHERE        (VENDTRANS.DATAAREAID = N'AR1') AND (SALESTABLE.SALESTYPE = 3) AND (SALESTABLE.SALESSTATUS = 3) AND (VENDTRANS.ACCOUNTNUM = @Accountnum)
                             AND (VENDTRANS.INVOICE = @Invoice) AND (LEDGERJOURNALTRANS.ACCOUNTTYPE = 2)

  • Need help to create CTC report in HR ABAP

    Hi guys,
    I am new to HR abap, and i need to create annal CTC report. Do you guys have ever work on such requirement plz post me some sample programs.
    Thanks in Advance...

    <h5>Dear Ramkhee,</h5>
    Well I have been working as ABAP-HR since long but no such requirement has came yet but still would like to much more detail what kind of thing you will need in that report.
    But you would need to know bit of ABAP-HR report programming specifically using LDB with Report & Fetching data from the LDB with GET event.
    Anyways for your ready reference:
    1.[ This is the basic Report that help you understand how to write ABAP HR Report|http://gauravpatwari.files.wordpress.com/2009/09/report-ymhcrobjonloan.pdf].
    2. Use this function module: RP_FILL_WAGE_TYPE_TABLE for fetching the wage types with amount from the IT0008.
    eg:-
    DATA: T_PPBWLA LIKE PBWLA OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'RP_FILL_WAGE_TYPE_TABLE'
          EXPORTING
                 BEGDA = sy-datum -
                 ENDDA = sy-datum
                 INFTY = '0008'
                 PERNR = pernr
          TABLES
                 PPBWLA = T_PPBWLA.
    Here begda and endda you can put as per your logic.
    Accordingly you can program.
    <h5>Regards,
    [Gaurav Patwari|http://gauravpatwari.wordpress.com] </h5>
    Edited by: GauravPa on Mar 29, 2010 2:26 PM
    Edited by: GauravPa on Mar 29, 2010 2:29 PM

  • Need help in creating custom reports

    hello,
    I am using EM 10.2.0.2 on windows 32-bit.
    All EM components are installed on a single machine.
    Have installed AGENT 10.1.0.5 for managing targets which are on LINUX 2.1
    Please help me in getting the solution for the following queries:
    (a)I need to create a custom report regarding the CAPACITY MANAGEMENT .
    (b)I have some UDM defined but I am not able to use these UDM while creating custom report.
    (c)Also is there any possibility that we can use views other than REPOSITORY VIEWS. What I meant was : instead of using REPOSITORY VIEWS can we use the tables of the target instances.
    Thanks in advance.

    Same post
    Need help on repository views for creating custom capacity planning reports

Maybe you are looking for