EP 6.0 SP 10 + Java parameter ordering for server

Hi,
   Is  there an ordering dependency for the Java parameters used for a server? We're currently running our servers with the following Java parameters in the given order:
-Djava.awt.headless=true
-Djava.security.egd=file:/dev/urandom
-Djava.security.policy=./java.policy
-Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
-Djco.jarm=1
-Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
-Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
-Dsun.io.useCanonCaches=false
-verbose:gc
-Xms1024m
-Xmx1024m
-XX:+DisableExplicitGC
-XX:MaxNewSize=170m
-XX:MaxPermSize=192m
-XX:NewSize=170m
-XX:PermSize=192m
-XX:+PrintCompilation
-XX:+PrintGCDetails
-XX:+PrintGCTimeStamps
-XX:+PrintTenuringDistribution
-XX:SoftRefLRUPolicyMSPerMB=1
-XX:SurvivorRatio=2
-XX:TargetSurvivorRatio=90
-XX:+UseParNewGC
This list of options was alphabetized some time ago when tuning the jvm. Since then, I've come across a couple of OSS notes (don't remember which ones) which seem to indicate some ordering dependencies.
thanks in advance,
Steven McElwee

Hi Steven,
no, as long as you don't set a parameter twice , the order does not matter.
Hope it helps
Detlev

