How to make Forms6i Application Install Program?????

How to make Forms6i Application Install Program?????
We have finished a Forms6i Application , and need a installer to install software.
Can I use Oracle installer or must use MS visual C++ to make a installer? I need wirte a register.
Anything inclued in Form6i Production (IDS) to introduce installer???
Thank you.

How to make Forms6i Application Install Program?????
We have finished a Forms6i Application , and need a installer to install software.
Can I use Oracle installer or must use MS visual C++ to make a installer? I need wirte a register.
Anything inclued in Form6i Production (IDS) to introduce installer???
Thank you.

Similar Messages

  • How to make destop application using java

    how to make destop application using java
    i mean to say when we double click on the exe file the program should lounch the application
    for windows

    when i double click ii got the msg
    Failed to lad main class manifest attribute from
    x/x/xyz.jar
    what exatly it meansIt means that your Manifest.MF for the JAR file should contain an attribute called Main-Class pointing to a class containing the main() method.
    Something like this should be present in META-INF/Manifest.MF :
    Main-Class: MyApplicationMain

  • How to make changes in another program?

    Hi evrybody,
    how  to make changes from one program  to another program ?
    Changes should be reflecting in other program.
    thanx in advance n wud be surely Rewarded if answer is helpful.

    Hi Bharat,
    Thanx for the info.
    But what my requirement is , I'm scanning & reading another report into an Internal table. I want to change the Hyphen's
    '-' used in variable declarations of another program into Underscore '_' .
    My sample code is like this..
    Report Zmain.
    PARAMETERS:
      p_prog LIKE sy-repid,
      p_key LIKE stokex-str.
    Internal Table t_itab                                                *
    DATA:
      BEGIN OF t_itab OCCURS 0,
        line(256) TYPE c,
      END OF t_itab.
    *" Data declarations...................................................
    DATA:
      t_statements LIKE sstmnt OCCURS 0 WITH HEADER LINE,
      t_levels LIKE slevel     OCCURS 0 WITH HEADER LINE,
      t_tokens TYPE stokesx    OCCURS 0 WITH HEADER LINE,
      t_keywords LIKE t_itab   OCCURS 0 WITH HEADER LINE,
      w_i TYPE i,
      w_j TYPE i.
                            START-OF-SELECTION                           *
    START-OF-SELECTION.
      APPEND p_key TO t_keywords.
      READ REPORT p_prog INTO t_itab.
      SCAN ABAP-SOURCE t_itab
      STATEMENTS INTO t_statements
      LEVELS INTO t_levels
      TOKENS INTO t_tokens
      KEYWORDS FROM t_keywords
      WITH INCLUDES
      WITH ANALYSIS
      WITH COMMENTS.
                            END-OF-SELECTION                             *
    END-OF-SELECTION.
      LOOP AT t_statements.
        READ TABLE t_levels INDEX t_statements-level.
        w_i = t_statements-from.
        w_j = t_statements-to.
       IF t_statements-level > 0.
        WHILE w_i < w_j.
          READ TABLE t_tokens INDEX w_i.
          REPLACE '-' WITH '_' INTO t_tokens-str.
          w_i = w_i + 1.
        ENDWHILE.
       ENDIF.
      ENDLOOP.
    My called program is like this....
    Report Zcalled.
    DATA:
      w-var1 TYPE c,
      w-var2 TYPE c.
    DATA:
      fs_flight1 TYPE sflight,
      t_flight1 LIKE STANDARD TABLE OF sflight.
    START-OF-SELECTION.
      INCLUDE zinclude3.
      SELECT * FROM sflight
        INTO TABLE t_flight1
        WHERE carrid = 'AA'.
      SELECT * FROM sflight
       INTO TABLE t_flight1
       WHERE carrid = 'LH'.
    END-OF-SELECTION.
      LOOP AT t_flight1 INTO fs_flight1.
        WRITE: / fs_flight1-carrid,
                 fs_flight1-connid,
                 fs_flight1-fldate,
                 fs_flight1-price.
      ENDLOOP.
    Thanx very much.

  • How to make Trusted Application

    Hello 2 all
    I want to know how to make trusted application on mobile..?
    Waiting for reply..
    Jignesh

    Hi,
    http://developers.sun.com/techtopics/mobility/midp/articles/permissions/

  • How to make client application

    hi....
    help me...^ ^ how to make client application(not standalone..)
    I seached bea document.. but I can't it.
    if someone have sample(.ear or .jar), I hope you it share...

    Hi
    Client Application can be any Java class, JSP etc which is a part of multi
    tier architecture which accepts input from Client and directs request to the
    middle tier for processing. You can refer to
    http://e-docs.bea.com/wls/docs61/jsp/index.html
    for building jsp's as Client application.
    Regards
    johny
    "kyungmoon" <[email protected]> wrote in message
    news:3c4f571d$[email protected]..
    >
    hi....
    help me...^ ^ how to make client application(not standalone..)
    I seached bea document.. but I can't it.
    if someone have sample(.ear or .jar), I hope you it share...

  • How to make two Application Modules share the same entity cache?

    Hello everyone, I am using JDeveloper 11.1.2.3.0
    I have a little problem in my application through using two AppModules that contain also same ViewObjects. So to be clear one VO is declared in two AppModules. When I commit the view by using AppModule1 and then go to another page that uses the same VO but from AppModule2, I have to commit again, even through the row is previously stored in the database.
    I understood that this came because different AppModules use different entityCache for database communications.
    I am asking if anyone knows any option on how to sync the entity caches from the two appmodules, or how to make them use the same entity cache.
    Thank you

    You can make a copy of the app and give it another name, but it will use the same settings files no matter which you open. Settings aren't stored in the app, but in your Preferences.
    Firefox, being a Windows derivative, might have the capability to use "Profiles" where you'd set it up different for each profile. I don't use Firefox, so I don't know if that option exists.

  • How to make .exe applications

    good day, im interested in java and started reading tutorials. i dont have prior background in programming. as i skip reading on tutorials, i notice that programs are run on command prompt. my question is, can i make a program that have filename extension .exe and when you click that icon it runs the program directly on the screen? i thought that program like C++ or java can make a application program just like games that dont need command prompt.
    racz

    morgalr wrote:
    If you choose to make an EXE file, there are programs for that, but you might as well just choose any .NET technology, since you will be missing out on one of the greatest features of Java--the ability to develop once and run on any platform.This is not quite true. A program developed in Java doesn't become less portable just because it's distributed in some other format than bytecode. The distributed executable can only run on the target platform of course but the program itself is as portable as before.
    So there's no reason to stop using Java even if you mainly target Windows and want to distribute your program in a .EXE format for technical, economical, legal or whatever reasons,.

  • How to make a simple C program universal from the command line???

    Hi all,
    I've developed widgets that use a simple C program. I had no clue how to make it universal. Apple documentation is all about big projects to be developed inside Xcode and so on, but I don't understand even the introductory remarks...
    As far as I've read, I have to make a binary for PPC and a binary for i386, and then merge it with lipo. Fine. I get my PPC binary from:
    gcc-4.0 prog.c -o prog_ppc -lm -arch ppc -arch ppc64
    Now, it seems that I have to use:
    gcc-4.0 prog.c -o prog_i386 -lm -arch i386
    The latter command didn't work until I added -L/Developer/SDKs/MacOSX10.4u.sdk/usr/lib/ at the end. With this, it creates a binary file, but with the following message:
    /usr/bin/ld: warning fat file: /usr/lib/system/libmathCommon.A.dylib does not contain an architecture that matches the specified -arch flag: i386 (file ignored)
    and I guess this is quite an issue if I don't have the common math functions, no?...
    Can somebody help me? I googled a lot on this, and found nothing helpful.
    Cédric

    Thanks, it helped me. I googled a bit to build up my Makefile, and this is what I got.
    CC= gcc-4.0
    CFLAGS= -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386
    LDFLAGS= -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -lm
    TARGETS= skycalc.fixed.c
    all: $(TARGETS)
    $(CC) $(TARGETS) $(CFLAGS) $(LDFLAGS) -o skycalc_universal
    Thanks again.

  • How to make a custom instalation of OS 10.4

    I have a MAC mini for which I want to make a custom instalation of MAC OS 10.4 and I was wondering if this was possible. My goal is to remove all the non ecentials from the OS and have the OS boot up directly to "Safari" and locking it there so no one has access to operating system. I use to be very proficient with MACs, but the was a long time back. I'm practicaly a novice now so I need a little help with this task. I would apreciate any help at all.
    Thanks

    I'm not familiar with "Launch" but another option is creating an additional user account or accounts without admin privileges (while disabling automatic login for the computer's admin account) and make use of Parental Controls included with Tiger for the additional user or user accounts.
    With Parental Controls, you can select or grant access to Safari only for the limited user account or accounts under "This user can only use these applications:"
    The user account will access to Safari only.
    http://www.apple.com/macosx/features/family/

  • How to make a trace to program ?

    Hi
    Does somebody can tell me how can i make a trace to program in order to find in wich code point the process is getting 'stand-by' (does not finish) ; that is, in wich DB access, LOOP, etc. the program is making the work wich takes a lot of time.
    I need to discover where are the performance problems and how much the program access the DB with SELECTS.
    Regards
    Frank

    Hi,
    make use of the transaction code ST05 for the trace of database selects, Just press the Trace on button and run your program, and inthe ST05, press the Trace off button and look at the list, you will understand.
    Even you can use the transaction ST04 -> Database performance analyzer
    ST03 -->Workload on the System
    Regards
    Sudheer

  • How to make the application offline

    I have X7 phone and each day the amount of my pulse is decreasing. the internet is working but I didnt use it. How can I make the application become offline and not receiving updates. I already set my widgets to offline mode but it still like that. need your help

    go to settings menu...then connectivity...then settings...set "Data use in home country " to always ask....so next time whenever any app would try to connect to internet then it would ask you to either cancel it or other options like  "connect automatically" or "connect this time only" 
    If you want that your phone should only use your home wifi only then set "Data use in home country" to WLAN only

  • How to make a clean install of Mavericks over 10.4.11

    Hey everyone,
    I would like to make a clean install of Mavericks on mid-2007 MacBook Pro ([email protected], 2GB RAM) which currently runs 10.4.11. I already made bootable USB of Mavericks, which i downloaded with my MacBook Air.
    When I insert USB and restart the computer the screen with the option "Install OS Mavericks" comes up but when I click on the icon nothing happens and  computer just proceeds to boot into 10.4.11. If I try to run it from the desktop it says that Mavericks is not supported on this version of OS which doesn't surprise me. I've been searching around forums for a way to go about this problem and the general solution seems to be to buy some newer version of Mac OS and then proceed with the upgrade from there. But from what I can tell the reason why people are mainly recommending this option is because only then you can download Mavericks via AppStore, which I have already done.
    So what I'm really asking is whether I can somehow install Mavericks without buying intermediate version of Mac OS first, given that I already have Mavericks downloaded? Would it be possible to just delete the whole hard drive with 10.4.11 on it and then make a clean install of Mavericks?

    To install Mavericks, you need one of these Macs:
    iMac (Mid-2007 or later)
    MacBook (13-inch Aluminum, Late 2008), (13-inch, Early 2009 or later)
    MacBook Pro (13-inch, Mid-2009 or later),
    MacBook Pro (15-inch or 17-inch, Mid/Late 2007 or later)
    MacBook Air (Late 2008 or later)
    Mac mini (Early 2009 or later)
    Mac Pro (Early 2008 or later)
    Xserve (Early 2009)
    Your Mac also needs:
    OS X Mountain Lion, Lion, or Snow Leopard v10.6.8 already installed
    2 GB or more of memory
    8 GB or more of available space
    I would, STRONGLY, advise that you install more RAM into your MBP.
    Also, while the minimum RAM spec for Mavericks is 2 GB. This is a minimum and NOT ideal working amount of RAM to be running OS X Mavericks.
    To run Mavericks with some success, you need to install, at least, 4 GBs of or greater.
    Your MBP year and model can take a total of 6 GBs of RAM max.
    i advise purchasing and installing the full 6 GBs of RAM.
    Correct and reliable Mac RAM can be purchased from online Mac RAM sources Crucial memory or OWC (macsales.com).
    This RAM kit can be found here.
    http://eshop.macsales.com/shop/memory/MacBook/Pro/Core2/
    Good Luck!

  • How can I flush/repair installed programs in the Application Manager / Creative Cloud?

    Hi. I had installed a few of the Adobe programs through the Application Manager/Creative Cloud service on a Windows 7 system. The system crashed, forcing me to recover from a prior time backup, which was from before I installed the programs. Now, the Adobe Application Manager shows the prior programs as "Installed", and will not allow me to re-install them. These programs *do not* appear in Window's "Uninstall Programs" listing for me to uninstall manually, *nor* do they appear in the Start Menu to launch. And as far as I can tell, they no longer have Registry entries.
    How do I flush the Application Manager to tell it that I do not have these programs installed anymore, or force it to re-install?
    Thanks.

    I don't believe the data on what is installed and what is not is held at Adobe; I think it is in your particular instance of the AAM that "knows" what is installed.
    I'm not sure what happened to me will help you or not but... Also, I have a Mac not a Win7 system.
    In my case, I had Acrobat X Pro and I download Acrobat XI. Acrobat does not like to install when there is an older version already on the machine. Adobe tells you to unistall the older version and then install the new version. Why this isn't in their install scripts is beyond me. The installer for Acrobat XI ran sucessfully. I didn't realize the problem until I went to open a PDF.
    I manually uninstalled Acrobat X. Still had problems. Then I manually uninstalled Acrobat XI. (Both times I used the uninstaller Adobe provides.) I started AAM and it showed the XI installed. I tried the Adobe Creative Suite Cleaner Tool. The tool is supposed to clear out any left overs after an uninstall and thus "flush" AAM. When I ran the Cleaner, Acrobat XI didn't show up in the list of programs. I eventually found a second uninstaller for Acrobat XI that cleaned things up such that AAM agreed I needed to install the software.
    With the disk-based installs, when you ran the installer you got an option to "repair" the current installation. Why you have to jump through all the hoops that AAM has not is beyond me. It would seem more rational to put options into AAM directly to let you re-install things or repair them. This is one where Adobe dropped the ball.

  • Installing CC progams on a MacBookPro and it says my start up disk is full.  How do I make room ti install programs?

    My start up disk is full on my MacBookPro.  Can someone walk me through how to delete some files and create needed space to install adobe CC programs?

    This is an Adobe forum, so I think you need a Mac forum to learn how to use your Mac and the file utility program that comes with a Mac

  • How do I get the install program to install in a different directory?

    I think I know what the problem with FF. It is my computer hard disk. I think there is a bad sector where the program gets installed. Sometimes after the third attempt to get into FF it lets me reset and works. But as soon as I have a problem with FF and close FF it has problems again. The installer normally installs in C: programs (x86). I would like to direct it to just c:\programs directory. Then how will I make sure the new place points the profile in the right way?

    Firefox on Windows is a 32-bit application and thus needs to be installed in "C:\Program Files (x86)"
    Only 64-bit applications belong in "C:\Program Files\"

Maybe you are looking for

  • Error while running the XML file using XML Publisher Desktop

    Hi All, We have successfully loaded the XML file using XML Publisher Desktop.But when we try to preview it using the PDF format we are getting the following error. Font Dir: C:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\font

  • How do I Export Address Book data?

    Is there anyway to insert Address Book data into other (non-Apple) applications, e.g. Word? I want to send out some letters and I would like each letter to have the recipiants address at the top of the letter. Even if I could export the data to Excel

  • SOLMAN 4.0 - Error in "get macadress" during installation

    Hi Group, I'm currently installing new solman 4.0 and at step 30 of 40 "Configuring UME" I got the following error: getMacAddress() failed  **  trying to get mac address from ** file /usr/sap/SAPinst/SOLMAN/SYSTEM/DB4/CENTRAL/AS/MAC_ADDRESS Jaime Est

  • Can i access phone menu without a sim card in, can i access phone menu without a sim card in

    hi i want to access my iphone 4 but have not yet got a working sim in it, is this possible ?

  • Linking a report to a report

    I'm trying to link a report to another report. I'm able to link a form to a report with no problem. After selecting the link I can enter the parameters. When I try to add the parameters to the link between two reports the parameter selection does not