Not equal is not working

hi
i write code in co extension below if (!weight.equals(weight_perc)) is not working how ever if("Core Objective".equals(Coreobjective)) is working here weight & weight_perc both are integers and Core objectives are string.
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAViewObject vo =(OAViewObject)am.findViewObject("ObjectivesVO");
if ("Apply".equals(pageContext.getParameter(EVENT_PARAM)))
String person_id = (new Integer(pageContext.getEmployeeId())).toString();
pageContext.writeDiagnostics(this,"person_id: "+person_id,OAFwkConstants.STATEMENT);
String s1 = pageContext.getDecryptedParameter("pObjectiveId");
pageContext.writeDiagnostics(this,"s1 "+s1,OAFwkConstants.STATEMENT);
String weight_perc =pageContext.getParameter("Weighting");
pageContext.writeDiagnostics(this,"weight_perc: "+weight_perc,OAFwkConstants.STATEMENT);
String objective= pageContext.getParameter("ObjectiveName");
pageContext.writeDiagnostics(this,"Objective_Name: "+objective,OAFwkConstants.STATEMENT);
String Coreobjective = objective.substring(0,14);
pageContext.writeDiagnostics(this,"Coreobjective: "+Coreobjective,OAFwkConstants.STATEMENT);
String query="select weighting_percent from per_objectives where objective_id ='"+s1+"'";
String weight = null;
try
pageContext.writeDiagnostics(this,"Enters into try block",OAFwkConstants.STATEMENT);
PreparedStatement ps= am.getOADBTransaction().getJdbcConnection().prepareStatement(query);
ResultSet rs=ps.executeQuery();
pageContext.writeDiagnostics(this,"Excute the quiery",OAFwkConstants.STATEMENT);
while(rs.next())
weight =rs.getString(1);
pageContext.writeDiagnostics(this,"weight: "+weight,OAFwkConstants.STATEMENT);
catch(Exception e)
e.printStackTrace();
if("Core Objective".equals(Coreobjective))
if (!weight.equals(weight_perc))
pageContext.writeDiagnostics(this,"ENTERS INTO EQUAL CONDITION: ",OAFwkConstants.STATEMENT);
     MessageToken[] errTokens = { new MessageToken("VOLDWEIGHTAGE", weight)};
throw new OAException("XX_PG", "XXBPTY_COREOBJ_WEIGHT_NOCHANGE", errTokens);
plz help me.
Regars,
sharif.

