!!urgent - BAPI ..... pls help!!

Hi,
I really need help to be able to save materials made up of several parts with BAPI.
Let me show you the idea by using the example of car (finished product):
Car is built from a lot of components, for instance:
- 1 engine
- 4 tires
- 2 front lights
etc.
My task is to implement a method responsible for creating a finished product and all necessary semi-finished products which are connected with ready prod and save them in SAP. Furthermore I've got to create a bill of materials.
Has somebody faced similar problem? How have you solved it? How?
Below I show what I've found out:
I've got to create material master record for trading goods(type: HAWA in Headdata) and create Semifinished products (type: HALB) by using BAPI_MATERIAL_SAVEDATA (hopefully I'm right, otherwise pls correct me), but I still don't know how to connect them with each other and then use to create BOM.
According to my best knowledge there is no BAPI to create BOM...i tried to find without any result.
Looking forward your answers.
BR,
Rafal

Hi
This is the documentation for Function module - CSAP_MAT_BOM_CREATE  
Functionality
You can use this function module to create simple material BOMs.
You cannot add alternatives or variants to a BOM, as in transaction CS01.
Current restrictions:
You cannot create long texts.
You cannot create sub-items.
You cannot classify BOM items for batches.
You can only save your BOM if no errors occur, because it is not yet possible to change a BOM. Both header data and all item data must be correct.
Please note:
Fields where no entry can be made because they were not selected are initialized. The log does not contain information on initialized fields.
The BOM default values defined in the control data and any user-specific defaults are handled in the same way as in the online transaction.
Default values that are dependent on BOM usage (for example, indicators for relevancy to production, costing, and so on) are not processed.
If you create items with object dependencies, the dependency must have basic data, a description, and source code entered.
The fields OBJECT_ID and IDENTIFIER identify the object to which a dependency belongs.
(OBJECT_ID = '2'  => BOM item)
Dependencies are identified by internal or external names. When you create a dependency, you must enter an external name, because an internal name is not assigned until you save.
Recursiveness in class items is recognized, but no information is available on which objects in the class caused the recursiveness. You cannot define recursiveness as allowed for these objects.
Example
*---- Feldleiste Stücklistenkopfdaten
data: begin of tstko.
          include structure stko_api01.
data: end of tstko.
*---- Tabelle Stücklistenpositionen
data: begin of tstpo occurs 0.
          include structure stpo_api01.
data: end of tstpo.
*---- Tabellen für Beziehungswissen:
    Basisdaten
data: begin of tdep_data occurs 0.
         include structure csdep_dat.
data: end of tdep_data.
    Beschreibung
data: begin of tdep_descr occurs 0.
         include structure csdep_desc.
data: end of tdep_descr.
    Source
data: begin of tdep_source occurs 0.
         include structure csdep_sorc.
data: end of tdep_source.
    Reihenfolge
data: begin of tdep_order occurs 0.
         include structure csdep_ord.
data: end of tdep_order.
    Dokumentation
data: begin of tdep_doc occurs 0.
         include structure csdep_doc.
data: end of tdep_doc.
data: flg_warning like capiflag-flwarning.
*- Datenbankprotokoll eröffnen
   call function 'CALO_INIT_API'
        exceptions
             log_object_not_found     = 1
             log_sub_object_not_found = 2
                                                                   other_error              = 3
                                                                   others                   = 4.
*- Kopfdaten füllen
   tstko-base_quan = '1.000'.
   tstko-bom_text = 'Stücklistentext'.
*- Positionsdaten füllen
1. Position (Lagerteil)
   clear tstpo.
   tstpo-item_no    = '0010'.
                                                                                tstpo-item_categ = 'L'.                                                                                "Mußeingabe
                                                                                tstpo-component  =                                                                                'MAT200'.                                                                                "Mußeingabe
                                                                                tstpo-comp_qty                                                                                = '1.000'.                                "Mußeingabe
   tstpo-comp_unit  = 'ST'.
   append tstpo.
2. Position (Rohmaßposition)
   2 Stück a 4 m X 3 m => 2 St a 12 m2
   clear tstpo.
   tstpo-item_no    = '0020'.
                                                                                tstpo-item_categ = 'R'.                                                                                "Mußeingabe
                                                                                tstpo-component  =                                                                                'MAT300'.                                                                                "Mußeingabe
                                                                                tstpo-comp_qty                                                                                = '2.000'.                                "Mußeingabe
                                                                                tstpo-vsi_size1  =                                                                                '4.000'.                                  "Mußeingabe
   tstpo-vsi_size2  = '3.000'.
   tstpo-vsi_szunit = 'M'.
   tstpo-comp_unit  = 'M2'.
   append tstpo.
3. Position (Textposition)
   clear tstpo.
   tstpo-item_no    = '0030'.
                                                                                tstpo-item_categ = 'T'.                                                                                "Mußeingabe
   tstpo-item_text1 = 'Positionstext'.           "Mußeingabe
   append tstpo.
4. Position (Dokumentposition)
   clear tstpo.
   tstpo-item_no    = '0040'.
                                                                                tstpo-item_categ = 'D'.                                                                                "Mußeingabe
                                                                                tstpo-document   = 'DOK1'.                                                                                "Mußeingabe
                                                                                tstpo-doc_type   =                                                                                'DRW'.                          "Mußeingabe
   tstpo-comp_qty   = '1.000'.
   tstpo-comp_unit  = 'ST'.
5. Position (Klassenposition)
   clear tstpo.
   tstpo-item_no    = '0050'.
                                                                                tstpo-item_categ = 'K'.                                                                                "Mußeingabe
   tstpo-res_itm_ct = 'L'.
                                                                                tstpo-class      = 'CLS1'.                                                                                "Mußeingabe
                                                                                tstpo-class_type =                                                                                '200'.                          "Mußeingabe
                                                                                tstpo-comp_qty                                                                                = '1.000'.                                "Mußeingabe
   tstpo-comp_unit  = 'ST'.
6. Position (Lagerteil) mit Beziehungswissen
   clear tstpo.
   tstpo-item_no    = '0060'.
                                                                                tstpo-item_categ = 'L'.                                                                                "Mußeingabe
                                                                                tstpo-component  =                                                                                'MAT200'.                                                                                "Mußeingabe
                                                                                tstpo-comp_qty                                                                                = '1.000'.                                "Mußeingabe
   tstpo-comp_unit  = 'ST'.
   tstpo-identifier = 'P1'.      "Mußeingabe beim Anlegen von BezWissen
   append tstpo.
Beziehungswissen zu Position 0060
   clear tdep_data.
   tdep_data-object_id  =  '2'.
   tdep_data-identifier = 'P1'.
   tdep_data-dep_extern = 'B1'.
   tdep_data-dep_type   = '5'.
   tdep_data-status     = '1'.
   append tdep_data.
   clear tdep_source.
   tdep_source-object_id  = '2'.
   tdep_source-identifier = 'P1'.
   tdep_source-dep_extern = 'B1'.
   tdep_source-line_no    = '1'.
   tdep_source-line       = 'Farbe = ''rot'''.
   append tdep_source.
   clear tdep_descr.
   tdep_descr-object_id  = '2'.
   tdep_descr-identifier = 'P1'.
   tdep_descr-dep_extern = 'B1'.
   tdep_descr-language   = 'D'.
   tdep_descr-descript   = 'Beziehung B1 zu Position P1'.
   append tdep_descr.
