Navigate in Forms 6i

Hello,
Can someone tell me whether it exists built-in function I can use to control if users have navigate from one block to another? More concrete, when users navigate to a text item in a block, I like to check if they come/navigate from a specific block. Who can I check this in a trigger ? Suggestions?
Regards
Roar

I think, that you should store a history of blocks navigation.
Create pack.Spec VAL with two varchar2 variables: prev_block and curr_block.
WNBI Form level:
val.prev_block := val.curr_block;
val.curr_block := :system.cursor_block;

Similar Messages

  • FRM - 41355 cannot navigate to form

    Hi,
    When I am calling a from in post-change trigger of other form, FRM-41355 cannot navigate to form error is coming.
    Can anyone help on this issue.
    Thanks,
    Dinesh.

    Please post the details of the application release, database version and OS.
    Is this a custom form? If yes, was the TEMPLATE.fmb file used?
    Please see if the following links help.
    https://forums.oracle.com/thread/239562
    http://docs.oracle.com/cd/E24269_01/doc.11120/e24477/appd.htm
    Also, you may need to enable debug and/or obtain FRD log file for details about the error -- Search the forum for "FRD" to get the docs you need to refer to.
    Thanks,
    Hussein

  • Possible to allow the user to navigate to form sections using a dropdown?

    I am designing a realtively long PDF form that has many sections.
    I am hoping that I can create a TAG inside the PDF form that I can reference using drop downs that the free Reader will support
    The desired functionality is :
    User activates drop down - selects the section they want to see if it is not already visible - and the reader moves them to that location -
    so they can read the data at that location -
    Can you please help me by indicating :
    1. Is this possible ?.
    2. Where I can find a useful example for doing something of this sort ?
    Thank You very much

    Fundamentally, you have two possibilities:
    a) create Named Destinations where you want the user to get to, and then make your drop so that the destination name will be defined as return value, so that you can go to it.
    b) define the first field of a section, and put its name as return value in the drop down (aka combo box). Then set the focus to that field.
    HTH.
    Max Wyss.

  • Press button and navigate through forms?

    I´ve created a button and the thing I want to do is:
    When someone presses that button, another new form is shown??
    could someone help me with a code or something ?
    Regards
    Tiago Valador

    when-button-pressed trigger you can either call
    OPEN_FORM
    NEW_FORM
    CALL_FORM - check the on line help for details.
    Regards
    Grant Ronald
    Forms Product Management

  • Hi ... in forms 6i  can i make the mouse scroll verticaly & horizontly??

    when i navigate the form in runtime ,, ca i make the mouse scroll the page instead of pushing the left button on the scroll bar ??
    can anyone help?
    thanks in advance?

    thank u for your answer,
    may i ask u ,, can i found this option in 9i or 10g??
    thanks in advance
    bye

  • Can I traverse a set of open forms

    Lets say I have 4 open forms. Is there anyway to traverse all 4 forms in order. I found NEXT_FORM and PREVIOUS forms but they only seem to allow to go to one form and then focus stops there.
    Thanks for any help in this matter,
    Thomas

    Well.. Tough to do.. In the past I wrote some code that when the outer MDI window 'X' window was pressed the application would loop through all open forms and ask the user if they want to save the changes or not instead of just dying. If there were any changes to save, each changed form would pop up and prompt the user to save changes instead of just dying.. I think the outer X MDI window wants to just kill the app and ignore changes. The inner form X may ask to save changes. I forget. So.. We.
    1) created a table with all formnames
    2) looped through all the form names in the table.
    3) used find_form('formname') to determine if the form with that name was open
    4) kept checking for the same formname with find_form function until it returned a null value because multiple instances of the same form can be open.
    5) checked for changes and/or exited.
    I think we put the code in a pll not a form... You might have a hard time getting code to launch in one form and keep running as you navigate from form to form and each additional form gets focus. We may even of had to put some code in the when-window-activated trigger of each form that popped up to check for its own status and then recall the procedure to check for another open form. Kind of a daisy chain type of code... like this... pseudo code follows...
    user wants a pretty color...
    presses button on some form. In when button pressed code do..
    find_form;
    give form focus;
    when-window-activated fires inside form getting focus;
    set_item_property() via a parameter or global;
    find_form; (another open form);
    give_form_focus;
    when-window-activated fires...
    ..and so on...
    somehow you will have to know when to stop... :) I knew when to stop because there were no more open forms.. I closed them all :)
    Me? I set the colors when I build the application and am done with the color thing. I kinda hate foolin with colors anyway. Each form I make may toggle colors of fields depending if the field is required or not, but only within each form. I have never looped through all the forms and set colors myself.
    As far as I know there is no way of getting something like an array of all open forms. You have to check for one form at a time and you have to know the names of the forms before you check.
    As far as I know...
    Message was edited by:
    Mark Reichman

  • Passing form 1 values to form 2

    Hi All,
    I have Form 1 in which I have fields like location_id, location_code which has values assigned to it.
    On this Form 1, I have a button, and when clicked, opens a new form Form 2, on which I have location_id, location_code and other new fields.
    Now my query is when I click the button on Form 1 and when it navigates to Form 2, on that Form 2 in fields location_id and location_code, it should have the values inserted taken from Form 1 and should be in read-only mode i.e non-editable, and other fields I can enter values and can save the form.
    Any ideas how to achieve this.. Help Greatly Appreciated.
    Thanks
    Aman Khan

    user13115886 wrote:
    HI,
    This is not Oracle forms where in we call paramlist and assign it to call_form.. its oracl EBS where in we dont use call_form but we use fnd_funciton.execute function to call in other form.
    Thanks
    AMan       
    This being the case, I recommend you ask your question in the EBS General Discussions forum to ask your question.  The EBS framework has methods for setting Profile values (if I remember correctly) that you use when passing values between forms.  I don't recommend you use Globals in this instance since the EBS has a standardized way of handling this.  This also makes your Form compliant with EBS development standards.
    Craig...

  • Copying Records from one form to another in Forms 4.5 (**URGENT**)

    Hello Gurus,
    I have Form A through which I zoom to Form B (using open form). The user selects some records in form B. Those selected records should be displayed in form A after the user clicks a button say 'copy' in Form B.
    What is the best possible method to do this.
    Thanks in Advance.
    Regards
    Mallik

    You can accomplish this in two ways. To my knowledge you are not dealing with database tables in this issue. I guess. If you are then committing to the table and then requerying is the best thing to do.
    You can use either PL/SQL table types or Dynamic Record Groups to accomplish this task. PL/SQL tables are only supported from PL/SQL Ver 2.0 in forms. As long as you are using FORMS 5.0 or above then you can any of the above methods. My example here will tell you how to use PL/SQL table/record types...
    0. Create a PL/SQL Record type in a common library that you attach to form A and form B. Lets name it as FORMB_RECS.
    1. In Form B write WHEN-CHECKBOX-CHANGED trigger for the check box that you are using to select records. In that please copy the record primary key or all values to the FORMB_RECS declared in the common library.
    2. In the COPY button of Form B, copy the number of records in record group to global variable :GLOBAL.Copy_RecCnt and navigate to form A.
    3. In WHEN-FORM-NAVIGATE trigger of form A, check and see if :GLOBAL.Copy_RecCnt is > 0. If so then loop through the FORMB_RECS in common library and populte the desired block in form A.
    HTH,
    -- Raam.

  • Intermittent error FRM:40010 Cannot read form

    Hi,
    I'm having a problem with call_form
    Using Forms 6.05.34 Client-server
    clients machines are Win95/98
    Oracle objects sits on network novell server (fmx's,rep's and oracle executables)
    Application starts from icon which sets working directory using "start in"
    I navigate between forms using call form and run reports using run_product
    -- sample call form:
    LIST_ID := Get_Parameter_List ('callass');
    If NOT Id_Null(list_id) THEN
    Destroy_Parameter_List (list_id);
    END IF;
    List_id := Create_Parameter_List('callass');
    Add_Parameter(list_id,'param_ass_cli', text_parameter,
    :assessments.cli_clients_rec);
    Add_Parameter(list_id,'param_ass_rec', text_parameter,
    :assessments.assessments_rec);
    CALL_FORM('ASSESSMENTSC', HIDE, DO_REPLACE, NO_QUERY_ONLY, LIST_ID);
    -- sample run product
    RUN_PRODUCT(REPORTS, 'CLIENT_ASSESSMENT', SYNCHRONOUS, RUNTIME, FILESYSTEM, list_id, ''); -- also pass parameter list
    Global variables are set and reset, parameters are set and reset to null in forms after opening
    all forms closed with exit_form
    The calendar library is attached to the form. (calendar.pll and stndrd20.olb on network)
    We do not set working directory in forms60_path and do not want to for many reasons. Also do not hard code path with form name in call_form for same reasons.
    After using system, calling and exiting several forms and running reports. Must run reports that are sent directly to printer before error occurs. (Frm-40010)
    Users must exit back to starting menu or exit application and restart.
    Only 3 forms and 2 reports are really in use.
    Query on Browse form calls editing form which runs report (auto prints) then calls 3rd form which runs report (auto prints). Exit to 2nd form then exit back to browse form (query again .. repeat)
    After 3 or 4 repeats the error appears.
    As developer, I can only reproduce the error when running oracle from network folder (running oracle executables from network)not when running from my desktop.
    Any ideas
    Thank you
    David
    [email protected]

    Hi,
    Cause:  One of the following:
    1. You entered a nonexistent form name.
    2. You typed an incomplete path.
    3. You do not have the proper privileges to run the form.
    4. You do not have a compiled copy of the form.
    Action:  Retype the form name correctly, provide the proper path name, compile the form.
    Moreover you said that you have added path in FORMS90_PATH. Does your forms really exists in this directory. Check out this also.

  • Is there a way to module workflow to mimic actions on various forms?

    I'm trying to find out whether there is a way to use workflow to replace some repeititve actions done by users on various Oracle forms.
    For example in our company, setting up parties consists of several repetitive actions. users navigate to form Party Profiles (path: "Setup -> System -> Party Profiles"), enter the party ID, save it, navigate to another form Remit/Inquiry Parties (Path: "Setup ->System -> Remit/Inquiry Parties"), fill in IDs for Processing Party,
    External Party, and Remit To Party" and click save.
    The users follow the same steps to use various forms in Oracle and fill in repeitivie, predictable values. So I'm wondering whether there is a way to create a workflow to replace these actions. The workflow will need to accept attributes like ids and when the workflow is initiated, it will go through the steps usually done by end users and complete the setup.
    Any information will be appeciated. Thanks.

    You can't rollback or undo the remediation. You can remove the Remediate noncompliant rules when supported
    checkbox in the deployment, but that won't undo previous remediation's. It will only prevent future remediation's.
    See point 1, it won't return the server to the previous state. To do that you need to create a custom script, or a configuration item that does exactly the opposite.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How to place values from Forms into email?

    Andreas sugested the following statement to navigate from forms to emal:
    HOST('cmd /c c:\Windows\System32\rundll32.exe url.dll,FileProtocolHandler "mailto:[email protected]?cc=[email protected]&bcc=[email protected]&subject=mysubject&body=mybody"');
    It works just fine placing [email protected] to to:, [email protected] to cc, [email protected] to bcc, mysubject to subject ,and
    mybody to the text area.
    Question:
    How to rearrange the string if I need to place values from the fileds in the form:
    :control.to (can consist of [email protected];[email protected];......;[email protected]) value in the filed should go to to: in the email;
    :control.cc ((can consist of [email protected];[email protected];......;[email protected]) value in the filed should go to cc in the email;
    :control.bcc ((can consist of [email protected];[email protected];......;[email protected]) value in the filed should go to bcc in the email;
    :control.subject:='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' value in the filed should go to subject in the email;
    :control.text:='vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv' value in the filed should go to the text area in the email;
    Any suggestions?
    Thanks. Lev.

    Have you tried:
    HOST('cmd /c c:\Windows\System32\rundll32.exe url.dll,FileProtocolHandler "mailto:'||:control.to
    ||'?cc='||:control.cc||'&bcc='||:control.bcc||'&subject='||:control.subject||'&body='||:control.text||'"');Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Close calling form

    Hi,
    Using Oracle Forms 6i, is there any way I can close a forms calling form. I have tried the obvious CLOSE_FORM, which doesn't work.
    I have also tried setting up a global in Form B before returning to the calling form (Form A), but focus is not returned to the calling form (Form A) in the event of a NEW_FORM being called from Form B.
    Any ideas would be really appreciated.
    Regards,
    Jayesh Kavia

    Yes I'd like this to happen when a button is pressed, not on start-up, and therefore When-Window-Activated or CALL_FORM with the hide option would not be useable.
    I can't use NEW_FORM as this would open two windows, and the users will be able to navigate freely between them.
    Eg:
    From Form A user opens a new Form, B(1)
    User navigates to Form A (Form B is still open) and opens a new Form, B(2)
    User navigates to Form A (Form B(1) & B(2) is still open) and opens a new Form, B(3)
    etc...
    So, one instance of Form A will be able to initiate several instances of Form B.
    There can only be one instance of form A or B open at a time.
    I've fixed this using another method.
    * From Form A use CALL_FORM to call Form B.
    * A Button exists on Form B, to call Form A.
    * This button checks for the existence of a Form A (using FIND_FORM).
    -- If Form A exists (it's behind form B) then simply close Form B (EXIT_FORM).
    -- If Form A does not exists, use NEW_FORM to call Form A.
    This will ensure that only one instance of Form A or B is open at one time, eliminating the need to close form A from B, and open a new instance of Form A.
    Hope this makes some sense! Thanks for your comments everyone.
    Jayesh Kavia

  • Filteration of BP Master Data Based On BP Group

    Hello All,
    I have a requirement of blocking those BP Codes to display in the Business Partner Form for a specified BP Group whether
    the User select through Choose From List or Navigate the Form.But the Business Partner details will not be visible to the user
    until the BP Group matches .
    Is that possible through SDK specially the Navigation part .
    Please provide sample codes for that .
    Thanks & Regards,
    Amit

    Hi Amit,
    How did you manage to do this? As I am into a smilar requirement especially the Choose From List.
    I am not able to restrict the choose from list to display based on a selected Sales Person.
    It would be of great help if you would provide code sample to restrict the Choose From List to display BP's only for a particular Sales Person.
    Many Thanks in Advance,
    Regards
    Sameer Shingala.

  • HELP in Generating XML(PLz help its urgent)

    Hi,I need to generate XML FIle.Since i m new to XML.
    I had toregister the valid schema in my DB now i want to generate the XML file and with the refernce to this schema that xml file should be validated one against that schema.
    things i hav done till now
    ->i hav registered the scehma
    and the sample XML file provided by client
    <?xml version="1.0"?>
    <MEDMLDATA xmlns="PhaseForward-MedML-Inform4">
    <!-- Insert Trial/Study Information -->
    <STUDYVERSION UUID="id"
    STUDYNAME="name"
    VERSIONDESCRIPTION="text" />
    <!-- Insert Site Personnel Information -->
    <USER USERNAME="mmeyer"
    USERTYPE = "SITE"
    ACTIVESTATE = "TRUE"
    DELETESTATE = "FALSE"
    FIRSTNAME = "Marianne"
    LASTNAME = "Meyer"
    DISPLAYNAME = "Marianne Meyer"
    TITLE = ""
    HOMESCREENURL = "./Custom/HomeDefault.html"
    PHONE = "(555) 555-1212"
    FAX = "(555) 555-1212"
    ALTPHONE = ""
    EMAIL = "[email protected]"
    ADDRESS = ""
    ADDRESS2 = ""
    CITY = ""
    STATE = ""
    ZIPCODE = ""
    COUNTRY = ""
    BEEPER = ""
    USERMUSTRESETPASSWORD = "FALSE"
    DESCRIPTION = ""
    PASSWORD="changeme"/>
    <USER USERNAME="john"
    USERTYPE = "SITE"
    ACTIVESTATE = "TRUE"
    DELETESTATE = "FALSE"
    FIRSTNAME = "John"
    LASTNAME = "Meyer"
    DISPLAYNAME = "John Meyer"
    TITLE = ""
    HOMESCREENURL = "./Custom/HomeDefault.html"
    PHONE = "(555) 555-1212"
    FAX = "(555) 555-1212"
    ALTPHONE = ""
    EMAIL = "[email protected]"
    ADDRESS = ""
    ADDRESS2 = ""
    CITY = ""
    STATE = ""
    ZIPCODE = ""
    COUNTRY = ""
    BEEPER = ""
    USERMUSTRESETPASSWORD = "FALSE"
    DESCRIPTION = ""
    PASSWORD="changeme"/>
    <!-- Insert Site Information -->
    <SITE NAME=     "(01) Massachusetts General Hospital" MNEMONIC="01"
    ADDRESS = "1 Main Street"
    ADDRESS2 = ""
    CITY = "Boston"
    STATE = "MA"
    ZIPCODE = ""
    COUNTRY = "USA"
    PHONE = "(555) 555-1212"
    ALTPHONE = ""
    FAX = ""
    EMAIL = ""
    TIMEZONE="(GMT-05:00) Eastern Time (US & Canada)"
    SITEDATEFORMAT = "MONTH_DAY_YEAR"
    STARTDATE = "April 1, 2005">
    </SITE>
    <SITE NAME=     "(02) Boston General Hospital" MNEMONIC="01"
    ADDRESS = "1 Main Street"
    ADDRESS2 = ""
    CITY = "Boston"
    STATE = "MA"
    ZIPCODE = ""
    COUNTRY = "USA"
    PHONE = "(555) 555-1212"
    ALTPHONE = ""
    FAX = ""
    EMAIL = ""
    TIMEZONE="(GMT-05:00) Eastern Time (US & Canada)"
    SITEDATEFORMAT = "MONTH_DAY_YEAR"
    STARTDATE = "April 1, 2005">
    </SITE>
    <!-- Insert SITE and User Mapping Information -->
    <SITEGROUP SITENAME="(01) Massachusetts General Hospital">
    <USERREF USERNAME="mmeyer"/>
    </SITEGROUP>
    <SITEGROUP SITENAME="(02) Boston General Hospital">
    <USERREF USERNAME="John"/>
    </SITEGROUP>
    <!-- Insert User ROle Information -->
    <RIGHTSGROUP GROUPNAME="CRA">
    <!-- Insert Rights -->
    <RIGHTREF RIGHT="Print"/>
    <RIGHTREF RIGHT="Monitor"/>
    <RIGHTREF RIGHT="Canned Reports"/>
    <RIGHTREF RIGHT="View CRF"/>
    <RIGHTREF RIGHT="View Signature History for CRF"/>
    <RIGHTREF RIGHT="View Signature History for CRB"/>
    <RIGHTREF RIGHT="Data Export Listings"/>
    <RIGHTREF RIGHT="Freeze a CRF"/>
    <RIGHTREF RIGHT="Unfreeze a CRF"/>
    <RIGHTREF RIGHT="Mark and Unmark a CRF as SVed"/>
    <RIGHTREF RIGHT="Freeze a CRB"/>
    <RIGHTREF RIGHT="Unfreeze a CRB"/>
    <RIGHTREF RIGHT="Change Query State from Candidate to Open"/>
    <RIGHTREF RIGHT="Change Query State from Candidate to Deleted"/>
    <RIGHTREF RIGHT="Change Query State from Answered to Closed"/>
    <RIGHTREF RIGHT="Change Query State from Open to Closed"/>
    <RIGHTREF RIGHT="Change Query State from Reissued Candidate to Closed"/>
    <RIGHTREF RIGHT="Enter Query in Candidate State"/>
    <RIGHTREF RIGHT="Enter Query in Open State"/>
    <RIGHTREF RIGHT="Re-issue Query in Candidate State"/>
    <RIGHTREF RIGHT="Re-issue Query in Open State"/>
    <RIGHTREF RIGHT="Navigate by Visit"/>
    <RIGHTREF RIGHT="Navigate by Form"/>
    <RIGHTREF RIGHT="Reordering of Patients"/>
    <!-- Insert Users for role -->
    <USERREF USERNAME="mmeyer"/>
    <USERREF USERNAME="john"/>
    </RIGHTSGROUP>
    </MEDMLDATA>
    now i need to generate XML based on the above SAMple XML file,can anybody tell me how to generate XML file based on this..and after generating it should be validated against the registerd schema.

    Maybe I am wrong, but my understanding is that you have to generate the xml from your data source (usually tables) and then you validate it against your schema. I don't know if the schema has a magic that can generate the xml for you. Is that correct? Anyone please? At the beginning, I asked a .Net guy if his tool could "generate" an xml simply using the schema (I thought so). But he said they had to use many style sheets to create the xml.
    Ben

  • Webutil bean not found when using call_form with no_share_library_data

    Hi,
    I have two Forms modules and i navigate from Form A to Form B using a call_form.
    If i call Form B with NO_SHARE_LIBRARY_DATA param, i get a webutil error: "oracle.forms.webutil.file.filefunctions bean not found"
    If i call it with SHARE_LIBRARY_DATA, there no error and my webutil function works as expected.
    Webutil is used in our application are works well so i don't think that it's webutil config problem.
    Any idea?
    Tx

    Thanks for your answer.
    Now I'am a little bit further with my debugging but it's more strange! forget the share_library_data...
    I start a common form with webutil.pll attached and i will use the Webutil_File.File_Exists function for example
    if i call it in the WNFI or WNBI, i get the error
    if i call it via a push-button WBP for example, it works!
    below the java console ouput when i get the error and after pushing ok on the error
    Loading http://sdp6:7778/sdp-jar_dev/frmwebutil.jar from JAR cache
    Loading http://sdp6:7778/forms/java/frmall_jinit.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 10.1.2.2
    Loading http://sdp6:7778/sdp-jar_dev/hst65.jar from JAR cache
    Loading http://sdp6:7778/sdp-jar_dev/sdpimage.jar from JAR cache
    Loading http://sdp6:7778/sdp-jar_dev/host.jar from JAR cache
    Loading http://sdp6:7778/sdp-jar_dev/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    La version Forms Applet est : 10.1.2.2
    2008-janv.-10 18:02:24.711 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.727 WUI[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.727 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.727 WUF[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.743 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.743 WUH[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.743 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.743 WUS[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.758 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.758 WUT[SessionFunctions.init()] Max Transfer chunk size set to 4048
    2008-janv.-10 18:02:24.758 WUT[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.977 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.977 WUO[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.977 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.977 WUL[VBeanCommon.getIPAddress()] 172.22.35.17
    2008-janv.-10 18:02:24.977 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2008-janv.-10 18:02:24.977 WUB[VBeanCommon.getIPAddress()] 172.22.35.17
    AFTER PUSH OK on the error
    2008-janv.-10 18:07:12.977 WUI[getProperty()] Getting property WUC_BEAN_VERSION
    2008-janv.-10 18:07:12.977 WUI[getProperty()] Value of WUC_BEAN_VERSION=10.1.2.2
    2008-janv.-10 18:07:12.993 WUT[setProperty()] Setting property WUC_SRV_LOGGING to 0
    2008-janv.-10 18:07:12.993 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.jacob.dll
    2008-janv.-10 18:07:12.993 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2008-janv.-10 18:07:13.08 WUT[loadSettings()] Local properties file loaded
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2008-janv.-10 18:07:13.08 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.JNIsharedstubs.dll
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2008-janv.-10 18:07:13.08 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.d2kwut60.dll
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2008-janv.-10 18:07:13.08 WUT[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2008-janv.-10 18:07:13.24 WUB[setProperty()] Setting property WUC_SRV_LOGGING to 0
    AFTER PUSH ON THE BUTTON THAT CALL THE SAME FUNCTION
    2008-janv.-10 18:07:34.758 WUF[setProperty()] Setting property WUF_FILENAME to c:\temp\1.txt
    2008-janv.-10 18:07:34.758 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 1
    2008-janv.-10 18:07:34.758 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2008-janv.-10 18:07:34.758 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=TRUE

Maybe you are looking for