I want to get avl report, removed by moderator

Design selection screen as follows.
Input:
Company Code _____________
Bank Name _____________
Branch  _____________
Date from ___________ to ______________
Vendors _____________to _______________            
Output:
ALV Heading -
Company code with address
                  Bank name
                  Branch
ALV BODY-----
     Checkbox ,   Vendor Type  , Vendor number , Vendor Name & address , Tax Type (AIT or VAT) , Amount
Edited by: Jan Stallkamp on Jul 21, 2008 4:42 PM

report zex.
type-pools: slis.
types: begin of tp_data,
bukrs like t001-bukrs,
hbkid like t012-hbkid,
       end of tp_data,
       tp_tbl_data type standard table of tp_data.
Constants
Data objects (variable declarations and definitions)
Report data to be shown.
data: it_data type standard table of tp_data.
Heading of the report.
data: t_heading type slis_t_listheader.
======================= Selection Screen ==========================
selection-screen: begin of block b1 with frame title text-t01.
DATA: w_aux_bukrs like t001-bukrs.
SELECT-OPTIONS s_bukrs for w_aux_bukrs .
DATA: w_aux_hbkid like t012-hbkid.
SELECT-OPTIONS s_hbkid for w_aux_hbkid .
selection-screen: end of block b1.
======================== Event Blocks =============================
at selection-screen.
start-of-selection.
  perform get_data using it_data.
end-of-selection.
  perform build_alv using it_data t_heading.
======================== Subroutines ==============================
*&      Form  get_data
      Gets the information to be shown in the report.
form get_data using t_data type tp_tbl_data.
*SELECT t001~bukrs
*lfa1~hbkid
*INTO CORRESPONDING FIELDS OF TABLE t_data
*FROM t001 as t001
*inner join t012 as lfa1 on bkpf
*WHERE t001~bukrs in s_bukrs
AND lfa1~hbkid in s_hbkid.
endform.                    " get_data
*&      Form  build_alv
      Builds and display the ALV Grid.
form build_alv using t_data type tp_tbl_data
                     t_heading  type slis_t_listheader.
ALV required data objects.
data: w_title   type lvc_title,
      w_repid   type syrepid,
      w_comm    type slis_formname,
      w_status  type slis_formname,
      x_layout  type slis_layout_alv,
      t_event    type slis_t_event,
      t_fieldcat type slis_t_fieldcat_alv,
      t_sort     type slis_t_sortinfo_alv.
refresh t_fieldcat.
refresh t_event.
refresh t_sort.
clear x_layout.
clear w_title.
Field Catalog
  perform set_fieldcat2 using:
1 'BUKRS' 'BUKRS' 'T001' space space  space  space  space  space space space space 'X' space space t_fieldcat ,
2 'HBKID' 'HBKID' 'T012' space space  space  space  space  space space space space 'X' space space t_fieldcat .
Layout
x_layout-zebra = 'X'.
Top of page heading
  perform set_top_page_heading using t_heading t_event.
Events
  perform set_events using t_event.
GUI Status
  w_status = ''.
  w_repid = sy-repid.
Title
w_title = <<If you want to set a title for
            the ALV, please, uncomment and edit this line>>.
User commands
  w_comm   = 'USER_COMMAND'.
Order
Example
PERFORM set_order USING '<field>' 'IT_DATA' 'X' space space t_sort.
Displays the ALV grid
  call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      i_callback_program       = w_repid
      it_fieldcat              = t_fieldcat
      is_layout                = x_layout
      it_sort                  = t_sort
      i_callback_pf_status_set = w_status
      i_callback_user_command  = w_comm
      i_save                   = 'X'
      it_events                = t_event
      i_grid_title             = w_title
    tables
      t_outtab                 = t_data
    exceptions
      program_error            = 1
      others                   = 2.
  if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
endform.                    " build_alv.
*&      Form  set_top_page_heading
      Creates the report headings.
form set_top_page_heading using t_heading type slis_t_listheader
                                t_events  type slis_t_event.
data: x_heading type slis_listheader,
      x_event   type line of slis_t_event.