7. Position (Lagerteil) mit Beziehungswissen
   clear tstpo.
   tstpo-item_no    = '0070'.
                                                                                tstpo-item_categ = 'L'.                                                                                "Mußeingabe
                                                                                tstpo-component  =                                                                                'MAT400'.                                                                                "Mußeingabe
                                                                                tstpo-comp_qty                                                                                = '1.000'.                                "Mußeingabe
   tstpo-comp_unit  = 'ST'.
   tstpo-identifier = 'P2'.      "Mußeingabe beim Anlegen von BezWissen
   append tstpo.
Beziehungswissen zu Position 0070
   clear tdep_data.
   tdep_data-object_id  =  '2'.
   tdep_data-identifier = 'P2'.
   tdep_data-dep_extern = 'B2'.
   tdep_data-dep_type   = '5'.
   tdep_data-status     = '1'.
   append tdep_data.
   clear tdep_source.
   tdep_source-object_id  = '2'.
   tdep_source-identifier = 'P2'.
   tdep_source-dep_extern = 'B2'.
   tdep_source-line_no    = '1'.
   tdep_source-line       = 'Farbe = ''rot'''.
   append tdep_source.
   clear tdep_descr.
   tdep_descr-object_id  = '2'.
   tdep_descr-identifier = 'P2'.
   tdep_descr-dep_extern = 'B2'.
   tdep_descr-language   = 'D'.
   tdep_descr-descript   = 'Beziehung B1 zu Position P1'.
   append tdep_descr.
*- Materialstückliste anlegen
   call function 'CSAP_MAT_BOM_CREATE'
        exporting
             material   = 'MAT100'
                                                                   plant      = '0001'
             bom_usage  = '1'
             valid_from = '01.01.1995'
             i_stko  = tstko
        importing
             fl_warning = flg_warning
        tables
                                                                   t_stpo       = tstpo
             t_dep_data   = tdep_data
             t_dep_descr  = tdep_descr
             t_dep_source = tdep_source
             t_dep_order  = tdep_order
             t_dep_doc    = tdep_doc
        exceptions
             error   = 1.
   if sy-subrc eq 1.
*---- Fehler aufgetreten (Stückliste kann nicht angelegt werden)
    Bitte Protokoll auswerten
   endif.
   if flg_warning eq 'X'.
*---- Bitte Protokoll auswerten. Dieses enthält Informationen, War-
    nungen und Erfolgsmeldungen
   Endif.
Parameters
MATERIAL
PLANT
BOM_USAGE
VALID_FROM
CHANGE_NO
REVISION_LEVEL
I_STKO
FL_NO_CHANGE_DOC
FL_COMMIT_AND_WAIT
FL_CAD
FL_DEFAULT_VALUES
FL_WARNING
BOM_NO
T_STPO
T_DEP_DATA
T_DEP_DESCR
T_DEP_ORDER
T_DEP_SOURCE
T_DEP_DOC
T_LTX_LINE
T_STPU
Exceptions
ERROR
Function Group
CSAP
Regards
- Atul