Similar Messages

  • Is in Java have order for datatype(that is not array and collection)

    Dear Friends,
    I have a class Test{
    void Test( String name,int cnt,Test1 abc){
    this.name= name;
    this.cnt=cnt;
    this.abc=abc
    String name;
    int cnt;
    Test1 [] abc;
    in some class Test2 , I fill data into obj ( obj = new Test("siddharth",23,objtest1);
    I THING THAT WE CAN NOT SAY THE ORDER WILL BE in Object obj in this way
    First Element : siddharth
    Second Element"23
    and
    Third Element :objtest2
    but My Team Lead is saying that Object has Order according theair Hascode() value.
    Is is true Or not.
    But in my Webspare studio debugeer is shoing the order is
    First Element:objtest2
    Second Element :siddharth
    Third Element :23
    and in same way GLUE component is generating xml.
    So pls tell me how can i Change my order of element.
    Pls Help me.it is very very urgent for me
    with regards Siddharth Singh
    }

    I THING THAT WE CAN NOT SAY THE ORDER WILL BE in Object obj in this wayYou could only suggest this if you don't understand arrays. Arrays do not re-organise themslves. The array object will be in the cell you put them in. The order is entirely up to you and will not change unless you change it.
    but My Team Lead is saying that Object has Order according theair Hascode() value.This will be the order, or this needs to be the order?
    The order is the one you make it. You can change the order with the Arrays.sort() method.
    Is is true Or not.Not even close to true.
    So pls tell me how can i Change my order of element.Use Arrays.sort()

  • Simple Java SDK question for server group assignment

    I have a snippet of code below in which I am trying to apply the setProcessingServerGroup() and setProcessingServerGroupChoice() methods to my report object. My question should be relatively simple: I believe I need to cast(?) my iObject report object to iProcessingServerGroupInfo per the API in order to use the setProcessingServerGroup() and setProcessingServerGroupChoice() methods, but I'm not sure how to do so.
    Can someone please advise how to cast my iObject to iProcessingServerGroupInfo?
    Thanks in advance...
    Code:
    IInfoObject iObject = (IInfoObject) childReports.get(i); 
    int sgID_view = Integer.parseInt(serverGroupID_view);
    int sgPref_view = Integer.parseInt(serverGroupPref_view);
    !!!!!  CONVERSION / CAST NEEDED HERE !!!!!
    iProcessingServerGroupInfo.setProcessingServerGroup(sgID_view);
    iProcessingServerGroupInfo.setProcessingServerGroupChoice(sgPref_view);

    To followup, I've been able to cast to IShedulingInfo in order to use the setServerGroup() and setServerGroupChoice() methods successfully:
    IInfoObject iObject = (IInfoObject) iObjects.get(i);    
    ISchedulingInfo iSchedulingInfo = iObject.getSchedulingInfo();
    iSchedulingInfo.setServerGroup(427);
    iSchedulingInfo.setServerGroupChoice(2);
    But I don't know how to perform the cast to be able to access the setProcessingServerGroup(), sterProcessingServerGroupChoice() methods.
    Any help appreciated.
    Thanks!

  • Bug in Oracle JDBC thin driver (parameter order)

    [ I'd preferably send this to some Oracle support email but I
    can't find any on both www.oracle.com and www.technet.com. ]
    The following program illustrates bug I found in JDBC Oracle thin
    driver.
    * Synopsis:
    The parameters of prepared statement (I tested SELECT's and
    UPDATE's) are bound in the reverse order.
    If one do:
    PreparedStatement p = connection.prepareStatement(
    "SELECT field FROM table WHERE first = ? and second = ?");
    and then bind parameter 1 to "a" and parameter to "b":
    p.setString(1, "a");
    p.setString(2, "b");
    then executing p yields the same results as executing
    SELECT field FROM table WHERE first = "b" and second = "a"
    although it should be equivalent to
    SELECT field FROM table WHERE first = "a" and second = "b"
    The bug is present only in "thin" Oracle JDBC driver. Changing
    driver to "oci8" solves the problem.
    * Version and platform info:
    I detected the bug using Oracle 8.0.5 server for Linux.
    According to $ORACLE_HOME/jdbc/README.doc that is
    Oracle JDBC Drivers release 8.0.5.0.0 (Production Release)
    * The program below:
    The program below illustrates the bug by creating dummy two
    column table, inserting the row into it and then selecting
    the contents using prepared statement. Those operations
    are performed on both good (oci8) and bad (thin) connections,
    the results can be compared.
    You may need to change SID, listener port and account data
    in getConnecton calls.
    Sample program output:
    $ javac ShowBug.java; java ShowBug
    Output for both connections should be the same
    --------------- thin Driver ---------------
    [ Non parametrized query: ]
    aaa
    [ The same - parametrized (should give one row): ]
    [ The same - with buggy reversed order (should give no answers):
    aaa
    --------------- oci8 driver ---------------
    [ Non parametrized query: ]
    aaa
    [ The same - parametrized (should give one row): ]
    aaa
    [ The same - with buggy reversed order (should give no answers):
    --------------- The end ---------------
    * The program itself
    import java.sql.*;
    class ShowBug
    public static void main (String args [])
    throws SQLException
    // Load the Oracle JDBC driver
    DriverManager.registerDriver(new
    oracle.jdbc.driver.OracleDriver());
    System.out.println("Output for both connections should be the
    same");
    Connection buggyConnection
    = DriverManager.getConnection
    ("jdbc:oracle:thin:@localhost:1521:ORACLE",
    "scott", "tiger");
    process("thin Driver", buggyConnection);
    Connection goodConnection
    = DriverManager.getConnection ("jdbc:oracle:oci8:",
    "scott", "tiger");
    process("oci8 driver", goodConnection);
    System.out.println("--------------- The end ---------------");
    public static void process(String title, Connection conn)
    throws SQLException
    System.out.println("--------------- " + title + "
    Statement stmt = conn.createStatement ();
    stmt.execute(
    "CREATE TABLE bug (id VARCHAR(10), val VARCHAR(10))");
    stmt.executeUpdate(
    "INSERT INTO bug VALUES('aaa', 'bbb')");
    System.out.println("[ Non parametrized query: ]");
    ResultSet rset = stmt.executeQuery(
    "select id from bug where id = 'aaa' and val = 'bbb'");
    while (rset.next ())
    System.out.println (rset.getString (1));
    System.out.println("[ The same - parametrized (should give one
    row): ]");
    PreparedStatement prep = conn.prepareStatement(
    "select id from bug where id = ? and val = ?");
    prep.setString(1, "aaa");
    prep.setString(2, "bbb");
    rset = prep.executeQuery();
    while (rset.next ())
    System.out.println (rset.getString (1));
    System.out.println("[ The same - with buggy reversed order
    (should give no answers): ]");
    prep = conn.prepareStatement(
    "select id from bug where id = ? and val = ?");
    prep.setString(1, "bbb");
    prep.setString(2, "aaa");
    rset = prep.executeQuery();
    while (rset.next ())
    System.out.println (rset.getString (1));
    stmt.execute("DROP TABLE bug");
    null

    Horea
    In the ejb-jar.xml, in the method a cursor is closed, set <trans-attribute>
    to "Never".
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name></ejb-name>
    <method-name></method-name>
    </method>
    <trans-attribute>Never</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    Deepak
    Horea Raducan wrote:
    Is there a known bug in Oracle JDBC thin driver version 8.1.6 that would
    prevent it from closing the open cursors ?
    Thank you,
    Horea

  • Order by in Parameter form for a formula col

    Hi,
    I have made a report for fast moving products and have ordered by on a formula column. Is there any way to select the order by (ascending or descending) in the parameter form at runtime for the same formula column. Instead of making two different reports one for ascending and one for descending, is there any way the user can select at runtime in the parameter form?
    For the same report, how can I specify Top 100, Top 50, Top 25 etc.
    Your reply or comments would be highly appreciated.
    Thanks
    Rgds
    Fahad Hanif

    I think by declaring one additional variable in which
    u will ask from user in which order he requires the
    outpu ascending/descending. and in second variable u
    assign the order,
    For exp
    your query in as
    select * from table
    &<var 2>
    if after parameter trigger of the report mention
    if <var1>='asc'
    <var2>:='Order by fieldname asc';
    else
    <var2>:='Order by fieldname desc';
    if;
    ill solve ur requirement.
    Thanks
    Shishu PaulHi,
    Thanx for your reply but unfortunately it dint work. It dint show me any error as such but the ordering did not take place.
    The issue is that I need to do the ordering on the Formula Column. Simply adding an order by statement like ' order by :cf_4 ' shows an error. Though routing it through the variable dint show any error it neither did serve the purpose.
    I need to find a way in getting the ordering on the formula column. Then I need is Top n number of products to be displayed based on the order by of the formula column.
    Pls help me out on this.
    Thanks
    Rgds
    Fahad Hanif

  • SQL Parameter Order

    I'm not sure if this is a CR or BOE question but I'll post here first.
    Is there any way to change the parameter order of a SQL Command Parameter?
    I know it usually goes by the alphabetical order of the parameter name (i.e.: SQL Parameter name "StartDate" and "EndDate" would actually prompt EndDate first then StartDate).
    I guess I can easily try to change the wording of the parameter names and that's what I did (I changed it to "1StartDate" and "2EndDate").  It prompts correctly in CR when I preview it... but when I bring it up to BOE and run the report there, it will prompt me the 2EndDate first instead of 1StartDate.
    Any ideas?

    James,
    I have changed appropriately to match alphabetically (eg. Begin & End)... and like always, Crystal will display the prompt correctly and in correct when refreshing the report.  But once I bring it up on BOE, it will prompt for End first then Begin.
    Brian,
    Thanks for your suggestion.  However, I am aware of the parameter orders in the parameter viewer.  While the parameter order list applies to parameter used on the actual report, it does not apply to the order SQL Command Parameters are for some reason.  Regardless, it has always been set in the order I'd like it... just that when it comes to the SQL Parameter part, it never follows.
    Could this be a BOE issue then?

  • No parameter define for plant 1000 order type zmpp

    Hi Gurues, I have facing a problem with error msg coming like "No parameter define for plant 1000 order type zmpr" Actually without confirm the order we have teco order with tcode iw32 and when i want to confirm the same order with tcode iw41 , the above error is coming Please help also pls find the attached screen shot Best Rajeev

    Greetings Rajeev,
    Have you checked if the parameters for the confirmation are maintained in OPK4 for this Plant and Order Type?
    http://sap.ittoolbox.com/groups/technical-functional/sap-log-pp/co11n-no-completion-confirmation-parameters-defined-1206…

  • HT5228 I am running OSX 10.5.8 and am told I need to update Java in order to protect agains tthe Flashbck Trojan. But cannot figure out where to download such an update. Any help?

    I am running OSX 10.5.8 and am told I need to update Java in order to protect agains tthe Flashback Trojan. But cannot figure out where to download such an update. Any help?

    michael60 wrote:
    Many, many thanks.
    In my Java Prefs App I unchecked
    J2SE 5.0
    J2SE 1.4.2 was already unchecked.
    Did I get this right?
    Wasnt sure if I was  was disabling Java or Java Script here....
    That is Java. Those are also really old versions. You can actually keep them turned on in Java Preferences.
    What you want to change is in Safari > Preferences > Security and turn off Java there. Leave Javascript turned on.
    This way, the only thing you disable is Java applets, which are useless anyway. If you need to run any Java programs, they will still work. If you have any specific site that requires a Java applet, you can always turn it on just for that site and turn it back off when you are done.

  • Java parameter set

    who can tell me how to set java parameter in ias?
    in java application i use "java -Dxxxxx" to set
    java parameter,but i can't set parameter in ias,
    somebody help me!

    RWB --> Component MOnitoring --> Adapter Engine --> Background Processing
    http://help.sap.com/saphelp_nwpi71/helpdata/en/05/b1b740f83db533e10000000a155106/frameset.htm

  • Changing sales order for a Credit blocked customer

    Hi Gurus
    One of the requirement of my client is that they create sales order for a customer and deliver the goods. During sales order creation billing block is automatically applied. This block is removed by a batch job after the goods are delivered. Sometime credit department block the customer using FD32 (KNKK-CRBLB). Now when the batch job is run to remove the billing block the system will not allow it for that order as the system calls VA02 during that batch job run. When you process a sales order using VA02 for a customer which is blocked (KNKK-CRBLB) then system will through error message V1 (154) i.e Order receipt/delivery not possible, credit customer blocked.
    So the batch job will not be able to remove the billing block from the order. NOw the requiremetn is that how can I achieve this so that the billing block are removed by that batch job as the customers has already been delivered the goods (Any user exit?).
    Thanks
    KTK

    Dear KTK,
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    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.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Reward points if this helpful.
    Regards,
    Naveen.

  • Error in JSF  - java.lang.NumberFormatException: For input string:

    Nice day friends,
    I am sure that this is one stupid question by newbie like me, but I already lost hope since there no many post on this error especially in JSF at Google.
    Here the full error I've got :
    executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@12bb287) threw exception
    java.lang.NumberFormatException: For input string: "id"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:447)
    at java.lang.Integer.parseInt(Integer.java:497)
    at javax.el.ListELResolver.toInteger(ListELResolver.java:373)
    at javax.el.ListELResolver.getValue(ListELResolver.java:167)
    Here my snippet of code :
    NationalityDO.java (managed bean)
    public class NationalityDO implements Serializable {
    @Id
    @Column(name = "ID", nullable = false)
    private String id;
    private List nationalityList;
    public NationalityDO() {
    public NationalityDO(String id) {
    this.id = id;
    public String getId() {
    return this.id;
    public void setId(String id) {
    this.id = id;
    public List getNationalityList(){
    NationalityDA da=new NationalityDA();
    if(nationalityList==null){
    System.out.println("if(nationalityList==null)");
    try {
    nationalityList=da.retrieveNationalityList();
    } catch (Exception ex) {
    ex.printStackTrace();
    return nationalityList;
    public void setNationalityList(){
    this.nationalityList=nationalityList;
    This is my NationalityDA (used to retrieve data)
    public class NationalityDA {
    public NationalityDA() {
    public List retrieveNationalityList() throws Exception{
    ArrayList ls=new ArrayList();
    Connection con = null;
    PreparedStatement ps = null;
    ResultSet rsReturn = null;
    try {
    con = DBManager.getDBConnection();
    String sql="select id,descr,setup_date,change_date from nationality order by id asc" ;
    ps = con.prepareStatement(sql);
    rsReturn = ps.executeQuery();
    while(rsReturn.next()){
    List lsNationality =new ArrayList();
    lsNationality.add(rsReturn.getString(1));//id
    lsNationality.add(rsReturn.getString(2));//descr
    ls.add(lsNationality);
    } catch(SQLException sqlex) {
    sqlex.printStackTrace();
    } finally {
    con.close();
    ps.close();
    return ls;
    Here my nationality.jsp
    <h:dataTable value='#{nationality.nationalityList}' var='item' border="1" cellpadding="2" cellspacing="0">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Id"/>
    </f:facet>
    <h:outputText value="#{item.id}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Descr"/>
    </f:facet>
    <h:outputText value="#{item.descr}"/>
    </h:column>
    </h:dataTable>
    Here my face-config.xml
    <managed-bean>
    <managed-bean-name>nationality</managed-bean-name>
    <managed-bean-class>com.dataobject.nationality.NationalityDO</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/nationality/testNationality.jsp</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>fail</from-outcome>
    <to-view-id>/nationality/testNationality.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    For your information, the retrieve of data work successfully, this is the table description in oracle database which is varchar for id,
    SQL> desc nationality
    Name Null? Type
    ID NOT NULL VARCHAR2(4)
    DESCR VARCHAR2(20)
    SETUP_DATE TIMESTAMP(6)
    CHANGE_DATE TIMESTAMP(6)
    *If you feel that I should improve my writing in forum, I am really happy to know
    Thanks,
    unid

    thanks....
    Actually I already view the site many times before but after you told me then I get the idea,that's y working together is better, because i sometimes won't realize my mistake even it was the easiest one...
    So i just change my code in NationalityDA.java as
    while(rsReturn.next()){
    NationalityDO n=new NationalityDO();
    n.setId(rsReturn.getString(1));
    System.out.println("rsReturn.getString(1)"+ rsReturn.getString(1));
    n.setDescr(rsReturn.getString(2));
    System.out.println("rsReturn.getString(2)"+ rsReturn.getString(2));
    n.setSetupDate(rsReturn.getDate(3));
    System.out.println("rsReturn.getString(3)"+ rsReturn.getString(3));
    n.setChangeDate(rsReturn.getDate(4));
    System.out.println("rsReturn.getString(4)"+ rsReturn.getString(4));
    ls.add(n);
    Once again, thanks..and my 3 dukes are yours..
    -unid

  • Java startup property for Adobe document services

    Hi guyz, since a while i'm facing a random issue when i generate pdf. All the configuration has been done, but when look at in configtool i see a missing parameter:
    -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine. services.ts.jts.ots.PortableInterceptor.JTSInitializer
    Because it's in the recommendation parameter guide i guess it should be in, but someone can tell what those parameter deals about ?

    Hi,
    Yes, this service is mandatory if you want to use Adobe document service. It should be set for all server nodes in the config tool.  This is Java startup property for Adobe document services. Without this parameter adobe service will not start as a result you will not be able to open adobe documents.
    Thanks
    Sunny

  • Retrieve the sales orders for a particular customer in selection screen

    Hi
    I want to retrieve the sales orders for a particular customer(entering customer number field in the selection screen and then clicking on f4 help on sales order field in the selection screen I should get only sales order numbers for that particular customer number).How can I achieve this through search helps?Are there any standard search helps that I can use.
    <removed_by_moderator>
    Edited by: Julius Bussche on Apr 9, 2009 12:55 PM

    Hi,
    try this:
    at selection-screen on value-request for p_par.
    select * from vbak
    into itab
    where kunnr = p_par.
    then use the FM 'F4IF_TABLE_VALUE_REQUEST'.
    with
    retfield = 'VBELN'
    dynprog = sy-repid
    dynpnr = sy-dynnr
    dynprofield = <name of parameter>
    value_org = 'S'
    tables = itab.
    Regards,
    Leo.

  • How to get list of orders for current date.

    Hi,
    My requirement is to get list of orders for the date on which order was created such that I don't have to change the date in my application.
    Every time I run my application it should generate orders created on that current date without manually giving current date.
    This has to be done directly using BAPI and without creating a RFC. 
    I tried with bapi " BAPI_ALM_ORDERHEAD_GET_LIST " using parameter OPTIONS_FOR_START_DATE  but there I can't enter sy-datum and hence, every time I hence to change the date.
    Please tell me if there is any possible way to get fulfil above requirement.
    Thanks.
    Shilpi Agarwal.

    Hi Shilpi,
    This looks simple to me.
    Just create a variant in IW38 with U_your UserId as shown in the picture (Dynamic date selection for Created On set to Current Date)
    The status settings obviously would be
    Jogeswara Rao K

  • Services sequence order for Hyperion 11.1.1.3

    Hi All,
    I installed Hyperion 11.1.1.3(Foundation, Planning, HFM, HPCM) suite in HP-Xeon Server. Can anyone tell me the starting and stopping sequence order for Hyperion 11.1.1.3
    The following services got installed :
    Hyperion Administration Services - Web Application
    Hyperion Annotation Server
    Hyperion Apache 2.0
    Hyperion CALC Manager - Web Application
    Hyperion EPM Architect - .Net JNI Bridge
    Hyperion EPM Architect - Engine Manager
    Hyperion EPM Architect - Event Manager
    Hyperion EPM Architect - Job manager
    Hyperion EPM Architect - Process Manager
    Hyperion EPM Architect - Web Application
    Hyperion EPM Architect Data Synchronisation - Web Application
    Hyperion Essbase Services 11.1.1 - hypservice_1
    Hyperion Financial Data Quality Management - Task Manager
    HYperion Financial Management - DME Listner
    HYperion Financial Management - Management Service
    HYperion Financial Management - Web Service Manager
    HYperion Financial Reporting - Java RMI Registry
    HYperion Financial Reporting - Print Server
    HYperion Financial Reporting - Report Server
    HYperion Financial Reporting - Scheduler Server
    HYperion Financial Reporting - Web Application
    Hyperion Foundation OpenLDAP
    Hyperion Foundation Shared Services - web Application
    Hyperion Integration Services
    Hyperion Planning - Web Application
    Hyperion Provider Services - web Application
    Hyperion RMI Registry
    Hyperion Web Analysis - Web Application
    Hyperion Workspace - Agent Service
    Hyperion Workspace - Web Application
    IIS Admin Service
    Thanks,
    Lak

    From the Install documentation:
    The following EPM System product services and processes are listed below in their recommended startup order:
    1)     Databases for repositories.
    2)     Any corporate user directories that you plan to configure for use with Shared Services.
    3)     Shared Services OpenLDAP, or Oracle Internet Directory, depending on which is used as Shared Services Native Directory.
    4)     Shared Services application server
    5)     Oracle's Hyperion® Remote Authentication Module
    6)     EPM Workspace Agent (CMC Agent)
    7)     EPM Workspace application server
    8)     EPM Workspace Web server
    9)     Performance Management Architect Services
    10)     Essbase Server
    11)     Administration Services application server
    12)     Smart Search application server
    13)     Integration Services Server
    14)     Essbase Studio Server
    15)     Provider Services application server
    16)     Reporting and Analysis (in any order):
    a)     Financial Reporting Services
    b)     Web Analysis application server
    17)     Remaining services or processes (in any order):
    a)     Performance Management Architect application server
    b)     Performance Management Architect Data Synchronizer application server
    c)     Financial Reporting application server
    d)     Calculation Manager application server
    e)     Planning application server
    f)     Financial Management service
    g)     Strategic Finance service
    h)     Performance Scorecard application server
    i)     Performance Scorecard Alerter application server
    j)     Profitability and Cost Management application server
    k)     Data Relationship Management services
    l)     FDM Task Manager service
    m)     Hyperion ERPI - Web Application