Report title
  clear t_heading[].
  clear x_heading.
  x_heading-typ = 'H'.
  x_heading-info = ''(001).
  append x_heading to t_heading.
Program name
  clear x_heading.
  x_heading-typ = 'S'.
  x_heading-key = 'Program: '.
  x_heading-info = sy-repid.
  append x_heading to t_heading.
User who is running the report
  clear x_heading.
  x_heading-typ = 'S'.
  x_heading-key = 'User: '.
  x_heading-info = sy-uname.
  append x_heading to t_heading.
Date of execution
  clear x_heading.
  x_heading-typ = 'S'.
  x_heading-key = 'Date: '.
  write sy-datum to x_heading-info.
  append x_heading to t_heading.
Time of execution
  clear x_heading.
  x_heading-typ = 'S'.
  x_heading-key = 'Time: '.
  write sy-uzeit to x_heading-info.
  append x_heading to t_heading.
Top of page event
  x_event-name = slis_ev_top_of_page.
  x_event-form = 'TOP_OF_PAGE'.
  append x_event to t_events.
endform.
*&      Form  set_events
      Sets the events for ALV.
      The TOP_OF_PAGE event is alredy being registered in
      the set_top_page_heading subroutine.
form set_events using t_events type slis_t_event.
data: x_event   type line of slis_t_event.
Example
clear x_event.
x_event-name = .
x_event-form = .
append x_event to t_event.
endform.
*&      Form  set_order
      Adds an entry to the order table.
FORM set_order USING p_fieldname p_tabname p_up p_down p_subtot
                     t_sort TYPE slis_t_sortinfo_alv.
  DATA: x_sort TYPE slis_sortinfo_alv.
  CLEAR x_sort.
  x_sort-fieldname = p_fieldname.
  x_sort-tabname   = p_tabname.
  x_sort-up = p_up.
  x_sort-down = p_down.
  x_sort-subtot = p_subtot.
  APPEND x_sort TO t_sort.
ENDFORM.                    "set_order
*&      Form  set_fieldcat2
      Adds an entry to the field catalog.
   p_colpos: Column position.
   p_fieldname: Field of internal table which is being described by
*            this record of the field catalog.
   p_ref_fieldname: (Optional) Table field / data element which
*                describes the properties of the field.
*                If this field is not given, it is copied from
*                the fieldname.
   p_ref_tabname: (Optional) Table which holds the field referenced
*              by <<p_ref_fieldname>>.
                  If this is not given, the parameter
                  <<p_ref_fieldname>> references a data element.
   p_outputlen: (Optional) Column width.
   p_noout: (Optional) If set to 'X', states that the field is not
*           showed initially. If so, the field has to be
            included in the report at runtime using the display
            options.
   p_seltext_m: (Optional) Medium label to be used as column header.
   p_seltext_l: (Optional) Long label to be used as column header.
   p_seltext_s: (Optional) Small label to be used as column header.
   p_reptext_ddic: (Optional) Extra small (heading) label to be
*                used as column header.
   p_ddictxt: (Optional) Set to 'L', 'M', 'S' or 'R' to select
              whether to use SELTEXT_L, SELTEXT_M, SELTEXT_S,
              or REPTEXT_DDIC as text for column header.
   p_hotspot: (Optional) If set to 'X', this field will be used
*             as a hotspot area for cursor, alolowing the user
*          to click on the field.
   p_showasicon: (Optional) If set to 'X', this field will be shown
                 as an icon and the contents of the field will set
*             which icon to show.
   p_checkbox: (Optional) If set to 'X', this field will be shown
               as a checkbox.
   p_edit: (Optional) If set to 'X', this field will be editable.
   p_dosum: (Optional) If set to 'X', this field will be summed
            (aggregation function) according to the grouping set
            by the order functions.
   t_fieldcat: Table which contains the whole fieldcat.
