Globals.jsa application object problem

Hi...
I have tried the following code:
<event:application_OnStart>
String str = "test";
application.setAttribute("str",str);
</event:application_OnStart>
in the globals.jsa and I get a method not found for the setAttribute method, can anyone help ? My environment is iAS (win)

try to launch cmd.exe /C
it has help me to quit fine cmd...
Tell me,
Buddy20x
www.buddy20x.com
> Hi-
>
> I have an application object that points to a batch file. The batch
file
> basically just does a map del, map, sets a few variables and then calls
a
> Cobol executable. This works fine under NT4.
>
> However, on XP, the first time I click on the application object, the
dos
> box opens and hangs after the map command, but does map the drive (can
be
> seen through explorer). The second time I click on the object, it now
> works and the cobol program loads. (because the drive is now already
> mapped)
>
> If I put a pause in the batch file after the map command, everything
works.
> So, the problem seems to be some sort of timing issue with getting the
> network drive mapped or having it visible to that ntvdm/cmd.exe session.
>
> Also, if I don't use the application object and just click directly on
the
> batch file, it works fine on XP ??
>
> What is it about the application object calling the batch file and
loading
> cmd.exe that could cause such a problem? We lock down our users so they
> can't run files/programs directly so I have to give them an application
> object to start this app?
>
> Any ideas?

