Reports questions plz help me

1)How to create a button in selection screen?can u explain with simple example?
2)How to add a gui status in a selection screen?can u explain with simple example?
3)can you call a bdc program from a report? how? can u explain with simple example?
4)can you call a transactionfrom a report? how? can u explain with simple example?
5)how to create a check box option in a list? can u explain with simple example?

HI
<b>1)How to create a button in selection screen?can u explain with simple example?</b>
eg:
SELECTION-SCREEN PUSHBUTTON /15(20) button1 USER-COMMAND EXEC1.
SELECTION-SCREEN PUSHBUTTON /15(20) button2 USER-COMMAND EXEC2.
You can initialize the texts for the push-buttons at INITIALIZATION.
  CONCATENATE icon_green_light
              'Button 1'(029) INTO button1.
You can select the icon if needed,
AT SELECTION SCREEN.
  CASE sscrfields.
    WHEN 'EXEC1'.
       perform subroutine1.
    WHEN 'EXCE2'.
       perform subroutine2.
  ENDCASE.
<b>2)How to add a gui status in a selection screen?can u explain with simple
example</b>
The GUI status of a selection screen is generated by the system. The SET PF-STATUS statement in the PBO event of the selection screen has no effect on the standard GUI status. If you want to use your own GUI status for a selection screen or deactivate functions in the standard GUI status, you can use one of the following function modules in the PBO event of the selection screen:
RS_SET_SELSCREEN_STATUS
Sets another GUI status defined in the same ABAP program, or deactivates functions of the standard GUI status.
RS_EXTERNAL_SELSCREEN_STATUS
Sets a GUI status defined in an external function group. You must use the SET PF-STATUS statement to set the status in a special function module in this function group. You must pass the name of the function module that sets the status as a parameter to the function module RS_EXTERNAL_SELSCREEN_STATUS.
check the links
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba66935c111d1829f0000e829fbfe/content.htm
Re: how to add my  own pf status to selcetion screen.
http://help.sap.com/saphelp_46c/helpdata/en/e7/0eb237e29bc368e10000009b38f8cf/content.htm
<b>3)can you call a bdc program from a report? how? can u explain with simple example?</b>
If the BDC program is ZBDC01.
then you can call it Using:
SUBMIT ZBDC01
AND RETURN.
BDC program it self we wrote in report editor
<b>4)can you call a transactionfrom a report? how? can u explain with simple example?</b>
by creating a transaction code for that report by going into
GOto SE93 and create by giving the Program name and the Screen number which will be shown at the start of the transaction. For a REPORT it will be 1000.
Alternatively in SE80 if you open you program and right click on the program name you get a menu option Create->Transaction.
specify screen no and program name
<b>5)how to create a check box option in a list? can u explain with simple example?</b>
/community [original link is broken]
<b>Reward if usefull</b>