Maybe you are looking for

  • Mixed Storage not allowed

    Hi, Below is the scenario.... I created a Standard Purchase Order and an Inbound delivery... When I trying to create Transfer orders for that Inbound delivery through LT03, and save it....I am getting error message saying "Mixed Storage is not allowe

  • Ongoing Broadband Issue - Any help would be much a...

    Hi, I have had an ongoing issue with broadband speed for the last few months. I have spent hours on the phone to BT but I am still not getting anywhere. Everytime I report a slow speed (as in IP Profile of 135 and download speed of ~ 80mbps) I am ass

  • ConnectionPool problems with WLS 7.0 and Oracle 9.2

    Hi, We are using WLS 7.0 SP4, and Oracle 9 and the Oracle thin driver type 4. In our application on the productive system (and only there) we constantly encounter a whole set of SQLExceptions which have all in common that the Connection from the pool

  • PDF Information isn't saved.

    I created a PDF in Acrobat 9 with editable fields. When I fill out the PDF using Preview or Safari and save it, none of the information that was entered is saved. When I reopen the PDF, all the text fields are blank. Can anyone else reproduce this?

  • ITunes stopps updating podcast subscriptions

    Hello! I use iTunes for a long time now to subscribe and archive podcasts, even though mostly I listen to them on my iPhone these days. So far everything worked fine, but a few weeks ago I noticed, that iTunes stopped the automatic update of some pod