Can you plz help me finding a document on Error Re-start in transactions

Hi everybody
Can you plz.. help me find out a good documentation of Error Restart so that I will be able to know some more about it.
Here, by error restart i want to say that like when we are fetching 5 lac records and by chance our transaction disrupts somehow then we don't want to start the transactions all over again we just want to start it from the point where it terminated.
Thanks & Regards
Peeyush

Suppose I have 5 to 10 lac records
and after say 2 hrs somehow the transaction of copying data from one table to another got disrupted some how
now when I want to restart the transaction I want it to start from the record where it left off
I am newbie sir so I would request you to give me a document which will give knowledge from head to toe regarding transaction management and the query I've asked.

Similar Messages

  • Hey every one ,i bought a new ipad 2 last month,i am not using it  so much but  sometimes it does respond,hang's up,all games and app come out of there folder . can you plz help me

    hey every one ,i bought a new ipad 2 last month,i am not using it  so much but  sometimes it does respond,hang's up,all games and app come out of there folder . can you plz help me.my email id is [email protected]

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.
    Don't leave your email address on a public forum

  • Can you please help me find my ipad

    Well im very sad i dont know what happened to my ipad i think i put it in my bag this morning , then in first period i set it down to do a group thing then 3rd pertiod i was gonna listen to music and i didnt see it so how do i try to find it please help me , im scared to tel my mom and dad!!!!!

    Welcome to the Apple Community.
    Unfortunately unless you had already activated find my phone, there isn't much you can do except carry on looking.
    For what it's worth, the sooner you tell your parents, teachers etc, the greater your chance of recovering it might be.

  • Can you please help me find thethe aii map api.jar file

    Hi Experts,
    As a part of my scenario I must Import the aii_map_api.jar library.
    The file aii_map_api.jar is located in
    \toolkit\Java Mapping\Software\aii_map_api.jar directory. [In the XI Server installation directory].
    I do not have permissions to access this file.
    Can you help me out guys?
    Thanks in Advance,
    Thomas

    Hi Check the path
    usrsap<SID>DVEBMGS00j2eeclusterserver0appssap.comcom.sap.xi.services
    or some threads are
    aii_map_api.jar
    aii_map_api.jar
    Thanks!

  • Reg: can anyone plz help me finding a badi for FB01

    hi..,
       My requirement is to capture the profit center & change it w.r.to the profit center available in purchase order while posting a documet in FB01. iam trying to find a badi for this.. can anyone plz suggest me, how to proceed??? this is the first time iam dealing with badi's...

    just run this program u find badi related to transaction.
    *& Report  ZNEGI16                                                     *
    REPORT  ZNEGI16                                 .
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    * Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    * Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    * For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.

  • HT1933 I make a purhase on March 6 at 11:33 Order number MHOXX3TK9J for $1.99 and my credit card was charged $20.00 can you please help me find out why this happened

    I made a purchase on itunes on March 6 at 11:33 order umber MHOXX3TK9J for 1.99 and my credit card was charged $20.00 please help me find out why this happened.

    Contact iTunes support at the link below.
    https://ssl.apple.com/emea/support/itunes/contact.html

  • Can you guys help me find a certain .plist?

    one of our lovely contributors posted this to help me with my issue:
    (i need to get photosmart studio to run on my friends computer because it is the only app he's familiar with, upon upgrading his computer to 10.6, he lost functionality of this app, upgrading from 10.4.11)
    I tried to resolve this thru HP support, but never got past the level 1 reinstall BS. However, I did come up with a 'fix'.
    By using Activity Monitor and Xcode Instruments I was able to determine that the excess cpu and memory was being consumed by a Studio thread responsible for Keyword Albums. I tried to 'turn off' Keyword Albums by deselecting the default albums in Studio Preferences, but this did not work. Finally I disabled Keyword Albums by using the plist editor to change the content of ~/Library/Preferences/com.hp.Photosmart.keywords.plist to this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>CustomKeywords</key>
    <array/>
    <key>Language</key>
    <string>English</string>
    </dict>
    </plist>
    Studio now functions normally except, of course, for Keyword Albums are disabled.
    i can't find the photosmart.keywords .plist he is referring to, when i change the regular old hp.keywords plist nothing happens because upon application launch, it writes itself a new one.
    maybe i'm doing this the wrong way? Changing a plist in the library folder with text edit and saving,
    IS there a way to find other .plists that are in the application?
    please someone help me, i need to disable keywords in photosmart studio so it can launch.
    sorry for being such a newb
    thanks

    I think that's my post from ages ago. If you have ever run Studio the plist is in /Users/YOUR_USERID/Library/Preferences/com.hp.Photosmart.keywords.plist. However, ASFAIK Studio won't run at all on Snow Leopard.

  • Can you guys help me find where did I make the mistake?

    Hi guys...
    I am working in two different frames, where in one of them I have a user input text field and besides I have a button that takes me to the next frame.
    In the next frame I have the output box, but I dont get there what I typed in the input one.
    Any help?
    This is what I have:
    FRAME 1
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import flash.text.Font;
    import flash.text.FontStyle;
    import flash.text.FontType;
    import flash.display.SimpleButton;
    var txt_inp:TextField = new TextField();
    txt_inp.x = 20;                  
    txt_inp.y = 700;
    txt_inp.width = 400;
    txt_inp.height = 50;
    txt_inp.restrict = "0-9 a-z A-Z";
    txt_inp.maxChars = 28;
    var myText:String = "Type your name here / Escriba su nombre aqui";
    var format:TextFormat = new TextFormat();
    format.font = "CooperBlack";
    format.size = 20;
    txt_inp.defaultTextFormat = format;
    var ok:Ok = new Ok();
    captureText();
    function captureText():void
                txt_inp.type = TextFieldType.INPUT;
                txt_inp.background = true;
                addChild(txt_inp);
                txt_inp.text = myText;
                txt_inp.addEventListener(TextEvent.TEXT_INPUT, textInputCapture);
    function textInputCapture(event:TextEvent):void
                                  ok.x = 450;
                                  ok.y = 720;
                                  ok.width = 80
                                  ok.height = 80;
      addChild(ok);
    var str:String = txt_inp.text;
    ok.addEventListener(MouseEvent.CLICK, toGameOver);
    function toGameOver (e:MouseEvent):void {
              ok.removeEventListener(MouseEvent.CLICK, toGameOver)
              gotoAndStop(5);
    FRAME 2
    removeChild(ok);
    removeChild(txt_inp);
    var myOutputBox:TextField = new TextField();
    var GOver:gameOver = new gameOver();
    GOver.x = 300;
    GOver.y = 337,85;
    GOver.width = 1500;
    GOver.height = 1000;
    myOutputBox.x = 420;                  
    myOutputBox.y = 700;
    myOutputBox.width = 400;
    myOutputBox.height = 50;
    myOutputBox.defaultTextFormat = format;
    addChild(GOver);
    createOutputBox(str);
    function createOutputBox(str:String):void
    myOutputBox.background = true;
    myOutputBox.x = 200;
    addChild(myOutputBox);
    myOutputBox.text = str;
    Thanks a lot!!!

    You need to be mindful of when you assign the str value....
    var str:String = txt_inp.text;
    The way you have it as shown, it is going to assign the nothing that is in the textfield since that line will execute before any text gets assigned.
    You would want to have that assignment done after the text in the textfield changes.  You still need to declare the variable outside any function so that it can be available to frame two in terms of scope, but the assignment needs to happen in your textInputCapture function.
    Also, using the TextEvent.TEXT_INPUT event will likely miss the mark as well since it triggers before the text is changed in the textfield, which will cause the text to be missing the last character entered.  You should use the Event.CHANGE event instead.

  • CAN YOU PLZ HELP ME :(

    java.net.ConnectException: Connection refused: connect
    Hello;
    I am trying to run the RMI demo sample which available in javacard samples. I am using the cosmos development kit with cosmos 64 RSA smart card. I download the RMI Demo in smart card using the application loader. After that, I run the client purse client in my computer. But it show error � java.net.ConnectException: Connection refused: connect�. I trace the problem it is from this line in code:
    // open and powerup the card
    ca = new ApduIOCardAccessor();
    Can someone advice me what to do ���..
    Also for the sub and proxy, in java we put the proxy on the server and sub in client. How can I generate the proxy? Dose I have to load it in smart card or not�

    Suppose I have 5 to 10 lac records
    and after say 2 hrs somehow the transaction of copying data from one table to another got disrupted some how
    now when I want to restart the transaction I want it to start from the record where it left off
    I am newbie sir so I would request you to give me a document which will give knowledge from head to toe regarding transaction management and the query I've asked.

  • Can you please help me find out...

    Hi. How can I drag and drop music into a iPod from a computer and get it to work? My computer will not work with iTunes, so I need to know this... Thanks.

    You should run some diagnostics/repair tools and get it sorted.

  • Hi can you please help me finding solution to the fillowing issue

    Hi i am getting this error on my local machine.
    ####<Apr 29, 2010 6:29:37 PM CDT> <Info> <XML> <VenkataNagi-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1272583777113> <BEA-130036> <Initializing XMLRegistry.>
    ####<Apr 29, 2010 6:29:37 PM CDT> <Info> <messaging.interception> <VenkataNagi-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1272583777188> <BEA-400000> <Initializing message interception service>
    ####<Apr 29, 2010 6:29:37 PM CDT> <Info> <Store> <VenkataNagi-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1272583777783> <BEA-280050> <Persistent store "_WLS_AdminServer" opened: directory="C:\bea103\user_projects\domains\sampleDomain\servers\AdminServer\data\store\default" writePolicy="Direct-Write" blockSize=512 directIO=true driver="wlfileio2">
    ####<Apr 29, 2010 6:29:38 PM CDT> <Info> <JDBC> <VenkataNagi-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1272583778225> <BEA-001135> <Initializing the JDBC service.>
    ####<Apr 29, 2010 6:29:38 PM CDT> <Info> <JDBC> <VenkataNagi-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1272583778237> <BEA-001136> <Initialization failed.>
    ####<Apr 29, 2010 6:29:38 PM CDT> <Info> <JDBC> <VenkataNagi-PC> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1272583778237> <BEA-001156> <Stack trace associated with message 001136 follows:
    java.lang.NullPointerException
         at java.util.Hashtable.put(Hashtable.java:399)
         at weblogic.jdbc.module.JDBCDataSourceFactory.addDataSourceFactory(JDBCDataSourceFactory.java:36)
         at weblogic.jdbc.common.internal.JDBCService.initFactories(JDBCService.java:370)
         at weblogic.jdbc.common.internal.JDBCService.initialize(JDBCService.java:114)
         at weblogic.jdbc.common.internal.JDBCService.start(JDBCService.java:134)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Apr 29, 2010 6:29:38 PM CDT> <Critical> <WebLogicServer> <VenkataNagi-PC> <AdminServer> <main> <<WLS Kernel>> <> <> <1272583778242> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    java.lang.NullPointerException
         at java.util.Hashtable.put(Hashtable.java:399)
         at weblogic.jdbc.module.JDBCDataSourceFactory.addDataSourceFactory(JDBCDataSourceFactory.java:36)
         at weblogic.jdbc.common.internal.JDBCService.initFactories(JDBCService.java:370)
         at weblogic.jdbc.common.internal.JDBCService.initialize(JDBCService.java:114)
         at weblogic.jdbc.common.internal.JDBCService.start(JDBCService.java:134)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    <?xml version='1.0' encoding='UTF-8'?>
    <domain xmlns="http://www.bea.com/ns/weblogic/920/domain" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90/security/wls http://www.bea.com/ns/weblogic/90/security/wls.xsd http://www.bea.com/ns/weblogic/920/domain http://www.bea.com/ns/weblogic/920/domain.xsd http://www.bea.com/ns/weblogic/90/security/xacml http://www.bea.com/ns/weblogic/90/security/xacml.xsd http://www.bea.com/ns/weblogic/90/security http://www.bea.com/ns/weblogic/90/security.xsd">
    <name>sampleDomain</name>
    <domain-version>10.3.0.0</domain-version>
    <security-configuration>
    <name>sampleDomain</name>
    <realm>
    <sec:authentication-provider xsi:type="wls:default-authenticatorType"></sec:authentication-provider>
    <sec:authentication-provider xsi:type="wls:default-identity-asserterType">
    <sec:active-type>AuthenticatedUser</sec:active-type>
    </sec:authentication-provider>
    <sec:authentication-provider xsi:type="wls:open-ldap-authenticatorType">
    <sec:name>OpenLDAPAuthenticator</sec:name>
    <sec:control-flag>OPTIONAL</sec:control-flag>
    <wls:propagate-cause-for-login-exception>false</wls:propagate-cause-for-login-exception>
    </sec:authentication-provider>
    <sec:role-mapper xmlns:xac="http://www.bea.com/ns/weblogic/90/security/xacml" xsi:type="xac:xacml-role-mapperType"></sec:role-mapper>
    <sec:authorizer xmlns:xac="http://www.bea.com/ns/weblogic/90/security/xacml" xsi:type="xac:xacml-authorizerType"></sec:authorizer>
    <sec:adjudicator xsi:type="wls:default-adjudicatorType"></sec:adjudicator>
    <sec:credential-mapper xsi:type="wls:default-credential-mapperType"></sec:credential-mapper>
    <sec:cert-path-provider xsi:type="wls:web-logic-cert-path-providerType"></sec:cert-path-provider>
    <sec:cert-path-builder>WebLogicCertPathProvider</sec:cert-path-builder>
    <sec:name>myrealm</sec:name>
    </realm>
    <default-realm>myrealm</default-realm>
    <credential-encrypted>{3DES}n0iwNj8GlFYeAtvIzB9EUUjMitp+w+D5AHNucVgPL9+AahNEg5CkwkW90LYdkx4TUl3CplQWzS4xMwWN0wy1YIma2SIe7ibT</credential-encrypted>
    <node-manager-username>weblogic</node-manager-username>
    <node-manager-password-encrypted>{3DES}aVtWfOVi8vJXhmu+OmkuDQ==</node-manager-password-encrypted>
    </security-configuration>
    <server>
    <name>AdminServer</name>
    <listen-address>127.0.0.1</listen-address>
    </server>
    <server>
    <name>ManServer1</name>
    <ssl>
    <hostname-verifier xsi:nil="true"></hostname-verifier>
    <hostname-verification-ignored>true</hostname-verification-ignored>
    <export-key-lifespan>500</export-key-lifespan>
    <client-certificate-enforced>false</client-certificate-enforced>
    <two-way-ssl-enabled>false</two-way-ssl-enabled>
    <ssl-rejection-logging-enabled>true</ssl-rejection-logging-enabled>
    <inbound-certificate-validation>BuiltinSSLValidationOnly</inbound-certificate-validation>
    <outbound-certificate-validation>BuiltinSSLValidationOnly</outbound-certificate-validation>
    <allow-unencrypted-null-cipher>false</allow-unencrypted-null-cipher>
    <use-server-certs>false</use-server-certs>
    </ssl>
    <machine>sampleMachine1</machine>
    <listen-port>7003</listen-port>
    <cluster>sampleCluster</cluster>
    <web-server>
    <web-server-log>
    <number-of-files-limited>false</number-of-files-limited>
    </web-server-log>
    </web-server>
    <listen-address>127.0.0.1</listen-address>
    <server-start>
    <java-vendor>Sun</java-vendor>
    <java-home>C:\bea103\jdk160_05</java-home>
    <class-path>CLASSPATH=;C:\bea103\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea103\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea103\JDK160~1\lib\tools.jar;C:\bea103\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea103\WLSERV~1.3\server\lib\weblogic.jar;C:\bea103\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\bea103\WLSERV~1.3\server\lib\webservices.jar;C:\bea103\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea103\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\bea103\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\bea103\WLSERV~1.3\server\lib\xqrl.jar;;.PATH=C:\bea103\patch_wls1030\profiles\default\native;C:\bea103\patch_cie660\profiles\default\native;C:\bea103\WLSERV~1.3\server\native\win\32;C:\bea103\WLSERV~1.3\server\bin;C:\bea103\modules\ORGAPA~1.5\bin;C:\bea103\JDK160~1\jre\bin;C:\bea103\JDK160~1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\bea103\WLSERV~1.3\server\native\win\32\oci920_8</class-path>
    <bea-home>C:\bea103</bea-home>
    <username>weblogic</username>
    <password-encrypted>{3DES}aVtWfOVi8vJXhmu+OmkuDQ==</password-encrypted>
    </server-start>
    <jta-migratable-target>
    <user-preferred-server>ManServer1</user-preferred-server>
    <cluster>sampleCluster</cluster>
    </jta-migratable-target>
    </server>
    <server>
    <name>ManServer2</name>
    <ssl>
    <hostname-verifier xsi:nil="true"></hostname-verifier>
    <hostname-verification-ignored>true</hostname-verification-ignored>
    <export-key-lifespan>500</export-key-lifespan>
    <client-certificate-enforced>false</client-certificate-enforced>
    <two-way-ssl-enabled>false</two-way-ssl-enabled>
    <ssl-rejection-logging-enabled>true</ssl-rejection-logging-enabled>
    <inbound-certificate-validation>BuiltinSSLValidationOnly</inbound-certificate-validation>
    <outbound-certificate-validation>BuiltinSSLValidationOnly</outbound-certificate-validation>
    <allow-unencrypted-null-cipher>false</allow-unencrypted-null-cipher>
    <use-server-certs>false</use-server-certs>
    </ssl>
    <machine>sampleMachine1</machine>
    <listen-port>7004</listen-port>
    <cluster>sampleCluster</cluster>
    <web-server>
    <web-server-log>
    <number-of-files-limited>false</number-of-files-limited>
    </web-server-log>
    </web-server>
    <listen-address>127.0.0.1</listen-address>
    <server-start>
    <java-vendor>Sun</java-vendor>
    <java-home>C:\bea103\jdk160_05</java-home>
    <class-path>CLASSPATH=;C:\bea103\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea103\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea103\JDK160~1\lib\tools.jar;C:\bea103\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea103\WLSERV~1.3\server\lib\weblogic.jar;C:\bea103\modules\features\weblogic.server.modules_10.3.0.0.jar;C:\bea103\WLSERV~1.3\server\lib\webservices.jar;C:\bea103\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea103\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\bea103\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\bea103\WLSERV~1.3\server\lib\xqrl.jar;;.PATH=C:\bea103\patch_wls1030\profiles\default\native;C:\bea103\patch_cie660\profiles\default\native;C:\bea103\WLSERV~1.3\server\native\win\32;C:\bea103\WLSERV~1.3\server\bin;C:\bea103\modules\ORGAPA~1.5\bin;C:\bea103\JDK160~1\jre\bin;C:\bea103\JDK160~1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\bea103\WLSERV~1.3\server\native\win\32\oci920_8</class-path>
    <bea-home>C:\bea103</bea-home>
    <username>weblogic</username>
    <password-encrypted>{3DES}aVtWfOVi8vJXhmu+OmkuDQ==</password-encrypted>
    </server-start>
    <jta-migratable-target>
    <user-preferred-server>ManServer2</user-preferred-server>
    <cluster>sampleCluster</cluster>
    </jta-migratable-target>
    </server>
    <server>
    <name>ManServer3</name>
    <ssl>
    <enabled>false</enabled>
    </ssl>
    <machine xsi:nil="true"></machine>
    <listen-port>7005</listen-port>
    <listen-port-enabled>true</listen-port-enabled>
    <cluster xsi:nil="true"></cluster>
    <web-server>
    <web-server-log>
    <number-of-files-limited>false</number-of-files-limited>
    </web-server-log>
    </web-server>
    <java-compiler>javac</java-compiler>
    <client-cert-proxy-enabled>false</client-cert-proxy-enabled>
    </server>
    <cluster>
    <name>sampleCluster</name>
    <cluster-address>127.0.0.1:7003,127.0.0.1:7004</cluster-address>
    <multicast-address>239.192.0.10</multicast-address>
    <multicast-port>7001</multicast-port>
    <default-load-algorithm>round-robin</default-load-algorithm>
    <cluster-messaging-mode>multicast</cluster-messaging-mode>
    <number-of-servers-in-cluster-address>2</number-of-servers-in-cluster-address>
    </cluster>
    <embedded-ldap>
    <name>sampleDomain</name>
    <credential-encrypted>{3DES}iWr2QPsrXppHBhXMbMUU+kWsBmrusVuWZhKBQDLDtlY=</credential-encrypted>
    </embedded-ldap>
    <configuration-version>10.3.0.0</configuration-version>
    <app-deployment>
    <name>appsdirCalendar_war</name>
    <target>AdminServer</target>
    <module-type>war</module-type>
    <source-path>autodeploy\Calendar.war</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>stage</staging-mode>
    </app-deployment>
    <app-deployment>
    <name>appsdirmyservletwar_war</name>
    <target>AdminServer</target>
    <module-type>war</module-type>
    <source-path>autodeploy\myservletwar.war</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>stage</staging-mode>
    </app-deployment>
    <app-deployment>
    <name>appsdirsample_war</name>
    <target>AdminServer</target>
    <module-type>war</module-type>
    <source-path>autodeploy\sample.war</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>stage</staging-mode>
    </app-deployment>
    <jdbc-data-source-factory>
    <name>sampleDataSourceFactory</name>
    <user-name>weblogic</user-name>
    <password-encrypted>{3DES}aVtWfOVi8vJXhmu+OmkuDQ==</password-encrypted>
    </jdbc-data-source-factory>
    <machine>
    <name>sampleMachine1</name>
    <node-manager>
    <nm-type>SSL</nm-type>
    <listen-address>127.0.0.1</listen-address>
    <listen-port>5556</listen-port>
    <debug-enabled>false</debug-enabled>
    </node-manager>
    </machine>
    <jms-server>
    <name>sampleJMSServer</name>
    <target>ManServer1</target>
    <persistent-store>sampleFileStore</persistent-store>
    </jms-server>
    <migratable-target>
    <name>ManServer1 (migratable)</name>
    <notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
    <user-preferred-server>ManServer1</user-preferred-server>
    <cluster>sampleCluster</cluster>
    </migratable-target>
    <migratable-target>
    <name>ManServer2 (migratable)</name>
    <notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
    <user-preferred-server>ManServer2</user-preferred-server>
    <cluster>sampleCluster</cluster>
    </migratable-target>
    <self-tuning>
    <response-time-request-class>
    <name>ResponseTimeReqClass</name>
    <target>AdminServer</target>
    <goal-ms>10</goal-ms>
    </response-time-request-class>
    <work-manager>
    <name>sampleWorkManager</name>
    <target>AdminServer</target>
    <response-time-request-class>ResponseTimeReqClass</response-time-request-class>
    </work-manager>
    </self-tuning>
    <startup-class>
    <name>StartupClass</name>
    <target>AdminServer</target>
    <class-name>Mystartupclass</class-name>
    </startup-class>
    <file-store>
    <name>FileStore-0</name>
    <directory>./</directory>
    <target>ManServer1</target>
    </file-store>
    <file-store>
    <name>sampleFileStore</name>
    <directory>./sampleFileStore</directory>
    <target>ManServer1</target>
    </file-store>
    <jms-system-resource>
    <name>sampleSystemModule</name>
    <target>ManServer1,ManServer2</target>
    <sub-deployment>
    <name>sampleQueue1</name>
    <target>sampleJMSServer</target>
    </sub-deployment>
    <sub-deployment>
    <name>sampleTopic1</name>
    <target>sampleJMSServer</target>
    </sub-deployment>
    <descriptor-file-name>jms/samplesystemmodule-jms.xml</descriptor-file-name>
    </jms-system-resource>
    <admin-server-name>AdminServer</admin-server-name>
    <jdbc-system-resource>
    <name>sampleDataSource</name>
    <target>ManServer1,ManServer2</target>
    <descriptor-file-name>jdbc/sampleDataSource-2657-jdbc.xml</descriptor-file-name>
    </jdbc-system-resource>
    </domain>

  • I payed for my creative cloud membership 9.99 / monthe. bought it this morning. I was able to download Lr, but not Ps. I am wondering why is asking me to pay antoher 9.99 if I got the student deal. Can you please help. thank you.

    I payed for my creative cloud membership at 9.99/mo. I got it this morning. I was able to download Lr, but not able to download Ps. is asking me to pay again. Why is that, because I got the student packet deal. Can you please help.

    Mariacazarez what is the exact error message you receive when you try to download and install Photoshop?  For information on how to install the Adobe Creative applications included with your membership please see Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.

  • Hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder go it says this file doesn't exist. can some1 plz help?

    hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder> go it says this file doesn't exist. can some1 plz help? how can i put all my application through application folder?

    Something really odd is going on. In your first screen shot, I noticed that the Applications folder does not have the proper icon displayed in the side bar. Also, in the title bar it lists it as Applications 08-59-29-909.
    Not sure where it's picking up that odd name, unless it's because it's still truly within the Trash folder.
    Try this. In the Finder > Preferences > General > turn on "Always open folders in a new window". (I have a feeling you have the default setting with this off).
    Now, in Finder > Go > move down and open the Applications Folder from there. Now open the folder where you see all your applications that you show in your screen shot, select all, and move them to this true appliactions folder.
    This is what you should properly seeing (but with different apps listed):
    See how the Applications folder has the icon of the letter A shaped with a pencil, ruler & pen.

  • I have a defective iphone5 which is under guarantee,but unfortunately there isn't any apple retail store in my country.would you plz help me how can I change it?should I go to near country such as Dubai or Turkey to change it?

    I have a defective iphone5 which is under guarantee,but unfortunately there isn't any apple retail store in my country.would you plz help me how can I change it?should I go to near country such as Dubai or Turkey to change it?

    If the iPhone came from the US, then that is the only place where Apple will service it. If you can't take it there yourself, you would need to send the iPhone to someone you know in the US who could get it serviced and then send it back to you.
    Your only other option will be to find some unauthorized cellphone repair shop to attempt a repair, after which all further support from Apple, in the US or anywhere else, will no longer be available to you.
    Regards.

  • Need driver for canon mg 5250 as scanner is not working with version 10.7. Can you please help me to find the driver so scanner works with WIFI?

    need driver for canon mg 5250 as scanner is not working with version 10.7. Lion. Can you please help me to find the driver so scanner works with WIFI?

    Try with the latest Apple driver package for Canon (released 15th Feb):
    http://support.apple.com/kb/DL899
    This solved my problem with the printing.

Maybe you are looking for

  • How to read the BOL of confirmed BP on IC?

    Hi Experts, Could you tell me (or send me a piece of code) how to read the business partner number and address of the confirmed BP on Interaction Center? What is the right BOL object? Where is this data stored? How can I gain this information in runt

  • Bex Query showing incorrect data

    Hi Experts, I have a Bex query on an infoset. The infoset is based on Sales Order Line Item DSO and Sales Order Condition DSO. I am refering Net value from Sales Order Line Item DSO. In the query, the values of Net Value is not coming correctly. When

  • How do I synchronize a code-section? semaphores?

    I know how to use the synchronized methods, but how do I synchronize code-sections inside mehods? For instance, if I have a vector in a class that must never be tampered with by two threads at the same time but i don't feel like making synchronized w

  • System 9 vs Legacy

    <BR>I am trying to map the System 9 with Legacy applications of Hyperion. <BR>Below is the table of the comparision. Can someone validate this and also help me finding out the <BR>mapping for the below products?<BR><BR><BR>Where does the below legacy

  • 'Item dependency "CURRENT_YEAR" not found in the EUL' error after 4i to 10g

    Hi All, I have successfully completed a Discoverer 4i to 10g (10.1.2.48.18) upgrade. There is only one EUL (EUL_US) and it has been upgraded to version 5.1.1. All the Workbooks are saved to the File System. However, during testing some of the Workboo