Click on Field in report and Open Form

I know this question relates to Report but I did not receive any reply from report forum that is why I m posting here.
I want that when I click on a ABC Field (in runtime report) then it open form..
please help.

Thank you both of you
I have idea what should i write in code but please let me know that Report 6i has any event like in form (When-mouse-click etc) so that I could write code in that trigger.
I wrote code in PL/SQL of one Field
function F_MAIL_REFFormatTrigger return boolean is
AppID PLS_INTEGER;
begin
AppID := DDE.App_Begin('C:\Program Files\Microsoft Office\Office11\WINWORD.EXE',
          DDE.App_Mode_Minimized);
return (TRUE);
end;
I have three record in report when report run it is opening word 3 times I m near to solve this issue but I'd like to know proper trigger .
Message was edited by:
Kamran

Similar Messages

  • Diff  b/w Report and a Form

    Hi all can u please give appropriate difference between report and a form ..this was the question asked in my previous interview

    hi,
    welcome to SDN...
    Script is a form which has a layout set as per the company standards and can be used for external use too.  Generally reports are designed for internal use for in house users
    A script is a used for printing company specific documents as shipping labels, invoice, purchase order etc. it is basically meant for printing as copy to the customer or others. it is client dependent. It can never be interactive.
    However, a report is an executable program which can be static or interactive used to automate an existing business functionality which is mainly used for reporting purpose. it is client independent.
    Mark the helpful answers
    ~~Guduri

  • Master detail: 2 reports and 2 forms

    Hi,
    First I had 2 times a "form with report on 2 pages" so I had 4 pages: 2 for the reports and 2 for the forms.
    Now it's the purpose to have 1 page with with a sort of master detail of the 2 reports and 2 pages for the forms. But I still need to be able to make a create/update/delete on the different forms.
    For the moment I've added the "detail" report below the "master" report on 1 page, and deleted the page with te "detail" report. So there are 2 reports with each a reference to their own form where I can create and delete. Update is possible from the report page.
    How can I make those 2 reports a little bit more good-looking? I would like to have a master report and by clicking on a record, the detail-records must appear. I also have to be able to create/update/delete a new master and detail record...
    Any ideas?
    Greets,
    Sofie

    Rocco,
    The JHeadstart tutorials have a topic "Nesting Groups More than 2 Levels Deep". This topic explains how to make post-generation steps to get the functionality you want. Choose the tutorial for your View Type / Controller Type combination (you can find them via J:\jheadstart\doc\index.html).
    Hope this helps,
    Sandra Muller
    JHeadstart Team

  • Diff between normal report  and Smart forms

    Hi Experts,
    I  am a fresher, i have only a basic knowledge in sap. please help me to improve my knowledge...
    I have some doubts???
    1) What the difference between normal report(created using SE38 interactive and classic) and smart forms report???
    2) whether we will use any even in script and smart form???
    Please do the needfull...
    thanesh

    Hi
    in smartforms and in scripts we write a driver program to execute the smatform /script.
    we can write the code in the smartform iteself also.
    1. The adaption of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases.
    2. Displaying table structures (dynamic framing of texts)
    3. Output of background graphics, for form design in particular the use of templates which were scanned.
    4. Colored output of texts
    5. User-friendly and integrated Form Painter for the graphical design of forms
    6. Graphical Table Painter for drawing tables
    7. Reusing Font and paragraph formats in forms (Smart Styles)
    8. Data interface in XML format (XML for Smart Forms, in short XSF)
    9. Form translation is supported by standard translation tools
    10. Flexible reuse of text modules
    11. HTML output of forms (Basis release 6.10)
    12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc

  • Removing Menus and Opened Form

    Hi to all,
    I have developed the add-on, and is working, but when i stop my add-on the menus and the opened form remains Opened, in what event should i write the code to remove these items i.e forms and menu items.
    Help me please

    Hello,
    when the addon stops by the user, your "class" is stopping.... So You can execute cleanup code in the Finalize procedure of your class.
    Protected Overrides Sub Finalize()
            MyBase.Finalize()
            'Enter your code here
        End Sub
    Regards,
    J.

  • How to push a button, run a report, and open output in new windows?

    I have an application where I want to present the user with a form, have them enter their report parameters, and then press a go button. I would then like to display a progress bar. The report will generate both a PDF and HTML output. When the report is complete, I want to display each one of these outputs in their own browser window.
    How do I do this?

    You want to retrieve two responses? Then you'll have to invoke two requests simultaneously. You can make this possible with a Javascript window.open call in the onclick attribute of the commandButton. E.g.
    <h:commandButton
        value="submit"
        action="#{myBean.submit}"
        onclick="window.open('pdfServlet?param1=value1&param2=value2');" />Where the bean action just returns the HTML (JSF) result and the onclick fires a servlet, if neccessary supplied with request parameters so that it knows what PDF it need to generate.

  • Need help on filtering out one record from a report and open in new page

    Hi I am new and embarrassed to write in the forum asking silly questions. Thing is I am learning all from scratch without help from anyone. I have created a database (have previous knowledge only from Access) and have managed to create a beautiful report from a search filter. This report lines up several records matching what I needed. Now, I want to make the whole report with hyperlinks to a detailed page on each of the records in the report. I have tried using the feature where one can make one column hyperlinked and redirect to a new page, where I am getting all the records again - instead of only getting the record I am clicking on. I have looked and looked in the forums without finding solution and I have tested and tried various methods without luck. I am suspecting that I need some sort of knowledge on how to write a select query with where conditions that can apply to filtering out a record from one report to get another detailed on only one object (i.e. record). :/ Stupid or what?

    Hrefna.
    What you need to look into is two things:
    1) The link you defined, needs to set additional attributes for the target page. In the "Column Link" box, you have set the link to "Page in this Application" and followed by the page number (let's say, Page 10). Below that, you should set an Item to an item on you target page (let's call that P10_PRODUCT_ID). This item should be the primary key of your detail table (on the targe page). You can select this item from the popup list. The Value of the item should be picked from a popup list as well, being the value from the record you clicked on. This should then transfer your selected item to your page. The URL will then have something like P10_PRODUCT_ID:5 at the end.
    2) On the target page, 10, you must change the query slightly, so that it adds a WHERE clause:
    WHERE PRODUCT_ID = :P10_PRODUCT_ID
    Now, you should be set.
    Hope this helps.
    Borkur

  • I was no longer able to click on my Firefox icon and open . I uninstalled firefox and then reinstalled and I still cannot get Firefox to open. It says that the download was successful. What should I do?

    I attempted to open Firefox as usual and when I clicked on the icon nothing happened. I uninstalled Firefox and then reinstalled. It said that the download for Firefox was successful but it still does not open. When I click on Firefox it now just says to upgrade Firefox. What should I do to get Firefox up and running again. I have a Mac and my Safari is linking me just fine to the internet so Apple says it is not a Mac problem but a Firefox problem.

    I notice you turned off the setting that diverts new windows to a new tab. Since the new window will open in front of your current tab, it may appear that the current tab was closed, when in fact it is behind the new window. This hard to explain in words.
    Do you want to switch the setting?
    orange Firefox button (or Tools menu) > Options > Tabs
    Check the box for "Open new windows in a new tab instead"
    Does that help?

  • Create an excel template for a report and open it always in that template

    Hi,
    I've a question. I have a report in BI Answers. I would export it in BI Publisher and create for it an excel template which contains any text and a macro. Then I would associate report to the template so that when i open report in BI Publisher, it appears in my template document and i can apply macro.
    It's possible?
    All regards
    Giancarlo

    With a new account, you'll need to rebuy the games.
    Each user should have their own icloud account, otherwise they end up getting the same emails, contacts, calendars, notes, reminders, etc. - usually not what you want.  But if all have been sharing the same itunes ID, keep it that way, you can have different IDs for itunes and icloud.
    If you already have another icloud account, and want to set it up on a device, then go to Settings>icloud, scroll to bottom of screen and tap Delete Account.  This only disconnects the device from that account, no data is lost on icloud.  Then enter the account ID that you want to use.
    To create a new icloud account, go to
    http://www.apple.com/icloud/setup/

  • Oracle Report and Oracle Form Version supported by Oracle Enterprise 10gR2

    Dear support,
    Would you please advise me on the version of the following product supported by Oracle Enterprise Edition 10gR2?
    1. Oracle Report
    2. Oracle Form
    Thanks.
    Kan Fok

    Hi,
    I think Reports 6i has the option to create character delimited output, which can be used for Excel imports. In Reports 9i the ability to add a mime type that opens Excel directly was added
    Frank

  • Accident Report and related form

    Dear All,
    my requirement is if any employee met with accident, we have maintian those details in Infotype. and we have submit the accident report form to Form 16 to ESi and Form 18 to inspector offactories.
    do we have such kind of infotype and form 16 and form 18 in sap.
    if there standard foem plese forward report details or path
    Regards
    Hari

    how can i use the row id within my select query?
    Below is my query
    select
    "SRC_DATASTORE",
    "SRC_SCHEMA",
    "SRC_TABLE",
    "TGT_DATASTORE",
    "TGT_SCHEMA",
    "TGT_TABLE",
    "COMMENT",
    "UP_DT",
    "PUB_DT",
    "PROJECT"
    from "TBL_SRC"
    where
    TGT_DATASTORE = :P1_DATASTORE
    AND TGT_SCHEMA = :P1_SCHEMA
    AND TGT_TABLE = :P1_TABLE
    ORDER BY 1
    SRC_DATASTORE","SRC_SCHEMA","SRC_TABLE","TGT_DATASTORE","TGT_SCHEMA","TGT_TABLE" -----these are all my primary keys.
    can u plz help me out with this one

  • Report and Form - Nothing in Session

    Version 2.0
    I have a Report and Form combination. The "Edit" link is set to the seq_id. When the "Edit" link is clicked on the report and the form populates with the information, I then clicked on the Session link in the dev bar and there is nothing in session state except for my seq_id.
    I would have expected to see all my information that is populated on the form. Am I missing something (except for my information in session :) )?
    Thanks,
    Joe

    Arie,
    That's what I have in my HTML Header section:
    function compute_total_cost()
    document.getElementById('P2_TOTAL_COST').value =
    parseInt (document.getElementById('P2_DATA_COLLECT_FORM_PREP').value) +
    parseInt (document.getElementById('P2_PRINT_COST').value) +
    parseInt (document.getElementById('P2_MAIL_COST').value);
    and a call of onChange="javascript:compute_total_cost();" in each of the costing HTML Form Element Attributes. But if there's noting in session, how can the values be accessed.
    I also did start a new thread for this per Scott's instructions :)
    Thanks,
    Joe

  • BEx web report selection screen entries retain when closing and opening the report again

    Hello all,
    please help me in the below query.
    Till last month the entries we made in BEx web report selection screen are retained in the selection screen even when we close the web report and open it again from portal without logging off. But recently this functionality is missing and the entries in selection screen are not remembered when we close and open the same report again. It is a good feature for the users. Have you come across this issue?

    No...I think i can reframe the question very clearly......For ex:  we are opening a Bex Web report...so initally we would be prompted by the variable selection screen...in which we have to give the entries(Values) for those variables like Cal month, Sales org, Company code, etc.....Later on the report will get open based on the values we have given......
    Now if we close the particular report without logging off then if i try to open the same report that selected values are missing.....earlier it used to remember the values we have given until we log off....But now that functionality is missing....It was very useful feature.....Can you please tel me what can be done to resolve this??
    I hope the explanation would be clear now.

  • Drilldown reporting and forms.

    Hi everyone,
    I am very well versed in Report Painter but I have never created a Drilldown Report.  In my quest to find out more about Cash Flow statements I found many threads on here discussing the SAP standard reports and the forms used to generate the results.  It appears that Forms use "variables" but not "sets".  I would prefer to use sets in most of the row selections but that choice is not available.  Is there a way one can turn on the "Set" functionality so that more than one account can be reported on a line in the Cash Flow report? Your assistance would be greatly apreciated. 
    Thanks,
    Dan

    Thanks Sarma,
    They are currently downloading into Excel.  The direction I have been given is to eliminate as many "download" processes as possible.  This company has gone down a treacherous path of downloading SAP data into Excel and manipulating it without using the official SAP reposrts.  I was going down the path that we should probably create an ABAP Cash Flow statement that includes the use of the currency exchange rates in order to create a consolidated statement. 
    Is it your experience that most companies employ the "Multiple Local Currency" configuration so that FI has a Group Currency posting similar to how CO has postings in Group Currency?

  • Migration steps in oracle reports and forms

    Hi,
    I want to migrate oracle reports and oracle forms from its curent versions to 10G.
    current versions:
    Oracle Report : 2.5
    Oracle Forms : 4.5
    any help would be appreciated.....
    Thanks,
    Ganesh

    Hi,
    there is the forms upgrade center on OTN. There is a lot of information about upgrading of forms. ou can find it here: http://www.oracle.com/technology/products/forms/htdocs/upgrade/index.html.
    The way is (to my knowledge), go from 4.5 to 6i and then to 10g.
    On the page you also find a link for Oracle Reports.
    If you have more questions, I think you should ask your questions in the Forms Forum: Forms or in the Reports Forum: Reports There are the experts on the topic.
    Herald ten Dam
    http://htendam.wordpress.com

Maybe you are looking for

  • Email aliases are still there... Only in the ipad!

    Hello! I have succesfully deleted old aliases from my MAIL app and my iphone, but there are still in the ipad and I can't seem to be able to get rid of them.    Can anybody help, please?

  • Subselect in update

    Hello, i want to write an sql-update statement where a field through a part of another field will be supplemented. example: update tabelle set targetDirectiory = ' export/home/VALUE_FROM_FIELD x' where blablabla This should work as a subselect ?but I

  • XDB is asking for username and password

    Hi, I have an application which uses Oracle 8i. Recently I have installed Oracle9i and I am using port number 8080 for one of my web server. When I tried to access any Servlet from 8080 port number, it is asking for XDB user name and password. What c

  • I have a windows 8 operating system and it won't let me install quicktime please help

    I have a windows 8 operating system and it wont let me install quicktime

  • Your Ideas please ..

    Hi All, We recently developed a J2EE App using IIS and JRUN. Our URL for the application is http://myapp.company.com/ Now, I need to do the following mapping to work as well.. http://mycompany Can somehow help me with this ? Please remember that Iam