Link a report with transaction screen

I am working on Creating Transaction screen. How do I link a report say "Word Document" to my transaction : I need to <b>export</b> the data required in my transaction from the<b> Database Table to the Word Document</b> and link that to the transaction screen so that I can create a Push Button on transaction screen to take the printouts of the required Financial Data

Hi
Try to see trx ole: here you should find same examples to manage a word file.
Max

Similar Messages

  • Link in report with SSP enabled

    Hey everyone, I have a question here involving programatically generated links in reports from the sql query behind them. How do I make a link to the page (from the report's sql query) that will allow me to change the value of a hidden and protected item (P16_PERSON_CONTACT_ID) without having APEX Session State Protection get angry at me and still protect me from having the user muck with the URL?

    David,
    Well bind variables are more performant and safer to use in queries. It shouldn't really be a debate on when to use them, you always use them when you can. Here's a quick break down (not a complete list, and should probably be expanded, but should get you going)...
    Use bind variable syntax when you're referencing an item:
    1. In a report query
    2. In PL/SQL code that is stored in the application (as a page level process for example)
    Use substitution variable syntax when you're referencing an item:
    1. Outside of SQL and PL/SQL but still need the value - this is not always an option (in the HTML Header region of a page or title of a region for example)
    Use V and NV functions when you're referencing an item:
    1. In PL/SQL code stored outside the application (in a package for example)
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    Edited by: Dan McGhan on Apr 29, 2009 11:01 AM
    Replaced "database" with "application"

  • Background processing for ABAP report with selection screen

    Hi ABAP Gurus,
    I m facing a strange problem in scheduling a background job for my report with a selection screen. I have a variant for the report.
    I scheduled a job, but it seems to be not doing anything though all the system resources are available. The job overview shows "Acive" for the job. The job is neither stopping anything, it is just sitting there In SM50, the status shows "On Hold".
    Any ideas/comments on the problem and how this can be overcome?
    Qucik replies and solutions will be highly appreciated as this is a crucial part for a go-live project.
    Thanks in advance.
    Shivani.

    Yes. My report has a selection-screen which requires user input. But I have created  a variant for the report and trying to run it in background using this variant. But facing this problem.
    Strange thing is, instead of the usual SM36/SM37 option where we schedule and monitor background jobs, this option does not work for my report.
    But I tried through SE38, and from my selection screen I selected "Schedule background job" and "run immediately" option, and this works. Though I still use SM37 to monitor this background job.
    I have never faced such a situation before.
    Any hints/tips why this happens and how this can be overcome in the future?
    Thanks in advance.
    Shivani.

  • Calling report with parameter screen from form using frmrwinteg

    Hi,
         I am calling a report with a parameter screen from a form and am using the frmrwinteg bean. This works fine on our test application server but, when moved onto our production application server, the database logon screen is presented after pressing the submit button on the parameter screen. The cause of the problem seems to be the html generated to simulate the parameter screen. The html on the test application server contains a BASE tag in the HEAD section with an href starting "http:/servername.companyname.com". However, the same tag in the html generated on the production application server is missing the ".companyname.com", causing the cookie produced by the frmrwinteg bean to not be found. Does anyone know how the BASE href tag is generated and what I need to change to get the correct BASE href value? I am using Forms/Reports 10g R2 and Application Server 10.1.2.
    Cheers.....

    Appendix "A" of this document describes how cookie_domain works:
    http://otn.oracle.com/products/forms/pdf/10g/frmwebshowdoc_rep.pdf

  • Report with Transaction currencies

    Hi All.
    i am in the process of developing a report in project systems with my developer.
    The scanerio is investment projects (all internal projects) . Exchange rate type P is defined and is uploaded one in an year.
    We have been using budgets in different currencies. So, a project is budgeted in 3-4 curriencies at differenct WBS levels and is posted with many currencies. As of now its working fine ...........................now the requirement of the client is , he need a report in transaction currencies.
    So, a WBS many be budgeted in one currency, but might be posted in different currencies. So for one WBS, we might have 4-5 currencies existing. Now a report need to be developed.
    Is this possible? any suggestions from your end?

    Hi Surya,
    You need to explain your client the transaction curr report will be meaningless when time comes to give a total for the columns. They need to go with either object or controlling area currency to make some sense out of these figures.
    I hope it helps,
    Regards,
    Dave

  • Call a report with selection screen as subscreen.

    Hi all,
    i need to Submit And Return a Report having some parameters and Select options, from a Function Module.
    all i want that the Selection Scrren of Report should appeared as Subscreeen, so that Calling Screen sould be visible in Background.
    Is this Possible , if yes then How ?
    thanks in advance,
    Nitin

    Running new report means opening new internal session. This can't be embeded within the current internal session where your function group (function module specifically) runs. So there is no such a way which you could run a report inside a subscreen area.
    If you however want only selection screen of the report to be embeded inside your subscreen area (not run) you can use
    "report Z_SUBSCREEN_REPORT
    SELECTION-SCREEN BEGIN OF SCREEN 0200 as SUBSCREEN.
      PARAMETERS pa type c.
    SELECTION-SCREEN end of SCREEN 0200.
    "main screen's flow logic in function group with subscreen area
    PROCESS BEFORE OUTPUT.
      call SUBSCREEN area INCLUDING 'Z_SUBSCREEN_REPORT '0200'.
    Regards
    Marcin

  • Linking oracle reports with the application

    i have few oracle reports that i need to link it to the application such that when i click on the button in the applications pahe the report should be opened...
    can any one tell me exactly how to integrate a oracle report with html db application...

    http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    that should give you a good start.
    regards
    Duncan

  • Edit link for Report with form

    Hi, I create report on Page1 with form on Page2 using Wizard. For this reports select always returns me only one record. On my report I see edit image, it has records 'id' value and branching me to Page2.
    I need edit link on another region in Page1. But I can't to assign for this link the same 'id' value for editing my record in Page2. How can I do it?
    Thanks!
    Kira.

    Kira,
    You are right, doing things this way is messy. One approach is to write APIs to support your data model. All queries/DML against tables should be done with these APIs. Having two levels of APIs has worked well for many applications: a transaction-level API (modules like fetch_empl_vacation_history, update_org_roles_master, create_incident_report) and a table-level API (modules like fetch_emp_rec, update_emp_rec, create_emp_rec). Transaction APIs call table APIs and table APIs do queries and DML against base tables. A typical page like the one you described might have one transaction-level API call to do the fetch from all the tables and populate all the page items in session state and one transaction-level API call after submit to perform the logical transaction that updates all the affected tables. APIs like these must also handle concurrency using an optimistic locking model. To repeat, the automatic row fetch and DML processing processes built into HTML DB are not intended to manage complex, multi-table transactions.
    You can create table-level APIs using SQL Workshop->Tasks Menu(Create Database Object)->Package->Build a package with methods on database table(s). If you experiment with that, some of this should make more sense.
    Scott

  • Please help me to link ADOBE forms with portal screen?

    Hey friends,
                 Im working lot with ADOBE forms for past few weeks.... with <b>sample</b> realtime test scenarios(Test) ,but im getting n.. no of doubts regarding creation of adobe forms and make it work in our portal screen...I have adobe lifecycle designer 7.1 installed in my machine...
    Ques is
    1)After creating adobe form in SAP SFP transaction ,how can i make it link with WEBportal(make it visible in portal screen)
    2)To make it interactive with workflows.....I have lot of documents,but still in confusion...
    Anyone please explain me briefly on this....thanks in advance
    Thanks
    Pavi

    In Editor Expert tab, go to Edit menu>Preferences>General, and check "Allow Floating Documents in full edit mode." This should allow you to tile or cascade.

  • How to create a report with selection screen that can run in background

    Sorry to ask these basic questions but I am knew to ABAP Programming.
    To keep it simply, I am attempting to create a report that has a simple parameter driven selections screen with one field.  That field takes in a folder path from the user.  The user executes the report.  The report creates a simply BDC that goes into SE16, gathers data from a table, and exports the results to a text file using the folder path provided.  I created a variant for the folder path field in the selection screen hoping to use it while executing the report in the background.  The report is not exporting the file as it did when run in the foreground for some reason.
    I am wondering what event is triggered when a report is executed in the background.  In the foreground (or when I execute the program via SE38->Execute->With Variant) the user needs to execute the program by hitting the execute button once the variant has populated the folder path field.  It works then, so I am trying to get the same to work in the background.  I am thinking I didn't put the program together correctly to accommodate the running in the background.  How can you create a report that can accept user input via variant into a selection screen and then run in the background?
    Please, any information would be greatly appreciated.
    Thanks you all for reading this!!!

    Ok, finally I understand what you're doing. Initially you lost me with the SE16 reference...
    Not sure what you're trying to achieve overall, but apart from the fact that you cannot export/download a file to a user's PC via background job (unless you have a mapped network share on the server or something like an FTP server on the user's PC, but both are pretty hypothetical scenarios and unlikely to occur).
    Also, the BDC approach to get data via SE16 is pretty awkward. Note that SE16 is guarded by some authorization checks and often users won't have access in production (which might not matter if you intend to always run your program in background via dedicated batch user). However, I have no clue why you wouldn't want to use [open SQL|http://help.sap.com/abapdocu_70/en/ABENOPEN_SQL_READING.htm] to read the data. You could then save it on the application server or if you really have to get it to the user you can consider e-mailing the file (extracts should be compressed before sending). For the latter you'll find plenty of references here, basically it's the [business communication services|http://help.sap.com/saphelp_nw2004s/helpdata/en/2d/1c5d3aebba4c38e10000000a114084/frameset.htm] that you'd need to look at.

  • Report with Selection screen

    I have a stupid report.
    In the initialization event I have put that
    initialization.
    set pf-status '123'.
    But in the start of selection/at user-command
    sy-ucomm is empty ... any idea is welcome
    REWARD PROMISED
    Message was edited by: STEPHAN KAMINSKI

    SELECTION-SCREEN PUSHBUTTON fmt name USER-COMMAND ucom.
    SELECTION-SCREEN FUNCTION KEY <Number>. "This is for displaying in Application Toolbar.
    Check the following help documentation..
    SELECTION-SCREEN PUSHBUTTON fmt name USER-COMMAND ucom.
    Addition: MODIF ID modid.
    Effect
    Generates a pushbutton on the selection screen. When you define the button, you also define a user command ucom (no inverted commas), up to 20 characters long, which is triggered when the user pushes the button. The rest of the syntax is the same as for SELECTION-SCREEN COMMENT
    You can define the name name either statically or at runtime (see also the BEGIN OF BLOCK, COMMENT and SELECTION-SCREEN BEGIN OF SCREEN variants).
    When you define a pushbutton, you must always specify a format fmt.
    By specifying a Modif ID, you can assign the pushbutton to a modification group.
    Notes
    The best way of reacting to the pushbutton is in the AT SELECTION-SCREEN event, or, for pushbuttons in the selection include, in the PAI routine (with FNAME = '*' and MARK = SPACE) in the database program SAPDBldb. The field SSCRFIELDS-UCOMM contains the user command ucom. (You need to declare the SSCRFIELDS table using the TABLES statement).
    You can create your own pushbuttons in the application toolbar using the FUNCTION KEY n addition.
    Within the selectoin include : Additions FOR NODE node ,FOR TABLE dbtab und ID id.
    Example
    TABLES SSCRFIELDS.
    SELECTION-SCREEN PUSHBUTTON /10(20) CHARLY USER-COMMAND ABCD.
    INITIALIZATION.
    MOVE 'My text' TO CHARLY.
    AT SELECTION-SCREEN.
    IF SSCRFIELDS-UCOMM = 'ABCD'.
    ENDIF.
    A pushbutton appears on the selection screen with the text 'My text'. In the AT SELECTION-SCREEN event, the field SSCRFIELDS-UCOMM has the contents ABCD after the button has been pushed.

  • Pop-up in a report with selection screen

    Hi all,
    I need to display a pop-up as an input component for a report as it is executed.
    The controlling area has to entered inthe pop-up.The pop-up is same as the one in Transaction code CO99.
    How do i do this for report? Its not a module pool development.
    Pls help with your ideas.
    Thanks,
    stock

    Use this code for this purpose. 
    Write this subroutine where u want the popup.
    PERFORM POPUP USING ST CHANGING ST.
    Write the following code in the subroutine of pop up.
    FORM POPUP USING P_INVST CHANGING P_VALUE.
    DATA: FIELDS LIKE SVAL OCCURS 0 WITH HEADER LINE.
      DATA : TITLE(40).
      REFRESH : FIELDS. CLEAR ANS.
      P_VALUE = P_INVST.
      FIELDS-TABNAME = 'TKA01'. FIELDS-FIELDNAME = 'KOKRS'.
      FIELDS-VALUE = P_VALUE.
        APPEND FIELDS.
    heading of the title box
    TITLE = 'Please give the controlling area'
    function to get the pop up
      CALL FUNCTION 'POPUP_GET_VALUES'
           EXPORTING
                POPUP_TITLE = TITLE
           IMPORTING
                RETURNCODE  = ans
           TABLES
                FIELDS      = fields.
      if ans = 'A'.
      else.
        read table fields index 1.
        P_VALUE = FIELDS-VALUE.
      endif.
    ST = P_VALUE.
    ENDFORM.                    " POPUP

  • How to link crystal report with swing

    I am developing applications in swing. I have done a report using crystal report.
    Now i don't know how to link it with swing. can anyone help me to solve this with some examles.
    thanx in advanz

    Hope these links are useful:
    http://www.must.de/default.html?Jareport.htm
    http://www.utdallas.edu/~pxm034000/files/integrating.html

  • Link discoverer  reports  with E-businees Suite  R12

    Can anyone help me with this statement
    3.3.3 Parameters : mode=DISCO&workbook=<workbook identifier from step2>&parameters=Disco parameter name M~Parameter M Value*
    what am i suppose to put in "parameter name " is it the worksheet name?

    Hi,
    First, check MOS note 471303.1 for details of how to link Disco workbooks in R12.
    The parameters option can be used to to set the worksheet and the parameters for the workbook. For example,
    &parameters=ws=worksheet*param1~param1value*param2~param2value
    See the document at
    http://download.oracle.com/docs/html/B13918_03/urlstart.htm#sthref897
    Rod West

  • Link a Crystal Report report with an SQL Azure database

    Hi,
    I want to use my database on SQL Azure in Crystal Report. So I want to link my reports with data contained not in a local db, but in a SQL Azure one.
    Insiede Crystal Report I have created a new ADO connection to my SQL Azure, providing server, db, user, password, and Crystal Report have recognized the database. But when I go to the Database Expert and I try to set this ADO connection inside my report,
    I recieve this error:
    "Not Implemented
    Source ADODB.Connection
    L'operazione richiesta non è supportata dall'oggetto o dal provider (operation not supported by the object or by the provider)"
    Why? How can i use my SQL Azure data in my Crystal Report reports?
    Thanks

    Hi Delfins,
    Please create a UDL file to test the connection, ensure the connection is fine and then use the same connection string in your Crystal Report.
    For UDL file, you can refer to:
    http://msdn.microsoft.com/en-us/library/e38h511e(VS.71).aspx
    Hope this helps,
    Raymond
    Raymond Li - MSFT

Maybe you are looking for

  • Populate the links from a list in a table format and navigate to the target when on clicked

    hi,  i want to read a list and few columns and in that one column is a hyperlink column and i want to show as a grid-table- kind of format and when on clicked , i want to navigate to the target. whats the best approach for this. i know, i can create

  • Sales person

    My Program is related to  transactions from FI point of view for Cutomer Dt and Ct note transactions.. For my program can u please help me what is the the table name for sales person ...How to fetch this  which is not from SD side ... How to know the

  • I have a messaging mystery--"Hi"?

    I have a messaging mystery. A few days ago, I received an iMessage from one of my contacts. All it said was "Hi". I responded to it, but the person was surprised at my response because they hadn't texted me. Odd, but okay.  Then, last night, my husba

  • Since i installed iCloud my excel documents don't allow me to type in them and they don't show the cells anymore! help!

    Help! since I recently installed icloud on my mac pc,now my excell docements are not able to be type into and no cells show up! I need my excell documentback to the way it was so I can finish working on a spreadsheet! help!

  • Macbook Pro Line In at Windows

    Hello, I have an Macbook Pro Retina 15" mid 2012 and want to use windows as second OS. After i used my Apple Headset under OS X for Skype i would like to use it even under Windows. But the mic doesn't works, after some research i found out that the d