Similar Messages

  • How to Use AccessibleObjectFromWindow API in VBA to Get Excel Application Object from Excel Instance Window Handle

    I need to get the Excel.application object from a window handle using AccessibleObjectFromWindow. I can't seem to make the code work. First, I successfully search for the XLMAIN windows. Then, when I get a handle, I execute the AccessibleObjectFromWindow
    function. It seems to return a value of -2147467262 in all cases. Therefore, I believe that it is returning an error value. I can't figure out how to determine the meaning of this value.
    If it is an error value, I believe that one or more arguments are in error. My best guess at present is that the GUID argument is incorrect. I have tried two GUID values: {00020400-0000-0000-C000-000000000046} and {90140000-0016-0409-0000-0000000FF1CE}.
    I have seen both used in conjunction with OBJID_NATIVEOM. Neither one seems to work. I really would prefer not to use the second one as it has an Excel major and minor version number. I would hate to have to change this code, if a new minor version appeared.
    The attached code has been commented to show which parts have been shown to work and which not. I'm at my wits end and really need help.
    Thanks
    'This module is located in Access 2010, but this is an Excel question.
    Option Compare Database
    Option Explicit
    ' Module-Level Declarations
    'The GetDesktopWindow function and FindWindowEx function work just fine.
    Public Declare Function GetDesktopWindow Lib "user32" () As Long
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, _
    ByVal hWnd2 As Long, _
    ByVal lpsz1 As String, _
    ByVal lpsz2 As String) _
    As Long
    'I'm not getting the expected output from this function (see below)
    Private Declare Function AccessibleObjectFromWindow& Lib "oleacc.dll" _
    (ByVal hwnd&, _
    ByVal dwId&, _
    riid As GUID, _
    xlwb As Object)
    Type GUID
    lData1 As Long
    iData2 As Integer
    iData3 As Integer
    aBData4(0 To 7) As Byte
    End Type
    Function ExcelInstances() As Long
    ' Procedure-Level Declarations
    ' Value of OBJID_NATIVEOM verified by checking list of Windows API constants _
    on this site: http://www.lw-tech.com/q1/base.htm
    Const OBJID_NATIVEOM = &HFFFFFFF0
    Dim hWndDesk As Long 'Desktop window
    Dim hWndXL As Long 'Child window
    Dim objExcelApp As Object 'Final result wanted: Excel application object
    'Following variable (xlapp) to be set by AccessibleObjectFromWindow function
    Dim xlapp As Object
    Dim IDispatch As GUID 'GUID used in call to AccessibleObjectFrom Window function
    'Set up GUID to be used for all instances of Excel that are found
    Dim tmp1 As Variant 'Return value from AccessibleObjectFromWindow
    ' Executable Statements
    SetIDispatch IDispatch
    IDispatch = IDispatch
    'Get a handle to the desktop
    hWndDesk = GetDesktopWindow 'This seems to work
    Do
    'Get the next Excel window
    'The following statement seems to work. We are finding and counting _
    correctly all the instances of Excel. hWndXL is non-zero for each _
    instance of Excel
    hWndXL = FindWindowEx(GetDesktopWindow, hWndXL, "XLMAIN", vbNullString)
    'If we got one, increment the count
    If hWndXL > 0 Then
    'This works. We correctly count all _
    instances of Excel
    ExcelInstances = ExcelInstances + 1
    'Here is the problem. The following statement executes and returns a value of _
    -2147467262. xlapp, which is passed by reference to AccessibleObjectFromWindow, _
    is set to nothing. It should be set to the object for Excel.application. _
    I believe that this value is not an object. I tried to reference tmp1. in the _
    immediate window. There was no Intellisense.
    'I think that the function in returning an error value, but I can't figure _
    out what it is. I believe that AccessibleObjectFromWindow returns error _
    values, but I don't know where to find their values so I can interpret the _
    function's results.
    'As best I can tell, the hWndXL parameter is correct. It is the handle for _
    an instance of Excel. OBJID_NATIVEOM is set correctly (see constant declaration _
    above). xlapp is passed by reference as a non-initialized object variable, which _
    will be set by AccessiblObjectFromWindow. IDispatch may be the problem. It is set _
    as shown below in the procedure SetIDispatch(ByRef ID As GUID). This procedure _
    appears to work. I can see that IDispatch is set as I intended and correctly _
    passed to AccessibleObjectFromWindow.
    tmp1 = AccessibleObjectFromWindow(hWndXL, OBJID_NATIVEOM, IDispatch, xlapp)
    'Need to write code to test tmp1 for error. If none, then set objExcelApp = _
    object. Also, I exect xlapp to be set to Excel.application
    End If
    'Loop until we've found them all
    Loop Until hWndXL = 0
    End Function
    Private Sub SetIDispatch(ByRef ID As GUID)
    'Defines the IDispatch variable. The interface _
    ID is {90140000-0016-0409-0000-0000000FF1CE}.
    'NOT USING {00020400-0000-0000-C000-000000000046}, _
    which could be the problem
    '9 is release version - first version shipped (initial release)
    '0 is release type - retail/oem
    '14 is major version
    '0000 is minor version
    '0016 is product ID - MS Excel 2010
    '0409 is language identifier - English
    '0 is x86 or x64 - this is x86
    '000 reserved
    '0 is debug/ship
    '000000FF1CE is office family ID
    With ID
    .lData1 = &H90140000
    .iData2 = &H16
    .iData3 = &H409
    .aBData4(0) = &H0
    .aBData4(1) = &H0
    .aBData4(2) = &H0
    .aBData4(3) = &H0
    .aBData4(4) = &H0
    .aBData4(5) = &HF
    .aBData4(6) = &HF1
    .aBData4(7) = &HCE
    End With
    End Sub
    DaveInCalabasas

    I don't think you can return a reference to Excel's main window like that as you are attempting to do.
    Ref:
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd317978(v=vs.85).aspx 
    It's relatively straightforward to return any workbook's window in any given instance, and in turn it's parent Excel app. Try the following and adapt as required (and include error handling) -
    Option Explicit
    Private Declare Function FindWindowEx Lib "User32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    Private Declare Function IIDFromString Lib "ole32" _
    (ByVal lpsz As Long, ByRef lpiid As GUID) As Long
    Private Declare Function AccessibleObjectFromWindow Lib "oleacc" _
    (ByVal hWnd As Long, ByVal dwId As Long, ByRef riid As GUID, _
    ByRef ppvObject As Object) As Long
    Private Type GUID
    Data1 As Long
    Data2 As Integer
    Data3 As Integer
    Data4(7) As Byte
    End Type
    Private Const S_OK As Long = &H0
    Private Const IID_IDispatch As String = "{00020400-0000-0000-C000-000000000046}"
    Private Const OBJID_NATIVEOM As Long = &HFFFFFFF0
    Sub test()
    Dim i As Long
    Dim hWinXL As Long
    Dim xlApp As Object ' Excel.Application
    Dim wb As Object ' Excel.Workbook
    hWinXL = FindWindowEx(0&, 0&, "XLMAIN", vbNullString)
    While hWinXL > 0
    i = i + 1
    Debug.Print "Instance_" & i; hWinXL
    If GetXLapp(hWinXL, xlApp) Then
    For Each wb In xlApp.Workbooks
    Debug.Print , wb.Name
    Next
    End If
    hWinXL = FindWindowEx(0, hWinXL, "XLMAIN", vbNullString)
    Wend
    End Sub
    'Function GetXLapp(hWinXL As Long, xlApp As Excel.Application) As Boolean
    Function GetXLapp(hWinXL As Long, xlApp As Object) As Boolean
    Dim hWinDesk As Long, hWin7 As Long
    Dim obj As Object
    Dim iid As GUID
    Call IIDFromString(StrPtr(IID_IDispatch), iid)
    hWinDesk = FindWindowEx(hWinXL, 0&, "XLDESK", vbNullString)
    hWin7 = FindWindowEx(hWinDesk, 0&, "EXCEL7", vbNullString)
    If AccessibleObjectFromWindow(hWin7, OBJID_NATIVEOM, iid, obj) = S_OK Then
    Set xlApp = obj.Application
    GetXLapp = True
    End If
    End Function
    Note as written if an instance does not have any loaded workbooks a reference will not be returned (though a workbook can be added using DDE, but convoluted!)
    FWIW there are two other very different approaches to grab all running Excel instances though something along the lines of the above is simplest.
    Peter Thornton

  • Error 1603 in deploying Office 2003 by creating an application object using its MSI package!

    Hello,
    I got the error of 1603 when I ran Office 2003 MSI package through NAL. I
    have no idea how to resolve this problem. Even though I enabled logging in
    Office 2003 installation, I still could not figure out what went wrong and
    what caused the error.
    I have used Snapshot to create an application object for a long time with
    little problem. However, I could not successfully deploy any MSI package
    created by an application object. I knew ZenWork Managing Application has
    the feature, but I don't know how to make it work in our environment.
    Do I have to know more about Microsoft Window Installer ?
    Appreciate your comments and experience in advance
    Thanks
    Joe Liu
    email: [email protected]

    [email protected],
    > I got the error of 1603 when I ran Office 2003 MSI package through NAL
    >
    Start here:
    http://support.novell.com/techcenter...tation&x=0&y=0
    Yes, understanding MSI helps. FWIW I have deployed 2003 this way.
    - Anders Gustafsson, Engineer, CNE6, ASE
    NSC Volunteer Sysop
    Pedago, The Aaland Islands (N60 E20)
    Novell does not monitor these forums officially.
    Enhancement requests for all Novell products may be made at
    http://support.novell.com/enhancement
    Using VA 5.51 build 315 on Windows 2000 build 2195

  • New to Oracle - Ques. about globals.jsa

    Hi,
    I'm trying to put together a simple web application (JSPs only) to run under Oracle 9i. For this application, I need to maintain a persistent variable among all users and sessions (we would set the variable initially, once, via our app, and the variable would be available to all of our JSPs).
    I guess with other containers, I would use ServletContext, but I understand this is not supported in Oracle, and I may need to use globals.jsa instead.
    This is a simple requirement I think, and I think I actually have it working, but just want to check if I'm doing things correctly.
    What I have so far is a globals.jsa in my apps home directory:
    <%-----------------------------------------------------------
    Copyright © 1999, Oracle Corporation. All rights reserved.
    ------------------------------------------------------------%>
    <event:application_OnStart>
         <jsp:useBean id="myvar" class="oracle.jsp.jml.JmlString" scope = "application" />
    </event:application_OnStart>
    <event:application_OnEnd>
         <jsp:useBean id="myvar" class="oracle.jsp.jml.JmlString" scope = "application" />
    </event:application_OnEnd>
    <event:session_OnStart>
         <%-- Acquire beans --%>
    </event:session_OnStart>
    <event:session_OnEnd>
         <%-- Acquire beans --%>
    </event:session_OnEnd>
    And, in my JSPs, I add:
    <jsp:useBean id="myvar" class="oracle.jsp.jml.JmlString" scope = "application" />
    Then, I access the 'global' variable:
    To retrieve: String s = myvar.getValue();
    or
    To update: myvar.setValue("whatever");
    Like I said, this seems to be working, but I'm just checking. I'm kind of unclear about what I have in the globals.jsa itself. Is what I have above correct?
    Thanks,
    Jim

    Jim, I am not sure if I have ever used globals.jsa or not. However, if you got it working, then it is working. Please take a look at the documentation "chapter 9, Oracle JSP in Apache JServ" in
    Oracle9i Support for JavaServer Pages Reference
    Release 2 (9.2)
    Part Number A96657-01
    Current url is http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96657/apjsvsup.htm#1015160
    Any particular reason that you are trying to use globals.jsa as of now?! Please note the j2ee aspect in the Oracle java product has been moved forward enormously. For a minor example, globals.jsa is not longer supported in later releases. It was only a mechanism for implementing the JSP specification in a servlet 2.0 environment as Web applications and servlet contexts are not fully defined in the servlet 2.0 specification. Since we have passed year 2002, there is no reason to support globals.jsa.
    Please have fun trying oc4j 10.1.2 production or oc4j 10.1.3 developer preview.

  • Report by Application Object Name

    have zen7sp1ir1
    i want to generate a report, by application object name, if it is
    distributed to the workstation. ( sucssess failed etc )
    is it possible to do so? how ?
    helge

    Helge,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • IDOC - process code with error "Application Object Type not planned'

    Hi all,
    I am doing an inbound idoc.... in TCODE we42, i trying to put function module which i created, attached to the process code.
    However, when i put my function module ZIDOC_INBOUND to the process code... it comes out error, 'Application Object Type not planned.'
    Why is this so?
    Please advice...
    Thanks and regards...
    William Wilstroth

    HI all,
    I had solved this problem. I should have gone to we57 to tie the function module.
    thanks.
    William Wilstroth

  • Random application object lost in Portal

    Hi people,
    I'm having a problem with the application object.
    Some times, in a random way, i'm losing the state of the application object between request's.
    This appens when I'm using the BSP application in the SAP Portal.
    Thanks,
    Paulo Ruivo

    Hi,
    the problem is that in the url I pass a parameter that in the bsp page copy to an attribute of the application.
    Then in the controler i try to read this value and it is empty, all the information in application object is lost.
    This appens during one single request.
    I have several Iviews pointing to the same BSP application, the diference between the content that is shown is controled by the parameter passed in the URL.
    Is it possible that while navigating between iviews, the info in the BSP application is mix up. Something like the aplication start (iview open) and then been close (previous iview close)?
    Thanks for the help.
    Paulo Ruivo

  • Outlook.Application Object

    Hello Experts,
    i am using the 'Outlook.Application' object to create a new outlook email item in my ABAP code. everything is fine except when i'm creating an attachment, i don't know how to attach a file to my email. My code look like this.
    REPORT  ztest_outlookobject           .
    INCLUDE ole2incl .
    DATA: lr_outlook TYPE ole2_object,
          lr_mi TYPE ole2_object,
          lr_at TYPE ole2_object.
    CREATE OBJECT lr_outlook 'Outlook.Application'.
    CALL METHOD OF lr_outlook 'CreateItem' = lr_mi
    EXPORTING #1 = 0.
    GET PROPERTY OF lr_mi 'Attachments' = lr_at.
    CALL METHOD OF lr_at 'Add' = 'C:\eraseable.xls'. "<<< the problem is here >>>
    SET PROPERTY OF lr_mi 'To' = 'Bai Cil'.
    SET PROPERTY OF lr_mi 'CC' = '[email protected]'.
    SET PROPERTY OF lr_mi 'Subject' = 'Your subject'.
    SET PROPERTY OF lr_mi 'Body' = 'Some text'.
    CALL METHOD OF lr_mi 'Display'.
    FREE OBJECT lr_outlook.
    but i'm getting this error: "'C:\eraseable.xls'" cannot be changed. -
    Thanks

    thanks guys.
    i found the answer. here it is.
    CALL METHOD OF lr_at 'Add'
    EXPORTING #1 = 'C:\eraseable.xls'.

  • Application Object in Controllers

    Hi to all,
    In MVC based BSP application how to access application class in controller and models?
    I had seen application attributes in controller class.
    Suggest me how to use data binding using example, if there.
    Regards,

    Hi Bhupendra Singh,
    Data: co_application type ref to <Application class name>.
    CREATE OBJECT co_application TYPE <Application class name>.
    Create a page attribute in your view namely...
    vi_application type ref to <Application class name>
    Now it the controller add the lines below for assigning the controller's application class object to the view's application object in the page attribute.
    Data: main_view type ref to if_bsp_page.
    main_view = create_view( view_name = 'exercise.htm' ).
    main_view->set_attribute( name  = 'vi_application'
                               value = co_application ).
    Hope it solves your problem.
    Regards,
    Maheswaran.B

  • Application object BUPA: Table TSADC does not exist

    Hi All,
    When I try to create a Business Partner in transaction fmcac1, I get the message Application object BUPA: Table TSADC does not exist, especially when I try to go back to the Address tab after clicking on any other tab on that screen. I have tried to add the table in trans BUSG but I don't know what I am supposed to assign as the FM, for example.
    I have also used the trans BUSB to try to delete the entry for TSADC but it says 'do not make any changes (SAP Entry.)' Can u pliz assist with the information I have requsted above or prescribe another solution.
    Thanx in advance.

    For the benefit of others, I was able to solve the problem by removing the entry to the RIGHT, not the WHOLE entry (which refuses becoz it's an SAP entry). This is through transaction BUSB.

  • Oracle DOA/Application connection problem.

    I am looking for some help with a problem we are having with a connection issue with DOA objects and Application objects. We have a number of programs that were written using Delphi (version 5) that contain DOA (Direct Oracle Access) objects and Application Objects. The problem seems to be the order in which the connections are made. We have created a test program that proves this for us.
    Our environment is a Windows 2003 Server Standard x64 Edition SP2 with Oracle 10.2.0.3 installed. The processor is a dual core processor with 4 gbs of ram.
    When we open Delphi, load the program connect the application (using the application object) and then connect with the DOA object there is no problem. There is 2 connections and the program runs fine.
    Whenwe open Delphi, load the program, connect the DOA object and then connect the application object the server hangs. the hour glass displays and sits there. The memory associated with the oracle.exe process continues to get larger and larger (looking in task manager) then when it reaches 1, 386, 750KB approximately the Oracle database service ceases and the windows creats a dump file (oracle.exe.hdmp) the size of the memory allocated. The following trace file is created:
    Dump file e:\oracle\product\10.2.0\admin\alt2prod\bdump\alt2prod_lgwr_2448.trc
    Thu Aug 27 12:43:26 2009
    ORACLE V10.2.0.3.0 - 64bit Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU : 2 - type 8664, 1 Physical Cores
    Process Affinity : 0x0000000000000000
    Memory (Avail/Total): Ph:3177M/4031M, Ph+PgF:6170M/8067M
    Instance name: alt2prod
    Redo thread mounted by this instance: 1
    Oracle process number: 6
    Windows thread id: 2448, image: ORACLE.EXE (LGWR)
    *** 2009-08-27 12:43:26.794
    *** SERVICE NAME:() 2009-08-27 12:43:26.720
    *** SESSION ID:(716.1) 2009-08-27 12:43:26.720
    tkcrrsarc: (WARN) Failed to find ARCH for message (message:0x1)
    tkcrrpa: (WARN) Failed initial attempt to send ARCH message (message:0x1)
    Maximum redo generation record size = 156160 bytes
    Maximum redo generation change vector size = 150676 bytes
    tkcrrsarc: (WARN) Failed to find ARCH for message (message:0x10)
    tkcrrpa: (WARN) Failed initial attempt to send ARCH message (message:0x10)
    It appears the connection is trying to connect a second time. Does anyone know how to resolve this issue. Is there a configuration parameter to resolve this issue so the server does not lock up and then crash the database service.
    Any help would be appreciated.
    Chicago
    Edited by: Chicago on Aug 27, 2009 1:21 PM

    Did you install the Oracle Lite runtime on your WM5 device properly? What CAB file did you use? It seem like you didn't install the runtime on your device at all....

  • SSGD Application Object Disappears

    Hello Everybody
    I am running SSGD 4.0. On redhat Linux 9.0
    When user logs on to SSGD server , they get their webtop without any application object and it shows a error message
    When i restart the SSGD server User is Able to see the application as usual !
    Any clues why this is happening ?
    It is second time i have faced the above problem.
    Thanks in Advance.
    Regards
    Saurabh Sharma

    possiblly it is the same as in 4.20:
    See: http://www.tbsol.de/de/modules/news/article.php?storyid=80

  • Regarding Application object BUPA

    Hi Experts,
              I am facing a problem while creating a Business partner through BP transaction.While I am saving the Business Partner, I am getting a error message <b></b>Application Object BUPA : Table BUT000FLDS does not exist.<b></b>
    I went into transaction BUSG and found that that entry of table BUT000FLDS against object BUPA is not present.
    Now I wanted to add a new entry but I dont know the FM name against BUT000FLDS. Can any one plese tell me the FM name for the same.
    Moreover, is my approch  right in solving this problem. If not then what could be the probable solution to get rid of this error.
    Help would be appreciated.
    Regards
    Sourabh Verma

    Hi Sourabh,
    The only reason for the error Application Object BUPA : Table BUT000FLDS does not exist can be that there is an entry exists in the transaction with table BUT000FLDS. But such a table doesn't exist in the data dictionary.
    Check transaction BUSG or table TBZ1H again if such an entry exist.
    Adding FM doesnt solve the problem because the object BUT000FLDS doesn't exist as a table in the data dictionary.
    Regards,
    Sudheer.

  • Recordset - updating 2 tables with 1 recordset using application object update record

    I have a recordset that uses a field from 2 different tables
    with a select statement where clause that joins a userid. I can
    display the field’s data just fine. Now I want to use the
    Application object “update record” so I can modify
    either of the fields. The problem is the Application object
    “update record” only allows you to update one table.
    How does Dreamweaver mx 2004 allow me to update 2 tables with one
    recordset and 1 submit button? Currently using php.
    Example of where:
    Where member.userid = member_detail.userid
    I tried creating the one form with the field from the first
    table and that works just fine. I added the other field from the
    other table into the form but ofcourse there isn’t any code
    that will update the second table so it won’t work.
    My application requires me to update alot of fields between 2
    tables at the same time.
    Does anyone know a way using Dreamweaver mx 2004 to do this?
    I don’t have much php experience.

    jon-rookie wrote:
    > DreamerJim,
    >
    > I am sorry but I don't think you are correct. I just
    can't believe that with
    > all the powers to be at Macromedia and now Adobe can't
    figure out how to update
    > two tables at once. There are millions of db's out there
    that require this. I
    > spent several hours today perusing lots of posts on the
    internet. It seems I
    > am not the only one out there that has asked this
    question. Unfortunately
    > there are no good answers yet to my surprise.
    >
    > I did find a Dreamweaver extension that does exactly
    what I myself and many
    > others want. The problem is it is no longer available
    unless you purchase a
    > bundle of software from Adobe.
    >
    > I have not looked into it in detail so I am not 100%
    sure that is accurate!
    >
    > Still, alot of php programmers do this all the time
    without much trouble. I
    > just want to know if Dreamweaver mx 2004 has the
    capability if a person knows
    > the right steps.
    >
    > Hopefully a Dreamweaver expert will post something to
    let us know for sure.
    > Until then I am stuck.
    >
    Not even CS3 has this built in, you will either have to code
    it yourself
    or buy the extension you have found. Dreamweaver gives you
    basic
    features to help you develop applications, but if you want to
    do
    anything really clever you have to do it yourself.
    One thing to consider is maybe creating an SQL view that is
    can be
    updated. I am pretty sure it exists, then you use the view
    instead of
    the table in the update behaviour. I have never done it
    myself, but I am
    sure it can be done.
    Steve

  • Error-page tag not valid in global-web-application.xml ?

    Hi!
    From what I understand about the global-web-application.xml file in Oracle's documentation, the content of the web-app tag should be inherited to all web application as a web.xml content.
    One of the web.xml tags is error-page, which contains the page url for the standard return codes (404, 500, and so on).
    If I put the error-page on the web.xml inside a web application, it works as expected.
    But if I don't put this tag inside the web applicaction, but in the global-web-applicacion.xml (web-app) tag, it doesn't work.
    We are testing the 404 error page, but I don't know if it is because the application server can't find the error page or because the global-web-application.xml isn't being inherited correctly.
    Where is this file supposed to be looked for? Or the only way to do this is by writing the configuration on all web applications?
    We are using 9.0.3
    Franco Catrin L.
    TUXPAN

    Just refreshing... Does anyone have any idea?
    Daniel.

Maybe you are looking for

  • How to apply check constraint at a row level?

    I am new to SQL. I have a schema like this. Students(student_id,student_name,club,date_of_passed_out). clubs(club_name,club_in_charge,club_inaugurated_date). The students can act as the club in charges. So it is not possible for a student to act as a

  • The network connection timed out

    i am trying to download an ipod software update on a 56k modem, the update gets about one third done and then a message pops up stating that the network connection has timed out and i need to check my network settings. Also when i run network diagnos

  • Firefox suddenly has a new "yahoo" tab that I do not want.

    I just installed Firefox 8 over 7.0.1, and there is suddenly a new tab, apparently for searching, marked "Yahoo." How do I get rid of it?

  • Updating software on iPod Classic... Is it worth it?

    I have read through countless posts where people have complained about several significant problems with/during/after updating the software on their iPod Classics. To be fair, I will also say that there are those who claim to have had no problems at

  • Test sequence for function module

    i want to perform a test sequence in which, what is the out put of the first funtion module i want to pass them to the second function module . i want to know that whether i can do that or not if yes how?. thanks in advance.