WebUtil and DDE-package

Hello,
does anybody know, if there will be something like a CLIENT_DDE-package (related to the old DDE-package of forms) in webutil. The first announcements of Oracle about WebUtil told so, but now there is nothing left about it.
Any suggestions?
Thank you in advance!

Roelof J van Suilichem
In forms 9i, which is on web architechture, does DDE work ?
i.e. if I want to read a .xls located on a network drive, and load that data into a table, is it possible using DDE in forms 9i.
Thanks

Similar Messages

  • I need any documents OLE2 and DDE package

    Dear all,
    I need to fully explanation OLE2 and DDE package. Pressing F1 provides very limited help for me. Anyone here have or know some links of any reading materials
    (e-books, documentation)?
    Please share
    thanks
    regards

    Google is your friend.
    Check Forms online help it has enough information to work with.

  • OLE2 and DDE package books

    Hi All,
    I need to fully understand OLE2 and DDE package. Pressing F1 provides very limited help for me. Anyone here have or know some links of any reading materials(e-books, documentation)?
    Please share... I'm drowned with my tasks here.
    Thanks!

    DDE is seriously outdated and should only be considered as a last resort. As for OLE2, concern yourself not with learning the OLE2 package, but instead, with understanding OLE automation. The OLE2 package is just a wrapper that makes it possible to manipulate OLE automation servers from PL/SQL. Once you understand OLE, using OLE2 should come easily.
    I learned OLE automation as a Visual Basic developer, before ever working with Oracle, and found it to be fairly straightforward. The easiest and cheapest way to learn OLE automation is by using Microsoft's Visual Basic for Applications IDE -- an Office component. Search this forum using keywords VBA and Tutorial, and you will find information that should hopefully prove helpful.
    As for Mark's assertion that XML provides a simpler solution, there are important differences between the XML and OLE approaches. The XML approach involves simply creating a document, whereas the OLE approach involves instructing the OLE server application to create a document. XML might be perfect, for example, if you wish to create Word documents on a *NIX server.  On the other hand, when your environment permits it, OLE makes it possible to leverage application functionality, like Excel's data analysis functions.
    Eric Adamson
    Lansing, Michigan

  • Webutil and DDE problem

    Hello,
    We are running into a problem web-enabling a client-server Forms application. We are using WebUtil for HOST and OLE calls and sending files between client and app-server and it all works really marvelous. But we noticed that the DDE package is not available in WebUtil. Unfortunately for us, we are using DDE calls to interact with MS Word (for example merging template letters with address-data) and MS Excel (filling out template sheets with data).
    Can you tell me if DDE will be available in future releases of WebUtil? And, if not, is it (generally) possible to rewrite the DDE-calls to OLE-calls using WebUtil's CLIENT_OLE functions? And what DDE-functionality maps to the corresponding OLE-functionality?
    Or, if it's not possible to rewrite DDE to OLE, what are the alternatives? Removing the interaction between web-forms and MS Office is NOT an option ;-)
    Thanks in advance,
    H. Verschuren

    var shell=new ActiveXObject("WScript.shell")
    var command=null
    var key
    try {
    key="HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Office\\11.0\\Word\\InstallRoot\\Path" /* Word 2003 */
    command= shell.RegRead(key);
    } catch (e) {
    try {
    key="HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Office\\9.0\\Word\\InstallRoot\\Path" /* Word 2000 */
    command= shell.RegRead(key);
    } catch (e) {
    try {
    key="HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Office\\8.0\\Word\\InstallRoot\\Path" /* Word 97 */
    command= shell.RegRead(key);
    } catch (e) {
    command="\"" + command + "\\Winword.exe\" ftp://10.100.x.x\\ftpshare\\macros.dot -mMyMacro"
    shell.run(command,1,false)
    I must learn to monitor threads after I have contributed.

  • WebUtil and dde

    Does web util have any DDE related functionality?

    If you want to load it into a table it would be better to transfer it onto the application server or straight onto the database and process it there (there was a thread on loading xls into the database this week on OTN).
    Using webutil calls would probably be costly in terms of performance.
    Regards
    Grant Ronald
    Forms Product Management

  • How to use DDE package in form 10g module

    Hi All,
    I am using DDE.package in form 10g for uploading excels data in oracle database at windows platform but it is showing non-oracle exception.
    Thanks

    hi
    mehwish............just do for attachment.......
    u can also use something like this...
    Execute send_mail;and also.
    try something like this..
    example:
    begin
    mahi.mail('email address','subject','message','attachment');
    end;Edited by: Sarah on Apr 18, 2011 10:25 AM

  • DDE Package refusing to take more than 265 CHAR

    Dear all,
    i'm using Oracle 9i, i'm using the DDE package to get data from Excell
    this is my code
         DECLARE
         CONVID PLS_INTEGER;
         AppId PLS_INTEGER;
         BUFFER VARCHAR2(5000);
         LEN NUMBER;
    BEGIN
    AppId := Dde.App_Begin('C:\Program Files\Microsoft Office\OFFICE11\Excel.exe C:\abc.xls' , DDE.APP_MODE_MAXIMIZED );
    CONVID := DDE.INITIATE('EXCEL','C:\abc.xls');
    DDE.REQUEST(CONVID,'R7C6',BUFFER,DDE.CF_TEXT,10000);
    :DATA:= BUFFER;
    DDE.TERMINATE(CONVID);
    DDE.APP_END(APPID);
    END;
    the R7C6 cell contain a text of 270 character. in the buffere it is returning only 265 character.
    if anyone please can tell me what cuase this.
    Message was edited by:
    nbreik

    If changing the data type to CLOB is NOT a option at the moment then you can work around using DBMS_SQL to get the LENGTH of the LONG column.
    Something Like what I have below (Not tested) –
    In this Function, I am passing the “Id” <Key> of the record to search and check the length of the LONG column. You can chose to pass ROWID instead.
    Declare
    lRtnLen Number := 0;
    FUNCTION fn_len_long_str ( p_RecId In Number )
    RETURN number As
    mycursor Integer default DBMS_SQL.open_cursor;
    l_x number;
    l_long_value varchar2(32760);
    l_len_of_long number;
    l_blen number := 32760;
    l_pos number := 0;
    BEGIN
    DBMS_SQL.parse( mycursor, 'select col2 from Test3 Where Col1 = :pCol2',
    dbms_sql.native );
    DBMS_SQL.bind_variable( mycursor, ':pCol2', pId );
    DBMS_SQL.define_column_long(mycursor, 1);
    l_x := DBMS_SQL.execute(mycursor);
    if (dbms_sql.fetch_rows(mycursor)>0)
    then
    loop
    DBMS_SQL.column_value_long(mycursor, 1, l_blen,
    l_pos ,
    l_long_value, l_len_of_long );
    l_curpos := l_pos + l_len_of_long;
    EXIT when l_len_of_long = 0;
    end loop;
    end if;
    DBMS_SQL.close_cursor(mycursor);
    RETURN l_curpos;
    exception
    when others then
    END fn_len_long_str;
    Begin
    lRtnLen := fn_len_long_str (Pk_Of_The_Table);
    Dbms_output.Put_Line ('Len Of LONG = ' || lRtnLen);
    End;
    /

  • I have just purchased photoshop elements and premiere package. I tried to download them but it tells me the serial numbers are inapplicable. I notice the platform says windows and I am using a mac book pro.  It didn't give me an option when purchasing. wh

    I purchased Photoshop Elements and Premiere package today.  I have been trying to download them but it tells me the serial numbers are inapplicable.  I am using a mac book pro and I have just noticed that the platform in my receipt says 'win" .  I don't remember being given an option for mac or windows  when purchasing.  what can i do now?

    Return, cancel, or exchange an Adobe order

  • Where can I get a list of products for design and web packager?

    Hi I need to create a package and the packager lists all the available software. What are included in the design and web?
    Adobe CC 2014 Design & Web Premium:
    – Adobe Photoshop CC
    – Adobe Illustrator CC
    – Adobe InDesign CC
    – Adobe Dreamweaver CC
    – Adobe Flash Professional CC
    – Adobe Fireworks
    – Adobe Acrobat Pro
    – Adobe Muse CC
    – Adobe Edge Animate CC
    Which of the following can be included:
    Scout
    InCopy
    Gaming SDK 1.3
    Extension Manager CC
    Extended Toolkit
    Exchange Panel
    Edge Reflow
    Edge Code
    Bridge
    Cheers.

    Hello InquiringMind,
    Ray is absolutely right (thanks Ray!). Something that I would encourage you to do since it sounds like you are starting to dive into TestStand is take one of our customer education classes. We have TestStand I and TestStand II available at many different locations throughout the US and World. To sign up please visit ni.com/training or call 866-ASK-MYNI and we can help you out.
    With warm regards,
    David D.

  • Error while transporting PCs and Info packages frm dev to qa

    Hello Guyz
    First of all, I am new to this forum. Heard a lot about it, and I hope I can learn a lot by the exchange of information in this forum. I ve already gone through so many threads, and have gained a lot of insight in BW.
    I have an issue, where I am transporting process chains and info packages from dev to qa. But the transports have thrown errors, saying that the 'Source System XXXCLNTXXX does not exist and info package has been deleted'.
    My question: How can I transport these objects in such a way that the loads which were going from ECCDEV to BWDEV, now go from ECCQA to BWQA? Are there any settings in SE09 or SE10 or somewhere in BW where I can do this?
    Thanks in advance.
    Atul.

    Hi Atul........
    There is no such settings........check this.......
    How to transport BW object
    Anyways.....I think there is some problem in the Client name.......Just check the Source system name in RSA1...........if it has been changed somehow........then run transaction BDLS and change the source system assignment........
    Regards,
    Debjani......

  • Webutil and SQLLDR

    It used to be on the client server when we run a batch file with sqlldr from a form, a cmd window would open and we can actually see a count of the records, and if we want we could make it that the user would have to click a button to close the cmd window and return to the form.
    Now with the web version and webutil, I was able to make the batch file work and the data is loaded into a table, however, when the cmd window opens, it stays blank and you cannot see what is happening.
    Is there a way to get the same performance as the client server version?
    Thanks
    George

    Hi,
    You can read the output/log file using textio (implemented through webutil)
    and give a message to the end user.
    Alternatively use the webutil host to open a command window and pass batch file which will do the sql ldr ....
    Rajesh Alex

  • WebUtil and Jacob Setting for AIX Server

    Dear All
    I am using forms 10G.
    I have done the setting for webUtil and Jacob in my pc for browse button to be and it is working fine .
    But can any one please tell me the steps for implement these things in AIX server .I mean how to configure this to utility Webutil and Jacob in AIX server .
    Kindly anyone tell me what needs to be done in server for webutil ?
    Edited by: LuKKa on Sep 22, 2010 12:01 PM

    the steps are same as in other supported systems.
    Since my blog is failed to help you then i will recommend you to do some more reading ...
    Read the docs http://www.oracle.com/technetwork/developer-tools/forms/webutil-090641.html

  • Webutil and Office 2010

    Has anyone else experienced any issues with webutil and MS Office 2010? We save .xls files to .csv and upload via webutil (10g). We are getting an error that the file on the root directory cannot be found, although it does exist. We found that if we saved as Office 2003 and then as a .csv file, it sometimes works. We never had this problem before upgrading to Office 2010. I ran the form in debug and confirmed it is bombing out on the client_text_io open command.
    thanks in advance

    I think we figured out it was also a Windows7 issue more than Excel. The Windows7 doesn't have a temp directory any longer, but we were able to create another directory (with a more meaningful name) and read/write to it. The webutil works fine now. Seemed like it was maybe a root directory permissions problem.
    thanks

  • WebUtil and ActiveX

    What is the correlation between WebUtil and ActiveX?
    The reason I ask is that we have successfully installed WebUtil on our 9iAS R2 apps server and the Webutil forms that were created all work perfectly on site.
    However our WAN covers sites all over the UK and the majoiry of these sites have all ActiveX settings disabled for security reasons. When accessing from one of these sites the form correctly loads all the .dll and .jar files but the CLIENT_TEXT_IO procedure will not operate.

    ... one thing I forgot. Duncan Mills, who could answer this question a lot better than I can, is on vacation this week.
    Frank

  • Webutil and XP

    Hi,
    We have a form in which we use the call web.show_document(l_url, '_blank'), where l_url is a location of an html file on a local pc. Then in a
    seperate browser the html file is shown.This works fine for our application.
    Now some users are migrated to XP as OS, instead if 2000.. For these users no webbrowser is started after the call to show_document. In the
    javaconsole is also no error seen. It is just that nothing happens.
    In IE and Firefox this problem occurs.
    Is there an issue between webutil and XP? Or is this a different kind of problem?
    Richard

    Thx for quick reply..
    We tried it.. But, problem keeps existing...
    We also tried XP and IE6... again no browser appears ...
    This is the information in the Java Console..
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\OPERATORProxy Configuration: Manual Configuration
    Proxy: dasproxy:80 Proxy Overrides: <local>JAR cache enabled
    Location: C:\Documents and Settings\OPERATOR\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0----------------------------------------------------
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://xxxxx:7778/forms/java/frmall_jinit.jar from JAR cacheLoading
    http://xxxxxxx:7778/forms/java/frmwebutil.jar from JAR cacheLoading
    http://xxxxxxx:7778/hsd65java/hst65.jar from JAR cacheLoading
    http://xxxxxxx:7778/dasimages/das_images.jar from JAR cacheRegisterWebUtil
    - Loading WebUtil Version 1.0.6
    Loading http://xxxxxx:7778/forms/java/jacob.jar from JAR
    cacheproxyHost=nullproxyPort=0connectMode=HTTP,native.Versie van Forms-applet is: 10.1.2.0

Maybe you are looking for

  • [SOLVED] Puzzled: Web site visible on network but not outside network

    Edit: Ok, nevermind . . . somehow the problem has resolved itself. Perhaps my ISP was having a bad hair day or something. I'm puzzled by this small problem I'm having. It is NOT a critical problem or anything, just something I'd like to solve. I've i

  • Folllowing instructions to create profile in Firefox

    I got halfway through profile instructions (open utilities>open terminal) - window name: Terminal-firefox-bin-80 x 24 Terminal-firefox-bin-80 x 24 continuing with creating profile - I think In the window Firefox - Choose User Profile, I followed the

  • Active tab in tab_strip

    Hi,      I have a tebstrip with 4 tabs and a button in my view if i click the button the tab 1 should be selected in the tabstrip. please let me know how to do this in codeing. Regards, Kumar K

  • IPhone Cable Cracked

    I noticed today that my iPhone cable has cracked right behind the connector that goes to the USB piece. The cable still works but I was wondering would this be covered under the warranty? Would I be able to go to an Apple Store to get a replacement o

  • Songs NOT Recognized  IDK W2D :-/

    I recently upgraded to a iPod Touch from a 30GB iPod Video...I backed up my library on an external but when I started to add my music to the new device I noticed that not all the files transferred :-/ The files are in MP3 format and I also noticed th