How to create a text which can support more than 500 chars ?

Hi all:
    In my interactive form, I have one text, the value inside this text is longtext, the length will be more than 500 chars.
    My problem is now , if there is more than 100 chars, there will be duplicated chars in this text.
    Can I make this text support overlap ? when the value have too many chars, it will display in next row ? is it possible ?

Hi,
The 2 points are compulsory for multiline display.
Could you please let me know the following things.
1. Is that field is wrapped by any position content subform.If this is the case, try making flow content.
2. Is there any field below the text field and the 2 fields are wrapped in position content, In this case also make the subform as flow content.
Refer the example form FP_TEST_01 in SFP transaction.Check the subform and field properties.
Make a backup before making changes.
Thanks and Regards,
Pavan Meda

Similar Messages

  • How to create a structure which can hold a dynamic table as a field in DDIC

    Hi ,
           I am designing a solution for a problem and have a unique requirement.  I need to create a structure which can hold a field where dynamic table data can be stored.  Let me illustrate with an example :
    My structure  ( say  Z_output_struc ) will have the fields
    Table_name  Table_Data
    My function module will have a table type of the above structure, so in effect ,my output can have multiple table names and related to each of them, there will be table data of that table name. The issue is how do I configure this in DDIC ?
    I tried creating table_data as "Type ref to Data"  but was stuck  inside the func module when I tried to transfer data to this.
    Any pointers as to how to think about this differently ? 
    Best Regards,
    Girish

    Hi Girish,
    you start directly from the ref to data. You assign it to a field symbol and cast this to the type of the destination of your select. So you can directly add the reference to the cache:
    I hope this example helps a bit (I took a form instead of a function module as it is easier to add here and used an hr table as kna1 is empty on my test system):
    REPORT  z_rwe_99_dyn_tab_cache.
    * type definition
    TYPES:
      BEGIN OF _s_cache,
        table TYPE        tabname16,
        cache TYPE REF TO data,
      END   OF _s_cache,
      _t_cache TYPE STANDARD TABLE OF _s_cache.
    * data declaration
    DATA:
      lv_table     TYPE tabname16,
      lv_condition TYPE string,
      lt_cache     TYPE _t_cache.
    * define table and condition
    lv_table     = 'HRP1000'.
    lv_condition = 'plvar = ''01'' and otype = ''S'' and objid = ''50000016'''.
    * get the result of a single table into the cache
    PERFORM get_dyn_table USING
                            lv_table
                            lv_condition
                          CHANGING
                            lt_cache.
    * form to read a single table
    FORM get_dyn_table USING
                         iv_table     TYPE tabname16
                         iv_condition TYPE string
                       CHANGING
                         ct_cache     TYPE _t_cache.
      FIELD-SYMBOLS:
        <lt_table> TYPE ANY TABLE.
      DATA:
        ls_cache TYPE        _s_cache,
        lr_data  TYPE REF TO data.
      CREATE DATA lr_data TYPE STANDARD TABLE OF (iv_table).
      ASSIGN lr_data->* TO <lt_table>.
      SELECT * FROM (iv_table) INTO TABLE <lt_table>
        WHERE
          (iv_condition).
      ls_cache-table = lv_table.
      ls_cache-cache = lr_data.
      APPEND ls_cache TO ct_cache.
    ENDFORM.                    "get_dyn_table
    If you have more questions just give another post.
    Best Regards
    Roman

  • How to create a material which can be used in T-Codes VAO1 & MB1C create

    Hello Experts,
    How can I create a material which can be used to create a sales order and can be used to create inventory using VAO1 and MB1C T-Codes respectively.
    What are the configurations that I need to take care of, while creating it?
    I need to create a material which can be used in the whole sales cycle(sales order,goods issue,billing and etc).
    Please Help,
    Thanks in Advance,
    Suma

    Hi
    Thanks for your fast replies.. I have created a new material and was able to create inventory thru MB1C. But I was not able to generate a goods delivery(VL01N) and billing document(VF01)  for the sales order.
    Error: No schedule lines due for delivery up to the selected date
    Message no. VL248
    Diagnosis
    There are no schedule lines due for the given order item up to the date chosen.
    System Response
    The system does not create a delivery item for this order item.
    Procedure
    Check whether the order item to be delivered contains confirmed schedule lines.
    If this is the case, set the selection date further into the future if you still want to create a delivery for this item.
    Please suggest,
    Tanks,
    Suma
    Edited by: Suma B on Sep 23, 2008 3:55 PM

  • How to display TEXT more than 500 char in a report as multiple lines.

    Hi Friends,
    i have a requirement like i should display Texts of length more than 500 Characters in a report( ALV LIST) as multiple lines
    I am fetching the data Using FM READ_TEXT
    the output im currently geeting with 150 Char in lenth as a single line
    How we can split the text into multiple lines in a report
    first i would like to know is it possible? if possible please give your valuable suggitions if not is there any alternative way to do this task.
    Thanks & regards
    kumar.

    Hi,
    This is possible but the Solution might not look Standard/Appropriate to you.
    In ALV, you can have Multiple Line Output...There is a Field in the Field Catalogue..called as Row_position...this is by default 0...which means Single row/Line ALV output....You can have this Value in the Range of 0 to 3.......A ALV field with row_position 1, will be displayed in the second line for every record...i.e. you will have multiple line for a single record of ALV.
    In your case......you can use this but you need to split your field in two fields.....but you may end up spliting a single word....but for that also you can design the logic of splitting the Fiel value at SPACE only......
    This may work.......and Sorry if not work......

  • Is it possible to create a Large Text Field in OCOD, more than 255 Char?

    Is it possible to Create a Long Text Field (more than 255 Char Long) as like Description field in OCOD?

    Not at this time.

  • How do i set text alerts to sound more than twice on iPhone 6 plus?

    How do I set my text alerts to sound more than twice on my iPhone 6 Plus?

    Settings > Notification Center > Messages > Repeat Alerts.  Choose between never or up to 10 times.

  • How to create dummy pricture which can be used for chart in msword

    I want to create a chart in template,but have problem with creating dummy picture , is there any one could tell me how to create a dummy picture in msword. Thanks

    First create a chart.
    Now right click on chart > format picture > web
    copy the code.
    now you may delete it.
    insert a picture which you want.
    right click > format picture > web
    paste the code.
    done.

  • How to create one procedure which can drop and create materialized view

    Hi,
    I want to create one pl/sql procedure which can first drop materialized view CATEGORY_PK and after that create same materialized view CATEGORY_PK.
    programme is as follows:
    DROP MATERIALIZED VIEW CATEGORY_PK;
    CREATE MATERIALIZED VIEW CATEGORY_PK REFRESH FORCE WITH PRIMARY KEY AS
    SELECT cav1.ownerid AS categoryid, p.uuid AS productid ,p.domainID AS productdomainid,pav.stringvalue AS NAME
         ,pav2.stringvalue AS ID, pav3.stringvalue AS SHORT
    FROM product p, product_av pav, catalogcategory_av cav1, catalogcategory_av cav2,product_av pav2,product_av pav3
    WHERE
    cav1.NAME = 'PRODUCT_BINDING_ATTRIBUTE' AND
    cav2.NAME = 'PRODUCT_BINDING_VALUE' AND
    cav1.ownerid = cav2.ownerid AND
    p.uuid = pav.ownerid AND
              p.uuid = pav2.ownerid AND
              p.uuid = pav3.ownerid AND
    pav.NAME = cav1.stringvalue AND
              pav2.NAME = cav1.stringvalue AND
              pav2.NAME = cav1.stringvalue AND
    pav.stringvalue = cav2.stringvalue AND
              pav2.stringvalue = cav2.stringvalue AND
              pav3.stringvalue = cav2.stringvalue
    UNION
    SELECT catalogcategoryid AS categoryid, productid, repdomainid AS productdomainid,pav1.stringvalue AS NAME
         ,pav2.stringvalue AS ID, pav3.stringvalue AS SHORT
    FROM productcategoryassignment ,product_av pav1,product_av pav2,product_av pav3
         WHERE pav1.ownerid=productid
         AND pav2.ownerid=productid
         AND pav3.ownerid=productid
         AND pav1.NAME='name'
         AND pav2.NAME='productID'
         AND pav3.NAME='shortDescription';

    user498566 wrote:
    I want to create one pl/sql procedure which can first drop materialized view CATEGORY_PK and after that create same materialized view CATEGORY_PK.That sounds like a waste of time and resources. What do you hope to achieve by this? A refresh? If so, a simple refresh of the old materialized view will do.
    If you truly want to continue this road, you'll have to use the EXECUTE IMMEDIATE command to execute DDL commands from within PL/SQL.
    Regards,
    Rob.

  • How can i see the URL which has  length more than 255 chars in fucnction

    Hello Every body....
      I am facing one problem....I have a function module which returns URL in one table
      but in the function module display i am able to see only 255 characters,but the URL is more than 255 Characters..How can i see the URL which has the length more than 255 characters..
    In the Table the fields url length is 4000 chars.....
    but display it is showing only 255 chars.....
    Please Help me...??????????

    Hello,
    Have you tried breaking your structure into 255 chunks? I don't know what the structure you are moving from looks like, but you should be able break it back up into the SOLI structure. The end of a line in SOLI doesn't create a Carriage Return/Line Break. You have to insert these yourself like in the following:
    * Create document
          clear mail_line.
          move 'This is a test E-Mail'(d01) to mail_line.
          concatenate mail_line
                      cl_abap_char_utilities=>newline
                      into mail_line.
          append mail_line to l_mailtext.
    What kind of attachment are you wanting to create - a text tab delimited file for reading in a spreadsheet application such as excel? You might try reassembling your data table into a single string with newlines where you need them. Then use function module SCMS_STRING_TO_FTEXT to turn it back into SOLI. This is what I have done in the past. I'm afraid without knowing more about your source structure and attachment type, this is about all I can tell you.
    Vasanth

  • How to allow input text field to accept more than one "specific" answer.

    Hi,
    I am working for something and trying to create a type-box-based quiz for one of my classes, where an input text field can change it's border color if 2 or more words from an accepted word list is inputed.
    For example, Say a list has possible answers: R,G, B, Y for the question "Name 2 colors".
    I want to create an input text box where the border of the box will change color if any 2 letters (in the above list) are entered into it.
    I've tried setting up a variable NumberSuccesses and setting it so that the number increases by 1 for each letter entered e.g.
    if (Ex.text == "R");
    NumSuc = NumSuc +1; // the var NumSuc has already been defined earlier in the code
    If (Ex.text ''G")
    NumSuc = NumSuc + 1
    if (NumSuc == 2)
    Ex.borderColor = 0x0000FF
    but that didn't work.. and I tried doing it with another function which I use for multiple input boxes like if there were boxes A, B, C. I could set up a general function where if the correct answers were entered into A, B, an C respectively, only then will say, a checkmark show up using a
    EnableCheckmark (); type function. Not sure how to do it if it's the same text input box though. Also just tried adding it into the same function re.
    If (Ex.text == "R" + "G")
    Ex.borderColor = 0x0000FF
    .. Does anyone know what else I can do?

    The solution of Nishu with Evaluation Logic:
    //These Are the Possible Answers
    var solutions:Array = new Array("A","B","C","D");
    function testInput(_inputText:String):Boolean
        //the delimiter could also be a comma, here it is a space
        var inputStringArray:Array = _inputText.split(" ");
        var counter:Number = 0;
        for (var i:int=0; i<inputStringArray.length; i++)
            for (var j:int=0; j<solutions.length; j++)
                if (inputStringArray[i]== solutions[j])
                    counter++;
        if (counter >=2)
            trace("true");
            return true;
        else
            trace("false");
            return false;
    //Textfield with name input_txt on stage
    input_txt.addEventListener(TextEvent.TEXT_INPUT, answerTxtInp);
    // The function that will be called by the event listener
    function answerTxtInp(txtEvent:TextEvent):void
         // depending on the possible answers of characters, change the border  color
         if(testInput(input_txt.text)){
             input_txt.borderColor = 0xFF0000;
         else{
             input_txt.borderColor = 0x000000;

  • A problem about the policy of RMS which is added more than 500 principals

    Hello specialists ,
        I've a question about RMS , when I added more than about 500 principals (users & groups ) into a policy in the RMS , it will report an error for any operation about the policy , and I find the error message as followed (for theconvenience, I paste all of the logs in the weblogic).
       We have tested all of our environments : Weblogic , JBoss , Websphere , each of them  makes the same mistake . those operations include : try to open the documents protected by this kind of policies , to disable or enable the policies, to look the detail from the "adminui" . when decreasing the principals for this kind of policy to almost 450 (I am not sure the clearly number) with java code , the results will be ok .
       So anyone can help me ? It's really very important for us , becuase our customer refused to pay the left money of this project till this problem is resolved . and I have reported this problem to the Enterprise Support in Indian (the case is :181916446), but , obviously , it seems they are burning my patience  . At the same time , I think it's a problem of the product , I think the SQL is really very bad ,at least , not so good .
       Any help will be very appreciated !
      <2011-2-10 16:01:14> <Info> <NodeManager> <Starting WebLogic server with command line: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin\java -Dweblogic.Name=RightsManagementServer -Djava.security.policy=E:\bea\WLSERV~1.3\server\lib\weblogic.policy -Dweblogic.management.server=http://192.168.52.196:7001 -Djava.library.path=E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\ WLSERV~1.3\server\native\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\be a\JROCKI~1\bin;E:\bea\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Wind ows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin; -Djava.class.path=E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\web logic.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\dom ains\lcdomain\idplib\pop3.jar -Dweblogic.system.BootIdentityFile=E:\domains\zonydomain\servers\RightsManagementServer\d ata\nodemanager\boot.properties -Dweblogic.nodemanager.ServiceEnabled=true -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dweblogic.ReverseDNSAllowed=false -Dadobeidp.RootDirectory=E:\domains\zonydomain\. -Dfile.encoding=utf8 -Djava.net.preferIPv4Stack=true -Djava.security.policy=E:\bea\wlserver_10.3\server\lib\weblogic.policy -Xms256m -Xmx1792m weblogic.Server >
    <2011-2-10 16:01:14> <Info> <NodeManager> <Working directory is "E:\domains\zonydomain">
    <2011-2-10 16:01:14> <Info> <NodeManager> <Server output log file is "E:\domains\zonydomain\servers\RightsManagementServer\logs\RightsManagementServer.out">
    <2011-2-10 16:01:16 CST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64 from Oracle Corporation>
    <2011-2-10 16:01:17 CST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3  Fri Jul 25 16:30:05 EDT 2008 1137967 >
    <2011-2-10 16:01:20 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <2011-2-10 16:01:20 CST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <2011-2-10 16:01:20 CST> <Notice> <Log Management> <BEA-170019> <The server log file E:\domains\zonydomain\servers\RightsManagementServer\logs\RightsManagementServer.log is opened. All server side log events will be written to this file.>
    <2011-2-10 16:01:20 CST> <Warning> <NodeManager> <BEA-300043> <Node manager native library not found - server process id not saved.>
    <2011-2-10 16:01:20 CST> <Error> <Socket> <BEA-000438> <Unable to load performance pack. Using Java I/O instead. Please ensure that wlntio.dll is in: 'E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\n ative\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\b ea\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syst em32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;'
    >
    <2011-2-10 16:01:25 CST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <2011-2-10 16:01:30 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <2011-2-10 16:01:30 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <2011-2-10 16:01:41 CST> <Warning> <JDBC> <BEA-001110> <No test table set up for pool "IDP_DS". Connections will not be tested.>
    <2011-2-10 16:01:43 CST> <Warning> <JDBC> <BEA-001110> <No test table set up for pool "RM_DS". Connections will not be tested.>
    <2011-2-10 16:02:00 CST> <Warning> <EJB> <BEA-010100> <This server is not part of a cluster. Hence "InMemory replication feature" for StatefulSession EJB "PolicyManagerBean" will have no effect on this server.>
    2011-2-10 16:02:06 com.adobe.logging.AdobeLoggerImpl <clinit>
    Info: Logging level null
    2011-2-10 16:02:10 com.adobe.logging.AdobeLoggerImpl <clinit>
    Info: Logging level null
    16:02:34,362  WARN Digester:121 - [NavigationRuleRule]{faces-config/navigation-rule} Merge(/*)
    16:02:36,022  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:02:36,023  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/custom-rules.xml'
    16:02:36,024  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:02:36,532  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:02:38,534  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:02:38,548  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:02:38,549  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:02:39,064  INFO UMActionServlet:84 -
    * System Properties **************************************************
    adobeidp.RootDirectory.......................: E:\domains\zonydomain\.
    awt.toolkit..................................: sun.awt.windows.WToolkit
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobewl_RightsManagementServer
    com.adobe.tempDirectory......................: E:\temp\adobewl_RightsManagementServer
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\weblogic.jar;E:\Java\ jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\domains\lcdomain\idpl ib\pop3.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\endorsed
    java.ext.dirs................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\ext
    java.home....................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\na tive\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\be a\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syste m32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;
    java.naming.factory.initial..................: weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs.................: weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.c orba.j2ee.naming.url
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_20-b02
    java.security.policy.........................: E:\bea\wlserver_10.3\server\lib\weblogic.policy
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Oracle Corporation
    java.vendor.url..............................: http://www.oracle.com/
    java.vendor.url.bug..........................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.version.................................: 1.6.0_20
    java.vm.info.................................: compiled mode
    java.vm.name.................................: Oracle JRockit(R)
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Oracle Corporation
    java.vm.vendor.url...........................: http://www.oracle.com/
    java.vm.vendor.url.bug.......................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.vm.version..............................: R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64
    javax.rmi.CORBA.PortableRemoteObjectClass....: weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass....................: weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory.................: weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory................: weblogic.webservice.core.soap.MessageFactoryImpl
    kernel.download.enabled......................: false
    line.separator...............................:
    org.omg.CORBA.ORBClass.......................: weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: weblogic.corba.orb.ORB
    org.xml.sax.driver...........................: weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser...........................: weblogic.xml.jaxp.RegistryParser
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008 R2
    os.version...................................: 6.1
    path.separator...............................: ;
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\resources.jar;E:\Java\jrockit-jdk1.6.0_ 20-R28.1.0-4.0.1\jre\lib\rt.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\sunrsasi gn.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\jsse.jar;E:\Java\jrockit-jdk1.6.0 _20-R28.1.0-4.0.1\jre\lib\jce.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\charse ts.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\classes
    sun.boot.library.path........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: Oracle JRockit(R) Optimizing Compiler
    sun.os.patch.level...........................:
    user.country.................................: CN
    user.dir.....................................: E:\domains\zonydomain
    user.home....................................: C:\
    user.language................................: zh
    user.name....................................: LATTE$
    user.timezone................................: Asia/Shanghai
    user.variant.................................:
    vde.home.....................................: E:\domains\zonydomain\servers\RightsManagementServer\data\ldap
    weblogic.Name................................: RightsManagementServer
    weblogic.ReverseDNSAllowed...................: false
    weblogic.classloader.preprocessor............: weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.management.server...................: http://192.168.52.196:7001
    weblogic.nodemanager.ServiceEnabled..........: true
    weblogic.security.CustomTrustKeyStoreFileName: ads-ca.jks
    weblogic.security.CustomTrustKeyStorePassPhrase: password
    weblogic.security.CustomTrustKeyStoreType....: JKS
    weblogic.security.SSL.ignoreHostnameVerification: true
    weblogic.security.TrustKeyStore..............: CustomTrust
    weblogic.system.BootIdentityFile.............: E:\domains\zonydomain\servers\RightsManagementServer\data\nodemanager\boot.properties
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 764 mb
    16:02:39,072  INFO UMActionServlet:85 -
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: E:\domains\zonydomain\servers\RightsManagementServer\tmp\_WL_user\adobe-livecycle-weblogi c\uv7zbv\public
    org.apache.commons.validator.VALIDATOR_RESOURCES: org.apache.commons.validator.ValidatorResources@3334767
    org.apache.struts.action.ACTION_SERVLET......: com.adobe.idp.um.ui.UMActionServlet@2e716fd
    org.apache.struts.action.MESSAGE.............: org.apache.struts.util.PropertyMessageResources@3021141
    org.apache.struts.action.MODULE..............: org.apache.struts.config.impl.ModuleConfigImpl@2d75c6b
    org.apache.struts.action.PLUG_INS............: [Lorg.apache.struts.action.PlugIn;@302b235
    org.apache.struts.action.SERVLET_MAPPING.....: *.do
    org.apache.struts.globals.MODULE_PREFIXES....: [Ljava.lang.String;@31aa885
    org.apache.struts.tiles.DEFINITIONS_FACTORY..: I18nFactorySet :
    --- default factory ---
    {${YOUR_DEFINITION_HERE}={name=${YOUR_DEFINITION_HERE}, path=null, role=null, controller=null, controllerType=null, controllerInstance=null, attributes={}}
    --- other factories ---
    org.apache.struts.validator.STOP_ON_ERROR....: true
    weblogic.servlet.WebAppComponentMBean........: [email protected]a([zonydomain]/Applicatio ns[adobe-livecycle-weblogic]/WebAppComponents[/um])
    weblogic.servlet.WebAppComponentRuntimeMBean.: weblogic.servlet.internal.WebAppRuntimeMBeanImpl@52ebb2
    16:02:39,284  INFO QuartzScheduler:209 - Quartz Scheduler v.1.6.0 created.
    16:02:39,300  INFO RAMJobStore:141 - RAMJobStore initialized.
    16:02:39,301  INFO DirectSchedulerFactory:422 - Quartz scheduler 'SimpleQuartzScheduler
    16:02:39,302  INFO DirectSchedulerFactory:424 - Quartz scheduler version: 1.6.0
    16:02:39,306  INFO QuartzScheduler:455 - Scheduler SimpleQuartzScheduler_$_SIMPLE_NON_CLUSTERED started.
    Got IP Address of LC Server:192.168.52.196
    16:03:08,130  INFO QuartzScheduler:209 - Quartz Scheduler v.1.6.0 created.
    16:03:08,136  INFO DSCJobStoreTX:547 - Using thread monitor-based data access locking (synchronization).
    16:03:08,234  INFO DSCJobStoreTX:721 - Removed 0 Volatile Trigger(s).
    16:03:08,235  INFO DSCJobStoreTX:729 - Removed 0 Volatile Job(s).
    16:03:08,244  INFO DSCJobStoreTX:61 - JobStoreTX initialized.
    16:03:08,245  INFO DSCSchedulerFactory:972 - Quartz scheduler 'IDPSchedulerService' initialized from an externally provided properties instance.
    16:03:08,245  INFO DSCSchedulerFactory:974 - Quartz scheduler version: 1.6.0
    16:03:08,259  INFO DSCJobStoreTX:775 - Freed 0 triggers from 'acquired' / 'blocked' state.
    16:03:08,269  INFO DSCJobStoreTX:879 - Handling 1 trigger(s) that missed their scheduled fire-time.
    16:03:08,389  INFO DSCJobStoreTX:785 - Recovering 0 jobs that were in-progress at the time of the last shut-down.
    16:03:08,390  INFO DSCJobStoreTX:799 - Recovery complete.
    16:03:08,393  INFO DSCJobStoreTX:806 - Removed 0 'complete' triggers.
    16:03:08,395  INFO DSCJobStoreTX:812 - Removed 0 stale fired job entries.
    16:03:08,411  INFO QuartzScheduler:455 - Scheduler IDPSchedulerService_$_20 started.
    <2011-2-10 16:03:25 CST> <Error> <com.adobe.datamodel.repository.DBModelPersistence> <BEA-000000> <Naming exception during loading of all data models: javax.naming.NameNotFoundException: While trying to look up /IDP_DS in /app/webapp/remoting/18935606.; remaining name '/IDP_DS'>
    16:03:27,894  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:03:27,910  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:03:27,910  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:03:28,555  INFO EDCActionServlet:84 -
    * System Properties **************************************************
    adobeidp.RootDirectory.......................: E:\domains\zonydomain\.
    awt.toolkit..................................: sun.awt.windows.WToolkit
    com.adobe.idp.DocumentManagerServlet.........: started
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobewl_RightsManagementServer
    com.adobe.tempDirectory......................: E:\temp\adobewl_RightsManagementServer
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    gemfire.disableShutdownHook..................: true
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\weblogic.jar;E:\Java\ jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\domains\lcdomain\idpl ib\pop3.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\endorsed
    java.ext.dirs................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\ext
    java.home....................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\na tive\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\be a\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syste m32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;
    java.naming.factory.initial..................: weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs.................: weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.c orba.j2ee.naming.url
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_20-b02
    java.security.policy.........................: E:\bea\wlserver_10.3\server\lib\weblogic.policy
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Oracle Corporation
    java.vendor.url..............................: http://www.oracle.com/
    java.vendor.url.bug..........................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.version.................................: 1.6.0_20
    java.vm.info.................................: compiled mode
    java.vm.name.................................: Oracle JRockit(R)
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Oracle Corporation
    java.vm.vendor.url...........................: http://www.oracle.com/
    java.vm.vendor.url.bug.......................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.vm.version..............................: R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64
    javax.rmi.CORBA.PortableRemoteObjectClass....: weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass....................: weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory.................: weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory................: weblogic.webservice.core.soap.MessageFactoryImpl
    kernel.download.enabled......................: false
    line.separator...............................:
    org.apache.xerces.xni.parser.Configuration...: org.apache.xerces.parsers.XMLGrammarCachingConfiguration
    org.omg.CORBA.ORBClass.......................: weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: weblogic.corba.orb.ORB
    org.xml.sax.driver...........................: weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser...........................: weblogic.xml.jaxp.RegistryParser
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008 R2
    os.version...................................: 6.1
    p2p.useSSL...................................: false
    path.separator...............................: ;
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\resources.jar;E:\Java\jrockit-jdk1.6.0_ 20-R28.1.0-4.0.1\jre\lib\rt.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\sunrsasi gn.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\jsse.jar;E:\Java\jrockit-jdk1.6.0 _20-R28.1.0-4.0.1\jre\lib\jce.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\charse ts.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\classes
    sun.boot.library.path........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: Oracle JRockit(R) Optimizing Compiler
    sun.os.patch.level...........................:
    user.country.................................: CN
    user.dir.....................................: E:\domains\zonydomain
    user.home....................................: C:\
    user.language................................: zh
    user.name....................................: LATTE$
    user.timezone................................: Asia/Shanghai
    user.variant.................................:
    vde.home.....................................: E:\domains\zonydomain\servers\RightsManagementServer\data\ldap
    weblogic.Name................................: RightsManagementServer
    weblogic.ReverseDNSAllowed...................: false
    weblogic.classloader.preprocessor............: weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.management.server...................: http://192.168.52.196:7001
    weblogic.nodemanager.ServiceEnabled..........: true
    weblogic.security.CustomTrustKeyStoreFileName: ads-ca.jks
    weblogic.security.CustomTrustKeyStorePassPhrase: password
    weblogic.security.CustomTrustKeyStoreType....: JKS
    weblogic.security.SSL.ignoreHostnameVerification: true
    weblogic.security.TrustKeyStore..............: CustomTrust
    weblogic.system.BootIdentityFile.............: E:\domains\zonydomain\servers\RightsManagementServer\data\nodemanager\boot.properties
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 917 mb
    16:03:28,559  INFO EDCActionServlet:85 -
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: E:\domains\zonydomain\servers\RightsManagementServer\tmp\_WL_user\adobe-livecycle-weblogi c\srbeev\public
    org.apache.commons.validator.VALIDATOR_RESOURCES: org.apache.commons.validator.ValidatorResources@33c707a
    org.apache.struts.action.ACTION_SERVLET......: com.adobe.edc.ui.EDCActionServlet@6f15bc0
    org.apache.struts.action.MESSAGE.............: org.apache.struts.util.PropertyMessageResources@31fdbc7
    org.apache.struts.action.MODULE..............: org.apache.struts.config.impl.ModuleConfigImpl@2f3b181
    org.apache.struts.action.PLUG_INS............: [Lorg.apache.struts.action.PlugIn;@32005d9
    org.apache.struts.action.SERVLET_MAPPING.....: *.do
    org.apache.struts.globals.MODULE_PREFIXES....: [Ljava.lang.String;@12907d6
    org.apache.struts.tiles.DEFINITIONS_FACTORY..: I18nFactorySet :
    --- default factory ---
    {${YOUR_DEFINITION_HERE}={name=${YOUR_DEFINITION_HERE}, path=null, role=null, controller=null, controllerType=null, controllerInstance=null, attributes={}}
    --- other factories ---
    org.apache.struts.validator.STOP_ON_ERROR....: true
    weblogic.servlet.WebAppComponentMBean........: [email protected]b8([zonydomain]/Applicati ons[adobe-livecycle-weblogic]/WebAppComponents[/edc/admin])
    weblogic.servlet.WebAppComponentRuntimeMBean.: weblogic.servlet.internal.WebAppRuntimeMBeanImpl@946930
    16:03:29,403  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:03:29,420  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:03:29,421  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:03:30,011  INFO EDCActionServlet:84 -
    * System Properties **************************************************
    adobeidp.RootDirectory.......................: E:\domains\zonydomain\.
    awt.toolkit..................................: sun.awt.windows.WToolkit
    com.adobe.idp.DocumentManagerServlet.........: started
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobewl_RightsManagementServer
    com.adobe.tempDirectory......................: E:\temp\adobewl_RightsManagementServer
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    gemfire.disableShutdownHook..................: true
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\weblogic.jar;E:\Java\ jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\domains\lcdomain\idpl ib\pop3.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\endorsed
    java.ext.dirs................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\ext
    java.home....................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\na tive\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\be a\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syste m32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;
    java.naming.factory.initial..................: weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs.................: weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.c orba.j2ee.naming.url
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_20-b02
    java.security.policy.........................: E:\bea\wlserver_10.3\server\lib\weblogic.policy
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Oracle Corporation
    java.vendor.url..............................: http://www.oracle.com/
    java.vendor.url.bug..........................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.version.................................: 1.6.0_20
    java.vm.info.................................: compiled mode
    java.vm.name.................................: Oracle JRockit(R)
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Oracle Corporation
    java.vm.vendor.url...........................: http://www.oracle.com/
    java.vm.vendor.url.bug.......................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.vm.version..............................: R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64
    javax.rmi.CORBA.PortableRemoteObjectClass....: weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass....................: weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory.................: weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory................: weblogic.webservice.core.soap.MessageFactoryImpl
    kernel.download.enabled......................: false
    line.separator...............................:
    org.apache.xerces.xni.parser.Configuration...: org.apache.xerces.parsers.XMLGrammarCachingConfiguration
    org.omg.CORBA.ORBClass.......................: weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: weblogic.corba.orb.ORB
    org.xml.sax.driver...........................: weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser...........................: weblogic.xml.jaxp.RegistryParser
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008 R2
    os.version...................................: 6.1
    p2p.useSSL...................................: false
    path.separator...............................: ;
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\resources.jar;E:\Java\jrockit-jdk1.6.0_ 20-R28.1.0-4.0.1\jre\lib\rt.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\sunrsasi gn.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\jsse.jar;E:\Java\jrockit-jdk1.6.0 _20-R28.1.0-4.0.1\jre\lib\jce.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\charse ts.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\classes
    sun.boot.library.path........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: Oracle JRockit(R) Optimizing Compiler
    sun.os.patch.level...........................:
    user.country.................................: CN
    user.dir.....................................: E:\domains\zonydomain
    user.home....................................: C:\
    user.language................................: zh
    user.name....................................: LATTE$
    user.timezone................................: Asia/Shanghai
    user.variant.................................:
    vde.home.....................................: E:\domains\zonydomain\servers\RightsManagementServer\data\ldap
    weblogic.Name................................: RightsManagementServer
    weblogic.ReverseDNSAllowed...................: false
    weblogic.classloader.preprocessor............: weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.management.server...................: http://192.168.52.196:7001
    weblogic.nodemanager.ServiceEnabled..........: true
    weblogic.security.CustomTrustKeyStoreFileName: ads-ca.jks
    weblogic.security.CustomTrustKeyStorePassPhrase: password
    weblogic.security.CustomTrustKeyStoreType....: JKS
    weblogic.security.SSL.ignoreHostnameVerification: true
    weblogic.security.TrustKeyStore..............: CustomTrust
    weblogic.system.BootIdentityFile.............: E:\domains\zonydomain\servers\RightsManagementServer\data\nodemanager\boot.properties
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 917 mb
    16:03:30,014  INFO EDCActionServlet:85 -
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: E:\domains\zonydomain\servers\RightsManagementServer\tmp\_WL_user\adobe-livecycle-weblogi c\xhf1jd\public
    org.apache.commons.validator.VALIDATOR_RESOURCES: org.apache.commons.validator.ValidatorResources@231f192
    org.apache.struts.action.ACTION_SERVLET......: com.adobe.edc.ui.EDCActionServlet@153d409
    org.apache.struts.action.MESSAGE.............: org.apache.struts.util.PropertyMessageResources@2208500
    org.apache.struts.action.MODULE..............: org.apache.struts.config.impl.ModuleConfigImpl@1ee0605
    org.apache.struts.action.PLUG_INS............: [Lorg.apache.struts.action.PlugIn;@216aebd
    org.apache.struts.action.SERVLET_MAPPING.....: *.do
    org.apache.struts.globals.MODULE_PREFIXES....: [Ljava.lang.String;@2675446
    org.apache.struts.tiles.DEFINITIONS_FACTORY..: I18nFactorySet :
    --- default factory ---
    {${YOUR_DEFINITION_HERE}={name=${YOUR_DEFINITION_HERE}, path=null, role=null, controller=null, controllerType=null, controllerInstance=null, attributes={}}
    --- other factories ---
    org.apache.struts.validator.STOP_ON_ERROR....: true
    um_assertionid_holder........................: com.adobe.idp.um.auth.filter.AssertionIdHolder@1c5878e
    weblogic.servlet.WebAppComponentMBean........: [email protected]8([zonydomain]/Applicatio ns[adobe-livecycle-weblogic]/WebAppComponents[/edc])
    weblogic.servlet.WebAppComponentRuntimeMBean.: weblogic.servlet.internal.WebAppRuntimeMBeanImpl@ac5e96
    ========= calling EDCStartupService::initializeresources  =========
    <2011-2-10 16:03:32 CST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <2011-2-10 16:03:32 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <2011-2-10 16:03:32 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <2011-2-10 16:03:33 CST> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias ads-credentials from the JKS keystore file E:\domains\zonydomain\ads-credentials.jks.>
    <2011-2-10 16:03:33 CST> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the JKS keystore file E:\domains\zonydomain\ads-ca.jks.>
    <2011-2-10 16:03:33 CST> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "DefaultSecure". The address 192.168.52.196 might be incorrect or another process is using port 7002: java.net.BindException: Address already in use: JVM_Bind.>
    <2011-2-10 16:03:33 CST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 192.168.52.196:8001 for protocols iiop, t3, ldap, snmp, http.>
    <2011-2-10 16:03:33 CST> <Notice> <WebLogicServer> <BEA-000332> <Started WebLogic Managed Server "RightsManagementServer" for domain "zonydomain" running in Development Mode>
    <2011-2-10 16:03:35 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <2011-2-10 16:03:35 CST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    16:03:46,830  INFO Reference:? - Verification successful for URI "#dc30cfd93b52e950ebde68e0b7c8ac56"
    16:03:50,726  INFO Reference:? - Verification successful for URI "#cb96de4448538dd00314b484966dae46"
    16:03:51,127  INFO TilesRequestProcessor:103 - Tiles definition factory found for request processor ''.
    <2011-2-10 16:03:51 CST> <Warning> <Socket> <BEA-000402> <There are: 5 active sockets, but the maximum number of socket reader threads allowed by the configuration is: 4. You may want to alter your configuration.>
    16:04:08,115  INFO Reference:? - Verification successful for URI "#ba03069e2b38142918e1e6f54a73208c"
    16:04:10,602  INFO Reference:? - Verification successful for URI "#a120044172268198925a0495b25e618a"
    16:05:56,603  INFO Reference:? - Verification successful for URI "#e4e5267f958ba1431f4ecdee4b18e454"
    16:06:04,059  INFO Reference:? - Verification successful for URI "#f664cefe6083120e323479fd72ec57c1"
    <2011-2-10 16:06:44 CST> <Warning> <com.adobe.idp.common.errors.exception.IDPLoggedException> <BEA-000000> <UserM:GENERIC_WARNING: [Thread Hashcode: -1257420086] com.adobe.idp.common.errors.exception.IDPLoggedException| [com.adobe.idp.storeprovider.jdbc.DBStatement] errorCode:12290 errorCodeHEX:0x3002 message:execute query failure(select distinct  top 500  * from EDCAGGPRINCIPALVIEWENTIT where ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( ((((((((((((((((((((((((((((((((((((((((((((((((((EDCAGGPRINCIPALVIEWENTIT.v17 = ? or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or E

    We are using Microsoft SQL Server 2008 . but it's well with MySQL & JBoss

  • How to create a program which can be installed as NT service?

    I wrote a server program using LW/CVI 5.5. I want to install it on NT/2000
    OS and running as NT/2000 services. I know SRVANY.EXE can do this, but I
    want to one step do this using INSTSRV.EXE or using install utility to modify
    registry keys.
    Thanks.

    Hi
    Thanks for your fast replies.. I have created a new material and was able to create inventory thru MB1C. But I was not able to generate a goods delivery(VL01N) and billing document(VF01)  for the sales order.
    Error: No schedule lines due for delivery up to the selected date
    Message no. VL248
    Diagnosis
    There are no schedule lines due for the given order item up to the date chosen.
    System Response
    The system does not create a delivery item for this order item.
    Procedure
    Check whether the order item to be delivered contains confirmed schedule lines.
    If this is the case, set the selection date further into the future if you still want to create a delivery for this item.
    Please suggest,
    Tanks,
    Suma
    Edited by: Suma B on Sep 23, 2008 3:55 PM

  • How to create a Choice which can be selected thru keyboard ?

    Hi,
    I am using java.awt.Choice to display all the states in US, Canada and Mexico in that order. I need to make this list selectable using key board. ie, if i press A, it should first go to AL , then to AK etc. I have added the following code in the class which extends from Choice so that it i type A , it will go to AL. But subsequent key types for the same letter are not recognised.Please provide some pointers on how to do this.
    protected void processEvent(AWTEvent evt)
    super.processEvent(evt);
    if( evt instanceof KeyEvent)
    char ch = ((KeyEvent)evt).getKeyChar();
    Character c = new Character(ch);
    if(!Character.isLetterOrDigit(ch))
    return;
    for(int i =0; i < getItemCount(); i++)
    if( getItem(i).substring(0,1).equalsIgnoreCase(c.toString()))
    select(i);
    break;
    Thanks in advance.

    thanks, it worked.
    posting the whole code.
         protected void processEvent (AWTEvent evt)
              super.processEvent(evt);
    if( evt instanceof KeyEvent && evt.getID() == KeyEvent.KEY_PRESSED)
    char ch = ((KeyEvent)evt).getKeyChar();
    Character c = new Character(ch);
    if(!Character.isLetterOrDigit(ch))
    return;
                   int ind = 0;
                   if(getSelectedItem().toUpperCase().startsWith(c.toString().toUpperCase()))
                        ind = getSelectedIndex()+1;
                   boolean matchfound = false;
                   for(int i = ind; i < getItemCount(); i++)
                   if( getItem(i).toUpperCase().startsWith(c.toString().toUpperCase()))
                             matchfound = true;
    select(i);
    break;
                   if(!matchfound)
                        for(int i = 0; i < getItemCount(); i++)
                             if( getItem(i).toUpperCase().startsWith(c.toString().toUpperCase()))
                                  select(i);
                                  break;
         }

  • How to Create a Procedure/Function to Return more than one value

    How I can write a function/Procedure to which one value is passed and it will return nine values. How I can use these values

    Syed,
    I would use PL_SQL table versus a VARRAY for this purpose as you will have an advantage of joining PL_SQL table if you want to in your SQL statements in the procedure.
    1. At the SQL prompt, create a type using,
       create or replace type myTable as table of VARCHAR2(100);
    2. Pass the table to your procedure as IN OUT parameter,
    Create or replace procedure
    myProc(pvar1 IN Number, passingArray IN OUT myTable) AS
    Begin
        --Fill the array with your logic
        for i in 1..9
        loop
            passingArray.extend;
            passingArray(passingArray.count) := 'what ever';
        end loop; 
    End;
    3. From your Main prog, you call  Myproc
       --declare a variable for type first
       passingArray myTable := myTable();
       begin
       myProc(10, passingArray());
       --At this point, You would be able to Join the PL_SQL table
       --which gives you the power of using SQL with PL_SQL tables
       end; -- end of main program
    4. All done!I have not shown how to use PL_SQL tables in SELECT statements, as that is not the subject here.
    At the end of the story, I would say, if you know the number of arguments that you are going to pass to a procedure, Simply use "that many" IN OUT parameters to finish your task(9 in your case). Although the proc call looks large with this, it is much simpler. The above approach is VERY helpful if YOU DO NOT KNOW THE NUMBER OF ARGUMENTS that you are sending AND receiving From a procedure.
    Thx,
    SriDHAR

  • How to create a page in three or more regions

    Hi to all:
    I want to create a page which will have more than three regions like a HTML-Frames work that you can put different regions
    How can I do in in OAFramework?
    Please help
    Ali

    Hi,
    In pageLayout region create a rowlayout and in rowlayout create two cell formats.
    In onel formats you can create two regions on left and two regions in other cell format on right.
    In order to give spaces between them use spacer item and set its width.
    It will be like
    pageLayout region
    region5
    rowlayout region
    cell format1 spacer cellformat2
    rowlayout region rowlayout region
    region1 spacer region2 region3 spacer region4
    Thanks,
    Gaurav

Maybe you are looking for

  • Credit memo and Subsequent Credit/Debit Scenarios

    Hi All, I have to present all the invoicing scenarios to the client. These also include credit memo and subsequent credit/debit. Can someone please give me some examples of these. What is the meaning,how to handle,how do these arise.I will have to ru

  • Restore iTunes library from Time Machine, after full hard drive wipe

    I had to do a full hard drive wipe on my MBP running 10.6.6, so I made a full Time Machine backup before hand. I reinstalled os x (10.6.3) and used migration assistant to restore my files from the Time Machine backup. Most of this process has been pa

  • Oracle Provider for OLE  DB is missing

    Hello everyone, I am a newbie and I am trying to install the SAP IDM 7.2 on windows server 2008 x64 and Oracle 11.2.0.4. The JVM and the oracle client are 64bit. All components are installed on the same server. In the first step "adding an identity s

  • Put all values in one line

    Hi, people. I have the situacion of result set of a query cod val time1 time2 time3 1 a 18:30 null null 1 a null 20:30 null 1 a null null 21:40 2 b 10:27 null null understand 'null' like empty spaces ou null How do I do to show record 1 i one line ,

  • Best practice for getting all Activities for a Contact

    Hello, I am new to the Eloqua API and am wondering what is the best practice for downloading a list of all activities for a given contact. Thanks