How to set an actionscript class runnable + some question?

Dear all,
  i am new to actionscript (Flex 3).
  i am from java camp and i want to achive some java-style functionality in actionscript,and hope you can help me:
  1. how to set an actionscript class runnable??
      in java, i just add a "public static void main(String[] args)" method which will be the program entry point. (IDE, right click the class and click run)
      i can't set a plain, ordinary actionscript runnable in flex builder.
      To test the class, i have to create an mxml (which in turn invoke the testing class) and it be runnable in the flex builder 3.
      any other way to ease the testing?
   2. it there any good 3rd party library for datatype conversion ? (e.g. string <> date, the build-in DateFormatter don't accept milliseconds)...
       it seems actionscript come with limited such kind of utility function
   3. in a custom mxml component, which contains several controls (say testboxes, comboboxes)...etc,
       for information hiding/prevent others to change the child controls in the custom component, how can i hide the child control, not allow
       other code to access the child by  "Component.textbox1"....any scope modifier, e.g. protected, private...etc in mxml?
   thank you.
ppk luk

Hi Alex,
  for question 3:
  i just wondering if it is ok or not for better code/validation.....(and it follow the good
information hiding principle?)
  if i write the component in actionscript only, i can set the child control with scope modifier
'private' or 'protected'..so that the component user can't just use the dot syntax to gain
access to the child control,
e.g. MyComponent.childControlTextInputBox.value = "A";...
i want to force user to use MyComponent.setInputBoxValue("A")...
(e.g. in this method, i can do some checking/validate before passing to the textbox)
  this can enforce the data consistency in my custom UI component...
  there is no way to achieve the same effect in MXML?
(e..g <mx:TextInput id="privateChildControl" accessScope="private" .../>)
  thank you..

Similar Messages

  • How to set the Model Class for a newly created Model Node ?

    Hello All,
      I am trying to map a Model node from SourceA to DestinationB.
      To do so, I created a model node for Destination B in the interface controller (set the isInputElement to true). However why I try to map the node, I get an error saying that "Both context nodes have to be bound to a model class". Upon a closer look, I realised that the model node that I created in DestinationB has no entries under the properties.
      Does anyone knows/advise how I can add the model class entry to the model node that I have created as I am not able to do so. Or otherwise, is there a way to map a model node to another model node across different components ? Thank you very much.
    from
    Kwok Wei
    from
    Kwok Wei

    Hello Pascal
      The instructioons that you gave are for mapping the model between the view controller and the component controller within the same component is that right ?
      I am tryng to map a model node in the component controller of SourceA to another model node that belongs to another Component. I do believe that in this case I will need to create a model node in the interface controller of DestinationB and map that to the component controller of SourceA. However, by creating my own model node, how do I change the property modelClass in the context ?
      Thanks !
    from
    Kwok Wei

  • How to set classpath for classes in war files

    Hi All,
    After deploying the WAR file I could access the JSP files but gives classnotfound exception when the information is expected from the java servlet.DO I need to set the classpath if yes how to do for the war file.
    thanks

    The web.xml,file structure and error is below let me know if more information is required.
    As you said weblogic is looking for the classes in lib directory inspite of having the classes in web-inf/classes directory.
    web-app>
    <servlet>
    <servlet-name>ControllerServlet</servlet-name>
    <servlet-class>com.test.site.pds.Controller</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ControllerServlet</servlet-name>
    <url-pattern>/controller</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    </web-app>
    File Structure:
    C:\test\PDSWebApp\WEB-INF\classes\com\test\site\pds\*.class
    PDSWebApp
         css
         html
         images
         javascript
         jsp
         WEB-INF
         classes
         com/test/site/pds/*.java
         lib
         servlets
    The error:
    javax.servlet.ServletException: [HTTP:101249][ServletContext(id=18129862,name=PdsApp,context-path=/PdsApp)]: Servlet class com.test.site.pds.Controller for servlet ControllerServlet could not be loaded because the requested class was not found in the classpath C:\bea\user_projects\domains\mydomain\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\PdsApp.war;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\classes12.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\commons-beanutils.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\commons-collections-2.1.1.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\commons-lang-2.0.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\displaytag-1.0.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\jstl.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\WEB-INF\lib\standard.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp\jarfiles\_wl_cls_gen.jar;C:\bea\user_projects\domains\mydomain\.\myserver\.wlnotdelete\extract\myserver_PDSAPP_PdsApp.
    java.lang.ClassNotFoundException: com.test.site.pds.Controller.

  • How to set/do the class which should be executed first in coded ui where there exists many classes [CodedUITest] attribute??

    Hello Team,
    I am using vsts 2012 for coded ui automation. I have created coded ui test project and added many coded ui classes- e.g
      [CodedUITest]
        public class A
    [CodedUITest] 
    public class b
    CodedUITest] 
    public class c
    So how can i set class order .....in coded ui test.....i want to run first class c then Class A and then calss B ...........
    I know using ordered test we can set order/sequence of methods to run................
    But can we achieve this for class also...............
    Please help me...........
    Thanks

    Hi Mon_bk,
    Thank you for posting in MSDN forum.
    >>So how can i set class order .....in coded ui test.....i want to run first class c then Class A and then calss B ...........
    Generally, I know that we could use this ordered test to call the codedUItest method to according to this specified order by ordered test.
    As you said that you want to set this class order in coded UI test, as far as I know that it is default that we could not implement this function in coded UI test.
    However, I have a replace workaround to run class order for coded UI test. The workaround is that you could try to use such as a console application to execute this coded UI test.
    For example, you could create a console application project and then reference this coded UI test project by Adding Reference.
    And then call this coded UI test class in this Main method, the code like the following.
    using CodedUITestProject1;
    namespace ConsoleApplication1
    class
    Program
    static
    void Main(string[] args)
    CodedUITestProject1.CodedUITestC codedC =
    new CodedUITestProject1.CodedUITestC();     
    codedC.CodedUITestMethodC();
    CodedUITestProject1.CodedUITestA codedA =
    new CodedUITestProject1.CodedUITestA();
           coded2.CodedUITestMethodA();
    CodedUITestProject1.CodedUITestB codedB =
    new CodedUITestProject1.CodedUITestB();
           coded3.CodedUITestMethodB();
    So I suggest you could try to refer the above code to check this issue.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Please help how to set/get a class object in hashtable or hashmap?

    Hi, everybody.
    I'd like to generate a class-object list in hashtable.
    However, compilation is error. Here is my code:
    Hashtable ht = new Hashtable();
    Class tmp_obj;
    tmp_obj = Class.forName("my_class_name_1");
    ht.put("my_class_name_1", tmp_obj);
    tmp_obj = Class.forName("my_class_name_2");
    ht.put("my_class_name_2", tmp_obj);
    Class selected_object = ht.get("my_class_name");
    ^here compilation error: incompitable types
    Could anybody tell me where is wrong in my code and how to
    correct it?
    Thank you in advance.
    Jeff

    Look at the javadoc for Hashtable. The get method returns an Object. You will need to cast it to a Class object.
    Class selected_object = (Class)ht.get( "my_class_name" );If you are using JDK5.0, then you should look up generics.

  • JAXB: How to have my generated classes subclass some other outside class ?

    With my XJS and DTD, JAXB generates the following:
    public class FraisMessage
        extends MarshallableRootElement
        implements RootElement
    { etc...I would like it to generate this instead:
    public class FraisMessage extends MyOtherClass
        extends MarshallableRootElement
        implements RootElement
    { etc...MyOtherClass is another class outside the scope of JAXB
    How do I do this ? What do I have to put in my XJS to get this ?

    You cannot do that. TheJAVA language does not allow a class to "extend" more than one upper class.
    Typically, the solution is to modify your architecture a little bit. Just use the "has a" relationship instead of "is a". That means something like that:public class MyFraisMessage
        extends MyOtherClass
        private FraisMessage message;
      etc...You write an extension "MyFraisMessage" of your upper class "MyOtherClass", which has the JAXB generated object as an attribute. This structure is often useful, when you think you would need multiple inheritance.

  • How to set radiobutton values based on some input values?

    LCD 8.0
    I have a table with 5 rows - each row has a checkbox in it.
    The user can select 0 - 5 checkboxes. Based on the number of selected checkboxes, I need to dynamically 'press' a radiobutton (out of 5) to show the corresponding Risk level - If 2 checkboxes are checked, I need to press radiobutton #2, if 3 checkboxes the 3rd radiobutton, etc..
    I can get the 1st one to work, but can't seem to be able to change it to any other radiobutton after the first.
    What I do is sum the # of checkboxes checked, and try to set the raw.Value of the radiobutton = 1.
    >var orgcnt = sum( PDF_CONTAINER.ConceptPage1.RisksPositioned.ORGRISKS.DATA[*].RISK_IND )
    >if ( orgcnt == 1 ) then >PDF_CONTAINER.IdeaSheetPage2.RiskAssesSubform.RiskTable.RISK_*****1.cell3.RadioButtonLis t.NoRisk.rawValue = 1
    >endif
    >if ( orgcnt == 2 ) then >PDF_CONTAINER.IdeaSheetPage2.RiskAssesSubform.RiskTable.RISK_*****1.cell3.RadioButtonLis t.MinorRisk.rawValue = 1
    >endif
    If I select 1 Checkbox, the first radiobutton IS pressed, however, when I select a 2nd checkbox, the 2nd radiobutton is NOT pressed and also blanks out the 1st radiobutton.
    any ideas?
    thanks,
    rp.

    Paul,
    thanks for your input.
    However, I'm not trying to change radiobuttons in Row2 - I'm trying to change a set of 6 radiobuttons in my Row1.Cell3
    I will always and only have two rows in my table. This first row is named
    PDF_CONTAINER.IdeaSheetPage2.RiskAssesSubform.RiskTable.
    b RISK_*****1
    and the second row is named
    PDF_CONTAINER.IdeaSheetPage2.RiskAssesSubform.RiskTable.
    b RISK_*****2
    In Cell3 of each of those rows, I have a Radiobutton group with 6 radiobuttons (named NoRisk, MinorRisk, SmallRisk, ModerateRisk, VeryRisky, CriticalRisk).
    What I'm trying to do is "press" one of those radiobuttons based on some other variable's value.
    Here's a sample bit of code that checks if my variable = 3, then "press" the 3rd radiobutton
    ] if ( orgcnt == 3 ) then
    PDF_CONTAINER.IdeaSheetPage2.RiskAssesSubform.RiskTable.RISK_*****1.cell3.RadioButtonList .SmallRisk.rawValue = 1
    endif
    But, I'm not getting a radiobutton pressed.
    EDIT: by the way, i'm sure my summed value is coming back because I placed it in a message box & see the correct number.

  • How to set up proxy for only some of all my accounts?

    I have two accounts A and B set up in my thunderbird. Now I'm going to connect to server A through a proxy while directly connecting to server B by just clicking the get new messages button. Is there a way to do that?

    You can set up an iTunes account for each of your kids without providing a credit card. Instead use gift cards or set up an allowance. For detailed info see: iTunes Gift Options
    Also make sure to check the Parental Control preferences in iTunes (iTunes: Using Parental Controls) and on each iPod (iPhone, iPad, and iPod touch: Understanding Restrictions).
    Alexander
    Message was edited by: narya

  • New WRT1900AC just set up right now with some questions.......

    Setup seems to have gone okay. BUT. I might have a weird issue or problem. I have a no remote access option under connectivity. I will attach a picture for you guys can see. I also updated to the latest firmware out of the box. My other question. Currently I have no AC devices on my network. But, in the future or if I have guests over that can use it. What is the difference between "Mixed" and "A/N Only" are those not the same settings? I currently have it set to N only atm since I only have 5GHz devices. Getting back to the missing remote access option. According to the Linksys guide. Its right under Admin.

    FurryNutz wrote:
    If you don't have any AC supporting devices, use mised A/N or single mode N
    Mixed mode is the way since per router's system information, mixed mode on 5 GHz (2.4 GHz radio disabled) gets this mode:
    ------------- wdev1ap0 Settings -------------
    Interface name: wdev1ap0
    SSID: (deleted)
    Mac address: wdev1ap0  getbssiddeleted)
    Channel: wdev1ap0  0 channels
              Current Channel:149
    Auto Channel: wdev1ap0  getautochannel:1 
    Banwidth (0=auto,2=20HMz,3=40MHz): wdev1ap0  gethtbw:0 
    Network Mode (1:b, 2:g, 3:b/g, 4:n[2.4GHz], 6:g/n, 7:b/g/n, 8:a, 12:a/n, 13:n[5GHz], 23:b/g/n/ac, 28:a/n/ac): wdev1ap0  getopmode:28
    Guard Interval (0=auto,1=Short,2=Long): Current wdev1ap0  getguardint:0 
    Current connected client(s): wdev1ap0  getstalistext:
    1: (BSSID deleted) n ASSOCIATED  Rate 866 Mbps, RSSI 31   A 59  B 63  C 67  D 65
    I just noticed a typo on linksys firmware status report LOL (Banwidth instead of Bandwidth)
    Basically, mixed mode on both 2.4 and 5 GHz only will result to mode 23 while N mode (must select 40 MHz) on both 2.4 and 5 GHz will result to mode 4 and 13.

  • How to reference a Constants.as actionscript in another actionscript class

    Hi,
    How can I use constant variables from a Constatnst file (.as file) in another actionscript class?
    Thanks.

    What id I don't have the Constants.as not defined as a class.
    Constants.as
    public static const BASE_NAME = "ABC";
    public static const EQUIPMENT_NAME = "777";
    I can't import is file as its not a class file, right?
    So, how can I access BASE_NAME, etc.
    In a mxml file, I use the <mx:Script source="/../Constants.as"/>
    but how about in an actionscript class file.

  • How to set Application Parameters in web dynpro application

    Hello everyone,
    I have a requirement where I need to set a table as a scrollable table , as i go through this link
    [http://help.sap.com/saphelp_nw04s/helpdata/EN/b5/ac884118aa1709e10000000a155106/content.htm]
    I found that there is a application parameter WDTABLENAVIGATION which needs to be set to SCROLLBAR
    I checked on every bit in nwds for the DC where I can set this parameter but could nt find it .
    Can anyone please help me out in finding this and making my table scrollable.
    regards,
    Raj

    Thanks for the response arindam,
    Do you have any idea how to set value , i tried with some values and it has been ending up in errors.
    Kindly help me out ..
    Regards,
    Raj

  • How to set selection screen

    I have a question that ...
    i have 2 options --
    when select 1st option , show group1 screen
    when select 2nd option, show group2 screen
    like the follow ..which is pretty work!....but i have another question that how to set the screen field ..
    my question is that if i select group1 screen...i want to set
    if S1_EBELN = '' and S1_IHREZ = ''.
        message e398 with 'pls input one of these two options!'.
      elseif S1_EBELN ne '' and S1_IHREZ ne ''.
        message e398 with 'Only one of these two options input is allowed&#65281;'.
      endif.
    i've tried to insert these statement within the LOOP...but not work ......
    so can anyone know how to set?
    PARAMETERS:
    R1 RADIOBUTTON GROUP OPT1 USER-COMMAND R DEFAULT 'X'.
    PARAMETERS:
    R2 RADIOBUTTON GROUP OPT1.
    SELECTION-SCREEN BEGIN OF BLOCK RPT1 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN SKIP 1.
    SELECT-OPTIONS: S1_BUKRS FOR EKKO-BUKRS MODIF ID ABC. 
    SELECT-OPTIONS: S1_EBELN FOR EKKO-EBELN MODIF ID ABC . 
    SELECT-OPTIONS: S1_IHREZ FOR EKKO-IHREZ MODIF ID ABC .  
    SELECTION-SCREEN END OF BLOCK RPT1.
    SELECTION-SCREEN BEGIN OF BLOCK RPT2 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN SKIP 1.
    SELECT-OPTIONS:  S2_BUKRS FOR EKKO-BUKRS MODIF ID DEF.
    SELECT-OPTIONS: S2_MBLNR FOR MKPF-MBLNR MODIF ID DEF.   
    SELECT-OPTIONS: S2_XBLNR FOR MKPF-XBLNR MODIF ID DEF .   
    SELECTION-SCREEN END OF BLOCK RPT2.
    IF R1 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'DEF'.
            screen-input = '1'.
            SCREEN-required = '1'.
            SCREEN-INVISIBLE = '1'.
            screen-input = '0'.
            screen-output = '1'.
            screen-active = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
    ELSEIF R2 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'ABC' .
            screen-active = '0'.
            screen-input = '0'.
            screen-output = '1'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.

    Modified ur code .
    tables : ekko, mkpf.
    PARAMETERS : R1 RADIOBUTTON GROUP RG USER-COMMAND R DEFAULT 'X'.
    PARAMETERS : R2 RADIOBUTTON GROUP RG .
    SELECTION-SCREEN BEGIN OF BLOCK RPT1 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN SKIP 1.
    SELECT-OPTIONS: S1_BUKRS FOR EKKO-BUKRS MODIF ID ABC.
    SELECT-OPTIONS: S1_EBELN FOR EKKO-EBELN MODIF ID ABC .
    SELECT-OPTIONS: S1_IHREZ FOR EKKO-IHREZ MODIF ID ABC .
    SELECTION-SCREEN END OF BLOCK RPT1.
    SELECTION-SCREEN BEGIN OF BLOCK RPT2 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN SKIP 1.
    SELECT-OPTIONS: S2_BUKRS FOR EKKO-BUKRS MODIF ID DEF.
    SELECT-OPTIONS: S2_MBLNR FOR MKPF-MBLNR MODIF ID DEF.
    SELECT-OPTIONS: S2_XBLNR FOR MKPF-XBLNR MODIF ID DEF .
    SELECTION-SCREEN END OF BLOCK RPT2.
    at selection-screen output.
    IF R1 = 'X'.
    LOOP AT SCREEN.
    IF screen-group1 = 'DEF' .
    screen-active = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ENDIF.
    IF R2 = 'X'.
    LOOP AT SCREEN.
    IF screen-group1 = 'ABC' .
    screen-active = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ENDIF.
    at selection-screen .
    if r1 = 'X'.
    if s1_ebeln[] is initial and s1_ihrez[] is initial..
    message e001(zxx) with 'pls input one of these two options!'.
    endif.
    if NOT s1_ebeln[] IS initial.
    IF NOT s1_ihrez[] IS INITIAL.
    message e001(zxx) with 'only one entry in Ebeln or Ihrez is
    allowed'.
    ENDIF.
    ENDIF.
    endif.
    START-OF-SELECTION.
    WRITE:/ 'hi'.
    ***add on
    split the text into two texts .
    <b>if NOT s1_ebeln[] IS initial.
    IF NOT s1_ihrez[] IS INITIAL.
    message e001(zxx) with text-001 text-002.
    *'only one entry in Ebeln   = text-001
    or Ihrez is allowed'.       = text-002.</b> 
    regards,
    vijay

  • How to call setter Method of ActionScript class with in a Flex Application

    Hi
    I have Action class as shown :
    public class MyClass
    private var name:String 
    public function get name():String {
        return _initialCount;
    public function set name(name:String):void {
        name = name;
    Now please let me know how can i access this Action class under my Flex Application and call the setter Method of it to set the value for the name .
    For example on entering some data in a TextInput and  click of a submit Button , on to the Event Listener , i want to call the set name method of my ActionScript class .
    Please share your ideas on this .

    Thanks  Gordon for your resonse .
    Say for example my Action class is like this :
    public class MyClass
    private var name:String 
    public function get name():String {
        return name;
    public function set name(name:String):void {
        name = name;
    This is inside the MXML
    I know this way we can do it
    public var myclass:MyClass = new MyClass();
    myclass.name="Kiran";
    Now my query is can we do in this way also ??
    myclass.set name(SomeTextInput.text);
    Please share your views on this , waiting for your replies .
    Thanks in advance .

  • How to Access MXML components  from ActionScript class

    Hi ,
    I am having a Application Conataner , in which i am having a Form Container with some Label in it .
    This is some thing similar to this as shown :
    <Mx:Application>
    <Mx:Form>
    <Mx:Label text="Hello world"/>
    </Mx:Form>
    </Mx:Application>
    Can any body please let me know how can i access this Form's Label , from an ActionScript class .
    catch(error:*)
    // Here i want to access these Objects and set data to that Label .
    Basically My requirement is that iinside the catch block of my ActionScript class , i want to set some text to the Label , Please
    let me know if this is possible or not also ??
    Waiting for your Replies .

    Hi these both are not same these refer to different one...
    Well let me explain...
    Application.application.myCustomComp.myLabel.text = "sometext"; sets the label "myLabel" which is present inside your customcomponent(which is in main application).
    Application.application.myLabel.text = "sometext"; sets the label "myLabel" which is present directly inside your main application.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Label id="myLabel"  text=""/> // So inorder to set the label(myLabel) present here you will use directly the 2nd line of code.
    <mx:CustomComp id="myCustomComp" /> // So inorder to set the label(myLabel) present inside this component you use 1st line of code.
    </mx:Application>
    Hope now its clear.
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari

  • How to set DHCP Class ID in OS X 10.2 ???

    Hi everybody,
    At work we have a network that uses a specific DHCP class ID and the DHCP server does not issue IP's and stuff unless the class ID is correctly set on the client. I have been searching all over the net for the procedure to set the DHCP class ID in OS X, I know how to do it in Windows (ipconfig /setclassid) but I cannot find the OS X equivalent.
    Anybody can help?
    Thanks in advance,
    Virgil

    vzane:
    Welcome to Apple Discussions.
    I am not familiar with what you are trying to do. However, here are some links that may have some useful information for you:
    TCP/IP: IP Addresses for Private Networks
    Open Transport 2.0 Technical Information - Part 1
    May I further suggest that you post your question in the Networking and the Web Forum.
    Good luck.
    cornelius

Maybe you are looking for

  • FindChangeByList script to include Style Groups/sub Style Groups

    I've been using this function happily (with varying degrees of success & lots of trial and error) for a while now. I'm not a script writer, understand very little but manage to copy and paste, and hope for the best. This has served my wishes for the

  • SQL Script working differently with 8i and 9i

    Hi I am facing strange problem with my simple SQL script called from a shell script. It bahaves differently with ORACLE 8.1.7.4 and 9.2.0.1. The machine is same. sqlplus -s / @Tech.sql WKC625 11 11 '11 22' "" This is working with 9i but it does't wor

  • Nokia 6700 - Issue with "0" button

    Hi all,  Just checking: On my 6700 the middle button in the last row ("0") has completely different (much worse) travel and response than all the other keys. Also the physical "click" is hardly nit there. As a result, when pressing "0" I have to pres

  • SOAP Configuration for ECC 6

    Hi, currently we are using Business connector to transfer XML files from SAP to 3rd Party. but as per the business requirements we need to configure SOAP in ECC 6 with only ABAP stack. could some one help me to configure SOAP process in ECC Applicati

  • Cant pair BLACKBERRY 9700 desktop manager software with P300

    Hello, Hope someone can help. Im running a Toshiba P300 Bluetooth enabled Laptop. Did have a Nokia N96 which paired up no problem with PC Suite but ive tried everything with this Blackberry and their Software the Desktop Manager and i just cannot get