Before you do equals check, you should check if any of the value is null or not.
Both the values are numbers, but you are getting them into strings. So you have to do string compare.
Or it's easier to get them as numbers and use logical operators as suggested by other fellow experts to compare.
If you still want to go for Strings here is what you need to do(may be bit cautions here)
if ((str1!=null || !"".equals(str1))&& (str2!=null || !"".equals(str2)) && str1.equals(str2)){
Yes both of them are same
else{
They are different.
Regards,
Peddi.

Similar Messages

  • How do you something not equal something else?

    how come the, "does not equal's" not work, and what is the proper way to do it so that I can have all the variables be different, but still be between 1 and 7?
    import javax.swing.*;
    import java.text.*;
    import java.util.*;
    import java.awt.*;
    import java.lang.*;
    public class DiplomacySelector1
              public static void main(String[] args)
         String input;
         int x,num1,num2,num3,num4,num5,num6,num7,choice;
         Random generator1=new Random();
         num1= 1 + generator1.nextInt(7);
         Random generator2=new Random();
         num2= 1 + generator2.nextInt(7);
         Random generator3=new Random();
         num3= 1 + generator3.nextInt(7);
         Random generator4=new Random();
         num4= 1 + generator4.nextInt(7);
         Random generator5=new Random();
         num5= 1 + generator5.nextInt(7);
         Random generator6=new Random();
         num6= 1 + generator6.nextInt(7);
         Random generator7=new Random();
         num7= 1 + generator7.nextInt(7);
         x=0;
         while(x<7)
              System.out.println("Great Britian- "+num1);
              System.out.println("France- "+num2);
              num2!=num1;
              System.out.println("Austria-Hungary- "+num3);
              num2!=num1!=num3;
              System.out.println("Germany- "+num4);
              num2!=num1!=num3!=num4;
              System.out.println("Italy- "+num5);
              num2!=num1!=num3!=num4!=num5;
              System.out.println("Turkey- "+num6);
              num2!=num1!=num3!=num4!=num5!=num6;
              System.out.println("Russia- "+num7);
              num2!=num1!=num3!=num4!=num5!=num6!=num7;
              x=7;
    }

    First, DON'T create a new Random each time. There is a very high probability that all those Randoms will be created before you system clock ticks over, so they'll all have the same system time for a seed and hence will all generate the same pseudorandom sequence.
    Create only one Random and reuse it.
    You still might not get unique numbers though. So there are two main approaches:
    1) Simpler, and will work well here since you have a small range and you're using all the numbers in your range. Just populate java.util.List of seven Integers with 1-7 sequentially, then call Collections.shuffle().
    2) More complex, and in general useful when you're selecting a few values from a large range, but will work fine here too. Keep track of what you've selected so far. Each call to nextInt() is in a loop that keeps executing until you grab a number you haven't encountered yet. Don't use this to shuffle, say, a million ints in the range 1..1,000,000.

  • HELP NEEDED! Not Equal problem!!

    Hi, I had written a page that does some validation and in the end if validation are done, insert records into the database.
    However I am not sure why my not equals is not working, therfore not inserting records into the database.
    WOuld appreciate if anyone can help me out.
         if(event.getSource() == RegisterButton)
                   String user;
                   //Get username and pwd
                   user=txtusername.getText();
                   String pass1=new String(txtpassword1.getPassword());
                   String pass2=new String(txtpassword2.getPassword());
              if(user.equals("")||pass1.equals("")||pass2.equals("")) {
              JOptionPane.showMessageDialog (this, "Please entered all the fields");
              else if(!pass1.equals(pass2)) {
               JOptionPane.showMessageDialog (this, "Password does not match");
              //Connecting to database for retrival
                   String data = "jdbc:mysql://localhost:3306/mydatabase";
                   try {
                   Class.forName("com.mysql.jdbc.Driver");
                   Connection conn = DriverManager.getConnection(data, "root", "admin");
                   Statement st = conn.createStatement();
                   ResultSet rec = st.executeQuery("SELECT * FROM userInfo WHERE userID='" +user+"' ");
                   while(rec.next()) {
                   String users = rec.getString("userID");
                    System.out.println(users);
                    if(user.equals(users)) {
                    JOptionPane.showMessageDialog (this, "Please enter a new username");
                   if(!user.equals(users)) {
                   st.executeUpdate("INSERT INTO userInfo VALUES (user,pass1)");
                   st.close();
                   catch (SQLException s) {
                   System.out.println("SQL Error: " + s.toString() + " "+ s.getErrorCode() + " " + s.getSQLState());
                   catch (Exception e) {
                   System.out.println(" Error: " + e.toString() + e.getMessage());
                   }the part that i highlighted is not working.

    i have edited the codes,it insert but doesn't validate 1 of my requirement.
    that is when it had the same username,it suppose to prompt user to enter naother new username.
    now it inserts duplicate copies of it.
    when i insert i also got an erorr saying operation not allowed after result set closed.
    can help mi do some editing please.
    thanks
         if(event.getSource() == RegisterButton)
                   String user;
                   //Get username and pwd
                   user=txtusername.getText();
                   String pass1=new String(txtpassword1.getPassword());
                   String pass2=new String(txtpassword2.getPassword());
              if(user.equals("")||pass1.equals("")||pass2.equals("")) {
              JOptionPane.showMessageDialog (this, "Please entered all the fields");
              else if(!pass1.equals(pass2)) {
               JOptionPane.showMessageDialog (this, "Password does not match");
              //Connecting to database for retrival
                   String data = "jdbc:mysql://localhost:3306/mydatabase";
                   try {
                   Class.forName("com.mysql.jdbc.Driver");
                   Connection conn = DriverManager.getConnection(data, "root", "admin");
                   Statement st = conn.createStatement();
                   boolean allow=true;
                   ResultSet rec = st.executeQuery("SELECT * FROM userInfo");
                   while(rec.next()) {     
                   String users = rec.getString("userID");
               //     System.out.println(users);
                    if(user.equals(users)) {
                         allow=false;
                    JOptionPane.showMessageDialog (this, "Please enter a new username");
                   if(allow)  {
                   st.executeUpdate("INSERT INTO userInfo VALUES ('"+user+"','"+pass1+"')");
                   st.close();
                   conn.close();
                   catch (SQLException s) {
                   System.out.println("SQL Error: " + s.toString() + " "+ s.getErrorCode() + " " + s.getSQLState());
                   catch (Exception e) {
                   System.out.println(" Error: " + e.toString() + e.getMessage());
              

  • Jobject.equals(jobject) not working properly

    Hi !
    I'm just playing with JNI. I'd like to implement observer pattern with JNI. Java code would register observers via native methods, so C++ should remember observers. Maybe this is not so useful, but I just wanted to implement it to learn more about JNI.
    Actually observer registration part is working fine. I have STL list where i store jobjects from "addNativeEventListener".
    1 interface NativeEventListener
    2 {
    3 public void handleEvent(int event);
    4 }
    5
    6 public class NativeEventProducer
    7 {
    8 public native void addNativeEventListener(NativeEventListener listener);
    9 public native void removeNativeEventListener(NativeEventListener listener);
    10 }
    I struggle with implementing "removeNativeEventListener". Here is my code:
    52 JNIEXPORT void JNICALL Java_NativeEventProducer_removeNativeEventListener
    53 (JNIEnv *env, jobject obj, jobject observer)
    54 {
    55 jmethodID equalsID = env->GetMethodID(env->FindClass("java/lang/Object"), "equals", "(Ljava/lang/Object;)Z");
    56
    57 // deregister observer
    58 list<jobject>::iterator it = observers.begin();
    59 while (it != observers.end()) {
    60 if (env->CallBooleanMethod(observer, equalsID, *it)) {
    61 printf("equals\n");
    62 observers.erase(it++);
    63 } else {
    64 printf("not equals\n");
    65 it++;
    66 }
    67 }
    68 }
    And my Java main code:
    30 NativeEventProducer producer = new NativeEventProducer();
    31
    32 NativeEventListener listener1 = new NativeEventListenerImpl(1);
    33 NativeEventListener listener2 = new NativeEventListenerImpl(2);
    34 NativeEventListener listener3 = new NativeEventListenerImpl(3);
    35
    36 producer.addNativeEventListener(listener1);
    37 System.out.println("----");
    38 producer.addNativeEventListener(listener2);
    39 System.out.println("----");
    40 producer.addNativeEventListener(listener3);
    41 System.out.println("----");
    42 producer.removeNativeEventListener(listener2);
    After line 40, In my C++ "observers" list I have 3 jobjects. I can emit events using them. But ! In line 42, all observers are deregistered. "removeNativeEventListener" is native method (implementation above) env->CallBooleanMethod(observer, equalsID, *it) always returns "true".
    Any ideas appreciated ! ;)

    I think I was wrong. I made some more testing and I think that the problem i with inserting jobjects to list on c++ side. I implement is this way:
    37 JNIEXPORT void JNICALL Java_NativeEventProducer_addNativeEventListener
    38 (JNIEnv *env, jobject obj, jobject observer)
    39 {
    40 // register new observer
    41 observers.push_back(observer);
    42 }
    It looks like jobjects are reseted outside of my code. Is it possible ? I will try to copy jobject, maybe it'll help

  • Is not equal to operator not working properly in obiee 11g

    Hi ,
    I have 5 members in a dimesion ENTITY.gen5 (A,B,C,D,E) .
    nOW , I am using a *"is equal to "* operator in that ,
    ENTITY.gen5 = A;B .
    Which results in a strange error while running the report :
    Socket communication error : was attempted on somthing which is not socket .
    or sometimes ,
    Socket communication error : Oracle BI server is not currently running .
    So , I tried with giving "is not equal to" i.e . ENTITY.gen5 != C;D;E .
    Then , I am getting A,B,C . C is not desired here .
    FYI , I have renamed ENTITY.gen5 member names in essbase once and after refreshing I tried the above .
    OBIEE version : 11.1.1.6
    essbase version : 11.1.2.1
    Thanks in advance

    In EM, go to Weblogic Domain, right click on bifoundation_domain and on the Security menu choose Application Policies.
    Set Application Stripe to obi and click the blue arrow search button.
    Highlight BIConsumer and click Edit.
    Under Permissions locate Resource Name oracle.bi.publisher.scheduleReport. Highlight this and click Delete...
    Click OK (top right corner).
    Now log your user out of OBIEE and back in again, and the option should have disappeared from their New menu.

  • Not Equals Function is not working in Mapping

    Hi All,
    i have to do mappig based on the Not Equals & And conditions
    If the Material Group starts with "F"
                            And Material Type Not Equals to "ZPRO" means
                                        then send "FG" Else "FC"
    Here Not Equals & And Functions are not giving success, Error throwing like
    Cannot cast ZPRO to boolean] in class com.sap.aii.mappingtool.flib3.Bool method not[ZPRO
    Please help in this
    Regards

    i have to do mappig based on the Not Equals & And conditions
    If the Material Group starts with "F"
    And Material Type Not Equals to "ZPRO" means
    then send "FG" Else "FC"
    Here Not Equals & And Functions are not giving success, Error throwing like
    Cannot cast ZPRO to boolean] in class com.sap.aii.mappingtool.flib3.Bool method not[ZPRO
    the logic applied is incorrect
    NotEquals is a boolean function meaning it will accept only boolean values as input....
    To check if the Material Number is ZPRO or not use the below logic
    MaterialNumber                                            Then(FG)
                          ------equalS(TextFunction) ---- not -----ifWithElse ------------------ Target
    Constant (ZPRO)                                                   Else(FC)
    Regards,
    Abhishek.

  • Not Equal to Clause in BODS

    Hello Experts -
    I need to put this condition in transformation  in BODS  table1.col 1 Not Equal to table2.col2 .
    I am not able to find NOT EQUAL TO clause in BODS. I have used  !=  , But  not working.
    However equal to (=) is working fine.
    Any suggestion how I can use not equal to ? (I want it in Where Tab)
    Thanks
    R

    Rohan, please pull/drag your columns into where clause. do not simply write them. and for your condition chk it with " <> " .
    hth
    thx
    deep

  • Succession of TaskSelectionEvent.getTaskIds is not equal to user selection

    Dear all,
    My configuration is JDev 11g R1 (11.1.1.4.0) and I'm currently working at ADF DVT Project Gantts.
    At the moment a problem occurs within the TaskSelectionEvent: The order of the task Ids coming back from TaskSelectionEvent.getTaskIds are not equal to the order of my selection. I 'm selecting first task A and then task B. The method give back [B, A].
    The code snippets based on the Oracle ADF faces demo:
    JSP:
    <dvt:projectGantt id="mygantt" startTime="2008-01-01"
    endTime="2011-12-31" var="task"
    value="#{PG.model}"
    tooltipKeys="#{PG.tooltipKeys}"
    tooltipKeyLabels="#{PG.tooltipLabels}"
    dataChangeListener="#{PG.handleDataChanged}"
    actionListener="#{PG.handleAction}"
    partialTriggers="ctb2"
    taskSelectionListener="{PG.handleSelectedTask}">
    </dvt:projectGantt>
    Java:
    private List selectedTaskIds;
    public void handleSelectedTask(TaskSelectionEvent evt)
    selectedTaskIds = evt.getTaskIds();
    What am I doing wrong?
    Thank you in advance.
    Best regards,
    Tom

    For the use case where tasks need to be linked (user clicks the "Link" icon in toolbar after selecting tasks), getTaskIds() in handleDataChanged() would return ids in the order tasks were selected.

  • =Time.isTimeWindowOpenNow - is there a NOT EQUAL option?

    Hi,
    I am trying to stop a job in a chain from running on a Friday for example.
    As a precondition I basically need the opposite of =Time.isTimeWindowOpenNow or I need a option to do a NOT EQUAL to expression.
    Is there a format to use to set a precondition like this?
    (I am using the free version of CPS so I cannot set up custom Time Windows)
    Thanks,
    Adriaan

    Hello Adriaan,
    This function actually exists for days in the week, very useful in static recurring situations. But you know you are more flexible with time windows in terms of compensations for holidays etc.
    Lets get to it though :-):
    =Time.isDayOfWeekInSetNow('_XXXXX_') allows you to specify the days in the week the function should return true. The String contains 7 characters, every _ specifies a day you are not interested in, every X specifies a day you are interested in. The String goes from Sunday to Saturday, so my example specifies the working days.
    Regards Gerben

  • User migration vom SAP DB to LDAP: Problem when userId not equal to logonId

    Hello
    I have to write a migration tool which migrates the users stored in the SAP DB to LDAP. Thereby the logon ID of the users in the SAP DB is not equal to the user ID.
    The migration works fine and in SAP Identity Management (IDM) everything is ok.
    But when I try to log onto the portal with a migrated user, the portal tells me that no portal role is assigned to the user. But the IDM shows clearly that the portal role is assigned to the user.
    Investigation showed that when I create in the LDAP a user with the same logon ID and user ID, the log onto the portal works ok. As soon the logon ID differs from the user ID, the portal does not find the assigned portal role anymore, although in IDM everything works.
    How can I solve this problem? It is important that the logon ID and the user ID are different as otherwise all the stored data has wrong references.
    Greetings
    Rolf
    Edited by: Rolf Grüninger on Jul 19, 2011 6:08 PM

    Problem solved:
    The naming attribute of the user account has to be set to the same attribute as the one of the user object and not to the user logon ID.

  • How to add  operator NE (not equal) in view BP_HEAD_SEARCH/MainSearch?

    Hi Experts:
    I am usuing CRM 2007.
    In view BP_HEAD_SEARCH/MainSearch I have added some new fields. This is working fine. But the operators of these new fields are all limited to Equal to. I need to add filter option (operator) NE (not equal).
    How can I do this?
    Best regards,
    Cristina

    Hi Carl:
    Thanks for your answer. Could you please explain a little bit more in detail ?
    Thanks a lot in advance!!
    Best regards,
    Cristina

  • Multiple selection in Query Panel. Operator Does not equal generates error.

    Hi,
    I'm using Jdeveloper 11.1.1.4 and creating Oracle Fusion Web Application with ADF Business Components.
    I want to use multiple selection on LOV in ADF Query Panel with Table, but I get the following error
    when I use operator "Does not equal":
    Error: Unsupported model type.
    SelectMany does not support a model of type class java.lang.Integer.
    A simple example:
    Schema: HR
    Generate default Business Components for tables Departments and Employees.
    Model:
    Create List of Values for EmployeesView(DepartmentId)
    List Data Source: DepartmentsView1
    List Attribute: DepartmentId
    Display Attributes: DepartmentName (UI Hints)
    Create View Criteria EmployeesByDepartmentVC for EmployeesView
    Criteria Item:
    Attribute: DepartmentId
    Operator: Equals
    Operand: Literal
    Select "Support Multiple Value Selection" (UI Hints)
    ViewController:
    Create blank JSF Page: showEmployees.jspx
    Drag EmployeesByDepartmentVC from Data Controls to showEmployees.jspx
    Create Query=>ADF Query Panel with Table
    Run application.
    Press Advanced button.
    Select operator "Does not equal" and department names "Administration;Marketing"
    Press Search
    Error: Unsupported model type.
    SelectMany does not support a model of type class java.lang.Integer.
    Note: it works fine with operator "Equals"
    Best,
    Kees.

    Hi,
    I was reading:
    http://www.oracle.com/technetwork/developer-tools/jdev/jdev-11gr2-nf-404365.html#bugs_fixed_in_11.1.2.2.0
    Bugs Fixed in 11.1.2.2.0
    Bug.No. 13508184
    unsupported model type error thrown for multi select view criteria
    I have tested the use case described in this thread with JDeveloper 11.1.2.2.0 but I still get the same error.
    when I use operator "Does not equal":
    Error: Unsupported model type.
    SelectMany does not support a model of type class java.lang.Integer.
    Is there anybody who can tell me more about this bug fix?
    Thanks,
    Kees.

  • Argument error; the number of columns does not equal the number of parameters.

    I am using the Database Toolkit (Enterprise Connectivity) to check for a network connection and then send information from a local database to a SQL database on the network if needed.  In development of the code I continue to receive Error 1 and the Possible Reason(s) is "Argument error; the number of columns does not equal the number of parameters."  I am using the DBToolsSelectData.VI to retrieve data from the local MDB file and the DBToolsInsertData.VI to write it to the SQL file.  The collection of the data from the MDB file is successful and the connection and validation of the table and columns in the SQL file is also successful.  The error occurs when the Insert VI tries to build the query.  The number of columns being written (attempted) does match the number of columns in the data, they are both 16 string arrays.

    Ok, it's taken a bit, and I have a solution! It took a while to figure out what the DCT is doing, but it seems to be working now.
    The reason for the original error is that you were passing into the insert subVI an array of variants - which the input to the VI coerced into a single variant. You were getting the error because as far as the insert VI was concerned you were only passing it a single data value. The way to get around that was to create a cluster with one element for each column value, convert the cluster to a variant and pass the result to the insert VI - see attachment.
    In terms of the other modifications, I made a copy of the endurance.mdb file, emptied it and used it as the destination for the copy.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    NetworkCheck.vi ‏49 KB

  • Showing Booking amount when it does not equal Opportuity Revenue Total

    I there a way to create a report to easily show where the booking amount of an opportunity does not equal the sum of the products in the product revenue section? I tried Sum(Product revenue), can't quite remeber the field name, but that did not work
    Also, we would like to see any opportunity that has no predict revenue associated with it, either in the same report or a different report.
    Thanks

    David,
    The Opportunity-Product subject areas contain both Opportunity Revenue fields and Opportunit-Product Revenue fields. The Opportunity-Product Revenue field located in Columns/Opportunity-Product/Revenue/Revenue will aggregate the total amount of all products for the opportunity. There is no need to SUM this field.
    Build a report and filter it based on a field that calculates the difference between the two revenue columns and you should get your desired list of opportunities.
    Now that you know where the right fields are, you other report should be a simple filter on the appropriate revenue field = 0
    Mike

  • Combining tables with multi-column keys using NOT EQUALS

    Hi, I am trying to perform a query in SQL to find a particular person who has a value for an attribute that nobody else has, so far my query looks like this:
    SELECT CS1.*
    FROM COMPANYSTAFF CS1
    WHERE NOT EXISTS
    (SELECT * FROM COMPANYSTAFF CS2 WHERE CS1.COMPSTAFFID != CS2.COMPSTAFFID AND CS1.MAININTEREST = CS2.MAININTEREST)
    GO
    The problem is that the table represents a weak entity, so the primary key is the name of the company the person works for combined with his ID. I want to change the not equals part of the above query so that I can say CS1-CompanyName and ID is not Equal to CS2-Company Name and ID rather than just both seperately.
    In order to clarify what probably sounds really stupid I would really like the ability to say something like:
    (CS1.COMPNAME, CS1.COMPSTAFFID) != (CS2.COMPNAME, CS2.COMPSTAFFID)
    Does anyone know if this is possible or if there is another way around it?
    Thanks
    Dave

    So ?
    SELECT CS1.*
    FROM COMPANYSTAFF CS1
    WHERE NOT EXISTS
    (SELECT * FROM COMPANYSTAFF CS2 WHERE (CS1.COMPSTAFFID != CS2.COMPSTAFFID OR CS1.COMPNAME != CS2.COMPNAME)
    AND CS1.MAININTEREST = CS2.MAININTEREST)GO ?
    Is is MS SQL ? :-)
    Regards
    Dmytro

Maybe you are looking for

  • HT1349 i have itunes installed on a laptop, i want transfer to this new computer, easiest way please!

    i have itunes installed on a computer i no longer use and wis to transfer to thia new laptop, easiest way please

  • Oracle apps 11i question

    Hi all, i have compiled an fmb file as follows cd /s01/oracle/prodappl/au/11.5.0/forms/US f60gen  INCENTIVE.fmb userid=apps/apps cp INCENTIVE.fmx  /s01/oracle/prodappl/per/11.5.0/forms/US no compilation errors is coming why is it that i am not able t

  • Schedule Line Category - sales order

    Hi All, I have 2 sales orders with the same material in the item shows 2 different schedule line categories. For example: Sales order 1 with Item A  - Schedule line category - CB Sales order 2 with Item A - Schedule line category - CN What could be c

  • Error Generating WebService for SOAP over JMS

    Hi, I've been tring to create an addition web service thta takes two input and returns the sum. I was able to generate the WSDL using JDevelopers GUI tool for generating WSDL, but I notices that there was no transport layer, in thebinding that suppoe

  • GL_JE_HEADER table : Posted date not update properly

    Hi All, I have seen that for few of the journals created inside GL,  The posted date inside the GL_JE_HEADER table is update with a date instead of time stamp. i.e  the posted date column is updated as '7/08/2013'  instead of  '7/08/2013 4:40:39 AM'