Generation of FMX file

Hello!

I'm editing module Forms Builder 10g.
When I compile the module (CTRL + T), FMX file is generated in the same folder where the FMB.

Is it possible to configure Forms Builder to save the FMX file generated in another folder?


Thank you!

'No' - as far as I know.

Only, we tend to always work in the same directory and then just copy off the coast in a directory of execution.

Built system is managed in the batch (ie: a .bat file) and it will copy the off fmxs to the appropriate execution directory that I use.

Steve

Tags: Oracle Development

Similar Questions

  • Can we get the name of the fmx file when running

    Hi all
    can we get the name of the fmx file that performs a DML operation on a specific table, we can back track which fmx module did DML on a specific table. The reason why I need it because I have 7 fmx different files that make a DML operation on a specific table and these fmx files are used by different users. Not necessarily 1:1 for example. a user can do DML through 3 fmx different files. So in this case if I want to want to know what FMX file that DML has take place. How can I achieve that. I know I can get the oracle via session username $ v, but it is not enough for my needs. I need also the name of the fmx file.

    I use:

    Forms [32 bit] Version 10.1.2.0.2 (Production)
    Oracle Database 10g Release 10.2.0.1.0 - Production
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    AMT for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production

    Any help?

    Best regards
    Percy

    Percy,

    For this, you can set the Module field in the V$ session in each form

    DBMS_APPLICATION_INFO.SET_MODULE(MODULE_NAME => :SYSTEM.CURRENT_FORM, ACTION_NAME => USER);
    

    Write this in every form, and you will get the name of the form in the module field in the V$ SESSION form name.

    I hope this helps.

    Kind regards

    Manu.

  • How to operate. FMX file in 10g

    Hi all


    I'm new to forms. I use form 10g. Please tell me how to run. FMX file.


    Thanx.

    call the form_name.fmx of any button using call_form or open_form

  • Generation of the file (already DV AVI) PIC

    I have a few clips deliberately, I converted to AVI DV type 1 drain still continually system resources when I open them in a project of "files Peak Generation. Is not always hang, but sometimes I see a final at the end of the grip of PE7. I found the ultimate solution to encode as DV avi type 1. Any other suggestions appreciated, your

    Halfway there: DV - AVI Type 2 for PRE.

    See you soon,.
    --
    Neale
    Insanity is hereditary, get you your children

  • Is it possible to cancel the generation of pic files?

    Hi all

    Quick question: my plans are all compilations of various videos from many sources within our Organization. Very very rarely ever use native audio clips. Rarely I hear that it has been several years. There is music and voice-over.

    The problem is: my projects will have hours of original material (that I've got a now 6 hours from your HD source files), which are loaded and I use very well in my calendar, but point being generated files are huge and a lot of time. Since I use the audio, is there a way to disable the generation of the PIC file?

    On the other hand - if I delete the media cache files, creating simply will rebuild them once again?

    Thank you much in advance,

    Jonathan

    (BTW - CS4)

    # With base band material, you can try to capture the only and perhaps, video that will bypass the generation of the pic file. Try it and you will know.

  • automatic generation of the files using the time and date system

    Hi guys,.

    IAM trying to build a path for the creation of files automatically using system date and time. I'm running into errors with regard to the special characters in the file name. I'm trying to parse the string to get the date and time without the ' / 'and':' but have failed. is there a better way to do it? Help, please! I try to avoid a dialog box for the user to enter a file name.

    Thank you!

    V

    Here's a little experiment... may help build the %d (day) (month) of %m %(year) type stuff.

  • Generation of XML files in oracle procedure

    I have to generate a SQL query as XML files:

    • If the number of records in the query result exceeds 40 000 then the data must be divided into two XML files with different file names.

    Following XML file format:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <EMP_INFO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <EMP>
      <CR_NO>12345678</CR_NO>
      <EMPLOYER_NAME>ABC</EMPLOYER_NAME>
      <ID_NO>12345678</ID_NO>
      <EMPLOYEE_NAME>ABC</EMPLOYEE_NAME>
      </EMP>
      <EMP>
      <CR_NO>12345678</CR_NO>
      <EMPLOYER_NAME>XYZ</EMPLOYER_NAME>
      <ID_NO>12345678</ID_NO>
      <EMPLOYEE_NAME>ABC</EMPLOYEE_NAME>
      </EMP>
    </EMP_INFO>
    
    
    
    • Also, an XML file will contain information from XML file with the number of records in each file:
    <?xml version="1.0" encoding="utf-8"?>
    <Files>
      <File>
        <FileName>ABCD071120130001.xml</FileName>
        <CountOfRecords>499</CountOfRecords>
      </File>
    
    
      <File>
        <FileName>ABCD071120130002.xml</FileName>
        <CountOfRecords>9</CountOfRecords>
      </File>
    
    
    </Files>
    
    
    

    My PL SQL procedure follows, but throws an error:

    CREATE OR REPLACE PROCEDURE P_DATAXML AS
    BEGIN
    
      DECLARE
        XML_PROLOG    CLOB := '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
        xml_header    clob;
        xml_trailer   clob;
        tmp_xml       clob;
        tmp_file      clob;
      
        CURSOR C_REC IS  
        SELECT XMLELEMENT("EMP_INFO",
                                XMLELEMENT("CR_NO", "1234" ),
                                XMLELEMENT("EMPLOYER_NAME", "ABC" ),
                                XMLELEMENT("ID_NO", "9876541" ),
                                XMLELEMENT("EMPLOYEE_NAME", "XYZ" )
                 ).GETCLOBVAL() AS DATA_XML
               
          FROM TABLES;
      
      BEGIN
    
        -- create the temporary clob :
        DBMS_LOB.CREATETEMPORARY(TMP_FILE, TRUE);
      
        -- fetch records
        for r in C_REC loop
          DBMS_LOB.append(TMP_FILE, xml_prolog);
          DBMS_LOB.append(TMP_FILE, r.DATA_XML);
        end loop;
    
    
        -- write file to directory :
        dbms_xslprocessor.clob2file(TMP_FILE, 'CDIR', 'test.xml', nls_charset_id('AL32UTF8'));
        dbms_lob.freetemporary(TMP_FILE);
    
      END;
    
    END P_DATAXML;
    
    
    

    After my initial coding, I get the error made his first appearance on "dbms_xslprocessor.clob2file":

    ORA-21560: 3 argument is null, invalid or out of range

    ORA-06512: at "SYS." DBMS_LOB", line 991

    ORA-06512: at "XDB". DBMS_XSLPROCESSOR', line 324

    What could be wrong?

    You were on the right track. Continue to use SQL/XML, in special XML files XMLAGG logical global functions.

    The following should answer your initial needs.

    For this demonstration, I used resources. Table EMPLOYEES and a batch size of 100. It generates three files, 'file0001.xml' (100 records), "file0002.xml" (7 records) and a summary file:

    DECLARE

    file_desc_array xmlsequencetype: = xmlsequencetype();

    CLOB file_desc_xml;

    prolog1 CLOB: = '';

    prolog2 CLOB: = '';

    BEGIN

    for r in)

    Select xmlserialize (document

    XmlElement ('method'

    , xmlattributes ("http://www.w3.org/2001/XMLSchema-instance" under the name "xmlns: xsi" "")

    xmlagg)

    XmlElement ("EMP"

    xmlelement ("ID_NO", e.employee_id)

    , xmlelement ("EMPLOYEE_NAME", select)

    )

    )

    )

    ) as xmldoc

    --< generating="" summary="" record="">

    xmlelement ("file",

    xmlelement ("filename",

    , "file" | TO_CHAR (trunc ((rownum-1)/100) + 1, "fm0999"). ".xml".

    )

    xmlelement ("CountOfRecords", Count

    ) as file_desc

    -->

    , "file" | TO_CHAR (trunc ((rownum-1)/100) + 1, "fm0999"). '.xml' as file name

    of e hr.employees

    Group of trunc ((rownum-1)/100)

    )

    loop

    dbms_xslprocessor.clob2file (prolog1 | r.xmldoc, 'TEST_DIR', r.filename, nls_charset_id ('AL32UTF8'));

    file_desc_array.extend;

    file_desc_array (file_desc_array. (Last): = r.file_desc;

    end loop;

    Select xmlserialize (document

    XmlElement ("Files", xmlagg (column_value))

    )

    in file_desc_xml

    table (file_desc_array);

    dbms_xslprocessor.clob2file (prolog2 | file_desc_xml, 'TEST_DIR', 'summary.xml', nls_charset_id ('AL32UTF8'));

    END;

    /

  • Reissue and safe generation of jar files?

    Hi all.

    I was invited to recreate a link to exe files, as in:

    adrelink.sh force = y 'ad adadmin.

    Then to

    Regenerate the JAR files with FORCE option

    Regenerate forms and pll including the opening of FNDSCSGN.fmb in designer forms (f60desm) then connect to the db and select "compile all '.

    Recompile invalid objects

    Recreate a link to f60webmx (adrelink.sh force = y "fnd f60webmx") grant to recreate and synonyms recompile menus Recompile messages Ran "copy files to destinations.

    recompile the custom.pll

    As part of a SR. Is it safe to make a LIVE during opening hours system?

    Yes, I asked the analyst, I just wanted to check also with the community.

    Thank you.

    11.5.10.2

    11.2.0.3

    RHEL 5

    DA

    Dan,

    Stop application services before implementing the steps above and judge after opening hours.

    Thank you

    Hussein

  • Generation of PDF files leave marked TXTs

    Hello

    I have some TXT files thousands, who use a special syntax (a bit like Markdown text, but with hyperlinks and other things). I created a program that converts to a site Web HTML + CSS and it works very well for the online consultation. But I will generate a single PDF file of all of these TXTs marked for consultation offline. Now, from what I have gathered on the Internet, a (maybe the best) solution would be:

    1 laTeX

    but the LaTeX syntax is quite complicated, so I wonder if Adobe provides a kind of facilities for my case. An alternative: I thought:

    2 convert my website HTML + CSS to PDF with Acrobat Pro

    but I don't know if the result will look good and if hyperlinks will be preserved. Another solution, which does not have Acrobat Pro:

    3 control InDesign using a script to generate PDF

    but the problem is that these TXT files have a length variable (between 1 to 5 pages), and InDesign would force me to detect when a new page is needed.

    In summary, which of the 3 methods above would you recommend me?

    Thank you for your response. I'm done using the method you recommended.

    So, I changed the CSS it looks a little more than a print, I set up my Web site to a local address using "Apache HTTP Server", and then I used Acrobat Pro to convert my site in PDF format. In this way no Internet connection is involved.

  • Generation of CSV file with timestamp time information

    CREATE OR REPLACE PROCEDURE extract_proc AS

    number of l_rows;
    Start
    l_rows: = extract_function('select *)
    FROM table1 where date1 between trunc (sysdate) and sysdate
    ',
    ',',
    "MYDIR1,"
    "test.csv");

    end;

    I have a procedure extract_proc shown above which create a CSV file in the MYDIR1 directory on unix.

    I would like to have the timestamp ie ddmmyyyyHH24:MI details in the CSV file name created. That is to say. have a test22072011.csv file name each time it generates with respective timestamp prefix or suffix for the file number. Is it possible to achieve this

    Pls suggest

    Thank you very much

    Well well instead to call it test.csv change it to what you want

    'test'||to_char (sysdate, 'ddmmyyyy')||'.csv'
    

    Published by: Alex Nuijten on July 22, 2011 13:56

  • generation new peak file and audio every time I open the CS5.5 project

    Everytime I open this project, it generates the same tip as conforming to the audio file. It's frustrating because it's the same files everytime I open the project. Someone at - he encountered this before?

    peakfile.jpg

    The film was made through Cineform studio. It has been converted into an AVI to AVCHD file.

    I've heard say that if any type of utility key files, such as Time Machine on MAC, that this can lead to the regeneration of the peak files.

  • Generation of hlp files in RoboHelp HTML

    Is it possible to generate RoboHelp HTML version 9 .hlp files? We will generate help for a program files more former that uses only .hlp or .chm files. I've been able to generate RoboHelp for Word .hlp files, and I really don't won't use it. But I was not able to generate RoboHelp HTML .hlp files.

    Thank you.

    From what I remember reading here, the .hlp files cannot be created in the HR for the version of Word.

  • Record of WebHelp and problem generation AIR RoboHelp file

    Hello:

    I get a message "WebHelp file could not be copied" when I click on the button "Generate" in the wizard of SOUNDS. It does not show me the progress bar with the title 'Generate the package', but after a few minutes, I get the message "WebHelp file could not be copied. And then another message "Adobe AIR package could not be generated".

    My WebHelp file is 80 MB and contains 3700 files and subfolders 43.

    However, if I keep all the settings Assistant air even change, but ONLY the location of the WebHelp folder to the generated project output RoboHelp CustomerCare sample (2 MB; 224 files and 8 folders), and then the AIR file is generated successfully.

    This led to two possibilities:
    1. There is a limit on the size of the folder WebHelp to generate the AIR file successfully. Anyone know what is this upper limit?
    2. There is a certain file or type of file in my WebHelp file which is not present in the CustomerCare WebHelp file which could be the cause of the AIR conditioner break. This seems to want to since I have HTML files, JPEGs, GIF, etc. typical of the files used to WebHelp output.

    Can anyone help?

    Thank you
    K

    This problem is solved. I had this problem because of some files corrupted in the project. Once I deleted the files, I was able to generate the AIR file successfully.

  • .fmb and .fmx files

    Hello

    I have a local oracle app, so I don't have a machine server and clients. where is safe so store .fmb files, and other files such as photos or files of type blob? I store them in D:\Oracle\product\10.2.0\DevSuiteHome_1\forms\ but I don't know (that's why I'm asking) if it is a good solution, where it is recommended to back up these files, in the case of a client-server application? or they can be stored anywhere?

    D:\Oracle\product\10.2.0\DevSuiteHome_1\forms\ is a bad place, since there are so many forms installed stored files. You would have a difficult time determining who is required by forms, and those who are your tips.

    And besides, someone installed forms in your local tree of the database system.
    I have the local Oracle to the C:\oracle\product\10.2.0 database
    and forms to C:\oracle\DevSuiteHome_1
    But I guess that nothing bad is happening with this configuration.

    I keep fmb and other files related to work in another place. I suggest a place separated from the C:\Oracle\product\ tree, perhaps something like D:\Oracle\01\

  • Generation of CSV files

    Hello

    When I use the 'table in spreadsheet string' function, I get a programming space between the lines (see picture called error 2 )

    Anyone know how I can avoid this?

    It's really annoying me.

    Thanks for your help,

    Kind regards

    F

    feriel0209 wrote:

    Hello

    When I use the 'table in spreadsheet string' function, I get a programming space between the lines (see picture called error 2 )

    Anyone know how I can avoid this?

    It's really annoying me.

    Thanks for your help,

    Kind regards

    F

    Worksheet String.vi table add a transport (platform dependent) return charater at the end of the string. Use Trim Whitespace.vi (from the palette of String) to the output of the array to the worksheet String.vi to remove it.

    Ben64

Maybe you are looking for

  • CQ50-139wm upgrade

    CQ50-139wm upgrade ram and windows 7 to 4gig is possible

  • f1788a28-d356-4873-b634-9c6849a4815d

    What does that mean? How to get in touch with Apple if I get above on all the options for the reminder, chat online. I threw little matter what I try. I was overcharged on my account and need to talk to someone why its happened. Thank you.

  • Code reuse within the same VI (when he's not a Subvi)

    My last question here was awarded a point congratulations "to have been a big question", which is quite annoying, because my current skill level, it is hard to imagine the time when I will never be anything other than a "taker" of this forum!  So thi

  • Timer &amp; events system process

    I usually use a "smart" delay dealing with the events, but I wanted to use a thread separate to process system events. Wording of menchar here, I feel that using a timer, it is automatically in a different thread. Is this true?

  • trying to conect wi fi and wonder point trobleshoot or conection

    I need HELP I'm trying to connect to the wi fi and I get check conectivity and point to port, Please HELP