Similar Messages

  • Report problem plz help

    hi to all
    Using form6i and run in client server. i cant solve this problem please help to all master :
    I have a text item in forms and button. When i type the Customer_Name in text item then all names appears in reports, i want that when i type the name, only that name will appear .
    Please check what is wrong with my code and steps.
    In report wizard, query statement i put "Select * from S_customer"
    then i call the report in forms..
    Report Property pallette:
    Other Parameters=Customer_Name
    Query names=Select * from s_Customer where Customer_Name=:rep(the text item)
    then in forms the button trigger is when button pressed.below is the code:
    declare
    v_Rep varchar2(100);
    repid report_object;
    Begin
    repid := find_report_object('report');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,’s_customer=’||:Dept.rep);
    v_rep := run_report_object(repid);
    end;
    advance tnx to all

    Hi,
    You need to bulid a parameter list.
    This is a code sample to run a report from Forms:
    (Place it on a button when-button-pressed trigger, to run the report).
    DECLARE
         repid REPORT_OBJECT;
         v_rep VARCHAR2(100);
         rep_status VARCHAR2(20);
    -- this is the parameter list
         pl_id ParamList;
    pl_name VARCHAR2(10) := 'tempdata';
    BEGIN
    -- try to find the parameter list
    pl_id := Get_Parameter_List(pl_name);
              IF Id_Null(pl_id) THEN
                   -- if parameter lsit does not exist
                   -- create it
              pl_id := Create_Parameter_List(pl_name);
              IF Id_Null(pl_id) THEN
              Message('Error creating parameter list '||pl_name);
              RAISE Form_Trigger_Failure;
              END IF;
              ELSE
              Message('Parameter list '||pl_name||' already exists!');
              -- destroy it to clear old parameters
              -- and create it again;
              destroy_parameter_list(pl_id);
              pl_id := Create_Parameter_List(pl_name);
              END IF;
    Add_Parameter(pl_id,'p_customer_name',TEXT_PARAMETER,:customer.cust_name);
    -- add as many parameters as needed
    -- finally run the report passing your parameter list
         repid := FIND_REPORT_OBJECT('report4');
         v_rep := RUN_REPORT_OBJECT(repid, pl_id);
                   Exception
                        when others then
                        Message('Error running report. '||sqlerrm, acknowledge);
    END;
    Also, you need to create the parameter in your report:
    1.- Open your report on reports builder.
    2.- Find the "Data Model" node, and the "User parameters" node.
    3.- Create a parameter: p_customer_name
    4.- Modify your sql from:
    Select * from S_customer
    TO:
    Select * from S_customer
    where Customer_Name=:p_customer_name;
    If you want this parameter to be optional, check the reports online help on "Lexical References".
    Have fun,
    Hugo

  • Need Some help in Developing an ALV report ..Plz help me

    Hi Experts I am basic learner to ABAP Here I need some help in developing a Delivery *** Invoice Report....Please help me by spending a little time..
    Tables are VBAK VBAP LIPS LIKP   and Document floe table is VBFA
      SELECT VBELN VKORG VTWEG SPART
        FROM VBAK
        INTO TABLE I_VBAK
        WHERE VBELN IN S_VBELN.
      IF I_VBAK IS NOT INITIAL .
        SELECT VBELN POSNR MATKL POSAR WERKS
          FROM VBAP
          INTO TABLE I_VBAP
          FOR ALL ENTRIES IN I_VBAK
          WHERE VBELN = I_VBAK-VBELN.
      ENDIF.
      IF I_VBAP IS NOT INITIAL.
        SELECT * FROM LIPS
          INTO CORRESPONDING FIELDS OF TABLE I_LIPS
          WHERE VGBEL = VBAP-VBELN
          AND VGPOS = VBAP-POSNR.
      ENDIF.
      IF I_LIPS IS NOT INITIAL.
        SELECT VBELN VSTEL VKORG KUNNR
        FROM LIKP
        INTO TABLE I_LIKP.
      ENDIF.
    Moderator message : Outsourcing is not allowed, don't expect others to correct your source code. Thread locked.
    Edited by: Vinod Kumar on Aug 1, 2011 5:43 PM

    hi ,
      Look in this link
      <a href="http://help.sap.com/saphelp_nw04/helpdata/en/b3/0ef3e8396111d5b2e80050da4c74dc/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/b3/0ef3e8396111d5b2e80050da4c74dc/frameset.htm</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/21/894eeee0b911d4b2d90050da4c74dc/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/21/894eeee0b911d4b2d90050da4c74dc/content.htm</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/80/1a62bfe07211d2acb80000e829fbfe/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/80/1a62bfe07211d2acb80000e829fbfe/content.htm</a>
    Regards
    Renjith Kumar

  • Question: plz help in this

    hi,
    in XI how we will maintain for a perticular file for example at a particular time.like the poll interval if maintained at 30sec the porocessor will check the record for every 30sec but if we want to schedule at 12:00 every day to check for the record then how can we do that.
    if there is any code that need to be written plz provide code or if any steps involved plz explain in detail
    byeee

    Hi Anshul
    Simple. Set the polling interval value as Example ((  86400 (12460*60) )) and activate the channel at 6 PM.
    Another option : Use availablity timings and set the timing for the sender communication channel from 6 PM to 6:30 PM every day and in the cc give the polling interval value larger than 1800 (may be 2000).
    just check this blog.. it talks about the same
    /people/shabarish.vijayakumar/blog/2006/11/26/adapter-scheduling--hail-sp-19-
    In your query you can use datepart() function to check the time is 6p.m or not
    i.e in your Query add this where clause....
    where datepart(hh,getdate()) = '18'
    Refer :http://help.sap.com/saphelp_nw70/helpdata/en/e3/94007075cae04f930cc4c034e411e1/content.htm
    <b>Check tHis thread discuss sthe same</b>
    Assigning an exact time to poll data using JDBC Sender?
    Regards
    Abhishek

  • Macbook is suddenly slow (detailed report included) plz help!

    i dont download a whole lot of things on it except for music.. over the past few days its been slow. The colorwheel pops up almos all the time now. I would appriciate any help. Thanks
    Hardware Information:
              MacBook Pro (13-inch, Early 2011)
              MacBook Pro - model: MacBookPro8,1
              1 2.3 GHz Intel Core i5 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 384 MB
    System Software:
              Mac OS X 10.7.5 (11G63b) - Uptime: 0 days 6:7:43
    Disk Information:
              Hitachi HTS545032B9A302 disk0 : (320.07 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 319.21 GB (227.24 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-8A8 
    USB Information:
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
              Apple, Inc. MacBook Pro
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.oracle.java.Helper-Tool.plist 3rd-Party support link
    Launch Agents:
              [System] com.oracle.java.Java-Updater.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
    User Login Items:
              iTunesHelper
    Internet Plug-ins:
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 3rd-Party support link
              FlashPlayer-10.6: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 12.0.0.77 - SDK 10.6 3rd-Party support link
              QuickTime Plugin: Version: 7.7.1
              JavaAppletPlugin: Version: Java 7 Update 25 Outdated! Update
    Audio Plug-ins:
              iSightAudio: Version: 7.7.1 - SDK 10.7
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.3 - SDK 10.7
    User iTunes Plug-ins:
              AudioScrobbler: Version: 6.0.5 - SDK 10.8 3rd-Party support link
    3rd Party Preference Panes:
              Flash Player  3rd-Party support link
              Java  3rd-Party support link
    Old Applications:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   3%          WindowServer
                   2%          EtreCheck
                   2%          Last.fm Scrobbler
                   2%          iTunes
                   1%          coreaudiod
    Top Processes by Memory:
              860 MB          Safari
              348 MB          WebProcess
              131 MB          iTunes
              61 MB          Last.fm Scrobbler
              57 MB          WindowServer
    Virtual Memory Information:
              836 MB          Free RAM
              1.66 GB          Active RAM
              713 MB          Inactive RAM
              851 MB          Wired RAM
              420 MB          Page-ins
              718 MB          Page-outs

    That's got to be the cleanest report I've seen, so I have nothing to offer from the report to help with your Beachball issue. Suggest you check a few of these ideas: Macintosh OS X Beachballs!
    However I do have a few update recommendations:
    Java is seriously out-of-date, so I hope you don't have it enabled in your browsers. To update to Java Update 51 open System Preferences and click on Java to open the Java Control Panel. Choose the Update tab and follow the instructions there or download from Java.com.
    Silverlight from Microsoft has some sort of security issue (probably Windows) and should be updated from Microsoft.
    You don't need "com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist" since MobileMe was discontinued. To find it hold the option key down and select "Library" from the Finder's Go menu. Now look in the LaunchAgents directory (folder), find that file and drag it to the trash. This should not be causing you any issues whatsoever, you just don't need it any more.
    Your hard drive will fail sooner or later (average life about 3 years) and probably quickly, so you need to have a current backup. If you don't like Time Machine for some reason, then make certain you have an alternative backup system in place.
    Lex usually comes on a bit later, so he may have some other ideas for you.

  • I buy iTunes card and I can't download cuz I forget the answer of the questions :( plz help-! How can I send the card from the acc to my new one .

    I wrote everything up ^

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    Putting the card's balance back onto it and then to the new one also requires contacting Apple.
    (97325)

  • Reports Problem Plz help

    hi to all out there..
    I'm newbie in oracle.. i'm using oracle form6i and report6i run in client server.
    the problem is when i try to call only the name that type in the text_item it wont appear but all names appears .
    here is my code.. in datablock i have text_item name=rep and button where i put below the code:
    declare
    v_Rep varchar2(100);
    repid report_object;
    Begin
    repid := find_report_object('dept');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,’name=’||:log.rep);
    v_rep := run_report_object(repid);
    end;
    in report property pallete:
    i put in other reports parameter= name
    query name= select * from s_customer where name=:rep

    Try this:
    declare
    v_Rep varchar2(100);
    repid report_object;
    pl_id Paramlist;
    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,'rep',TEXT_PARAMETER,:log.rep);
      repid := find_report_object('dept');
      v_rep := run_report_object(repid,pl_id);
    end;I assume that ":log.rep" is the text_item on your form containing the name.

  • Really simple question PLZ help

    A very very simple method.
    User types input 3 times.
    First two times enters integer numbers. The third input has to be +, -, * or /.
    The method uses the third input as an operator to perform the addition if it is +, subtraction if - etc.
    How do i turn the user input into an operator?
    The method's parameters are three.
    public int performAction(int num1, int num2, ???operator???)
    It returns an int which is the result of : num1 operator num2
    Thank you.
    papei
    Edited by: papei on Oct 27, 2007 6:09 AM
    Edited by: papei on Oct 27, 2007 6:43 AM

    papei wrote:
    A very very simple method.
    User types input 3 times.
    First two times enters integer numbers. The third input has to be +, -, * or /.
    The method uses the third input as an operator to perform the addition if it is +, subtraction if - etc.
    How do i turn the user input into an operator?
    The method's parameters are three.
    public int performAction(int num1, int num2, ???operator???)
    It returns an int which is the result of : num1 operator num2
    Thank you.
    papei
    Edited by: papei on Oct 27, 2007 6:09 AM
    Edited by: papei on Oct 27, 2007 6:43 AMSo you want to make a calculator?
    .. and what have you done so far..?

  • Ipod replacement question (plz help)

    hello, I was just curious, do you think apple has any 4g not color (I know its wrong)+ hp ipods left?
    I just sent mine in (sad ipod face) and they are sending me a new ipod. will a get a color screen4g, or a 5g?
    thanks.

    While I don't know the exact story on current HP iPod inventory, I do know that when I recently sent in my 4G 20GB for replacement, I was sent the same model back. So, apparently, they still have a few of the regular (read, non-HP), non-color 4G iPods left for replacement purposes. But that may no longer be the case in 6 months.
    So it's a good thing we have Apple Care on that unit in case it breaks down again in the next year. We might be able to get a 20GB Photo as a replacement!

  • I forget the answers to my security questions. What do I do plz help

    I really need help. I forget the answers to my security questions plz help me I can't purchase anything :( what do I do

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, and filling out and submitting this form.
    (96735)

  • I forgot my security questions how do I change it plz help

    I forgot my security questions plz help me change it I have like 30$ in there

    The Three Best Alternatives for Security Questions and Rescue Mail
        1. Use Apple's Express Lane.
              Go to https://expresslane.apple.com ; click 'See all products and services' at the
              bottom of the page. In the next page click 'More Products and Services, then
              'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
              ID security questions' and click 'Continue'. Please be patient waiting for the return
              phone call. It will come in time depending on how heavily the servers are being hit.
         2.  Call Apple Support in your country: Customer Service: Contact Apple support.
         3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • Plz help abt j2ee

    when i install j2eesdk in my system it was installed two servers.
    1)J2EE default server
    2)cloud scape server
    i know that cloud scape server is database server so can i use this instead of sqlserver?
    what is j2ee default server? is it a web server like tomcat. if yes can i use it instead of tomcat?

    Is this a learn J2EE in 24 days book you have a hold of or what?
    Yesterday
    extract source from war
    How to execute rmi
    How to build a web browser in Java
    2 days ago
    jdbc doubt
    is it possible? (some vague question about HTML forms involving JavaScript)
    how to handle (a basic servlet question)
    plz help me (another JavaScript question)
    w to include total path of html file to open in javascript?
    3 days ago
    how is it counting no of visits? (servlet question)
    4 days ago
    plz help me (ask for defintions of a whole pile of J2EE related materials)
    So all I can ask is... is your interview coming up soon? Wiil this inane flood of questions becoming to end sooner rather than later?

  • Reports Paramters Error, Plz Help me!

    Have anybody tried a reports in Web with parameters containing the ' '(space), '&'(and),'?' and other URL special character?
    When I passed a paramter with these character from my form, the reports server returned a REP-56033 error, and said that it cannot get job with ID -2.
    My reports are rdf/rep files.
    My system is 9ias R2. My reports service's version is 9.0.2.0.1
    Please help me. This question is urgent.

    When I use showjobs, I cannot get this job. But if I delete the special char, I can get the job and say it has error.
    I guess the report doesn't run with the special char!!!!
    I can run other report which without the special char parameter.
    For example
    add_parameter(pl_id,Text_Parameter,'where deptno=59 and staffno=34');
    If my parameter list contain this value, the report cannot run!!!
    If I change to
    add_parameter(pl_id,Text_Parameter,'wheredeptno=59andstaffno=34');
    The report can run, but return error.
    Plz help me!!

  • PlZ help me these question

    Hi all,
    i attended a interview, these are the qes..plz help me with ans..
    1. is it possible without using function modules in
    bdc(open, insert,close) data transferring? how ...
    2. which one is better session/call transection? why?
    3. in LSMW what r the methods u r using?
    4. in LSMW otherthan recording any method is there? what are they?
    5. in LSMW where are u doing field validation? in which step, can u explain?
    6. is it possible to run smartform without using
    " ssf_function_module_name", how ?
    7. how will display secondary list in ALV.
    8. how will u call back to secondary lists to base list?
    9. how u r printing secondary list in interactive reports?
    10. what are the events used in u r ALV reports?
    11. how will u access data in secondary list?
    12. what is diff b/w bapi created fm and standered bapi fm?
    13. in ALE in which programm worked either standalone or any other?
    here what is standalone?i know change pointer..

    Hi
    10. what are the events used in u r ALV reports?
    Events in alv and their FM    The main events in alv and their FM and why we use these: 
    1. SLIS_PRINT_ALV. 
    2. SLIS_T_LISTHEADER. 
    3. SLIS_T_EVENT. 
    4. SLIS_T_SORTINFO_ALV. 
    5. SLIS_T_LAYOUT_ALV. 
    6. SLIS_T_FIELDCAT_ALV. 
    and in classic reports what is the sequence of events:   === Events are 
    At selection-screen output. 
    Initialization. 
    At selection-screen on field 
    At selection-screen on end of field 
    At selection-screen on Radiobutton Group R1. (If you have any radio buttons) 
    At selection-screen on block b1. (If you have any blocks) 
    Start-of-selection. 
    Get node. (if the data is retreived from a logical database) 
    Get node late. (if the data is retreived from a logical database) 
    Top-of-page. (if the write statement is in the end-of-selection event or we can say that before the first write statement) 
    end-of-selection. 
    and fuction modules are 
    LISTHEADER - Is used to print the header information in the ALV List. Name, Date, Time, ALV Name and other details are called as Header information.   EVENT - Basically this is the FM to handle Event's. When the user needs to do some event operation like when double clicking the a particular field we need to perform some operation.   These events are captured by this FM.   LAYOUT - This FM is used to define the layout of the List. There are many options available in this FM to define the Layout style.   FIELDCAT - These are used to populate the List header. We can change them according to our req. 
    User-defined Text Output Event
        Application
          print_end_of_list
        Define output text to be printed at the end of the entire list
          print_top_of_list
        Define output text to be printed at the beginning of the entire list
          print_end_of_page
        Define output text to be printed at the end of each page
          print_top_of_page
        Define output text to be printed at the beginning of each page
          subtotal_text
        Define self-defined subtotals texts
    Mouse-controlled Actions in the Grid Control Event
        Application
          button_click
        Query a click on a pushbutton in the ALV Grid Control
          double_click
        Query a double-click on a cell of the ALV Grid control 
          hotspot_click
        Query a hotspot click on columns defined for this purpose in advance
          onDrag
        Collect information when elements of the ALV Grid Control are dragged 
          onDrop
        Process information when elements of the ALV Grid Control are dropped 
          onDropComplete
        Perform final actions after successful Drag&Drop 
          onDropGetFlavor
        Distinguish between options for Drag&Drop behavior
    Processing of Self-defined and Standard Functions Event
        Application
          before_user_command
        Query self-defined and standard function codes
          user_command
        Query self-defined function codes
          after_user_command
        Query self-defined and standard function codes
    Definition of Self-defined Functions Event
        Application
          toolbar
        Change, delete or add GUI elements in the toolbar
          menu_button
        Define menus for menu buttons in the toolbar
          context_menu_request
        Change context menu
          onf1
        Define self-defined F1 help
    All of these can be found under type group SLIS.
    Events
    SLIS_EV_ITEM_DATA_EXPAND        TYPE SLIS_FORMNAME VALUE 'ITEM_DATA_EXPAND',
    SLIS_EV_REPREP_SEL_MODIFY       TYPE SLIS_FORMNAME VALUE 'REPREP_SEL_MODIFY', SLIS_EV_CALLER_EXIT_AT_START TYPE SLIS_FORMNAME VALUE 'CALLER_EXIT',
    SLIS_EV_USER_COMMAND              TYPE SLIS_FORMNAME VALUE 'USER_COMMAND',
    SLIS_EV_TOP_OF_PAGE                     TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE',
    SLIS_EV_DATA_CHANGED                TYPE SLIS_FORMNAME VALUE 'DATA_CHANGED',
    SLIS_EV_TOP_OF_COVERPAGE       TYPE SLIS_FORMNAME VALUE 'TOP_OF_COVERPAGE',
    SLIS_EV_END_OF_COVERPAGE       TYPE SLIS_FORMNAME VALUE 'END_OF_COVERPAGE',
    SLIS_EV_FOREIGN_TOP_OF_PAGE TYPE SLIS_FORMNAME
    VALUE 'FOREIGN_TOP_OF_PAGE', SLIS_EV_FOREIGN_END_OF_PAGE TYPE SLIS_FORMNAME
    VALUE 'FOREIGN_END_OF_PAGE',
    SLIS_EV_PF_STATUS_SET                  TYPE SLIS_FORMNAME VALUE 'PF_STATUS_SET',
    SLIS_EV_LIST_MODIFY                      TYPE SLIS_FORMNAME VALUE 'LIST_MODIFY',
    SLIS_EV_TOP_OF_LIST                       TYPE SLIS_FORMNAME VALUE 'TOP_OF_LIST',
    SLIS_EV_END_OF_PAGE                    TYPE SLIS_FORMNAME VALUE 'END_OF_PAGE',
    SLIS_EV_END_OF_LIST                      TYPE SLIS_FORMNAME VALUE 'END_OF_LIST',
    SLIS_EV_AFTER_LINE_OUTPUT       TYPE SLIS_FORMNAME VALUE 'AFTER_LINE_OUTPUT', SLIS_EV_BEFORE_LINE_OUTPUT     TYPE SLIS_FORMNAME VALUE 'BEFORE_LINE_OUTPUT',
    SLIS_EV_SUBTOTAL_TEXT                TYPE SLIS_FORMNAME VALUE 'SUBTOTAL_TEXT'

  • Reports are not called from form in browser plz help

    Hi,
    I have installed 9iAS+8.1.7 database on the same machine with NT4 server.My system's forms(.fmx) are running well but my reports are not running from my main form.i call reports from the
    from as,
    Run_Product(reports,'..\iReports\xglrxx12.rep',synchronous,RUNTIME,FILESYSTEM,pl_id,null);
    Actually want to know the report's setting when calling from the from in a browser(environment variables,virtual paths etc.).
    My database is installed in drive E:\8idb_home\ and 9iAS is on
    G:\9iAS_home\.My systems .fmx & .rep files are in "iforms" and "ireports" folder respectively.
    Plz help!
    Many thanks!

    Hi,
    First of all thanks to Vincent Botteman for solving the prob.
    Yes when i changed my call of run_product by excluding the path i have specified when calling from form it then makes a result.
    Also specified the entry of your reports .rep files by giving path in reports60_path registery variable as,
    Run regedit-->Hkey_Local_Machine-->Software-->Oracle here give the full path of your .rep files as an first entry in reports60_path variable.And finally not mention the path when calling reports from form as,
    Run_Product(reports,'xglrxx13.rep',synchronous,RUNTIME,FILESYSTEM,pl_id,null);<--- Correct way.
    Run_Product(reports,'..\iReports\xglrxx13.rep',synchronous,RUNTIME,FILESYSTEM,pl_id,null);<--- Wrong way.
    Regards!

Maybe you are looking for