Creating an executable from forms,reports,libraries,menus etc.

Dear All,
How do I create an executable from the complied forms,reports,menus,libraries which I have developed.
How do I incorporate the runtime for forms & reports within this executable.
Regards,
Murtuza M Rangwala
For ALIF Management Services Pvt Ltd.
(Customer Support)

To create an executable you will need to generate the form and report. CTRL +T does this. First compile and then control T and you'll be ready to go.                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Report(3.0) not executing from Forms 6.0.

    Hello
    I am trying to run a report (developed in Report designer 3.0) from a form (developed in Form Builder 6.0) as follows :
    -- message ('Before Report...');
    -- run_product (REPORTS, 'proj', SYNCHRONOUS, RUNTIME, FILESYSTEM, listid ) ;
    -- message ('After Report...');
    DECLARE
    repid report_object ;
    rep VARCHAR2(100);
    BEGIN
    message ('Before Report...');
    repid := find_report_object('PROJ');
    rep := RUN_REPORT_OBJECT(repid);
    message ('After Report...');
    END;
    I have tried both of these methods (Run_Product and Run_Report_Object) but nothing works. What is the difference between Run_Product and Run_Report_Object for report processing point-of-view ? It is displaying both messages but giving no error. The Properties of PROJ node in 'REPORTS' class are as follows :
    Name : PROJ
    File-Name : <full-path>/proj.rdf
    Execution Mode : RunTime
    Communication Mode : Synchronous
    Data Source Block : Null
    Query Block : Null
    Report Destination Type : Screen
    Destination Name : Null
    I am not able to see the results even by executing in form builder.
    Any help will be appreciated.
    Manish

    Hi Shay
    Thanks for your reply. I have compiled the report (repname.rdf) in Report Builder 6.0 and trying to execute it from a form, developed in Form Builder 6.0, as follows :
    PROCEDURE run_report IS
    list_id ParamList;
    run_date date;
    repid report_object ;
    repout varchar2(100) ;
    BEGIN
    run_date := sysdate;
    list_id := Create_Parameter_List('input_params');
    Add_Parameter(list_id, 'DESTYPE', TEXT_PARAMETER, 'FILE');
    Add_Parameter(list_id, 'DESNAME', TEXT_PARAMETER, '/home/mgupta/orep.ps');
    -- Run_Product(REPORTS, 'Full-Path/repname.rdf', synchronous, runtime, filesystem, list_id);
    repid := find_report_object('repname');
    repout := run_report_object(repid);
    Destroy_Parameter_List(list_id);
    END;
    I have tried both methods (Run_Product and Run_Report_Object) but nothing works. What is the difference between Run_Product and Run_Report_Object for report processing point-of-view? Note that I have given full path for Run_Product while report-name is given for Run_Report_Object. The full path is also given in the property palette report. It is displaying both messages but giving no error. The Properties of REPNAME node of 'REPORTS' class in Object Navigator of specified form are as follows :
    Name : REPNAME
    File-Name : <full-path>/repname.rdf
    Execution Mode : RunTime
    Communication Mode : Synchronous
    Data Source Block : Null
    Query Block : Null
    Report Destination Type : Screen
    Destination Name : Null
    This report is running fine if I execute it in Report Builder but not running thru form.
    Any help will be appreciated.
    Manish

  • How to create .csv file from ABAP report

    Hi
    We have a requirement to generate .csv file from abap report.
    Currently user saves data from abap report to spreadsheet(.xls format) in desktop.  Then opens excel file and save as .csv format.  Need option to save directly in .csv format instead of .xls format.
    Please let me know, if there is any standard function module available to create .csv file.
    Regards
    Uma

    I tried with your code it's going to dump
    REPORT ZTEMP101 message-id 00.
    tables: lfa1.
    types: begin of t_lfa1,
          lifnr like lfa1-lifnr,
          name1 like lfa1-name1,
          end of t_lfa1.
    data: i_lfa1 type standard table of t_lfa1,
          wa_lfa1 type t_lfa1.
    types truxs_t_text_data(4096) type c occurs 0.
    data: csv_converted_table type table of TRUXS_T_TEXT_DATA.
    select-options: s_lifnr for lfa1-lifnr.
    select lifnr name1 from lfa1 into table i_lfa1
           where lifnr in s_lifnr.
    CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'
    EXPORTING
       I_FIELD_SEPERATOR          = ';'
             I_LINE_HEADER              =
             I_FILENAME                 =
             I_APPL_KEEP                = ' '
      TABLES
        I_TAB_SAP_DATA             = I_LFA1
    CHANGING
       I_TAB_CONVERTED_DATA       = csv_converted_table
    EXCEPTIONS
       CONVERSION_FAILED          = 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.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
      BIN_FILESIZE                  = ' '
      CODEPAGE                      = ' '
       FILENAME                      =
       'C:\Documents and Settings\ps12\Desktop\Test folder\exl.cvs'
      FILETYPE                      = 'DAT'
      MODE                          = ' '
      WK1_N_FORMAT                  = ' '
      WK1_N_SIZE                    = ' '
      WK1_T_FORMAT                  = ' '
      WK1_T_SIZE                    = ' '
      COL_SELECT                    = ' '
      COL_SELECTMASK                = ' '
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      TABLES
        DATA_TAB                      = csv_converted_table
      FIELDNAMES                    =
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_WRITE_ERROR              = 2
      INVALID_FILESIZE              = 3
      INVALID_TYPE                  = 4
      NO_BATCH                      = 5
      UNKNOWN_ERROR                 = 6
      INVALID_TABLE_WIDTH           = 7
      GUI_REFUSE_FILETRANSFER       = 8
      CUSTOMER_ERROR                = 9
      OTHERS                        = 10
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    my version is 4.6c

  • Creating Web Services from Forms Application

    I have a commercial system based on Oracle Forms 6. I would like to expose the functionality of this application as Web Services. This would permit us to integrate these applications using XML technology.
    I think the best approach would be to look for a way to communicate with forms from within a Java environment.
    Does anyone know how I can do this ?

    You can certainly use 10.1.3.x of JDev for building web services to call from forms 10.1.2. I have done this here:
    http://www.oracle.com/technology/products/forms/htdocs/10gr2/howto/webservicefromforms/ws_10_1_3_from_forms.html
    Generally the thing you have to watch is to ensure the JDK version for the web service proxy project is the same as Forms (1.4). You also need to be careful on the web service type from which you are creating the proxy. (Jax-rpc, jax-ws etc)
    It might be worth trying (but might have a few gotchas) using 10.1.3 to generate a proxy against an 11g web service - but you need to watch what version of the web services standard you are using as there have been a number of changes in this area.
    hope that helps
    Grant

  • Search icons from forms/reports builder and runtimes

    Hello together,
    who can help me?
    I search the icons from the programs forms- and reports-builder and theirs runtimes (the little pictures in front off the filename).
    I need these to import in another program. They should have 16x16 pixel.
    Where can I find these icons?
    Thanking you in advance.
    Regards,
    Sandra

    Not a final answer to your questions as I don't know the directory structure for forms & reports builders, but you can search for *.ico files in the same (unless forms & Reports use different extensions for icon files).

  • Migration from forms & report

    Hello everybody.
    Im working with RedHat Linux. 5, Forms & Reports 10.
    Im seriously thinking to migrate my forms & reports aplication to java. I think that this tool do this.
    Then I need read documentation about this, how are licencing, how I must install, testing and all this before take decition
    and begin.
    Can anyone send me a link, or some links, where I can read this?
    Thanks in advanced & regards.

    Hi there,
    First of all excuse me for the long delay in the response from the JHeadstart team - due to holidays and some misunderstandings nobody was looking after the forum for the last 2 weeks. From now on we are back on track though!
    Now regarding your question - thanks for your interest! You can start by reading the following sites:
    http://www.oracle.com/technology/products/jheadstart/files/jheadstart_FAQ.html
    http://www.oracle.com/technology/products/jheadstart/index.html
    You can ask more questions here, or email to idevcoe (underscore) nl (at) oracle (dot) com. If you want to purchase JHeadstart, you can contact your local Oracle Sales representative.
    Regards,
    Evert-Jan de Bruin
    JHeadstart Team

  • Create a url from a report program

    Hi All,
    Could anyone please suggest me how do i generate a url from a report program. I need to use this generated url then, as a link in an excel sheet.
    Thanks in advance,
    Warm Regards,
    Preethi.

    Hi Preethi,
    REPORT  ZAZUURL                                 .
    DATA: BEGIN OF URL_TABLE OCCURS 10,
    L(25),
    END OF URL_TABLE.
    URL_TABLE-L = 'http://www.lycos.com'.APPEND URL_TABLE.
    URL_TABLE-L = 'http://www.hotbot.com'.APPEND URL_TABLE.
    URL_TABLE-L = 'http://www.sap.com'.APPEND URL_TABLE.
    LOOP AT URL_TABLE.
      SKIP. FORMAT INTENSIFIED OFF.
      WRITE: / 'Single click on '.
      FORMAT HOTSPOT ON.FORMAT INTENSIFIED ON.
      WRITE: URL_TABLE. HIDE URL_TABLE.
      FORMAT HOTSPOT OFF.FORMAT INTENSIFIED OFF.
      WRITE: 'to go to', URL_TABLE.
    ENDLOOP.
    CLEAR URL_TABLE.
    AT LINE-SELECTION.
    IF NOT URL_TABLE IS INITIAL.
      CALL FUNCTION 'WS_EXECUTE'
           EXPORTING
                program = 'C:\Program Files\Internet Explorer\IEXPLORE.EXE'
                commandline     = URL_TABLE
                INFORM         = ''
              EXCEPTIONS
                PROG_NOT_FOUND = 1.
      IF SY-SUBRC <> 0.
         WRITE:/ 'Cannot find program to open Internet'.
      ENDIF.
    ENDIF.
    <b>Regards,
    Azhar</b>

  • Upgradation while moving from Form/Report 6i to 11g ?

    Sir/Mam,
    I have inhouse development in Oracle 8i, Form/Report 6i in server/client architechture. Now, I want to run my application in Oracle 11g Form/Reports.
    There are so many Oracle Products in Oracle 11g. So, guide me what type of upgradations or which type of Oracle Products I should download.
    Thanks & Regards.
    Sukhvinder Singh.

    Hi Sukhvinder,
    These are the main things you need to do
    01. Upgrade Oracle Forms/Reports 6i (Client/Server) to 11g (Web) version
    --In here you need to follow the Oracle Gudelines
    http://download.oracle.com/docs/cd/E12839_01/doc.1111/e10394.pdf
    02. Then Install Oracle WebLogic Server with Oracle Forms/Reports Services
    03. Deploy Forms/Reports
    Each of these task has lot of things to do..

  • Creating Editable PDF from Form Created in LiveCycle

    I believe the anwser is no, but I want to confirm. If I create a pdf form in LiveCycle Designer, can I load and populate that pdf form with a different library such as iText or do I have to use continue to use the LiveCycle PDF Services. (2.5)
    Thanks

    Yes, you can update forms from designer with data from any number of libraries, from iText to the Adobe PDF Java Toolkit to any variety of .NET products.  The key is that there are different APIs for the XFA form (you update the XML data stream in the XFA area) and acroforms (where you update individual fields or update through FDF/XFDF import).
    Also, keep in mind that a reader-extended form or a signed form should be changed in incremental update mode or you'll lose the rights and the signature.

  • Create text file from form data

    I need to create a form using dreamweaver and coldfusion. We
    do not have coldfusion server. just Dreamweaver 8. Until we decide
    what application server we will use, I need to create a text file
    each time a user submits data from a form and put the data into a
    text file. What would be the best way to handle this?

    if you do not have an application server like CF or PHP or
    ASP (or
    other) to process your form submissions, you should look for
    a perl/cgi
    script that can do it for you. i remember from awhile ago a
    script
    called bnbform from bignosebird.com ... it is used for
    emailing form
    submissions to a designated email address, but if i remember
    correctly
    it also stored form data in a text file....
    Azadi

  • Create .dbf file from Forms 6i

    Hello,
    I know how to create a text file with Only col of tables in Text File(*.txt) using Text_io Package.
    How To get the same Output as DBF File(*.dbf) directly so that there is no Extra overhead of converting *.txt to *.dbf using Visual Foxpro?
    Thanks in Advance

    You can use the Exec_SQL package.
    The following code successfully copies the EMP form block into a emp.dbf file.
    The ODBC Data Source "prashanth" must be configured.
    declare
      fox_tab  EXEC_SQL.conntype;
      cur      EXEC_SQL.curstype;
      ret      pls_integer;
    begin
      begin -- Delete emp.dbf
        fox_tab := exec_sql.open_connection(null, null, 'ODBC:prashanth');
        cur := EXEC_SQL.open_cursor(fox_tab);
        EXEC_SQL.parse(fox_tab, cur, 'drop table emp ');
        ret := exec_sql.execute(fox_tab, cur);
      exception 
        when OTHERS then NULL;
      end;
    -- create new emp.dbf file
    EXEC_SQL.parse(fox_tab, cur, 
        'create table emp (EMPNO INTEGER,'||
                          'ENAME CHAR(10),'||
                          'JOB CHAR(9),'||
                          'MGR NUMBER,'||
                          'HIREDATE DATE,'||
                          'SAL NUMBER,'||
                          'COMM NUMBER,'||
                          'DEPTNO NUMBER)');
    ret := exec_sql.execute(fox_tab, cur);
    Go_Block('EMP');
    execute_query;
    loop
      EXEC_SQL.parse(fox_tab, cur, 
         'insert into emp(EMPNO,ENAME,JOB,MGR,HIREDATE,SAL,COMM,DEPTNO)'||
                          values('||:EMP.EMPNO||','''||:EMP.ENAME||''','''||
                          :EMP.JOB||''','||
                          NVL(TO_CHAR(:EMP.MGR), 'NULL')||','''||
                          TO_CHAR(:EMP.HIREDATE, 'DD-MON-YYYY')||''','||
                          NVL(TO_CHAR(:EMP.SAL), 'NULL')||','||
                          NVL(TO_CHAR(:EMP.COMM), 'NULL')||','||
                          NVL(TO_CHAR(:EMP.DEPTNO), 'NULL')||')');
      ret := exec_sql.execute(fox_tab, cur);
      if :system.last_record = 'TRUE' then exit; else next_record; end if;
    end loop;
    EXEC_SQL.close_cursor(cur);
    EXEC_SQL.close_connection(fox_tab);
    end;

  • Creating a tcode for form reports

    Hello Experts,
    I need to create a transaction code for a report created with FSI2. I took the name of the program that this report had generated and created a t-code.
    My problem is that the selection screen using the t-code that I created with the one I get when executing the report with FSI0 are not the same. Output type in my view is missing.
    Thank you

    Hi.Check value for Screen field(as for me Screen field=D_SREPOVARI-EXTDREPORT) in SE93 for your Tcode. It'd be exact like Tech Name of report. You can check this name in FSI2. Chose report(double click),then Extract-Report Assignment -Tech name on.Copy Sender Report, e.g.
    RE/FBR /01RFRRS01                       0SAPBLNCE-10, then delete "/".
    After that in SE93
    D_SREPOVARI-REPORTTYPE = RE
    D_SREPOVARI-EXTDREPORT = FBR01RFRRS01                       0SAPBLNCE-10

  • Migrating from Forms/Reports 6i to 10G

    Hi all
    I'm trying to migrate my application, developped using forms and reports 6i to 10G.
    Could someone please give me the list of functions/procedures deprecated in the 10G that was used in 6i? I've no access to metalink.
    this would help me replace the deprecated instructions in 6i by the equivalent ones in 10G.
    Thanks for your help
    Regards

    Hi,
    see otn.oracle.com/products/forms
    From here you find a link pointing to the Forms upgrade center
    Frank

  • Creating database triggers  from forms

    what we can create a data base trigger from from .if yes plzzz tell me its procedure.

    Yes, and have a look here, It show how is possible
    [url http://www.oracle.com/webapps/online-help/forms/10g/state/content/navId.3/navSetId._/vtTopicFile.designing_forms%7Cstoredpr%7Cf50crdbtr%7Ehtml/]Creating a Database Trigger

  • Create spool number from the report program

    Hello,
    I want to know the function module to create the spool request from report program, through which I can write the content of the internal table to spool.
    Thanks,
    Lucky

    Hi Lucky ,
    you will have to use 3 function modules in sucession to create a spool request as follows :
    JOB_OPEN
    JOB_SUBMIT
    JOB_CLOSE
    In case of any problem please get back to me.
    Regards,
    Nikhil

Maybe you are looking for

  • Using JTables to display data from a text file

    How do I display data from a .txt file into a column inside a JTable?

  • Cannot Install Latest Driver or Full Menu Program for Laserjet 400 m401dw

    Running Windows 7 Pro (64 bit). Downloaded these files from HP: (1) LJ-M401-drv-installer-13198; (2) LJ-M401-full-solution-13198; (3) LJ-M401dne-full-solution-13067.  Each time I ran any of the files, I got about 91% complete at the "preparing to ins

  • Podcast Feed Showing Up as Blank Icon

    Can someone help me troubleshoot why I cannot get my icon to appear in iTunes?  Below are the links to my show and the feedburner feed: http://itunes.apple.com/us/podcast/elegant-workflow/id525298655 http://feeds.feedburner.com/elegantworkflow Thank

  • I want  to know about smartforms

    hi experts tell me i want to know about smartforms anybody have material pls send me thanks in advance

  • DSS gets problem when PDF is over 70-MB

    Hi, We've got the problem. When we applyPolicy to a PDF that is over 70-MB, it returns exception about this, java.lang.Exception: org.omg.CORBA.UNKNOWN: This exception was reported by the server, it is only re-thrown here. vmcid: 0x0 minor code: 0 co