Hello Mr. Robin Zimmermann

I need your help in using Microsoft Tree command in forms 5.
i need your help in coding only. i am able to set properties, its methods etc.
but how to start its coding, i know vb .
regards
P.sathish
[email protected]

Hi Robin,
You are right that without a meaningful subject other people cannot come to know like what exactly you trying to get help on. But what I feel sometimes-odd subject lines also attract many people, like I am sure many people must have read this one. Mr. Pasupulati wanted your attention and he got reply from you. Lucky Guy. In any chance if you happen to read this (I am not trying what Mr. Pasupulati tried) but one of my problems that I am trying to solve for a long time, I guess no one has the right answer for it. It would be a great help if you say something on it. It goes like this - Toolbar disappears when error message window appears. I have developed a form using template 11i. Any suggestions.
True regards,
Rohit Singh
eJiva India
email: [email protected]

Similar Messages

  • Sending  mail using utl_smtp

    (Oracle 8.1.7)
    I'm using the following procedure to send an HTML formatted e-mail. It sends email but I'm seeing in Outlook html code instead of formatted mail. (It sends text like :
    a bit of text
    --a1b2c3d4e3f2g1
    content-type: text/html;
    <html><head></head><body><B>HELLO </B></body></html>
    a1b2c3d4e3f2g1
    What can I solve this problem?
    Thanks in advance...
    its usage :
    html_email('smo@....','smo2@...','This is a subject','a bit of text', '<html><head></head><body><B>HELLO </B></body></html>', 'some hostname',25);
    CREATE OR REPLACE procedure html_email(
    p_to in varchar2,
    p_from in varchar2,
    p_subject in varchar2,
    p_text in varchar2 default null,
    p_html in varchar2 default null,
    p_smtp_hostname in varchar2,
    p_smtp_portnum in varchar2)
    is
    l_boundary varchar2(255) default 'a1b2c3d4e3f2g1';
    l_connection utl_smtp.connection;
    l_body_html clob := empty_clob; --This LOB will be the email message
    l_offset number;
    l_ammount number;
    l_temp varchar2(32767) default null;
    begin
    l_connection := utl_smtp.open_connection( p_smtp_hostname, p_smtp_portnum );
    utl_smtp.helo( l_connection, p_smtp_hostname );
    utl_smtp.mail( l_connection, p_from );
    utl_smtp.rcpt( l_connection, p_to );
    l_temp := l_temp || 'MIME-Version: 1.0' || chr(13) || chr(10);
    l_temp := l_temp || 'To: ' || p_to || chr(13) || chr(10);
    l_temp := l_temp || 'From: ' || p_from || chr(13) || chr(10);
    l_temp := l_temp || 'Subject: ' || p_subject || chr(13) || chr(10);
    l_temp := l_temp || 'Reply-To: ' || p_from || chr(13) || chr(10);
    l_temp := l_temp || 'Content-Type: multipart/alternative; boundary=' ||
    chr(34) || l_boundary || chr(34) || chr(13) ||
    chr(10);
    -- Write the headers
    dbms_lob.createtemporary( l_body_html, false, 10 );
    dbms_lob.write(l_body_html,length(l_temp),1,l_temp);
    -- Write the text boundary
    l_offset := dbms_lob.getlength(l_body_html) + 1;
    l_temp := '--' || l_boundary || chr(13)||chr(10);
    l_temp := l_temp || 'content-type: text/plain; charset=us-ascii' ||
    chr(13) || chr(10) || chr(13) || chr(10);
    dbms_lob.write(l_body_html,length(l_temp),l_offset,l_temp);
    -- Write the plain text portion of the email
    l_offset := dbms_lob.getlength(l_body_html) + 1;
    dbms_lob.write(l_body_html,length(p_text),l_offset,p_text);
    -- Write the HTML boundary
    l_temp := chr(13)||chr(10)||chr(13)||chr(10)||'--' || l_boundary ||
    chr(13) || chr(10);
    l_temp := l_temp || 'content-type: text/html;' ||
    chr(13) || chr(10) || chr(13) || chr(10);
    l_offset := dbms_lob.getlength(l_body_html) + 1;
    dbms_lob.write(l_body_html,length(l_temp),l_offset,l_temp);
    -- Write the HTML portion of the message
    l_offset := dbms_lob.getlength(l_body_html) + 1;
    dbms_lob.write(l_body_html,length(p_html),l_offset,p_html);
    -- Write the final html boundary
    l_temp := chr(13) || chr(10) || '--' || l_boundary || '--' || chr(13);
    l_offset := dbms_lob.getlength(l_body_html) + 1;
    dbms_lob.write(l_body_html,length(l_temp),l_offset,l_temp);
    -- Send the email in 1900 byte chunks to UTL_SMTP
    l_offset := 1;
    l_ammount := 1900;
    utl_smtp.open_data(l_connection);
    while l_offset < dbms_lob.getlength(l_body_html) loop
    utl_smtp.write_data(l_connection,
    dbms_lob.substr(l_body_html,l_ammount,l_offset));
    l_offset := l_offset + l_ammount ;
    l_ammount := least(1900,dbms_lob.getlength(l_body_html) - l_ammount);
    end loop;
    utl_smtp.close_data(l_connection);
    utl_smtp.quit( l_connection );
    dbms_lob.freetemporary(l_body_html);
    end;

    This forum is for Forms questions. Try asking this on another forum, such as the database forum or the PL/SQL forum.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • How to load images from file system and save in database

    Hello Fellows!
    I have a problem and try to explain:
    Plateform:
    Operating System: Windows 98, Form 6i and Oracle 8
    Table in the database
    Table:Emp_pic with columns i.e. (empno and pic type long raw)
    In forms, I have a data block which contain the columns of the emp_pic table and a control block which have a push button contains the trigger as follow, also attach PL/SQL library i.e. D2kWUTIL.PLL
    When-Button-Pressed (Trigger)
    Declare
    temp varchar2(400);
    Begin
    temp := win_api_dialog.open_file('Open File','d:\pic','*.tif',true,win_api.ofn_flag_default,false);
    read_image_file(temp,'tif','emp_pic.pic');
    end;
    The problem when I pressed the button it does not display open dialog box what is the wrong with the code or else.
    Thanks in advance
    (BASIT)

    What do you mean "it did not work"? You need to post more information, such as what errors you got.
    My guess is that it did work, but it ran on the middle tier, which is where Forms is running. Commands like that need more work to execute on the client.
    Go to the Forms area on OTN and download the Oracle9i Forms Samples. They have demos and source code to move files from the client to the server.
    Coming soon will be a utility called WebUtil which will make this even easier.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Oracle9i Host and Text_IO Command Issues

    We are currently attempting to migrate from Forms6i to Oracle9i Forms. I understand that the current Host and Text_IO commands execute on the application server tier and NOT on the client. To counter the Host command issue the migration documentation suggests using the 'Client Host Command PJC' demo which can be incorporated into a form. However, the only Host command that seems to respond is the 'Notepad' command. I need to use other Host commands. Has anyone actually used the aforementioned 'Client Host PJC' in an Oracle9i form?
    Also, I am aware of a utility being developed by Oracle called 'WebUtil' which is suppose to simplify this process. Any idea when this utility will be launched and made available to developers? Thanks in advance for your help.

    Hello:
    Robin Zimmermann, [email protected] g feng and every one:
    I want to integrate a third party report (it is brio's sqr), so i must run sqr from form with host command.
    first i install 9i as on window 2000,sqr .manually run sqr on 2000,then call sqr from form
    with host command ,it is just work well.then i use web.showdocument push the report to end-user,my goal has get
    But when i do the same on aix 5l,host command seems not response .i can only run this command:
    echo hello &gt; /tmp/hello.log.
    other system command ,such as " chmod 777 /tmp/hello.log " can't execute ,who can help me or some other ideas?
    lixz

  • How to resolve patch dependencies on Solaris  8 or 9

    Hello,
    I need to apply some Solaris patches but these particular patches have other patch dependencies.
    Can anyone please advise in which order should I install these patches. I am aware of patchadd will install a
    patch(es) but I just need to know the order of installing them?
    Thank you.

    This forum is for Forms questions. You should ask your question on the appropriate forum.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Forms 9i/Forms 6i Push Button problems

    Hello All,
    I have a form that is using a bunch of Push Buttons. Each of these Push Buttons has a Access Key assigned to it.
    The main canvas is a tab canvas and there are some stacked canvases too. All of them are being displayed on the same window.
    If I press the access key a Push button when it is not being displayed on the screen, it still executes the When-Button-Pressed Trigger and is causing me some pain.
    How can I stop the When-Button-Pressed trigger from executing when the Push Button is hidden from view ?
    Your help will be greatly appreciated.
    Thanks
    Sriram

    You could make the button disabled when it is hidden.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Error en Forms server 6i in Linux

    Hello!,
    I am trying to execute forms in Linux, which were created in Windows, have created myself a file for this (I put but below), but when I execute it he/she always gives me the same error,FRM-91500: Unable to start/complete the build. Somewhere around in some message I have read that it could be because it was low the Form60_Server this running.
    I attach but below the compilation script
    Please I need a help!!
    Thank you!!
    Anibal Duardo
    Here de scrit
    #!/bin/bash
    export DISPLAY=galadriel.libertad:0.0
    # Variables para entorno de Forms
    export ORACLE_HOME=/home/oracle8i/formrep
    export ORACLE_SID=inmob
    export MODULOS_FMB=$ORACLE_HOME/tools/web60/html
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    #:${LIBRARY_PATH}
    export TK60_ICON=$ORACLE_HOME/tools/devdem60/bin/icon
    export UI_ICON=$TK60_ICON
    export DEMO60=$ORACLE_HOME/tools/devdem60
    # Variables para Form Runtime
    export FORMS60_PATH=$ORACLE_HOME/tools/devdem60/demo/forms
    export FORMS60_TERMINAL=$ORACLE_HOME/forms60/admin/terminal/US
    # Variables para Reports
    export REPORTS60_PATH=$ORACLE_HOME/tools/devdem60/demo/reports
    export REPORTS60_TERMINAL=$ORACLE_HOME/reports60/admin/terminal/US
    export REPORTS60_TMP=/tmp;
    # Variables para el Forms server
    export OWSPORT=9191
    export FORMS60_UNKNOW=$ORACLE_HOME/guicommon6/tk60/admin/tk2Motif.rgb
    export FORMS60_OUTPUT=/tmp
    export FORMS60_MAPPING=http://192.168.3.3:$OWSPORT/web_temp
    export FORMS_REPFORMAT=html
    # Variables para Graphics
    export GRAPHICS_WEB_DIR=$ORACLE_HOME/tools/devdem60/demo/graphics
    export OWS_IMGS_DIR=$ORACLE_HOME/tools/devdemo60/web
    # Project Builder
    export ORACLE_AUTOREG=$ORACLE_HOME/guicommon6/tk60/admin
    # User specific environment and startup programs
    export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
    f60genm module=$MODULOS_FMB/modulo.fmb userid=scott/tiger@pppp > result.log

    Somewhere around in some message I have read that it could be because
    it was low the Form60_Server this running.You can replace the FMX if it is being used. Did you try it with the server shutdown and all runtime processes stopped?
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Problem's users

    Hello to all,
    Before i don’t have the problem for the administration’s user.
    But now I can’t create new users and get LOV from the users, there is always the error:
    “Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.”
    I checked my error_log,
    [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_val_on.gif
    [error]File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_val_off.gif [error]File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/btr_abonnez_on.gif
    [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/btr_abonnez_off.gif
    [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_con_on.gif
    [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_con_off.gif [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_mod_on.gif [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_mod_off.gif [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_ok_on.gif [error] File does not exist: c:/ora9ias/apache/apache/htdocs/picts/v_bt/b_ok_off.gif
    In fact there is not a folder “picts” in c:/ora9ias/apache/apache/htdocs.
    Thanks for your help!

    You'll need to supply more information if you'd like some help. You haven't actually said what is going wrong, what errors you're getting, etc.
    Regards,
    Robin Zimmermann.

  • How can I create a Forms9i Runtime for client distribution

    Currently we have an application developed in Forms 5.0.6.8.0 our Database has been upgraded to 9i DB. The application is working fine with this combination but we want to upgrade Forms in order to get Oracle Support. We just get the Developer Suite 9i package and we're trying to test our application with this software.
    How can I create the client runtime for Forms 9i?
    My application will work with Win 95 and 98?
    Thanks.

    Oracle9i Forms is web-only. Forms 6i is the last release of Forms to have client/server and character mode.
    You can test Forms from the Builder by installing iDS. To deploy Forms using iAS follow the documentation. It's all there in the deployment guide.
    iAS and Forms doco can be found on OTN.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Sorting at Form Level

    Dear All,
    thanx for my earliar queries, tahnx a lot.
    i am working on Forms 6i / Oracle 8i.Actaully, i need to sort some records on form level, which i got populated in the form one-by-one by the primary key.
    pls, suggest me how to proceed.
    Inderjeet Singh

    It's not Forms that does the sorting, but the database. That's why you modify the ORDER BY clause of the block; Forms passes it to the database which modifies the query accordingly.
    So one option is to base your block on a view, which can include your derived field. This is useful for sorting on things like foreign key lookups.
    If the thing you want to sort is not in the database, then you can implement your sort using PL/SQL and manipulating the blocks using the block and record built-ins.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Ipod doesn't show up in new itunes

    I just upgraded to itunes 12.0.1.26 and now my ipod (4th gen touch, iOS 6.1.6) doesn't show up anymore. I've tried restarting and I've checked for Apple Mobile Device Support, which is as far as my troubleshooting knowledge goes. I'd be grateful for any suggestions.
    Thanks!

    Hello again, robin.
    Thanks for the update on your issue. Due to the nature of your issue you may find more information by using another one of Apple's support resources - https://getsupport.apple.com/GetproductgroupList.action to get a more hands-on response.
    Cheers,
    Pedro

  • Problem in Oracle net8 easy config. URGENT

    Dear All,
    I need your favour, actually i instatlled Forms6i on windows XP it is installed successfully and every component(Forms, Reports) are opening without any problem. But whne i am going to configure my Net Services through Oracle Net8 Easy config it is giving close illegal operation,
    Note: i do not have any oracle product installed on my m/c except forms6i.
    Please send me some solution as early as possible.
    Thanx a Lot
    Krishna

    Windows XP is not yet a certified platform.
    That said, why not modify your tnsnames.ora file manually using a text editor.
    Regards,
    Robin Zimmermann
    Forms Product Management.

  • SOLUTION: Installing 10.1.3.1.0, 10.1.3.3,0 and 10.1.3.3.1 on Vista

    Oracle SOA Suite is not yet certified on Windows Vista, but you can get it to work if you know the gotchas. These steps worked for me. If you needed to do some extra steps, please reply to this post.
    Some of this information comes thanks to the people in this thread:
    SOA Suite for windows vista
    That has links to other threads and help, including this useful blog:
    http://www.approach-alliance.nl/index.php?option=com_jd-wp&Itemid=2&p=52
    Installing 10.1.3.1.0
    This installtion is the full release (as opposed to a patch). The most common problem is the Configuration Assistant failing on the OWSM configuration.
    1. You need to disable IPv6 (the up-and-coming replacement for the IP address convention). The steps are described in Note 444112.1 which can be found on Metalink. You can also find instructions elsewhere on the web (hint: try Google). Alright, I'll do it for you -- you can find the instructions on this page:
    http://www.microsoft.com/technet/network/ipv6/ipv6faq.mspx
    2. Before starting setup.exe for SOA Suite, right-click it and choose Properties. Change the compatibility mode to Windows XP (Service Pack 2).
    3. Run setup.exe and the installation should work.
    Installing 10.1.3.3.0 or 10.1.3.3.1
    This is a patch installation that has to be installed into an existing 10.1.3 home.
    The most common problem is the installer hanging at 84%.
    1. Again, run setup.exe in Windows XP compatibility mode.
    2. At 84%, the installer attempts to start the SOA Suite instance. Let it hang for a while until your server is fully started.
    3. Using Task Manager (or even better, Process Explorer from Sysinternals -- it's free) kill any opmn.exe processes that are running.
    4. Immediately start them again. (Run opmnctl startall on the command line from SOA_HOME\opmn\bin).
    5. The installer will continue. At first it won't seem like it is, it sits on 84% for a little bit. But give it a couple of minutes and it should continue.
    6. Later in the Configuration Assistants screen, it will hang on the second (and final) step which is the OPMN configuration. The output in the details section will say:
    opmnctl: starting opmn and all managed processes...Again, give it some time until you think the server really is fully started.
    7. Shutdown the server. (Run opmnctl shutdown on the command line from SOA_HOME\opmn\bin). This will allow the installer to continue. As it turns out, starting the server was the last thing the installer was going to do anyway, so the installation ends immediately.
    8. Everything should work now. Well, once you start the server that is. I got an error in the BPEL Console when I tried to open it. The fix for that is described here:
    SOLUTION: BPEL Console error with 10.1.3.3 or 10.1.3.3.1 patch
    The starting and stopping of the server in the steps above are probably not the most efficient. But they worked for me.
    If you tried the steps in this post, please reply here with your results so we can see if they are helpful or not.
    Regards,
    Robin.
    Message was edited by:
    Robin Zimmermann
    Message was edited by:
    Robin Zimmermann
    Message was edited by:
    Robin Zimmermann

    Thanks Robin. I was installing patch 10.1.3.3 over the existing 10.1.3.1 in Windows Vista, I encountered the same problem as you have described here.
    You solution worked perfectly for me !
    Thanks,
    Joe

  • Problem with NOCOPY compiler hint in form library

    When compiling the following code in a package as part of a PL/SQL library attached to my version 6 form, I get the error below.
    The error does not occur if I remove the "NOCOPY" compiler hint. Anyone know what the problem is?
    TYPE duplicate_id_tab IS TABLE OF duplicate_id_rec;
    PROCEDURE find_duplicate_ids (pidm_dupes IN OUT NOCOPY duplicate_id_tab, LName_in IN VARCHAR2,FName_in IN VARCHAR2);
    Error 103 at line 13, column 59
    Encountered the symbol "DUPLICATE_ID_TAB" when expecting one of the following:
    :=,),@ % default character
    The symbol ":=" was substituted for "DUPLICATE_ID_TAB" to continue.

    I posted an answer to this but it seems to have failed, so I'll send it again.
    The NOCOPY reserved word appeared in PL/SQL 8.1.x. Forms 6i uses PL/SQL 8.0.6. Therefore, you can't use NOCOPY in Forms 6i.
    Oracle9i Forms uses a later version of PL/SQL, so it works. I already tested in Oracle9i Forms for you.
    We do not change the RSFs except in a major release. Therefore, no version of Forms 6i will support NOCOPY.
    Regards,
    Robin Zimmermann
    Forms Product Management.

  • D2kwutil running with Forms6i under Windows XP

    Hi
    I'm trying to run D2kwutil.pll version 6.0.6.0 with Forms6i 6.0.8.8.0 under Windows XP and it's not working when I try to call WIN_API_FILE package. I tryed to run the demo form (WAPIDEMO) that I downloaded with the PLL but they don't run either - As a matter of fact, this form don't open.
    Does anyone know what can I do to solve, I mean, to run this PLL under Windows XP - if it is possible?
    Thanks
    Joco Novaes
    System Analyst - CREMESP
    [email protected]

    How can anyone help if you don't describe the problem? Saying "it doesn't work" is of no value whatsoever.
    Regards,
    Robin Zimmermann
    Forms Product Management Not to be critical or anything Robin, but publicly berating and humiliating your customers doesn't help anyone either.
    This is especially true when its obvious from the name and the return email address that the person is Brazilian and is at least making the attempt to communicate the issue in English. Would you have understood their problem better if they'd used their native tongue? Obviously something didn't translate well - and it came accross as "its broken".
    And by the way, the customer did describe some of what was wrong... they attempted to open a specific demo form, which came bundled with the PLL file from YOUR company, and it wouldn't even open. They are running XP and Forms 6i, which as far as I last knew was not a certified product combination (which is likely part of the problem).
    A little effort (and a kind word) might go a long way toward finding a solution. And if you're just burnt out or having bad day, try to remember that its not OUR fault.
    With all due sincerity,
    John Julian
    john (dot) julian@verizon (dot) net

Maybe you are looking for

  • How to catch the value in sum(control break statement).

    hi, can any one tell me how to catch the value in sum in control break satament. ex. at end of brtwr. sum. endat. I need to print the value in sum only. I tried to declare a varaible of type i and assigned sum to this variable. it is giving syntax er

  • Weblogic 6.1 sp5 core dump by OCI driver

    I have encountered a core dump problem on weblogic server 6.1 SP5 the error message as below, I am using weblogic oci driver for oracle "libweblogicoci37.so" , anyone can help? An unexpected exception has been detected in native code outside the VM.

  • Short dump when database updating

    Hi all,        I'm updating database by using insert statements.  i'm deleting all the duplicate entries. eventhough i'm getting dump. dump error is like this " If you use an ABAP/4 Open SQL array insert to insert a record in     the database and tha

  • ORA-1650: unable to extend rollback segment

    Hi, We have 20 RBS's and in our production instance we got very frequent alerts related to ORA-1650: unable to extend rollback segment continuously. When I looked for select STATUS from v$rollstat; I could see most of them are with FULL status. after

  • What is up with this????

    I have recently purchased 2 new iMacs for my classroom. We were using eMacs with iMovie6 and life was good......with the new computers we find a huge disappointment in the new version 8. Today I installed the im6HD cd and im8 disappeared. I searched