Similar Messages

  • Error!Urgent!Pls Help.....Thank You

    I had the following error with the code below.......anyone pls help me ..... urgent.....I will be really appreciate it......Thank you in advanced.....
    I had created two statement,.....one is to select the value of Leave_Reason from a table and store it in the String Leave_Reason after that I need to insert the Leave_Reason variable's value together with other value which input from a form in the previous page....into another table....
    But I dun know why I encountered the error below....anyone pls help.....really urgent.....I had tried to solve it for two days already,,,,,
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 86 in the jsp file: /SilkAir/leave_request.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    C:\Tomcat 4.1\work\Standalone\localhost\_\SilkAir\leave_request_jsp.java:315: cannot resolve symbol
    symbol : variable Leave_Reason
    location: class org.apache.jsp.leave_request_jsp
    String Query = "INSERT INTO Leave_Application (Emp_Num, Leave_ID, Apply_Date, Leave_Date, Leave_Reason, Leave_Applied, Leave_Status) VALUES ('" + Emp_Num + "', '" + Leave_ID + "', '" Apply_Date "', '" + Leave_Date + "', '" + Leave_Reason + "', '" + Day + "', 'Pending')";
    ^
    1 error
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:130)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:293)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:340)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:474)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:184)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:536)
    <request.jsp>
    <%@page import="java.sql.*"%>
    <%@page import="java.util.Date"%>
    <%@page import="java.text.SimpleDateFormat"%>
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <%
    String username = (String)session.getAttribute("username");
    %>
    <%
    //define connection
    Connection con = null;
    try{
    //get the class
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    //get the connection
         con = DriverManager.getConnection("jdbc:odbc:Database","","");
    //please catch your exceptions!
    catch(Exception e){
         out.println(e.getMessage());
    // form data
    String Emp= request.getParameter("txtEmp");
    String Leave_ID = request.getParameter("txtReason");
    java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy/MM/dd");
    String LeaveDate = request.getParameter("txtLeaveDate");
    java.util.Date dateU = sdf.parse(LeaveDate);
    java.sql.Date Leave_Date = new java.sql.Date(dateU.getTime());
    String Day = request.getParameter("txtDay");
    java.text.SimpleDateFormat rd = new java.text.SimpleDateFormat("yyyy/MM/dd");
    String ApplyDate = request.getParameter("txtApplyDate");
    java.util.Date dateR = rd.parse(ApplyDate);
    java.sql.Date Apply_Date = new java.sql.Date(dateR.getTime());
    // query statement
    ResultSet rs=null;
    Statement SQLStatement = con.createStatement();
    Statement stm = con.createStatement();
    String query = "SELECT DISTINCT LeaveType FROM Leave WHERE Leave_ID ='"+Leave_ID+"'";
    rs = stm.executeQuery(query);
    if(rs.next())
    String Leave_Reason = rs.getString("LeaveType");
    else
    {    out.println("no results found");
    rs.close();
    stm.close();
    String Query = "INSERT INTO Application (Emp, Leave_ID, Apply_Date, Leave_Date, Leave_Reason, Leave_Applied, Leave_Status) VALUES ('" + Emp_Num + "', '" + Leave_ID + "', '" Apply_Date "', '" + Leave_Date + "', '" + Leave_Reason + "', '" + Day + "', 'Pending')";
    // get result code
    int SQLStatus = SQLStatement.executeUpdate(Query);
         if(SQLStatus != 0)
         out.println("post successfully.");
         else
         out.println("Problem encountered");
    // close connection
    SQLStatement.close();
    con.close();
    %>
    </body>
    </html>

    if(rs.next())
    String Leave_Reason = rs.getString("LeaveType");
    else
    { out.println("no results found");
    rs.close();
    stm.close();
    String Query = "INSERT INTO Application (Emp, Leave_ID, Apply_Date, Leave_Date, Leave_Reason, Leave_Applied, Leave_Status) VALUES ('" + Emp_Num + "', '" + Leave_ID + "', '" Apply_Date "', '" + Leave_Date + "', '" + Leave_Reason + "', '" + Day + "', 'Pending')";
    The Problem is that the variable Leave_Reason is declared as a local variable inside a if block. So the scope of the variable is not visible outside the if block...
    Try using something like
    String Leave_Reason = "";
    if(rs.next())
    Leave_Reason = rs.getString("LeaveType");
    else
    { out.println("no results found");
    This should work...
    Hope it helps.
    Thanks and regards,
    Pazhanikanthan. P

  • URGENT! PLS HELP... using JAMES as mail server

    hi, first of all... happy new year to everyone...
    i am currently developing a web based application and one of the component in the system is using JAMES as mail server. I am done some modification in config.xml in JAMES, now the problem is i can only send internal mails instead of external one, such as hotmail and yahoo.
    The error occurs as below:-
    RemoteDelivery: Exception delivering message (Mail1041375079561-0-!448616653-to-hotmail.com) - Could not connect to SMTP host: hotmail.com, port: 25
    How can i send mails to hotmail and yahoo users or any other external mail?
    Can anyone pls help me to solve this problem?
    Thanks in advance.

    sounds like a network problem rather than a JAMES problem. Have you confirmed that you can ping the hotmail mail server, and then that you can "telnet" in to it on port 25?
    If you have a windows machine handy, you can find out the IP address of hotmail's primary mail server by using nslookup:
    C:\>nslookup
    set type=MX
    hotmail.comIf you don't get anything from this, it would indicate a DNS problem. Once you have the IP address, try to telnet to it on port 25:
    C:\>telnet 65.54.254.129 25
    Here's what I got...
    220 mc1-f3.law16.hotmail.com Microsoft ESMTP MAIL Service, Version: 5.0.2195.5600 ready at Wed, 1 Jan 2003 21:19:03 -0800
    If you aren't able to connect, it's probably either a firewall at your end blocking outbound TCP traffic on port 25 (or possibly all ports), or a DNS issue, or some sort of routing issue with your ISP

  • Can not run OWB Mapping automatically by OEM? .  Very urgent. Pls help me

    Hi all,
    Pls help me.
    I am using OWB 10g under Oracle 10g. I want to run OWB Mapping automatically by OEM.
    I installed Oracle Database 10g fully but don't have OEM in this. After that, I installed Oracle Client 10g. In this product, there is OEM 10g. I read some topic as "want to run owb mappings thru job schedule" and also read http://otn.oracle.com/products/warehouse/htdocs/oem_scheduling_viewlet_swf.html
    But my OEM not as same as in this . It don't have job menu and OEM Console Login window and don't have also where I can put username/pwd to login into OMS???
    I don't know this problem.
    Pls help me.

    Hi,
    Here are two possible solutions:
    1) If you have OEM 9i anywhere in your environment you can use this for scheduling the OWB jobs.
    2) If your environment is 10g only you need to install 10g Grid Controll. This product has replaced the OMS / Java console of earlier releases, and contains the same functionality for scheduling jobs.
    Note that if you are using the sql_exec_template to execute your mappings you can schedule and run these from any machine on the network, not just the target server.
    Hope this helps,
    Roald

  • Urgent doubt :: pls help

    i want the output html of a jsp page redirected as an excel sheet. how is it to be done. pls. help.
    advance thanks,
    Prabhu.V.C

    Also, be sure to put 'tabs' - \t not spaces between the columns you want to create. Otherwise, each line will be formatted into one column.
    G.

  • URGENT! PLS HELP Load tests (Oracle Load Testing) in OTM

    hello,
    it´s really urgent so please help!
    How can I see the test result of the lload tests (done with Oracle Load Testing) in OTM????
    I can not figure out why such an important point is missing in the documenation....
    Thank you very much for your (hopefully soon) help!
    Edited by: 853007 on 20.04.2011 05:42

    added these files in the classpath : using oracle 9i
    , jdk1.4.2
    C:\Documents and Settings\Sampathkumar\Desktop>set
    CLASSPATH=c:\oracle\ora92\jdb
    c\lib\ojdbc14.jar;c:\oracle\ora92\jdbc\lib\nls_charset
    12.jar;%CLASSPATH%;
    submitted this code as a sample to test the
    conection
    import java.sql.*;
    public class test{
    public static void main(String[] args) throws
    SQLException,ClassNotFoundException {
    //load oracle driver
    Class.forName("oracle.jdbc.OracleDriver");
    System.out.println("Driver Loaded");
    //connecTION to the sample database
    String url =
    =
    "jdbc.oracle:thin:@SEC_MEC-MS3:1521:global.oracle";
    Connection conn=DriverManager.getConnection
    tion (url,"sam","aaj");
    System.out.println("Database connection
    on successful");
    //create a statement
    Statement stmt = conn.createStatement();
    ResultSet rset =stmt.executeQuery("select
    ry("select sysdate from Dual");
    while (rset.next())
    System.out.println(rset.getString(1));
    }//end of test DB class
    give the error stack
    C:\Documents and Settings\Sampathkumar\Desktop>java
    test
    Driver Loaded
    Exception in thread "main" java.sql.SQLException: No
    suitable driver
    at
    at java.sql.DriverManager.getConnection(Unknown
    known Source)
    at
    at java.sql.DriverManager.getConnection(Unknown
    known Source)
    at test.main(test.java:17)__________________________________________________________
    You are loading the driver classes ok. But is that the appropriate driver for youir database?
    I know Oracle is phasing out the .zip version classes12.zip, but have tried them
    here the possible drivers
    ojdbc14.jar Oracle 9. and higher and jk1.4 and higher
    ojdbc14_g-1.jar - include extentsion Oracle 9. and higher and jk1.4 and higher
    classes12.zip - Primarily used with oralce 8.* and jk1.2.* - jtk1.3.*

  • Bapi - pls help its urgent

    Hi friends,
    Is there any BAPI for uploading data of CC02 ?
    Regards..
    Balaji

    Hi,
    Use this FM.
    BDS_BUSINESSDOCUMENT_CREATEF
    BAPI_ECMORD_CREATE BAPI
    RFC_CREATE_CHANGE_MASTER
    <b>Reward points</b>
    Regards

  • URGENT, EXPERTS PLS HELP!!

    I would like to know answer to following question:
    "Is java.lang.Object" overused??? Pls reply immediately coz I doing my final year project at ivy league university and I need to hand in my assignment in next 2 hours!

    "Is java.lang.Object" overused??? Pls reply
    immediately coz I doing my final year project at ivy
    league university and I need to hand in my assignment
    in next 2 hours!I love the story this implies. This issue is critical to a final year project? A final year project? Due in September?
    How could it be relevant? I mean, if the final year project is an argument about the overuse of a particular idiom, then presumably the project is in the OP's area of expertise. So why is he asking about it here, now?
    And if it's not his area of expertise... then he'd be expected to do some research, such as interviews. He'd be expected to do some research somewhat earlier than two hours before the project is due.
    And of course the coup de grace, informing us that it's in an ivy league school. Those of us who weren't so fortunate to attend one, are of course obligated to help out those who do.
    He must go to Yale.
    Otherwise...a marvelous troll, sir!

  • Image Upload probelm - Very Urgent. Pls help!!!

    Hi All,
    I am facing very strange problem while uploading a image file (.JPG file) thru a web dynpro view.
    I am accepting a image file from view and uploading it to a ftp server.
    There are two abnormal results I have observed. It does NOT happen for every image upload. But it has been observed to happen during peak Internet hrs. (image size can range from 1MB to 7-8 MBs)
    When 'Upload' button is clicked, one of the following thing happens:-
    1. After taking loooong time (processing circle rotates), browser screen goes totally blank. That is, browser goes into state as if no page is opened (white screen)
    2. After taking loooong time, empty form re-appears. ( ie the view in which i had submitted data and pressed 'Upload')
    I have tried tracing errors in default trace. but no error or exception is displayed !!!
    Following is the code i'm using for uploading file. ==>
    try {
    URL myUrl = new URL("ftp://<some address>");
    FtpURLConnection myConnection = new FtpURLConnection(myUrl);
    myConnection.connect();
    OutputStream out = myConnection.getOutputStream();
    out.write(wdContext.currentPhotosElement().getPhoto1());
    out.close();
    myConnection.close();
    } catch (Exception e) {
    System.err.println("\n\n$$$$$$$$$$$$$Exception in image upload $$$$$$$$$$$$$\n\n");
    e.printStackTrace();
    Please help me as this system is live and lot of users are complaining as they are not able to upload their images..
    Awaiting for reply ..
    regards,
    Amey

    Hi,
    Does anybody have any idea about how the file data (byte stream) flows from Client's machine browser to Web Dynpro's context's element??
    As per my observation and tracing, it is first loading byte array frm client's machine to view's corresponding context node.. And then only it is proceeding with further actions.
    Now in my case, user may upload files ranging frm size 6MB to 10MB, web dynpro application either refreshes or times out during this transfer. I didnt even started FTP process to upload byte[] to remote server !!!
    So how can we increase this speed of transfer from  client's machine to context element ??
    regards,
    Amey

  • Urgent! Pls help me! Can't compile any *.java files

    I am a new user to Java2SDK. I am using Win2K sever and I have installed Java2SDK1.4.0 in D drive. When I compile any *.java files, a message " 'javac' is not recognized as an internal or external command, operable program or batch file" appears. How can I solve this problem?
    Please help me. I am busy with my homework. Thank you very much.

    In your PATH variable include %JAVA_HOME%\bin;
    For example:
    C:\jdk1.4\bin;

  • SQL Query Urgent..pls help

    Dear Experts,
    Table.
    C_id Purity
    1     100
    2     100
    10     100
    11     100
    12     100
    Ranking Regions by Size You have to list all regions in the table, and you have to list them according to their size.
    you need to list all regions of two or more containers with a purity of 100, and you need to sort that list by the number of containers in each region.
    The output should be something like this:
    RegBeg RegEnd RegionSize
    10 12 3
    1 2 2
    Kindly help me,
    Basav

    Looks like a homework assignment.
    Perhaps you can explain to your tutor how the tabbibitosan method works...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select 1 as C_id, 100 as Purity from dual union all
      2             select 2, 100 from dual union all
      3             select 4, 100 from dual union all
      4             select 5, 100 from dual union all
      5             select 6, 50 from dual union all
      6             select 7, 100 from dual union all
      7             select 10, 100 from dual union all
      8             select 11, 100 from dual union all
      9             select 12, 100 from dual)
    10  --
    11  -- use tabbibitosan method to group data
    12  select min(c_id) as min_c_id
    13        ,max(c_id) as max_c_id
    14        ,count(*) as grp_size
    15  from   t
    16  where purity = 100
    17  group by c_id-rownum
    18  having count(*) > 1
    19* order by 3 desc, 1
    SQL> /
      MIN_C_ID   MAX_C_ID   GRP_SIZE
            10         12          3
             1          2          2
             4          5          2... if you can understand it. ;)

  • Pet store runtime error! urgent! Pls help me out

    Dear everybody,
    I just install the petstore in my local computer, following the whole instruction from http://java.sun.com/blueprints/code/jps131/docs/installing.h tml
    It seems all rite during the installation.
    But when I try to access the
    Amazon Parrot
    Great companion for up to 75 years
    in the bird category, I cannot see anything feed back. I checked the j2ee log, here is the output of it. I have no idea how to fix this problem, any tech people can help me? I need this sample code as a base of a project.
    Thanks for whom can help!!
    A hardworking progammer
    Henry
    Binding name:`java:comp/env/jms/QueueConnectionFactory`
    Binding name:`java:comp/env/ejb/OPCAdminFacadeRemote`
    Binding name:`java:comp/env/ejb/AsyncSender`
    Created Context:/admin
    Application AdminEAR deployed.
    java.security.PrivilegedActionException: javax.servlet.ServletException: An erro
    r occurred while evaluating custom action attribute "value" with value "${item.a<br />ttribute}": Unable to find a value for "attribute" in object of class "com.sun.j<br />2ee.blueprints.catalog.model.Item" using operator "."
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.include(Appli cationDis
    patcher.java:488)
    at com.sun.j2ee.blueprints.waf.view.template.tags.InsertTag.doE ndTag(Ins
    ertTag.java:99)
    at org.apache.jsp.template$jsp._jspService(template$jsp.java:15 9)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(App licationD
    ispatcher.java:431)
    at org.apache.catalina.core.ApplicationDispatcher.access$0(Appl icationDi
    spatcher.java:359)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedFor ward.run(
    ApplicationDispatcher.java:130)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.forward(Appli cationDis
    patcher.java:347)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.in sertTempl
    ate(TemplateServlet.java:288)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.pr ocess(Tem
    plateServlet.java:246)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.do Get(Templ
    ateServlet.java:143)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.signon.web.SignOnFilter.doFilter(Sig nOnFilter
    .java:151)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.encodingfilter.web.EncodingFilter.do Filter(En
    codingFilter.java:77)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at org.apache.catalina.core.StandardWrapperValve.invoke(Standar dWrapperV
    alve.java:243)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContextValve.invoke(Standar dContextV
    alve.java:201)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.CertificatesValve.invoke(Certific atesValve
    .java:246)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContext.invoke(StandardCont ext.java:
    2343)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHo stValve.j
    ava:164)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Error Dispatche
    rValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo rtValve.j
    ava:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.authenticator.SingleSignOn.invoke(Single SignOn.ja
    va:392)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardEngineValve.invoke(Standard EngineVal
    ve.java:174)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.connector.http.HttpProcessor.process(Htt pProcesso
    r.java:1012)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpPro cessor.ja
    va:1107)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: javax.servlet.ServletException: An error occurred while evaluating cu
    stom action attribute "value" with value "${item.attribute}": Unable to find a v
    alue for "attribute" in object of class "com.sun.j2ee.blueprints.catalog.model.I<br />tem" using operator "."
    at org.apache.jasper.runtime.PageContextImpl.handlePageExceptio n(PageCon
    textImpl.java:463)
    at org.apache.jsp.product$jsp._jspService(product$jsp.java:1357 )
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(App licationD
    ispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.access$1(Appl icationDi
    spatcher.java:501)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedInc lude.run(
    ApplicationDispatcher.java:146)
    ... 66 more
    InsertTag:doEndTag caught: javax.servlet.ServletException: An error occurred whi
    le evaluating custom action attribute "value" with value "${item.attribute}": Un
    able to find a value for "attribute" in object of class "com.sun.j2ee.blueprints<br />.catalog.model.Item" using operator "."
    javax.servlet.ServletException: An error occurred while evaluating custom action
    attribute "value" with value "${item.attribute}": Unable to find a value for "a<br />ttribute" in object of class "com.sun.j2ee.blueprints.catalog.model.Item" using
    operator "."
    at org.apache.jasper.runtime.PageContextImpl.handlePageExceptio n(PageCon
    textImpl.java:463)
    at org.apache.jsp.product$jsp._jspService(product$jsp.java:1357 )
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(App licationD
    ispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.access$1(Appl icationDi
    spatcher.java:501)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedInc lude.run(
    ApplicationDispatcher.java:146)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.include(Appli cationDis
    patcher.java:488)
    at com.sun.j2ee.blueprints.waf.view.template.tags.InsertTag.doE ndTag(Ins
    ertTag.java:99)
    at org.apache.jsp.template$jsp._jspService(template$jsp.java:15 9)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.ja va:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.servi ce(JspSer
    vlet.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServl et.java:3
    82)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java :474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(Applic ationDisp
    atcher.java:683)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(App licationD
    ispatcher.java:431)
    at org.apache.catalina.core.ApplicationDispatcher.access$0(Appl icationDi
    spatcher.java:359)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedFor ward.run(
    ApplicationDispatcher.java:130)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.forward(Appli cationDis
    patcher.java:347)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.in sertTempl
    ate(TemplateServlet.java:288)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.pr ocess(Tem
    plateServlet.java:246)
    at com.sun.j2ee.blueprints.waf.view.template.TemplateServlet.do Get(Templ
    ateServlet.java:143)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.signon.web.SignOnFilter.doFilter(Sig nOnFilter
    .java:151)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at com.sun.j2ee.blueprints.encodingfilter.web.EncodingFilter.do Filter(En
    codingFilter.java:77)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFi lter(Appl
    icationFilterChain.java:213)
    at org.apache.catalina.core.ApplicationFilterChain.access$0(App licationF
    ilterChain.java:197)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(Applic ationFilt
    erChain.java:176)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(App licationF
    ilterChain.java:172)
    at org.apache.catalina.core.StandardWrapperValve.invoke(Standar dWrapperV
    alve.java:243)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContextValve.invoke(Standar dContextV
    alve.java:201)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.CertificatesValve.invoke(Certific atesValve
    .java:246)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardContext.invoke(StandardCont ext.java:
    2343)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHo stValve.j
    ava:164)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Error Dispatche
    rValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorRepo rtValve.j
    ava:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.authenticator.SingleSignOn.invoke(Single SignOn.ja
    va:392)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.core.StandardEngineValve.invoke(Standard EngineVal
    ve.java:174)
    at org.apache.catalina.core.StandardPipeline.invokeNext(Standar dPipeline
    .java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPip eline.jav
    a:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase. java:943)
    at org.apache.catalina.connector.http.HttpProcessor.process(Htt pProcesso
    r.java:1012)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpPro cessor.ja
    va:1107)
    at java.lang.Thread.run(Thread.java:534)

    Hello Everybody
    I have the procedure to run petsotre demo as it is given in the Java BluePrints Projects Install Document.
    But when I have tried to run the ant setup command it it has given me the following error
    BUILD FAILED
    java.lang.AbstractMethodError: javax.xml.parsers.SAXParser.getXMLReader()Lorg/xml/sax/XMLReader;
    at org.apache.tools.ant.util.JAXPUtils.getNamespaceXMLReader(JAXPUtils.java:163)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:193)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:140)
    at org.apache.tools.ant.ProjectHelper.configureProject(ProjectHelper.java:91)
    at org.apache.tools.ant.Main.runBuild(Main.java:653)
    at org.apache.tools.ant.Main.startAnt(Main.java:187)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    Total time: 0 seconds
    java.lang.AbstractMethodError: javax.xml.parsers.SAXParser.getXMLReader()Lorg/xml/sax/XMLReader;
    at org.apache.tools.ant.util.JAXPUtils.getNamespaceXMLReader(JAXPUtils.java:163)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:193)
    at org.apache.tools.ant.helper.ProjectHelper2.parse(ProjectHelper2.java:140)
    at org.apache.tools.ant.ProjectHelper.configureProject(ProjectHelper.java:91)
    at org.apache.tools.ant.Main.runBuild(Main.java:653)
    at org.apache.tools.ant.Main.startAnt(Main.java:187)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    javax.xml.parsers.SAXParser.getXMLReader()Lorg/xml/sax/XMLReader;
    Plz help to rectify this error .
    Regards,
    Chirag Viradiya

  • DEQUEUING ORDER DIFFERS FROM ENQUEUING ORDER,URGENT ONE, PLS HELP

    Hi ,
    we are using ORACLE ADVANCED QUEUING for queue functionality.
    our Oracle version is Oracle 8i release 8.1.5
    Sometimes dequeuing order differs from enqueuing order. we are
    enqueuing to the queue using default options only , i mean we
    are not setting any prriority for messages .We are enqueuing 100
    messages continuously to the queue.After completing enqueuing we
    are dequeuing from the queue first in browse and then in remove
    mode. We are using thin driver for database connectivity. If U
    have any idea about this problem pls feel free to share with me .
    Thanx in advance
    Regards
    Shilda Joseph
    see the code snippet
    enqueuing
    aqMsg = qOracleQueue.createMessage();
    aqRawPayload = aqMsg.getRawPayload();
    byMsg = sMsgInfo.getBytes();
    aqRawPayload.setStream(byMsg, byMsg.length);
    AQEnqueueOption aqEnqueueOption = new AQEnqueueOption
    qOracleQueue.enqueue(aqEnqueueOption, aqMsg);
    dequeuing
         aqDequeueOption.setWaitTime(1);
    aqDequeueOption.setDequeueMode
    (aqDequeueOption.DEQUEUE_BROWSE);
    aqMsg = qOracleQueue.dequeue(aqDequeueOption);
    //removing
         AQDequeueOption aqDequeueOption1 = new AQDequeueOption
    aqDequeueOption1.setDequeueMode
    (aqDequeueOption.DEQUEUE_REMOVE);
    AQMessage aqRemMsg = qOracleQueue.dequeue
    (aqDequeueOption1);
    see the enqueuing order and dequeuing order of hello 57, hello
    58
    2001/10/17 15:38:42:3 INFO [main] message enqueued - Helloo 1 to
    HL7MESSAGEQUEUE
    2001/10/17 15:38:42:124 INFO [main] message enqueued - Helloo 2
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:234 INFO [main] message enqueued - Helloo 3
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:334 INFO [main] message enqueued - Helloo 4
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:434 INFO [main] message enqueued - Helloo 5
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:544 INFO [main] message enqueued - Helloo 6
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:644 INFO [main] message enqueued - Helloo 7
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:755 INFO [main] message enqueued - Helloo 8
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:865 INFO [main] message enqueued - Helloo 9
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:42:965 INFO [main] message enqueued - Helloo 10
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:75 INFO [main] message enqueued - Helloo 11
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:175 INFO [main] message enqueued - Helloo 12
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:275 INFO [main] message enqueued - Helloo 13
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:375 INFO [main] message enqueued - Helloo 14
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:476 INFO [main] message enqueued - Helloo 15
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:576 INFO [main] message enqueued - Helloo 16
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:686 INFO [main] message enqueued - Helloo 17
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:786 INFO [main] message enqueued - Helloo 18
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:886 INFO [main] message enqueued - Helloo 19
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:43:986 INFO [main] message enqueued - Helloo 20
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:86 INFO [main] message enqueued - Helloo 21
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:187 INFO [main] message enqueued - Helloo 22
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:287 INFO [main] message enqueued - Helloo 23
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:397 INFO [main] message enqueued - Helloo 24
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:497 INFO [main] message enqueued - Helloo 25
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:597 INFO [main] message enqueued - Helloo 26
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:697 INFO [main] message enqueued - Helloo 27
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:797 INFO [main] message enqueued - Helloo 28
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:898 INFO [main] message enqueued - Helloo 29
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:44:988 INFO [main] message enqueued - Helloo 30
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:98 INFO [main] message enqueued - Helloo 31
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:188 INFO [main] message enqueued - Helloo 32
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:298 INFO [main] message enqueued - Helloo 33
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:388 INFO [main] message enqueued - Helloo 34
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:488 INFO [main] message enqueued - Helloo 35
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:598 INFO [main] message enqueued - Helloo 36
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:689 INFO [main] message enqueued - Helloo 37
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:799 INFO [main] message enqueued - Helloo 38
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:899 INFO [main] message enqueued - Helloo 39
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:45:989 INFO [main] message enqueued - Helloo 40
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:99 INFO [main] message enqueued - Helloo 41
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:189 INFO [main] message enqueued - Helloo 42
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:299 INFO [main] message enqueued - Helloo 43
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:390 INFO [main] message enqueued - Helloo 44
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:500 INFO [main] message enqueued - Helloo 45
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:600 INFO [main] message enqueued - Helloo 46
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:700 INFO [main] message enqueued - Helloo 47
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:790 INFO [main] message enqueued - Helloo 48
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:46:900 INFO [main] message enqueued - Helloo 49
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:0 INFO [main] message enqueued - Helloo 50
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:111 INFO [main] message enqueued - Helloo 51
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:201 INFO [main] message enqueued - Helloo 52
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:301 INFO [main] message enqueued - Helloo 53
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:411 INFO [main] message enqueued - Helloo 54
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:501 INFO [main] message enqueued - Helloo 55
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:631 INFO [main] message enqueued - Helloo 56
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:731 INFO [main] message enqueued - Helloo 57
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:822 INFO [main] message enqueued - Helloo 58
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:47:932 INFO [main] message enqueued - Helloo 59
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:22 INFO [main] message enqueued - Helloo 60
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:132 INFO [main] message enqueued - Helloo 61
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:222 INFO [main] message enqueued - Helloo 62
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:332 INFO [main] message enqueued - Helloo 63
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:432 INFO [main] message enqueued - Helloo 64
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:533 INFO [main] message enqueued - Helloo 65
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:623 INFO [main] message enqueued - Helloo 66
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:733 INFO [main] message enqueued - Helloo 67
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:823 INFO [main] message enqueued - Helloo 68
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:48:933 INFO [main] message enqueued - Helloo 69
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:23 INFO [main] message enqueued - Helloo 70
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:123 INFO [main] message enqueued - Helloo 71
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:214 INFO [main] message enqueued - Helloo 72
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:324 INFO [main] message enqueued - Helloo 73
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:49:684 INFO [main] message enqueued - Helloo 74
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:5 INFO [main] message enqueued - Helloo 75
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:105 INFO [main] message enqueued - Helloo 76
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:215 INFO [main] message enqueued - Helloo 77
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:305 INFO [main] message enqueued - Helloo 78
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:405 INFO [main] message enqueued - Helloo 79
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:505 INFO [main] message enqueued - Helloo 80
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:605 INFO [main] message enqueued - Helloo 81
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:696 INFO [main] message enqueued - Helloo 82
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:796 INFO [main] message enqueued - Helloo 83
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:886 INFO [main] message enqueued - Helloo 84
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:50:996 INFO [main] message enqueued - Helloo 85
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:96 INFO [main] message enqueued - Helloo 86
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:186 INFO [main] message enqueued - Helloo 87
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:286 INFO [main] message enqueued - Helloo 88
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:387 INFO [main] message enqueued - Helloo 89
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:487 INFO [main] message enqueued - Helloo 90
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:587 INFO [main] message enqueued - Helloo 91
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:687 INFO [main] message enqueued - Helloo 92
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:797 INFO [main] message enqueued - Helloo 93
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:887 INFO [main] message enqueued - Helloo 94
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:51:987 INFO [main] message enqueued - Helloo 95
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:88 INFO [main] message enqueued - Helloo 96
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:188 INFO [main] message enqueued - Helloo 97
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:278 INFO [main] message enqueued - Helloo 98
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:378 INFO [main] message enqueued - Helloo 99
    to HL7MESSAGEQUEUE
    2001/10/17 15:38:52:478 INFO [main] message enqueued - Helloo
    100 to HL7MESSAGEQUEUE
    2001/10/17 15:54:51:259 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 1
    2001/10/17 15:54:51:319 INFO [main] DS::run: Dequeue
    REMOVEHelloo 1
    2001/10/17 15:54:51:619 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 2
    2001/10/17 15:54:51:649 INFO [main] DS::run: Dequeue
    REMOVEHelloo 2
    2001/10/17 15:54:51:929 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 3
    2001/10/17 15:54:51:960 INFO [main] DS::run: Dequeue
    REMOVEHelloo 3
    2001/10/17 15:54:52:290 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 4
    2001/10/17 15:54:52:360 INFO [main] DS::run: Dequeue
    REMOVEHelloo 4
    2001/10/17 15:54:52:640 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 5
    2001/10/17 15:54:52:671 INFO [main] DS::run: Dequeue
    REMOVEHelloo 5
    2001/10/17 15:54:52:951 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 6
    2001/10/17 15:54:52:971 INFO [main] DS::run: Dequeue
    REMOVEHelloo 6
    2001/10/17 15:54:53:301 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 7
    2001/10/17 15:54:53:321 INFO [main] DS::run: Dequeue
    REMOVEHelloo 7
    2001/10/17 15:54:53:672 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 8
    2001/10/17 15:54:53:692 INFO [main] DS::run: Dequeue
    REMOVEHelloo 8
    2001/10/17 15:54:56:926 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 9
    2001/10/17 15:54:56:946 INFO [main] DS::run: Dequeue
    REMOVEHelloo 9
    2001/10/17 15:54:57:257 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 10
    2001/10/17 15:54:57:277 INFO [main] DS::run: Dequeue
    REMOVEHelloo 10
    2001/10/17 15:54:57:557 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 11
    2001/10/17 15:54:57:627 INFO [main] DS::run: Dequeue
    REMOVEHelloo 11
    2001/10/17 15:54:57:918 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 12
    2001/10/17 15:54:57:938 INFO [main] DS::run: Dequeue
    REMOVEHelloo 12
    2001/10/17 15:54:58:268 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 13
    2001/10/17 15:54:58:278 INFO [main] DS::run: Dequeue
    REMOVEHelloo 13
    2001/10/17 15:54:58:569 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 14
    2001/10/17 15:54:58:589 INFO [main] DS::run: Dequeue
    REMOVEHelloo 14
    2001/10/17 15:54:58:869 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 15
    2001/10/17 15:54:58:959 INFO [main] DS::run: Dequeue
    REMOVEHelloo 15
    2001/10/17 15:54:59:260 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 16
    2001/10/17 15:54:59:280 INFO [main] DS::run: Dequeue
    REMOVEHelloo 16
    2001/10/17 15:54:59:600 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 17
    2001/10/17 15:54:59:620 INFO [main] DS::run: Dequeue
    REMOVEHelloo 17
    2001/10/17 15:54:59:911 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 18
    2001/10/17 15:54:59:931 INFO [main] DS::run: Dequeue
    REMOVEHelloo 18
    2001/10/17 15:55:0:251 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 19
    2001/10/17 15:55:0:321 INFO [main] DS::run: Dequeue REMOVEHelloo
    19
    2001/10/17 15:55:0:602 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 20
    2001/10/17 15:55:0:622 INFO [main] DS::run: Dequeue REMOVEHelloo
    20
    2001/10/17 15:55:0:922 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 21
    2001/10/17 15:55:0:932 INFO [main] DS::run: Dequeue REMOVEHelloo
    21
    2001/10/17 15:55:1:263 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 22
    2001/10/17 15:55:1:283 INFO [main] DS::run: Dequeue REMOVEHelloo
    22
    2001/10/17 15:55:1:623 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 23
    2001/10/17 15:55:1:633 INFO [main] DS::run: Dequeue REMOVEHelloo
    23
    2001/10/17 15:55:1:933 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 24
    2001/10/17 15:55:1:953 INFO [main] DS::run: Dequeue REMOVEHelloo
    24
    2001/10/17 15:55:2:484 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 25
    2001/10/17 15:55:2:504 INFO [main] DS::run: Dequeue REMOVEHelloo
    25
    2001/10/17 15:55:2:775 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 26
    2001/10/17 15:55:2:855 INFO [main] DS::run: Dequeue REMOVEHelloo
    26
    2001/10/17 15:55:3:135 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 27
    2001/10/17 15:55:3:155 INFO [main] DS::run: Dequeue REMOVEHelloo
    27
    2001/10/17 15:55:3:436 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 28
    2001/10/17 15:55:3:456 INFO [main] DS::run: Dequeue REMOVEHelloo
    28
    2001/10/17 15:55:3:736 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 29
    2001/10/17 15:55:3:756 INFO [main] DS::run: Dequeue REMOVEHelloo
    29
    2001/10/17 15:55:4:86 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 30
    2001/10/17 15:55:4:106 INFO [main] DS::run: Dequeue REMOVEHelloo
    30
    2001/10/17 15:55:4:407 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 31
    2001/10/17 15:55:4:427 INFO [main] DS::run: Dequeue REMOVEHelloo
    31
    2001/10/17 15:55:4:707 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 32
    2001/10/17 15:55:4:727 INFO [main] DS::run: Dequeue REMOVEHelloo
    32
    2001/10/17 15:55:5:68 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 33
    2001/10/17 15:55:5:88 INFO [main] DS::run: Dequeue REMOVEHelloo
    33
    2001/10/17 15:55:5:468 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 34
    2001/10/17 15:55:5:488 INFO [main] DS::run: Dequeue REMOVEHelloo
    34
    2001/10/17 15:55:5:769 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 35
    2001/10/17 15:55:5:789 INFO [main] DS::run: Dequeue REMOVEHelloo
    35
    2001/10/17 15:55:6:69 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 36
    2001/10/17 15:55:6:149 INFO [main] DS::run: Dequeue REMOVEHelloo
    36
    2001/10/17 15:55:6:430 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 37
    2001/10/17 15:55:6:450 INFO [main] DS::run: Dequeue REMOVEHelloo
    37
    2001/10/17 15:55:6:730 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 38
    2001/10/17 15:55:6:750 INFO [main] DS::run: Dequeue REMOVEHelloo
    38
    2001/10/17 15:55:7:31 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 39
    2001/10/17 15:55:7:51 INFO [main] DS::run: Dequeue REMOVEHelloo
    39
    2001/10/17 15:55:7:381 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 40
    2001/10/17 15:55:7:401 INFO [main] DS::run: Dequeue REMOVEHelloo
    40
    2001/10/17 15:55:7:692 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 41
    2001/10/17 15:55:7:702 INFO [main] DS::run: Dequeue REMOVEHelloo
    41
    2001/10/17 15:55:7:992 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 42
    2001/10/17 15:55:8:12 INFO [main] DS::run: Dequeue REMOVEHelloo
    42
    2001/10/17 15:55:8:372 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 43
    2001/10/17 15:55:8:392 INFO [main] DS::run: Dequeue REMOVEHelloo
    43
    2001/10/17 15:55:8:683 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 44
    2001/10/17 15:55:8:703 INFO [main] DS::run: Dequeue REMOVEHelloo
    44
    2001/10/17 15:55:8:983 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 45
    2001/10/17 15:55:9:3 INFO [main] DS::run: Dequeue REMOVEHelloo
    45
    2001/10/17 15:55:9:314 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 46
    2001/10/17 15:55:9:394 INFO [main] DS::run: Dequeue REMOVEHelloo
    46
    2001/10/17 15:55:9:704 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 47
    2001/10/17 15:55:9:724 INFO [main] DS::run: Dequeue REMOVEHelloo
    47
    2001/10/17 15:55:10:15 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 48
    2001/10/17 15:55:10:35 INFO [main] DS::run: Dequeue REMOVEHelloo
    48
    2001/10/17 15:55:10:335 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 49
    2001/10/17 15:55:10:355 INFO [main] DS::run: Dequeue
    REMOVEHelloo 49
    2001/10/17 15:55:10:696 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 50
    2001/10/17 15:55:10:716 INFO [main] DS::run: Dequeue
    REMOVEHelloo 50
    2001/10/17 15:55:10:996 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 51
    2001/10/17 15:55:11:16 INFO [main] DS::run: Dequeue REMOVEHelloo
    51
    2001/10/17 15:55:11:337 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 52
    2001/10/17 15:55:11:357 INFO [main] DS::run: Dequeue
    REMOVEHelloo 52
    2001/10/17 15:55:11:687 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 53
    2001/10/17 15:55:11:707 INFO [main] DS::run: Dequeue
    REMOVEHelloo 53
    2001/10/17 15:55:11:998 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 54
    2001/10/17 15:55:12:18 INFO [main] DS::run: Dequeue REMOVEHelloo
    54
    2001/10/17 15:55:12:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 55
    2001/10/17 15:55:12:348 INFO [main] DS::run: Dequeue
    REMOVEHelloo 55
    2001/10/17 15:55:12:709 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 56
    2001/10/17 15:55:12:729 INFO [main] DS::run: Dequeue
    REMOVEHelloo 56
    2001/10/17 15:55:12:989 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 58
    2001/10/17 15:55:13:9 INFO [main] DS::run: Dequeue REMOVEHelloo
    58
    2001/10/17 15:55:13:319 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 57
    2001/10/17 15:55:13:339 INFO [main] DS::run: Dequeue
    REMOVEHelloo 57
    2001/10/17 15:55:13:670 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 59
    2001/10/17 15:55:13:690 INFO [main] DS::run: Dequeue
    REMOVEHelloo 59
    2001/10/17 15:55:13:970 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 60
    2001/10/17 15:55:13:990 INFO [main] DS::run: Dequeue
    REMOVEHelloo 60
    2001/10/17 15:55:14:291 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 61
    2001/10/17 15:55:14:311 INFO [main] DS::run: Dequeue
    REMOVEHelloo 61
    2001/10/17 15:55:14:591 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 62
    2001/10/17 15:55:14:671 INFO [main] DS::run: Dequeue
    REMOVEHelloo 62
    2001/10/17 15:55:15:603 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 63
    2001/10/17 15:55:15:623 INFO [main] DS::run: Dequeue
    REMOVEHelloo 63
    2001/10/17 15:55:15:933 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 64
    2001/10/17 15:55:15:953 INFO [main] DS::run: Dequeue
    REMOVEHelloo 64
    2001/10/17 15:55:16:274 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 65
    2001/10/17 15:55:16:294 INFO [main] DS::run: Dequeue
    REMOVEHelloo 65
    2001/10/17 15:55:16:624 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 66
    2001/10/17 15:55:16:644 INFO [main] DS::run: Dequeue
    REMOVEHelloo 66
    2001/10/17 15:55:16:934 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 67
    2001/10/17 15:55:16:944 INFO [main] DS::run: Dequeue
    REMOVEHelloo 67
    2001/10/17 15:55:17:325 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 68
    2001/10/17 15:55:17:345 INFO [main] DS::run: Dequeue
    REMOVEHelloo 68
    2001/10/17 15:55:17:665 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 69
    2001/10/17 15:55:17:685 INFO [main] DS::run: Dequeue
    REMOVEHelloo 69
    2001/10/17 15:55:17:956 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 70
    2001/10/17 15:55:17:976 INFO [main] DS::run: Dequeue
    REMOVEHelloo 70
    2001/10/17 15:55:18:326 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 71
    2001/10/17 15:55:18:346 INFO [main] DS::run: Dequeue
    REMOVEHelloo 71
    2001/10/17 15:55:18:617 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 72
    2001/10/17 15:55:18:687 INFO [main] DS::run: Dequeue
    REMOVEHelloo 72
    2001/10/17 15:55:19:17 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 73
    2001/10/17 15:55:19:37 INFO [main] DS::run: Dequeue REMOVEHelloo
    73
    2001/10/17 15:55:19:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 74
    2001/10/17 15:55:19:358 INFO [main] DS::run: Dequeue
    REMOVEHelloo 74
    2001/10/17 15:55:19:668 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 75
    2001/10/17 15:55:19:688 INFO [main] DS::run: Dequeue
    REMOVEHelloo 75
    2001/10/17 15:55:20:19 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 76
    2001/10/17 15:55:20:39 INFO [main] DS::run: Dequeue REMOVEHelloo
    76
    2001/10/17 15:55:20:359 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 77
    2001/10/17 15:55:20:379 INFO [main] DS::run: Dequeue
    REMOVEHelloo 77
    2001/10/17 15:55:20:660 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 78
    2001/10/17 15:55:20:680 INFO [main] DS::run: Dequeue
    REMOVEHelloo 78
    2001/10/17 15:55:21:20 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 79
    2001/10/17 15:55:21:40 INFO [main] DS::run: Dequeue REMOVEHelloo
    79
    2001/10/17 15:55:21:361 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 80
    2001/10/17 15:55:21:381 INFO [main] DS::run: Dequeue
    REMOVEHelloo 80
    2001/10/17 15:55:21:661 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 81
    2001/10/17 15:55:21:681 INFO [main] DS::run: Dequeue
    REMOVEHelloo 81
    2001/10/17 15:55:22:72 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 82
    2001/10/17 15:55:22:82 INFO [main] DS::run: Dequeue REMOVEHelloo
    82
    2001/10/17 15:55:22:382 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 83
    2001/10/17 15:55:22:402 INFO [main] DS::run: Dequeue
    REMOVEHelloo 83
    2001/10/17 15:55:22:692 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 84
    2001/10/17 15:55:22:713 INFO [main] DS::run: Dequeue
    REMOVEHelloo 84
    2001/10/17 15:55:23:53 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 85
    2001/10/17 15:55:23:63 INFO [main] DS::run: Dequeue REMOVEHelloo
    85
    2001/10/17 15:55:23:403 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 86
    2001/10/17 15:55:23:413 INFO [main] DS::run: Dequeue
    REMOVEHelloo 86
    2001/10/17 15:55:23:694 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 87
    2001/10/17 15:55:23:714 INFO [main] DS::run: Dequeue
    REMOVEHelloo 87
    2001/10/17 15:55:24:886 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 88
    2001/10/17 15:55:24:966 INFO [main] DS::run: Dequeue
    REMOVEHelloo 88
    2001/10/17 15:55:25:286 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 89
    2001/10/17 15:55:25:296 INFO [main] DS::run: Dequeue
    REMOVEHelloo 89
    2001/10/17 15:55:25:637 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 90
    2001/10/17 15:55:25:657 INFO [main] DS::run: Dequeue
    REMOVEHelloo 90
    2001/10/17 15:55:25:937 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 91
    2001/10/17 15:55:25:957 INFO [main] DS::run: Dequeue
    REMOVEHelloo 91
    2001/10/17 15:55:26:338 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 92
    2001/10/17 15:55:26:358 INFO [main] DS::run: Dequeue
    REMOVEHelloo 92
    2001/10/17 15:55:26:628 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 93
    2001/10/17 15:55:26:648 INFO [main] DS::run: Dequeue
    REMOVEHelloo 93
    2001/10/17 15:55:26:928 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 94
    2001/10/17 15:55:26:948 INFO [main] DS::run: Dequeue
    REMOVEHelloo 94
    2001/10/17 15:55:27:319 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 95
    2001/10/17 15:55:27:339 INFO [main] DS::run: Dequeue
    REMOVEHelloo 95
    2001/10/17 15:55:27:609 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 96
    2001/10/17 15:55:27:629 INFO [main] DS::run: Dequeue
    REMOVEHelloo 96
    2001/10/17 15:55:27:910 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 97
    2001/10/17 15:55:27:930 INFO [main] DS::run: Dequeue
    REMOVEHelloo 97
    2001/10/17 15:55:28:280 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 98
    2001/10/17 15:55:28:360 INFO [main] DS::run: Dequeue
    REMOVEHelloo 98
    2001/10/17 15:55:28:631 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 99
    2001/10/17 15:55:28:651 INFO [main] DS::run: Dequeue
    REMOVEHelloo 99
    2001/10/17 15:55:28:941 INFO [main] DS::run: Dequeue BROWSE -
    Helloo 100
    2001/10/17 15:55:28:951 INFO [main] DS::run: Dequeue
    REMOVEHelloo 100

    As other members adviced
    Please check the following as a list
    1) Check first fi the Material is in APO relevant
    2) Check if it has active integration model in cfm5 (R/3)
    3) Check if the material has no blocked queues in /n/sapapo/cq (APO)
    If there are any blocked queues please clear them accordingly.
    4) After that perform a reconciliation of the transactional data through.
    /n/sapapo/ccr(APO). perform it only for that material and on planned orders.
    If there are any errors it will usggest you to follow few steps.
    5) then again go back and check the /n/sapapo/cq transaction.
    6) Check if the material and its location has publication Types maintained in SPRO transaction.
    7) Check if the change pointers of this Planned order exists in /n/sapapo/c5
    This si change pointers transaction , soemtimes you can release ti from there also.
    If you still have problem, give the resutls of the following for reference.
    Let us know once you perform all these.
    8) Incase you need to perform the consistency checks  externally.

  • Urgent anybody pls help problem: JTree

    Hai all
    I want to save the structure of a JTree. i.e if i have a tree structure as
    level1
    .... level2
    .....level2
    level1
    Now I dynamically add a new node to tree. Then it collapses as
    level1
    But what i want is to maintain its structure with out collapsing i.e after adding node it should be like this
    level1
    .... level2
    .....level2
    ......level2
    level1
    How can I do this ?
    Thanks in advance
    pradeep

    Have you ever heard about data structure?
    You can use IndexNo and IndexNoOfParentNode for each object which will specify index no. of node and the parent node respectively.
    If you want the tree should persist its structure then you should store the structure may be in database or any other mechanism.

  • Urgent anybody pls help problem: JTre

    Hai all
    Is there any method for checking whether the JTree contain any element or not .i.e to check if JTree is empty or not
    Waiting for reply

    Probably not, from memory (a long while ago) you have to check the model.
    Something like:
    public boolean isTreeEmpty (JTree t)
        Object root = t.getModel ().getRoot ();
        if ((root == null)
             ||
            (t.getModel ().getChildCount (root) == 0)
             return true;
        return false;
    }The second part of the if may or may not be required depending upon whether you want to call having a root node empty.

  • CUTOVER V.V. URGENT..PLS HELP

    Please let me know, if the company is following the Fiscal year June to May, how will the conversion take place.
    Do we upload the monthly or year end G/L balances for Fiscal yr 2007, because their year 2007 ended in May.
    When will we upload balances for fiscal year 2008, if the cutover date falls in december.
    According to my understanding we will only upload balances for Fiscal year 2007 and put in the date as may 31, 2007 (which is period 12 for them). And we will upload the balances for 2008 only at cutover in December. But I need clarification on this. If my understanding is right, then are we going to do 6 (from June to November)  balance uploads from legacy to SAP for Fiscal year 2008, with posting dates to be the last day of the months  June to November.
    Thanks
    Lakshmi

    HI
    It based on the requirement of the client. Normally if go-live date falls in Dec'07 fiscal year is 2007-08, then we upload the cut over data in 7th period i.e Jun-Dec. Apart from this we can upload trial balances for the Fiscal year Jun-Nov07. From Dec07 onwards it would be in SAP.
    Thanks
    Colin Thomas

Maybe you are looking for