URGENT: shortcut to forms

Hi!
To create the forms whith the FORM BUILDER from oracle 10g, I always start up the OC4J instance, therefore, i am not connected to the net, and I do not want to be.
So the problem is:
Is it possible to create a shortcut so that if someone else other than me wants to use the forms I've created, and work with my database, does not need to open the form builder?!
Wich means that by clicking on the shortcut icon, the connect window is popped up, the log in is inserted and I go directly to the forms created.
Thanks

if it's forms6i or ealier then you may deploy it as c/s mode if 'use your form you created to work on database' means using your forms to work on database data, not to modify your form source code.
9i or up is not not a option for c/s deployment, but for design time only unless you can hack the runtime out of the builder.
If you want other developers to access your source codes, then you may use clearcase or oracle homemade version control tool, and properly you need to write some script to automate what you want. Hopefully Oracle has something available because it helps to be productive.

Similar Messages

  • URGENT: New Shortcut to forms problem

    Hi!
    To create the forms whith the FORM BUILDER from oracle 10g, I always start up the OC4J instance, therefore, i am not connected to the net, and I do not want to be.
    So the problem is:
    Is it possible to create a shortcut so that if someone else other than me wants to use the forms I've created, and work with my database, does not need to open the form builder?!
    Wich means that by clicking on the shortcut icon, the connect window is popped up, the log in is inserted and I go directly to the forms created.
    Thanks
    I've received the following answer from Mr. Frank Nimphius:
    R: Tiago,
    if your PC is accessible for internal users and OC4J is up and running, you could have them creating a Browser shortct that looks similar to
    iexplorer http://tiagos_server:8889/forms90/f90servlet&form=ttiago_form.fmx....
    You can also define an application entry in the Forms forms.cfg file and change the shortcut to
    iexplorer http://tiagos_server:8889/forms90/f90servlet&config=app_entry
    Other people won't be able to edit the Forms this way, but can run your modules against your data base.
    Frank
    The Problem is:
    It does not open the forms!!
    How can I solve this problem !?
    thanks

    Mr Grant,
    I have created the shortcut icon, and putted that url.
    It initializes the applet and a window appears saying Installed Successfully!
    Oracle Aplication Server Forms Services.
    The window has an ok button, and I click it, but no form appears.
    Then nothing appens..
    It says that the window is opening but i've been waiting for centuries and my forms are not shown.
    I really need to do it.
    Thanks,
    Tiago

  • URGENT: REGARDING SMART FORM CALLING FROM REPORT

    HI,
    I had made a report in which i have to display the output in smart form ,the problem is this i had delclared only 1 INTERNAL TABLE and i dont know how to display it in the smart form as i am new to it .
    if help me out with solution ,he or she will be definately rewarded.
    regards,
    ric.s
    Edited by: ric .s on Dec 21, 2007 10:22 AM

    Hi,
    You need to craete a SMARTFORM using transaction SMARTFORMS. In this trasaction under FORM INTERFACE give the variable which would be passed from your program.
    Then use these variables and pass the information in Windows which you will create in your smartforms.
    When you activate your SMART form it will create a Fucntion Module whihc you need to call from your report program.
    Please go through the information given in thread :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/16/a369b1800e4bdda978ee0fe3b7bd2c/frameset.htm
    /community [original link is broken] hreadID=187587&messageID=2096976#2096976
    /community [original link is broken]threadID=187587&messageID=2096976#2096976
    Refer to the following:
    http://esnips.com/doc/7e67af5c-6188-4252-8613-41816756d560/from-sappres.pdf
    http://esnips.com/doc/58566115-54a4-4405-8872-8de952e245e5/smartform.pdf
    http://esnips.com/doc/2276d194-dc47-4b1e-9c14-7af0ffe923ca/smartforms-xsf-output.pdf
    http://esnips.com/doc/13b7ae7a-b32c-4b96-b588-881859d4ac99/Template,Table,Loop,Command-in-Smartforms.doc
    http://esnips.com/doc/97acb00a-e513-4611-91f0-c626f460bfc5/Smart_Form_Overview.pdf
    http://esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail.ppt
    Smartforms Step by Step...links
    Smartforms Step by Step...
    http://www.sapgenie.com/abap/smartforms_detail.htm
    Smartforms
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    This would give you information about smartform.
    Though the info is bit extensive but will surely help you.
    Reward if u find this useful.
    Regards,
    Lalit

  • URGENT: Report parameter form set to yes in calling report from menu

    I have write this code for calling report from menu module. But where i put the code
    PARAMFORM='YES' to display the report parameter form in order to enter the parameter by user.
    DECLARE
    pl_id ParamList;
    repid REPORT_OBJECT;
    v_rep varchar2(100);
    v_server VARCHAR2(100);
    rep_status varchar2(100);
    v_host VARCHAR2(100);
    BEGIN
         select rep_server into v_server from reports_data;
         select machine into v_host from reports_data;
         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,'P_C_NAME',TEXT_PARAMETER,:GLOBAL.COMPANY);
    Add_Parameter(pl_id,'P_B_NAME',TEXT_PARAMETER,:GLOBAL.BRANCH);
    Add_Parameter(pl_id,'P_user',TEXT_PARAMETER,:GLOBAL.user);
         repid := find_report_object('REPORTOBJ');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,getpath||'E_open_balance.RDF');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'htmlcss');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,v_server);
              v_rep := RUN_REPORT_OBJECT(repid, pl_id);
              rep_status := REPORT_OBJECT_STATUS(v_rep);
              WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
                   LOOP
                        rep_status := report_object_status(v_rep);
                             message('Running');
                   END LOOP;
              IF rep_status = 'FINISHED' or rep_status is NULL THEN
              WEB.SHOW_DOCUMENT('http://'||v_host||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||v_server,'_blank');
              ELSE
                   null;
         END IF;
    END;

    Jeneesh,
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,
    'paramform=YES
    what about this variable ?
    P_VAR1 = ........');

  • Urgent for Smart form logo

    HI,
    I have logo .i want to cahnge that name of logo.right now it is uploaded in se78.
           how can we change the name of existing logo.
          how can we download logo from se78 to our system to change the name.
    Thanks,
    kab.

    hi,
    Downloading the LOGO.
    Pls follow the menu path,
    SE78 - > Graphic -> Import
    File Name : Press F4 and select the requrire logo(on Presentation Server)
    Name : Give relavent name
    Steps for uploading Logo :-:
    1. Goto the transaction OAER
    2. Enter the class name as 'PICTURES'
    3. Enter the class type as 'OT'
    4. Enter the object key as the name of the logo you wish to give
    5. Execute
    6. Then in the new screen select Standard doc. types in bottom window
    Click on the Screen icon
    Now, it will ask for the file path where you have to upload the logo
    7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE
    *& Form TOP_OF_PAGE
    * text
    FORM F_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo = Logo name
    * I_END_OF_LIST_GRID =
    ENDFORM. "TOP_OF_PAGE
    Regards,
    Anversha
    Edited by: Anversha s on Apr 30, 2008 1:15 PM

  • URGENT:Running oracle form in front end

    hi,
    i have created a form in form builder and compiled successfully in server.i registered the form in apps and i have added responsibility also.what is the next step to run that form in apps.Do we need to create concurrent program and executable and add to the request group?Please help.
    Thanks in advance

    Do we need to create concurrent program and executable and add to the request group?Depends if you have custom concurrent programs. If so, then here are the steps:
    To create a Custom Program:
    - Login to System Administrator Responsibility
    - Navigate to Concurrent > Program > Define
    - Define your program
    To add the Concurrent Program to the Request Group:
    - Login to System Administrator Responsibility
    - Navigate to Security > Responsibility > Request
    - Query your Request Group
    - Under Requests, select "Program" under "Type", enter the name of the Concurrent Program under "Name"

  • Urgent: Customized 11i forms, work into R12 - Problem

    Hi,
    We are running 11i, R12 versions instance.
    In that for 11i forms, we are using in R12.
    In that one customized form colomn data defination area, has to define some other tables/ views.
    We would know the present form colomn 'data defination : query, to modify the particular colomn.
    Note: That column has record group as well lov, functions and procedure etc.
    Kindly give me the one by one steps,
    Advanced thanks who is reading and giving solutions.
    Advanced thanks...
    Regs
    Thamaraiselvan
    Message was edited by:
    user624969

    In that for 11i forms, we are using in R12.What do you mean by this? Could you please elaborate more?
    Did you compile the 11i forms before using it with R12?

  • How to create shortcuts using Form 10g

    hi all,
    my problem is that i want to perform some task by pressing 1 a key.
    for e.g., i want to do a certain job by pressing F3.
    how can i implement it.
    thanks and rgds
    Aml

    all keys are mapped to KEY-trigger. The mapping can be found in the fmrweb.res - file in the forms-home-directory.
    Example:
    The mapped key-trigger for F6 is normally KEY-CREREC (create-record)
    If you write your code in this trigger on form-level, then each pressed F6 starts your code.
    If some trigger are not mapped, then map them to hotkeys you like in the fmrweb.res.
    Best practice: Don't change them, because this hotkeys are known from most oracle-user and if you change F 10 (commit) to some other functionality, then the user runs crazy because his hotkey has changed :-)

  • URGENT:  convert pdf Form to Word Form

    Ihave a filled in pdf form and a blank form and I need to convert each to a Word form. acro pro 7 If I had vers 8.0 pro,would the steps be any different?
    what is the fastest way to do this? The boss says the pdf form is not flexible enough but I cannot ask her more at this moment.

    As long as you have been using Acrobat, I am surprised that your boss would have such a question. I thought of one possibility if the form fields are not retained in WORD, but don't know if it will work. You could try to save as HTML (I usually have best luck with HTML 3) and then open that in WORD. That might give you a back door to keep the form fields in much the same way opening a HTML form in Acrobat retains the form fields. Just a thought if the WORD save does not work.
    In terms of flexibility, it is a simple matter to create the form (without fields) in WORD (the master document), make changes, and create a new PDF. Then the modified pages can simply be used to replace those in the old form (don't forget to work on a copy). I guess that is the second idea that is probably the route you were planning to take. Again, bood luck with the boss and with WORD. Bill

  • Very Urgent help in Forms Personalization/Custom.pll for Dff

    Hello everyone,
    I want to enable the existing DFF segment i.e. Attribute12 when schedule_ship_date get changed. Means if schedule_ship_date changes then I want to store it in DFF segment.
    Please can you tell me the steps how i can enable the DFF segment in Oracle forms or how i can do it mandatory if date changes. I am using 11.5.10.2 Oracle Apps version.
    Thanks

    I suggest you to create an event Alert instead of a database trigger; this is the best practice.
    For more details, lpease let me know.

  • Urgent! Oracle Form 6

    Hi all...
    I'm new to Oracle Form... But i am using it to create a program using Oracle Form 6. I have one table called Customer. There is a button called 'Create New Customer' which will allow the user to create a new record when he/she clicks on it.
    What I want to know is 'How to make the button so it can record the new customer?'
    I've been looking around to solve this problem. But I still don't manage to get it works.
    Thank you very much

    i created an alert named UPDATE_ALERT. It has two buttons, which are 'OK' and Cancel
    Here is the code in program unit:
    PROCEDURE DISPLAY_UPDATE_ALERT IS
         alert_button NUMBER;
    BEGIN
    alert_button := SHOW_ALERT('UPDATE_ALERT');
    IF alert_button = ALERT_BUTTON1 THEN
         COMMIT;
         MESSAGE('Record successfully updated.');
    ELSE
         ROLLBACK;
         MESSAGE('Record is not updated.');
    END IF;
    END;
    And i placed the procedure in Update button trigger 'When-Button-Pressed'
    Both compiled successfully..
    I run the form and update a record. When i click on 'Update' button in the form, it does show the alert. I click on 'OK' and it prompts out 'FRM-40400: Transaction Complete: 1 record applied and saved.'
    What should i do if i don't want that message (FRM-40400)?? I know it's indicationg that the record has been sucessfully updated.
    Thank you

  • Urgent ,Copy data form from one folder to another

    Hi all,
    I want to know how to copy a bulk of data forms in a folder X to another folder Y.Both X and Y folder under a common parent folder Z.
    Thanks,
    ColDFire

    If you wanted to just move them then you could of done it in planning.
    Otherwise you can try using LCM or the formdef utility to export to xml, update the folder name in the xml then import back in.
    Try it with one to see if it works, I doubt it will work if the folder name is the same but under a different parent.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Urgent Adobe PDF form as Attachment

    Hi experts,
    My need is when the user clicks on the Confirm button in Adobe form in Webdynpro ABAP, the Adobe form have to be saved as a PDF document within SAP and assigned to Material master Additional data. IS it possible to save the Interactive Adobe form as PDF within SAP?
    With Kind Regards,
    -RK

    Hi,
    First step is to create the DIR while using FM BAPI_DOCUMENT_CREATE2 ( don't forget to set a commit after calling it ).
    Second step, call your PDF forms while setting GET_PDF to true in the output_params structure.
    Here is a sample code for this second step
    * retrieve Function module link to the parameter form_name
      outputparams-nodialog = 'X'.
      outputparams-getpdf = 'X'.
      TRY.
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
      i_name = form_name
      IMPORTING
      e_funcname = fm_name.
      * Open a spool before generate the forms
      CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
      ie_outputparams = outputparams
      EXCEPTIONS
      cancel = 1
      usage_error = 2
      system_error = 3
      internal_error = 4.
      CHECK sy-subrc EQ 0.
      docparams-langu = language.
      docparams-country = country.
      docparams-fillable = fillable.
      docparams-dynamic = dynamic.
    * Call the form
    CALL FUNCTION fm_name
      EXPORTING
      /1bcdwb/docparams = docparams
      IMPORTING
      /1bcdwb/formoutput = formoutput
      EXCEPTIONS
      usage_error = 1
      system_error = 2
      internal_error = 3.  
      * Close the spool
      CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
      usage_error = 1
      system_error = 2
      internal_error = 3
      OTHERS = 4.
      CHECK NOT formoutput-pdf IS INITIAL.
      * Convert PDF into Binary Table
      binary_file =
      cl_document_bcs=>xstring_to_solix( ip_xstring = formoutput-pdf ).
      * Download the file
    * if you are online use this code
    cl_gui_frontend_services=>gui_download(
      EXPORTING
        filename                  = 'C:Tempsample.pdf'
      changing
        data_tab                  = binary_file
      EXCEPTIONS
        file_write_error          = 1
        no_batch                  = 2
        gui_refuse_filetransfer   = 3
        invalid_type              = 4
        no_authority              = 5
        unknown_error             = 6
        header_not_allowed        = 7
        separator_not_allowed     = 8
        filesize_not_allowed      = 9
        header_too_long           = 10
        dp_error_create           = 11
        dp_error_send             = 12
        dp_error_write            = 13
        unknown_dp_error          = 14
        access_denied             = 15
        dp_out_of_memory          = 16
        disk_full                 = 17
        dp_timeout                = 18
        file_not_found            = 19
        dataprovider_exception    = 20
        control_flush_error       = 21
        not_supported_by_gui      = 22
        error_no_gui              = 23
        others                    = 24 ).
    * If you are in background use this
       OPEN DATASET p_file FOR OUTPUT IN BINARY MODE.
        IF sy-subrc EQ 0.
          LOOP AT binary_file INTO w_binary.
            TRANSFER w_binary TO p_file.
          ENDLOOP.
          CLOSE DATASET binary_file.
        ELSE.
          RAISE file_open_error.
        ENDIF.
      CATCH cx_fp_api_repository
      cx_fp_api_usage
      cx_fp_api_internal
      cx_static_check
      INTO w_exception.
      RAISE EXCEPTION w_exception.
      ENDTRY.
      ENDMETHOD.
    Third step , add the file into the DIR
       lst_api_ctrl-no_update_task = 'X'.
        lst_api_ctrl-save_flag = 'X'.
        lst_api_ctrl-api_mode = 'X'.
        lst_api_ctrl-check_level = '0'.
        lst_api_ctrl-not_dequeue_all = 'X'.
        lt_files-langu = language.
        lt_files-active_version = 'X'.
        lt_files-checked_in = 'X'.
        lt_files-dappl = p_appl.
        lt_files-storage_cat = p_storcat.
        lt_files-filename = p_file.
        IF p_doc CO '0123456789 '.
          PACK p_doc TO lt_files-description.
          CONDENSE lt_files-description.
        ELSE.
          lt_files-description = p_doc.
        ENDIF.
        CONCATENATE text-d01 lt_files-description INTO lt_files-description SEPARATED BY space.
        APPEND lt_files.
        CALL FUNCTION 'CVAPI_DOC_CHECKIN' IN BACKGROUND TASK
          EXPORTING
            pf_dokar       = p_doctyp
            pf_doknr       = p_doc
            pf_dokvr       = p_docver
            pf_doktl       = p_docpar
            pf_ftp_dest    = 'SAPFTPA'
            pf_replace     = 'X'
            ps_api_control = lst_api_ctrl
            pf_file        = p_filewithpath
    *      IMPORTING
    *        psx_message    = lst_message
          TABLES
            pt_files_x     = lt_files.
    *   Contrôle des anomalies
    *    IF lst_message-msg_type CA 'EAX'.
    *      RAISE doc_checkin_failure.
    *    ENDIF.
    Hope this help you .

  • Urgent : Regarding Adobe Forms ,Scripts and Smartforms

    <i>
    Hi Floks
    Any body having Adobe Printing Forms ,Scripts and Smartforms documents Links can you send me to me . Its will be help full to me
    thanks
    suresh</i>

    Hi Suresh,
    SCRIPTS
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRPROG/BCSRVSCRPROG.pdf
    http://www.thespot4sap.com/articles/SAPscript_Introduction.asp
    http://www.onestopsap.com/sap-miscellanous/sap-script/
    http://sap.niraj.tripod.com/id19.html
    http://help.sap.com/saphelp_45b/helpdata/en/65/897415dc4ad111950d0060b03c6b76/content.htm
    http://www.thespot4sap.com/Articles/SAPscript_commands.asp
    Smartforms
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm

  • Urgent: pictures on forms 9i

    I'm trying to insert and query pictures within forms 9i.
    What is the code I should use to be able to call open dialog window so I can determine the location of my picture during the run time.
    I usually use the following code within form 6i:
    DECLARE
    TEMP_FILE VARCHAR2(500);
    BEGIN
    TEMP_FILE :=get_file_name(file_filter=>'allfiles(*.*)|*.*|',message=>'Select the picture'
    ,dialog_type=>open_file);
    if TEMP_FILE is not null then
    read_image_file(TEMP_FILE,'any','photo');
    end if;
    end;
    But it does not work within forms 9i.
    Any help will be appreciated.

    Your code is based on client/server architecture (in Forms 6i), but doesn't work in the web architecture of Forms 9i. To upload files from the client PC, you have to use webutil.
    http://otn.oracle.com/products/forms/htdocs/webutil/webutil.htm

Maybe you are looking for

  • [solved] [xorgserver 1.6.1] and the minimalist xorg.conf

    Hello new xorgserver users According to the recent xorgserver upgrade to 1.6.1 I've got blackscreen eachtime I started X. The only way to solve that problem (I'm driving a nvidia desktop) was to replace nvidia driver with xf86-video-nv and no use xor

  • Time Machine Endless/Very Slow Backup

    Hi All, I've recently encountered a situation in which Time Machine never seems to think it's finished backing up. In the screenshot below you'll see that it's backing up the exact same amount of data from my HD and an external drive called "Movies"

  • Authorizations for 'Launch Application..'

    Can somebody guide me in finding the Authorization for the 'Launch Application...' in the Tool bar? Thank Franz

  • CF8 read FMS shared objects

    How can I have CF8 Standard (w/out Flex) read a Flash Media Server shared object?  I just need to read it; there will be no modifications to the shared object.

  • Animating 3D objects imported from Photoshop

    I did a video project for a friend a while back in which I used PS to create a 3D object layer, then imported it to PP.  I was somehow able to rotate the object on the x,y, and z axis, and it maintained its extrusion depth and other shape properties.