FORM set_fieldcat2 USING
      p_colpos p_fieldname p_ref_fieldname p_ref_tabname
      p_outputlen p_noout
      p_seltext_m p_seltext_l p_seltext_s p_reptext_ddic p_ddictxt
      p_hotspot p_showasicon p_checkbox p_edit
      p_dosum
      t_fieldcat TYPE slis_t_fieldcat_alv.
  DATA: wa_fieldcat TYPE slis_fieldcat_alv.
  CLEAR wa_fieldcat.
General settings
  wa_fieldcat-fieldname = p_fieldname.
  wa_fieldcat-col_pos = p_colpos.
  wa_fieldcat-no_out = p_noout.
  wa_fieldcat-hotspot = p_hotspot.
  wa_fieldcat-checkbox = p_checkbox.
  wa_fieldcat-icon = p_showasicon.
  wa_fieldcat-do_sum = p_dosum.
Set reference fieldname, tablenam and rollname.
If p_ref_tabname is not given, the ref_fieldname given
   is a data element.
If p_ref_tabname is given, the ref_fieldname given is a
   field of a table.
In case ref_fieldname is not given,
   it is copied from the fieldname.
  IF p_ref_tabname IS INITIAL.
    wa_fieldcat-rollname =   p_ref_fieldname.
  ELSE.
    wa_fieldcat-ref_tabname = p_ref_tabname.
    IF p_ref_fieldname EQ space.
      wa_fieldcat-ref_fieldname =   wa_fieldcat-fieldname.
    ELSE.
      wa_fieldcat-ref_fieldname =   p_ref_fieldname.
    ENDIF.
  ENDIF.
Set output length.
  IF NOT p_outputlen IS INITIAL.
    wa_fieldcat-outputlen = p_outputlen.
  ENDIF.
Set text headers.
  IF NOT p_seltext_m IS INITIAL.
    wa_fieldcat-seltext_m = p_seltext_m.
  ENDIF.
  IF NOT p_seltext_l IS INITIAL.
    wa_fieldcat-seltext_l = p_seltext_l.
  ENDIF.
  IF NOT p_seltext_s IS INITIAL.
    wa_fieldcat-seltext_s = p_seltext_s.
  ENDIF.
  IF NOT p_reptext_ddic IS INITIAL.
    wa_fieldcat-reptext_ddic = p_reptext_ddic.
  ENDIF.
  IF NOT p_ddictxt IS INITIAL.
    wa_fieldcat-ddictxt = p_ddictxt.
  ENDIF.
Set as editable or not.
  IF NOT p_edit IS INITIAL.
    wa_fieldcat-input     = 'X'.
    wa_fieldcat-edit     = 'X'.
  ENDIF.
  APPEND wa_fieldcat TO t_fieldcat.
ENDFORM.                   "set_fieldcat2
======================== Subroutines called by ALV ================
*&      Form  top_of_page
      Called on top_of_page ALV event.
      Prints the heading.
form top_of_page.
  call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    i_logo             = <<If you want to set a logo, please,
                         uncomment and edit this line>>
      it_list_commentary = t_heading.
endform.                    " alv_top_of_page
*&      Form  user_command
      Called on user_command ALV event.
      Executes custom commands.
form user_command using r_ucomm     like sy-ucomm
                        rs_selfield type slis_selfield.
Example Code
Executes a command considering the sy-ucomm.
CASE r_ucomm.
   WHEN '&IC1'.
     Set your "double click action" response here.
     Example code: Create and display a status message.
     DATA: w_msg TYPE string,
           w_row(4) TYPE n.
     w_row = rs_selfield-tabindex.
     CONCATENATE 'You have clicked row' w_row
                 'field' rs_selfield-fieldname
                 'with value' rs_selfield-value
                 INTO w_msg SEPARATED BY space.
     MESSAGE w_msg TYPE 'S'.
ENDCASE.
End of example code.
endform.                    "user_command

Similar Messages

  • Getting a report in excel format from oracle report builder 10gDS release2

    I want to get a report in excel format from oracle report builder 10gDS release2.
    Is there ne method by which minimum effort is required for changing already made reports .
    I have searched for it on internet :-
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwwhthow%7Cwhatare%7Coutput%7Coutput_a_simpleexcel~htm/
    Example, given in the last of the page opened from the above url, is not working.
    Can neone plz explain the example and how to use it
    Thanks & Regards
    JD

    Ok, for the release 2 its quite straightfoward, in your calling form you would have something like this code:
    declare
         pl_id ParamList;
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    v_rep_status VARCHAR2(20);
    v_repsrv     VARCHAR2(100):= 'yourreportserver';
    v_serv varchar2(50) := 'yourservername' ;
    begin
    pl_id := Get_Parameter_List('tmpdata');
    if not id_null(pl_id) then
    Destroy_Parameter_List( pl_id );
    end if;
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id,'DESTYPE' ,TEXT_PARAMETER,'Screen' );
    Add_Parameter(pl_id,'PARAMFORM' ,TEXT_PARAMETER,'NO' );
    repid := FIND_REPORT_OBJECT('yourreport');     SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER, v_repsrv);
    set_report_object_property(repid,REPORT_DESTYPE,CACHE );
    set_report_object_property(repid,REPORT_DESFORMAT,'SPREADSHEET' );
    v_rep := RUN_REPORT_OBJECT(repid,pl_id);
    v_rep := substr(v_rep,length(v_repsrv)+2,10 ) ;
    end;
    I have plenty of reports being formated to excel with this same method so it should work for you, the only diference with my previous code is this line.
    set_report_object_property(repid,REPORT_DESFORMAT,'SPREADSHEET' );
    The rest remains untouched.
    Hope it helps.

  • How to get AWR report in text format

    Hi all,
    Here we are getting AWR report in html format through OEM.I want to get AWR report in .txt format
    Please help me
    Thanks in advance

    Hi
    You can use the following scripts:
    - ORACLE_HOME/rdbms/admin/awrrpt.sql
    - ORACLE_HOME/rdbms/admin/awrrpti.sql
    HTH
    Chris

  • I will give my Iphone 5 to my brother in Vietnam.  How do I remove all of my information so later he doesn't download any itune app and I don't want to get charged in my credit card?  Thank you.

    I will give my Iphone 5 to my brother in Vietnam.  How do I remove all of my information so later I don't get charged in my credit card?  He can download the app and pay his own money.  I don't want to get charged in my credit card in my Apple account.  Thank you.

    To wipe phone
    Turn off imessage in settings/messages
    Turn off Facetime in settings/Facetime
    Delete icloud account in settings/ilcoud
    Erase all data and settings in settings/general/reset
    Delete the phone from your profile in  https://supportprofile.apple.com

  • I DO NOT want to send anonymous reports to Mozilla about my computer usage and so on. How do I get rid of the question that comes up every time I open Fiorfox up?

    I DO NOT want to send anonymous reports to Mozilla about my computer usage and so on. How do I get rid of the question that comes up every time I open Fiorfox up?

    See:
    * https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel
    * go to Firefox/Tools-Option-Advance and uncheck submit performance data

  • How do I get iTunes to remove a charge for something I did not want to auto renew?

    How do I get iTunes to remove a charge from my chacking account for an auto renew item that I do not want?

    No promises, as this was your fault:
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html
    iTunes Store: Purchasing and managing auto-renewing subscriptions
      http://support.apple.com/kb/ht4098

  • I have an app on my phone that has a glitch.i want to get rid of the app so that i can re install it,but when i re istall,it comes from the cloud and still has the glitch. how do i remove an app from my cloud

    I have an app that i want to get out of my cloud,can i do this ????? It has a glitch and wont work and when i come to re install, it comes from my cloud along with the glitch. Can anyone help ?

    When you tap the iCloud download symbol it's downloading a fresh copy of the app from the App Store, not from your iCloud account.  (Your previous purchases aren't stored in your iCloud account, they are stored in the App store and can be redownloaded from there.)
    If the app still has a glitch, try contacting the app developer.  Perhaps there's a problem with the app running with iOS 7.1.

  • Want to display BEX report output more than 65000 rows

    Hi all,
    I want to run a report in BW which has more than 65000 lines. Currently it tells me there is no space. How can I solve the issue please?
    user is using BW 3.5 excel 2007
    GUI version is 7100.2.9.1039
    patch level 9
    please advise.
    thanks
    WHP123

    Hi,
    Can you try to remove some of the columns of your query.
    My doubt , is the no. rows is actually killing the report or the population of higher column also may cause the issue.
    try to make a copy of you report, and then remove the charecteristics, keep 1-2 and all KFs. Then run and check for the o/p.
    Is it getting over the 65k reows  ?
    Thank-You.
    Regards,
    Vinod

  • I water damaged my iPhone and want to get my photos back. My iPhone was ios7 but my icloud synced to my work ipad on ios8. Is it now impossible to view any data from ios7 on icloud drive? Any help to get my photos back please!

    I damaged my iphone 5s and want to get my photos back. It was submerged in water for a good five minutes (and is now in rice) but I'm pretty sure it's dead.
    I really would like to get my photos back. I wasn't plugging in my iphone and backing up, I just assumed it did it automatically because about a week ago I had a message saying automatic backups were stopping as my icloud was full.
    My work ipad is running on ios8 (as of a few days ago!) but my iphone was on ios7 as I didnt have enough space to install the update. This means that my icloud is now icloud drive and I cannot view the stuff from my ios7 device without upgrading it to ios8. Trouble is, I cant upgrade it because it's in a rice bowl.
    Any help would be greatly appreciated! Any idea if I will be able to access my photos on icloud at all? I'm not very hopeful for my phone working again and downloading things that way!
    Thanks!

    Photos that are in the cloud stay there until they are removed by a device that has the right privileges. If your iPad is logged in with the same AppleID, then doesn't it show the photos from iCloud?
    You will only be on iCloud Drive if you expressly chose to upgrade.

  • I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.

    I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.
    In particular, I am analyzing the example "Even Angle Reference Signal Processing (Digital Tacho, DAQmx).vi", whose documentation I am reproducing in the following:
    <B>DESCRIPTIONS</B>:
    This VI demonstrates how to extract even angle reference signals and remove the slow-roll errors. It uses DAQmx VIs to acquire sound or vibration signals and a digital tachometer signal. This VI includes a two-step process: acquire data at low rotational speed to extract even angle reference; use the even angle reference to remove the errors in the vibration signal acquired at normal operation.
    <B>INSTRUCTIONS</B>:
    1. Run the VI.
    2. On the <B>DAQ Configurations</B> tab, specify the <B>sample rate</B>, <B>samples per channel</B>, device and channel configurations, and tachometer channel information.
    <B>NOTE</B>: You need to use DSA PXI-447x/PXI-446x and PXI TIO device in a PXI chassis to run this example. The DSA device must be in slot 2 of the PXI chassis.
    3. Switch to <B>Extract Even Angle Reference</B> tab. Specify the <B>number of samples to acquire</B> and the <B># of revs in reference</B> which determines the number of samples in even angle reference. Click <B>Start</B> to take a one-shot data acquisition of the vibration and tachometer signals. After the acquisition, you can see the extracted even angle references in <B>Even Angle Reference</B>.
    4. Switch to the <B>Remove Slow-roll Errors</B> tab. Click <B>Start</B> to acquire data continuously and view the compensate results. Click <B>Stop</B> in this tab to stop the acquisition.
    <B>ORDER ANALYSIS VIs USED IN THIS EXAMPLE</B>:
    1. SVL Scale Voltage to EU.vi
    2. OAT Digital Tacho Process.vi
    3. OAT Get Even Angle Reference.vi
    4. OAT Convert to Even Angle Signal.vi
    5. OAT Compensate Even Angle Signal.vi
    My question is: How is the synchronization produced at the time of the compensation ? How is it possible to eliminate the errors in a synchronized fashion with respect to the surface of the shaft bearing in mind that I am acquired data at a low rotation speed in order to get the "even angle reference" and then I use it to remove the errors in the vibration signal acquired at normal operation. In this application both operations are made in different acquisitions, therefore the reference of the correction signal is lost. Is it simply compensated without synchronizing ?
    Our application is based on FPGA and we need to clarity those aspects before implementing the procedure.
    Solved!
    Go to Solution.

    Hi CracKatoA.
    Take a look at the link bellow:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=255126&requireLogin=False
    Regards,
    Filipe Silva

  • How to get the Report Names which use a Folder in Discoverer Administrator?

    Hello All,
    How could I get which Reports in discoverer Desktop are using a particular folder in Discoverer Administrator?
    Or
    How to know which Discoverer Desktop Reports are being derived from a folder in Discoverer Administrator?
    We have Oracle 9i DS installed and have a Custom Folder Created in the Administrator, and want to know exactly which Reports/Workbooks are using that folder?
    Thanks in advance :)

    Well Abhijit,
    The eul workbooks have been created by oracle specifically to analyze your eul and make your work easier!. So, I prefer this way to view the information about my eul in a report format in the desktop. Try it! you may like it.
    If you want you can follow these steps:
    Run the script called eul5.sql located in <discoverer_installation_path>\discoverer\util in the user who own the eul in the database.
    Then import the eul5.eex file located at <discoverer_installation_path>\discoverer\ in the discoverer administrator.
    Then login into desktop and open the reports in the database, you can see a report called[b] EUL Workbook Management. Open that and goto the sheet named Workbook Dependency - Folders & Items Lookup. I think it the last but one worksheet in that workbook.
    Hope it helps you!

  • How to get a Report for a past date.

    Hi
    Is there a way to get a report for a past date in SAP B1. For example I want to take a print out of Customer Receivables Aging Report for 30.06.2008 (Not the current Report.) without rolling back to that date from a backup.
    Thank you very much
    Sanjaya

    Hi Sanjaya,
    You can get the past dated or the backdated aging report by taking the relevant dates in the Aging report selection criteria window.
    For backdated aging report you can refer to Note No. 800294
    Example:
    Today is the 12.12.2007, I need to see the ageing report for open customer receivables on 30.11.2007. Between the 30.11.2007 and 12.12.2007 some of the then open invoices have been paid.
    Reports => Financials -> Ageing -> Customer Receivables Ageing
    Set 'Ageing Date' last date of the period, here 30.11.2007.
    Set 'Posting Date' from '01.01.2007' (= Start of fiscal year) to
    '30.11.2007'.
    Bring tab 'By Journal Postings' into the foreground.
    Tick boxes 'Display Customers with Zero Balance' and 'Consider
    Reconciliation Date'.
    Click on 'OK'.
    This setting will generate an ageing report showing all AR invoices posted between 01.01.07 to 30.11.07 that are not reconciled on 30.11.2007.
    You can refer to the following thread as well :
    Re: Vendor Ageing & G/L account
    Hope it helps.
    Kind Regards,
    Jitin Chawla

  • HT1473 If I already own a song (from a different album) and the same song is in an album which I want to get, do I still have to pay for the song?

    Other details:
    First album/s- Dookie (Green Day), american idiot (green day)
    and 21st century breakdown (green day)
    Album with same songs in it- international super hits (green day)

    If I already own a song (from a different album) and the same song is in an album which I want to get, do I still have to pay for the song?
    Yes.
    The album which the song has been listed under (on the song's page) is listed in your library under that album. The song is then removed automatically from the first album
    No it's not.
    Purchasing a new song or album will not affect any other song or album in your library.
    In the case of the two albums you mention, if you purchase them both, you will have the same song (different copies) in both albums.

  • Error in getting the report from web

    HI,
    HERE I AM TRYING TO CREATE A REPORT FROM FORMS WHICH I WANT TO WEBENABLED.
    I COULD GO TILL I CAN SEE MY FORM WHERE I GIVE AS THE PARAMETERS AS 'HS' OR 'SC' OR 'YS' THROUGH THE LIST OF VALUES OR THE USER CAN JUST ENTER IF THEY KNOW THE VALUE WHICH THEY ARE LOOKING FOR.
    HERE WHEN I CLICK ON THE BUTTON TO GET THE REPORT ITS GIVING AN ERROR CALLED FRM-41219 CANNOT FIND THE REPORT: INVALID ID.
    I DONT UNDERSTAND WHERE I AM DOING WRONG THE REPORT IS ON THE SERVER ALSO.
    HERE IS THE CODE IN WHEN-BUTTON-PRESSED TRIGGER TO GET THE REPORT.
    declare
    v_rep varchar2(100);
    repid report_object;
    v_param varchar2(1024);
    begin
    repid:=find_report_object('WAT');
    v_param:='paramform=no P_STATUS='||:NBT.STATUS||'';
    set_report_object_property(repid,report_other,v_param);
    set_report_object_property(repid,report_destype,file);
    set_report_object_property(repid,report_desname,'E:\ORANT\WEBTEMP\TEST'||:NBT.STATUS ||'.pdf');
    v_rep:=run_report_object(repid);
    web.show_document('http://PS/WEBTEMP/TEST'||:NBT.STATUS||'.pdf','_blank');
    end;
    HERE 'WAT' IS THE REPORT NAME AND P_STATUS IS THE PARAMETER I AM PASSING FROM THE REPORT,
    :NBT.STATUS IS THE PARAMETER WHERE I GIVE IN THE FORM SUCH AS 'CS' OR 'YS' ETC..
    I CAN SEE THE FORM BUT AFTER I GIVE THE PARAMETER AND CLICK ON THE BUTTON TO GET THE REPORT I AM GETTING THE ERROR.
    PLEASE DO HELP ME OUT.
    THANKS A LOT IN ADVANCE....

    Hello,
    In
    repid:=find_report_object('WAT');
    WAT should be the report object seen in the forms object navigator and not actully the report rdf name.
    This message FRM-41219 essentially means that the report cannot be found. Specifying the correct name of a report object found in the forms object navigator (not the
    actual name of the rdf file) usually resolves the problem.
    Please ensure to be on the latest patch of your version ( can get from oracle metalink site) of developer to consume any fixes in this area
    Thanks
    The Oracle Reports Team

  • My phone was stolen, but I had no data left and so can't locate it till the person who has it tries to use the internet. I backed up all my photos on iCloud, and want to get them on my PC. I installed iCloud onto the PC and still can't find my pictures?

    My phone was stolen, but I had no data left and so can't locate it till the person who has it tries to use the internet. I backed up all my photos on iCloud, and want to get them on my PC. I installed iCloud onto the PC and  followed the instructions and still can't find my pictures, says my photostream folder is empty, but it shows on iCloud that i've used most of my storage which is true, so they must be there somewhere?
    Any ideas? I'd really appreciate the help! Thanks

    Yes, I filed police report, but there is nothing they can do until I get back to them on the tracking. It's been offline. I'm sure the whoever took it can find a way around breaking in the ipad..i really was hoping to get my pictures and videos of my kids back

Maybe you are looking for

  • Printing image to size of my painting

    I am using cs5.  I am making a painting with a 6" head.  I would like to print a 6" head so I can get the proportions right. I tape the print to the painting and use it for measurements and reference. I don't know anything about pixels, except I want

  • SMS relay not working with non-iMessage users?

    One of the features I'm most looking forward to in Yosemite is the ability to text people without iPhones. I attempted to do this tonight, but the message failed to send and the person's name was in red. I got the standard "message failed" note, like

  • Auroraservice error when trying to start http Server (9iAS)

    Hi my problem is that when trying to start oracle http server I get the error message: syntax error on line 14 of mod__ose.conf AuroraService-directive already in effect for this sever what does it mean and what can I do? thanks in advance

  • 17" MacBook Pro will not startup after software update & shutdown

    Last night I powered off (shutdown) my MacBook Pro (usually I leave it sleeping). It kindly reminded me I had updates to install. I said OK install them. I didn't check to see what they were, but I believe it was just the camera raw update. I also to

  • The battery of my iphone 5

    Dear Sir, I bought my I phone 5 from the United states, knowing that it has support system worldwide and trusting that apple will never disappoint its customers. the phone has a problem with its battery as most of the I Phone 5 have. I checked the ap