Howto check whether the input parameter of type table is NULL

hi i have a procedure where the input parameters are of type collection (nested table ) the first line of my proc should check whether the input is null how to do that .
i have defined the collection this way.
CREATE OR REPLACE TYPE acct_tab as table of varchar2(40);
my procedure is as follows
create or replace procedure account_proc ( in_acct_array acct_tab) is
begin
----> I want to check whether the input is null how to do this?
end

Raj,
SQL> CREATE OR REPLACE TYPE acct_tab as table of varchar2(40);
  2  /
Type created.
SQL>
SQL> create or replace procedure account_proc ( in_acct_array acct_tab) is
  2  begin
  3  if in_acct_array IS EMPTY
  4  then
  5   dbms_output.put_line('empty') ;
  6  else
  7   dbms_output.put_line(' NOT empty') ;
  8  end if ;
  9  end;
10  /
Procedure created.
SQL>
SQL> declare
  2    v acct_tab:=acct_tab();
  3  begin
  4          account_proc( v ) ;
  5  end ;
  6  /
empty
PL/SQL procedure successfully completed.SS

Similar Messages

  • Change the input parameter in Check Status screen

    Hi,
    I have a requirment to change the input parameter option in the check status screen. Currently when we search the SC using the date and staus from the extended search it picks the SC created date and displays the SC, my requirement is to make the date as the approved date insted of SC created date with the status as aprpoved.
    Please suggest if this is possible with the help of any Badi.
    Regards
    GGL

    I managed to find the solution myself. If anyone is interested, just follow those steps here:
    http://apple.stackexchange.com/questions/44913/make-a-custom-keyboard-layout-the -system-default-even-for-the-login-screen
    (terminal skills required tho)

  • How Insert the input parameter to database through Java Bean

    Hello To All..
    I want to store the input parameter through Standard Action <jsp:useBean>.
    jsp:useBean call a property IssueData. this property exist in
    SimpleBean which create a connection from DB and insert the data.
    At run time when I click on submit button servlet and server also show that loggging are saved in DB.
    But when I open the table in Access. Its empty.
    Ms-Access have two fields- User, Pass both are text type.
    Please review these code:
    login.html:
    <html>
    <head>
    <title>A simple JSP application</title>
    <script language=javascript>
    function f(k)
    document.forms['frm'].mykey.value=k;
    document.forms['frm'].submit();
    </script>
    <head>
    <body>
    <form method="get" action="tmp" name="frm">
    Name: <input type="text" name="User">
    Password: <input type="password" name="Pass">
    <input type=hidden name="mykey" value="">
    <input type="button" value="Submit" onclick="f('submit.jsp')">
    <input type="button" value="Issue" onclick="f('issue.jsp')">
    </form>
    </body>
    </html>LoginServlet.java:import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String User=request.getParameter("User");
    String Pass=request.getParameter("Pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setUser(User);
    st.setPass(Pass);
    request.setAttribute("User",st);
    request.setAttribute("Pass",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("/"+request.getParameter("mykey"));
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }SimpleBean.java:package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean
    private String User="";
    private String Pass="";
    private String s="";
    public SimpleBean(){}
    public String getUser() {
    return User;
    public void setUser(String User) {
    this.User = User;
    public String getPass() {
    return Pass;
    public void setPass(String Pass) {
    this.Pass = Pass;
    public String getissueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getUser();
    getPass();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Loading....");
    Connection con=DriverManager.getConnection("jdbc:odbc:simple");
    System.out.println("Connected....");
    PreparedStatement st=con.prepareStatement("insert into Table1 values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String User=getUser();
    st.setString(1,User);
    String Pass=getPass();
    st.setString(2,Pass);
    int y= st.executeUpdate();
    System.out.println(y);
    System.out.println("Query Executed");
    con.commit();
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return this.s;
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }submit.jsp:
    This is Submit page
    <html><body>
    Hello
    Student Name: <%= ((co.SimpleBean)request.getAttribute("User")).getUser() %>
    <br>
    Password: <%= ((co.SimpleBean)request.getAttribute("Pass")).getPass() %>
    <br>
    <jsp:useBean id="st" class="co.SimpleBean" scope="request"/>
    <jsp:setProperty name="st" property="User" value="request.getParamaeter("Pass")"/>
            <jsp:setProperty name="st" property="Pass" value="request.getParamaeter("Pass")"/>
       <jsp:getProperty name="st" property="issueData"/>
    <% st.getissueData(); %>
    </body></html>web.xml:<web-app>
    <servlet>
    <servlet-name>one</servlet-name>
    <servlet-class>LoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>one</servlet-name>
    <url-pattern>/tmp</url-pattern>
    </servlet-mapping>
    <jsp-file>issue.jsp</jsp-file>
    <jsp-file>submit.jsp</jsp-file>
    <url-pattern>*.do</url-pattern>
    <welcome-file-list>
    <welcome-file>Login.html</welcome-file>
    </welcome-file-list>
    </web-app>Please Help me..

    Dear Sir,
    Accordingly your suggestion I check the SimpleBean class putting the constant values in this bean class.That is Sucessfully Inserted constant values in database.
    Like for example..
    myfirstjavabean.java:
    package myfirstjava;
    import java.io.*;
    import java.sql.*;
    public class myfirstjavabean
    private String firstMsg="Hello world";
    private String s="";
    public myfirstjavabean()
    public String getfirstMsg()
    return firstMsg;
    public void setfirstMsg(String firstMsg)
    this.firstMsg=firstMsg;
    public String getissueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getfirstMsg();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Loading....");
    Connection con=DriverManager.getConnection("jdbc:odbc:sampleMsg");
    System.out.println("Connected....");
    PreparedStatement st=con.prepareStatement("insert into Table1 values(?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String Msg=getfirstMsg();
    st.setString(1,Msg);
    int y= st.executeUpdate();
    System.out.println(y);
    System.out.println("Query Executed");
    con.commit();
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return this.s;
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }Vij.jsp:
    <html>
    <body>
    <jsp:useBean id="st" class="myfirstjava.myfirstjavabean" scope="request" />
    <jsp:getProperty name="st" property="firstMsg" />
    <jsp:getProperty name="st" property="issueData" />
    </body>
    </html>These above example sucessfully inserted the Hello World message in database.
    But which value I put user input at run time Its not inserted in database.
    Which is my previous problem that is persist.
    Please Help..

  • We need to check whether the order is locked or not?

    I need to check whether the order is locked or not?
    I tried to use this RFC KAUF_ORDER_READ and passed Order no.
    I manually locked the order( using Tcode -IW32) but still Function module is not returning 'X' in FIELDS flg_locked and FLG_ENQUE of the structure E_KAUF.
    the FM should return 'X' in these fields.
    Please help.
    Coudl anybody suggest me how I can check using RFC/ Table fields etc that whether the order is locked or not?

    Hi Rohit,
    Try this code. Check the flag.
    Note : Order number should have left padding of Zero
    DATA : order_tab TYPE TABLE OF ord_pre,
           wa        TYPE ord_pre,
           flag      TYPE rc27x-flg_sel.
    wa-aufnr = '000004006789'. "Order number should have left padding of Zero
    APPEND wa TO order_tab.
    CALL FUNCTION 'CO_ZF_ORDER_READ'
    EXPORTING
       flg_dialog               = ' '
    *   FLG_ENQUEUE              = 'X'
    *   OBJECTS_IMP              = ' '
    *   EXPLODE_IMP              = ' '
    *   FLG_PROT_IMP             = ' '
    *   FLG_NO_EXTERNAL          = ' '
    *   FLG_NO_BANF              =
    *   FLG_CHECK_SIM            =
    *   IMPORT_MESSAGE_ID        =
    *   CHECK_STATUS_READ        = ' '
    *   FLG_NO_GOS               = ' '
    *   FLG_CALLED_TO_COPY       = ' '
    IMPORTING
       flg_enqueue_ok           = flag
    *   FLG_ESCAPE               =
      TABLES
    *   AUFNR_DEL_EXP            =
        aufnr_tab_imp            = order_tab
    EXCEPTIONS
       ORDER_NOT_FOUND          = 1
       RELEASE_NO_CHANGE        = 2
       OTHERS                   = 3
    IF sy-subrc = 0.
      WRITE flag. "If Flag is X order is not locked
    ENDIF.
    Regards
    Rajvansh
    Edited by: Rajvansh Ravi on Nov 27, 2008 12:33 PM

  • Need Help-How Store the input parameter through java bean

    Hello Sir,
    I have a simple Issue but It is not resolve by me i.e input parameter
    are not store in Ms-Access.
    I store the input parameter through Standard Action <jsp:useBean>.
    jsp:useBean call a property IssueData. this property exist in
    SimpleBean which create a connection from DB and insert the data.
    At run time servlet and server also show that loggging are saved in DB.
    But when I open the table in Access. Its empty.
    Ms-Access have two fields- User, Password both are text type.
    Please review these code:
    login.html:
    <html>
    <head>
    <title>A simple JSP application</title>
    <head>
    <body>
    <form method="get" action="tmp" >
    Name: <input type="text" name="user">
    Password: <input type="password" name="pass">
    <input type="Submit" value="Submit">
    </form>
    </body>
    </html>LoginServlet.java:
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String user=request.getParameter("user");
    String pass=request.getParameter("pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setUserName(user);
    st.setPassword(pass);
    request.setAttribute("user",st);
    request.setAttribute("pass",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("submit.jsp");
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }SimpleBean.java:
    package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean {
    private String user="";
    private String pass="";
    private String s="";
    public String getUserName() {
    return user;
    public void setUserName(String user) {
    this.user = user;
    public String getPassword() {
    return pass;
    public void setPassword(String pass) {
    this.pass = pass;
    public String getIssueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getUserName();
    getPassword();
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    System.out.println("Loading....");
    Connection con=DriverManager.getConnection("jdbc:odbc:simple");
    System.out.println("Connected....");
    PreparedStatement st=con.prepareStatement("insert into Table1 values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String User=getUserName();
    st.setString(1,User);
    String Password=getPassword();
    st.setString(2,Password);
    st.executeUpdate();
    System.out.println("Query Executed");
    con.close();
    s=  "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return(s);
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }submit.jsp:
    This is Submit page
    <html><body>
    Hello
    Student Name: <%= ((co.SimpleBean)request.getAttribute("user")).getUserName() %>
    <br>
    Password: <%= ((co.SimpleBean)request.getAttribute("pass")).getPassword() %>
    <br>
    <jsp:useBean id="st" class="co.SimpleBean" scope="request" />
    <jsp:getProperty name="st" property="IssueData" />
    </body></html>web.xml:<web-app>
    <servlet>
    <servlet-name>one</servlet-name>
    <servlet-class>LoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>one</servlet-name>
    <url-pattern>/tmp</url-pattern>
    </servlet-mapping>
    <jsp-file>issue.jsp</jsp-file>
    <jsp-file>submit.jsp</jsp-file>
    <url-pattern>*.do</url-pattern>
    <welcome-file-list>
    <welcome-file>Login.html</welcome-file>
    </welcome-file-list>
    </web-app>Please Help me..Thanks.!!!
    --

    Dear Sir,
    Same issue is still persist. Input parameter are not store in database.
    After follow your suggestion when I run this program browser show that:i.e
    This is Submit page Hello Student Name: vijay
    Password: kumar
    <jsp:setProperty name="st" property="userName" value="userValue/> Your logging is saved in DB
    Please review my code.
    login.html:
    {code}<html>
    <head>
    <title>A simple JSP application</title>
    <head>
    <body>
    <form method="get" action="tmp" >
    Name: <input type="text" name="user">
    Password: <input type="password" name="pass">
    <input type="Submit" value="Submit">
    </form>
    </body>
    </html>{code}
    LoginServlet.java:
    {code}import javax.servlet.*;
    import javax.servlet.http.*;
    public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException{
    try
    String userValue=request.getParameter("user");
    String passValue=request.getParameter("pass");
    co.SimpleBean st = new co.SimpleBean();
    st.setuserName(userValue);
    st.setpassword(passValue);
    request.setAttribute("userValue",st);
    request.setAttribute("passValue",st);
    RequestDispatcher dispatcher1 =request.getRequestDispatcher("submit.jsp");
    dispatcher1.forward(request,response);
    catch(Exception e)
    e.printStackTrace();
    }{code}
    SimpleBean.java:
    {code}package co;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.util.*;
    public class SimpleBean {
    private String userValue="";
    private String passValue="";
    private String s="";
    public String getuserName() {
    return userValue;
    public void setuserName(String userValue) {
    this.userValue = userValue;
    public String getpassword() {
    return passValue;
    public void setpassword(String passValue) {
    this.passValue= passValue ;
    public String getissueData() //method that create connection with database
    try
    System.out.println("Printed*************************************************************");
    getuserName();
    getpassword();
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("Connection loaded");
    Connection con=DriverManager.getConnection("jdbc:oracle:thin:@VijayKumar-PC:1521:XE","SYSTEM","SYSTEM");
    System.out.println("Connection created");
    PreparedStatement st=con.prepareStatement("insert into vij values(?,?)");
    System.out.println("~~~~~~~~~~~~~~~~~~~~");
    String userName=getuserName();
    st.setString(1,userName);
    String password=getpassword();
    st.setString(2,password);
    st.executeUpdate();
    System.out.println("Query Executed");
    con.close();
    s= "Your logging is saved in DB ";
    System.out.println("Your logging is saved in DB *****************");
    return(s);
    catch(Exception e)
    e.printStackTrace();
    return "failed";
    }{code}
    submit.jsp:
    {code}This is Submit page
    <html><body>
    Hello
    Student Name: <%= ((co.SimpleBean)request.getAttribute("userValue")).getuserName() %>
    <br>
    Password: <%= ((co.SimpleBean)request.getAttribute("passValue")).getpassword() %>
    <br>
    <jsp:useBean id="st" class="co.SimpleBean" scope="request" />
    <jsp:setProperty name="st" property="userName" value="userValue/>
    <jsp:setProperty name="st" property="password" value="passValue"/>
    <jsp:getProperty name="st" property="issueData" />
    </body></html>web.xml:<web-app>
    <servlet>
    <servlet-name>one</servlet-name>
    <servlet-class>LoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>one</servlet-name>
    <url-pattern>/tmp</url-pattern>
    </servlet-mapping>
    <jsp-file>submit.jsp</jsp-file>
    <url-pattern>*.do</url-pattern>
    <welcome-file-list>
    <welcome-file>Login.html</welcome-file>
    </welcome-file-list>
    </web-app>Sir I can't use EL code in jsp because I use weblogic 8.1 Application Server.This version are not supported to EL.
    Please help me...How store th input parameter in Database through Java Bean                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to check whether the vendor invoice was reversed (MR8M & FB08)

    hi,
    need to check whether the vendor invoice has been reversed. Posting of the vendor invoice as well as its reversal may happen in FI (e.g. FB60 - FB08) and MM (MIRO - MR8M).  have developed a custom function based on the values of the fields: stblg, stjah,... (for fb08) and rebzg, rebzj,rebzz (for mr8m) and trans type but not sure this is the right way.
    Is there a bapi (e.g. similar to BAPI_ACC_INVOICE_REV_CHECK) , sap function or at least a report to as a sample. Any help appreciated.
    Thank you,
    victor

    Viktor, We have always used the table fields values you have listed to determine if the invoice has been reversed or cancelled...

  • Best way to check whether the database is demo or sys?

    Hi Gurus,
    Whats the best way to check whether the installed peoplesoft database is a demo or a sys?
    Thanks for the help?
    Regards,
    Anoop

    There is nothing set by default.
    However, if it has been configured properly by the administrator after db creation, through the menu Peopletools>Utilities>Administration>Peopletools Options, the following query should return the type of the database :
    select systemtype from psoptions;Otherwise the following could help to understand what database you are on.
    From HRMS9.1 DMO database :
    SQL> select count(*) from ps_employees;
          2792From HRMS9.1 SYS database :
    SQL> select count(*) from ps_employees;
      COUNT(*)
             0Nicolas.

  • How to check whether the Application Server directory exits or not

    Hi,
    I have a selection screen in which I give the Application server file name(UNIX file) as input. Here, I would like to check whether the Server directory exists or not.
    Let us say, the path I gave in the selection screen is /usr/sap/tmp/testfile.txt . Here, the file name is testfile.txt and the server directory is /usr/sap/tmp . I would like to check whether this directory /usr/sap/tmp exists in the server or not. I am not bothered about the file name as I am going to write data into the file. I am mainly concerned about whether the directory exists in the server or not. and one more thing... this is the Application Server path not the Local path.
    Can anyone help me on the same how to check whether the server directory exists or not.
    Thanks in advance.
    Best Regards,
    Pradeep.

    Also you can use the FM EPS_GET_DIRECTORY_LISTING for this purpose.
      Store the directory name
        l_dpath = p_file+0(l_no).
      Validate the directory of the application server
        CALL FUNCTION 'EPS_GET_DIRECTORY_LISTING'
          EXPORTING
            dir_name               = l_dpath
          TABLES
            dir_list               = l_i_dlist
          EXCEPTIONS
            invalid_eps_subdir     = 1
            sapgparam_failed       = 2
            build_directory_failed = 3
            no_authorization       = 4
            read_directory_failed  = 5
            too_many_read_errors   = 6
            empty_directory_list   = 7
            OTHERS                 = 8.
      If any problem occurs with the directory then display proper
      error message
        IF sy-subrc <> 0.
        Display error message
          MESSAGE e018 WITH 'Problem with directory entered'(008).
        ENDIF. " sy-subrc <> 0
    Regards,
    Joy.

  • Error trying to check whether the job will be importing

    Hi,
    I am getting the below message error when I try to upload the data through webADI,is there any limit for loading the records that we can upload using web ADI? we tried to load near to 10,000 records and it's giving me an error on window and gets stuck without actually displaying the error message, when I check the Bne log I see the below message.
    BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    Note: When I tried to upload 1000 records , it's working good.
    Thanks,
    Bharat

    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneAsyncUploadPageParameters:processEvent() Start
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneUIMessages:clearAll() errors.size = 0 infos.size = 0 warnings.size = 0 confirms.size = 0
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneWebAppsContext:getValidContext() Start.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE Profile: BNE_ALLOW_SET_PARAMETERS = Y
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getExtraJDBCConnection assigned connection oracle.jdbc.driver.T4CConnection@e46a2
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneAsyncUploadPageBean.allowSetParameters true
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.isUPSCustomization start
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneAsyncUploadPageParameters:processEvent() End
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController.processPageEvent() end.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneAsyncUploadPage.renderPage Start.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneWebAppsContext:getValidContext() Start.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE Profile: BNE_DOCUMENT_LIFETIME =
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneSecurity.checkAccess(): checking access for INTEGRATOR: 20003:GENERAL_62_INTG
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneWebAppsContext:getValidContext() Start.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneSecurity.checkAccess(): a system administrator. return true
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 ERROR BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 ERROR BneAsyncUploadPage.renderPage Parameter value is not a Boolean.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@e46a2
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneDateUtils.getSYSDATE() Start
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneDateUtils.getSYSDATE() Start
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@e46a2
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController:getPage() Start
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController:getPage() Creating a page reference, for page = oracle.apps.bne.webui.pageflow.BneAsyncUploadPageSend
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController:getPage() class detail, name = oracle.apps.bne.webui.pageflow.BneAsyncUploadPageSend
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController:getPage() End
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneAsyncUploadPageSend:createPage() Start
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneAsyncUploadPageSend:createPage() End
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController.createPageBody() End.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController.handlePageHead() start.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController.handlePageHead() end.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBasePageController.handlePage() Done
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBajaServlet.setupResponse() Start
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneWebAppsContext:getValidContext() Start.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE Profile: ICX_CLIENT_IANA_ENCODING = UTF-8
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneBajaServlet.getRenderingContext() Response.setContentType = text/html; charset=UTF-8
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.getUserId() End, userId = 79087
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BnePerformanceStatistics - Wrote 0 of 3 statistics in 0 Milliseconds.
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@b3ea0f
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@e46a2
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE BneOracleWebAppsContext.releaseContext() Web Event Duration = 0.083(s)
    7/26/12 11:55 AM AJPRequestHandler-HTTPThreadGroup-3 TRACE Exit BneApplicationService.handleRequest()
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneCache.cacheSweeper: sweep starting ...
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE Cache Summary
    Cache Region: Default Cache , Size: 0 , hitRatio: 0 /0 , puts: 0 , removes: 0 , cleared: 0 , swept: 0 , hashCode: 0
    Cache Region: Generic SQL Statements , Size: 0 , hitRatio: 0 /0 , puts: 0 , removes: 0 , cleared: 0 , swept: 0 , hashCode: 0
    Cache Region: Web ADI Repository Objects , Size: 36 , hitRatio: 289 /310 , puts: 36 , removes: 0 , cleared: 0 , swept: 0 , hashCode: -144528918
    Cache Region: Web ADI Parameter Lists , Size: 12 , hitRatio: 15 /27 , puts: 12 , removes: 0 , cleared: 0 , swept: 0 , hashCode: 376128196
    Cache Region: Web ADI Parameter Definitions , Size: 28 , hitRatio: 69 /97 , puts: 28 , removes: 0 , cleared: 0 , swept: 0 , hashCode: -1860472108
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneWebAppsContext:getValidContext() Start.
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneContext:getBneDbcFilename() Start.
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneContext:getBneDbcFilename() Done, filename = /applmgr/ebsuat/inst/apps/ebsuat_ebs121v/appl/fnd/12.0.0/secure/ebsuat.dbc
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneWebAppsContext:getValidContext() Start.
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneJDBCUtils.commit() current connection: oracle.jdbc.driver.T4CConnection@e46a2
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneCache.cacheSweeper: Default Cache : 0 cleared, time: 0 mSecs
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneCache.cacheSweeper: Generic SQL Statements : 0 cleared, time: 0 mSecs
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneCache.cacheSweeper: Web ADI Repository Objects : 0 cleared, time: 0 mSecs
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneCache.cacheSweeper: Web ADI Parameter Lists : 0 cleared, time: 0 mSecs
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneCache.cacheSweeper: Web ADI Parameter Definitions : 0 cleared, time: 0 mSecs
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE BneCache.cacheSweeper: sweep done in 5 mSecs
    7/26/12 12:00 PM Web ADI Cache Sweeper TRACE Cache Summary
    Cache Region: Default Cache , Size: 0 , hitRatio: 0 /0 , puts: 0 , removes: 0 , cleared: 0 , swept: 0 , hashCode: 0
    Cache Region: Generic SQL Statements , Size: 0 , hitRatio: 0 /0 , puts: 0 , removes: 0 , cleared: 0 , swept: 0 , hashCode: 0
    Cache Region: Web ADI Repository Objects , Size: 36 , hitRatio: 289 /310 , puts: 36 , removes: 0 , cleared: 0 , swept: 0 , hashCode: -144528918
    Cache Region: Web ADI Parameter Lists , Size: 12 , hitRatio: 15 /27 , puts: 12 , removes: 0 , cleared: 0 , swept: 0 , hashCode: 376128196
    Cache Region: Web ADI Parameter Definitions , Size: 28 , hitRatio: 69 /97 , puts: 28 , removes: 0 , cleared: 0 , swept: 0 , hashCode: -1860472108

  • Is there any tool to check whether the proper data is inserting or not?

    Hi,
    We have different products A,B and C.
    whenever user crates an account under these products some X,Y,Z table gets updated.
    If user1 creates an account under A then X, Y, Z tables update with some data along with some ID
    If user2 creates an account under A then X, Y, Z tables update with SAME DATA along with some other ID
    Is there any tool to check whether the proper data is inserting (same data is inserting every time) or not?
    p.s : if this thread is not related to this forum .. where can I post?
    Thanks,
    Praveen

    Is there any tool to check whether the proper data is inserting (same data is inserting every time) or not?You need to check the code to see that. Is the update or insert on the table has from different places? In that case it would be better to have them moved to a centralized place may be a package.
    If you want to restrict the columns to specific values then you can use constraints.

  • R12.1.1 staging complete! How to check whether the stage is Good

    Hi Gurusl,
    I have completed staging R12.1.1 for Hp unix B.11.31. I want to know how to check whether the stage is good for installation or whether it is corrupted. Is there any metalink note or script from where we can check it. Ur help will be highly appreciated. Thanks in advance
    regards,

    Hi,
    Please refer to (Note: 802195.1 - MD5 Checksums for R12.1.1 Rapid Install Media).
    Regards,
    Hussein

  • Need to Check whether the program is Active or not

    Is there any statement where i can check  whether the report program is Active or not.
    Using below statement i am  copying the entire Code in internal table it_source.Before copying in the source code in the  internal table  it_source.I need to check that program is Active or not if it is not active and i need to give a pop message and forceliy i need to Active it.
    read report wa_trdir-name into it_source.

    Hi Srini,
    i just checked the table REPOSRC for a program which was not activated, i got two entries for the program one as active and one as inactive ,as soon as i activated the program there was a single entry.
    so is it that we should check if we have any inactive entry in the table for the program?.
    Regards,
    gunjan

  • Where to check whether the user is Admin  or developer?

    how to check whether the user is Admin or developer????? after he sign's in......I want to use role based login!!!!

    Login into a workspace or login into an application?
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • How do you check if the input is empty?

    Hello,
    I am asked to write a program which gets as input in the command line a number of strings, and is to print out the first of these string.
    but if the input is empty it must print our an error message.
    how do i check if the input is empty?
    i guessed
    public static void main (String[] args){
         if (args == null)
         ........but thats wrong.
    Thanks,
    iris

    If no arguments were passed, it means that there are zero arguments entered. So the args array will have a length of zero.

  • Dynamic structure creating based on the input parameter

    Hi all,
                 How to create a dynamic structure based on the input parameter given in the selection screen. I have a file path given and it contains three fields in common, but after that depending upon the input given the fields get changed. For example, i have 0002 infotype given in the selection screen, my file path structure should contain pernr begda endda and PS0002 structure, if the infotype is changed the PS structure has to be changed dynamcially.
    Thank you,
    Usha.

    Ans

Maybe you are looking for

  • Getting timeout error while executing my report

    Hi experts, I need to get data from a Ztable which is having more than 64 millions of records. That query itself is taking more than 20 min to execute. I have used package size while retrieving tha data but still taking same time to execute, Giving m

  • Upgrade to PI 7.1

    Would there be a direct upgrade path from XI3.0 sp 18 to PI 7.1?

  • Oracle 9i ODBC - credential retrieval error

    I am unable to get past opening a connection through ODBC (or OLE/DB) into Oracle 9i. My code works fine with Oracle 8i and fails with 9i at the ADO open connection point. Needless to say I'm happy with the network setup etc in every other way in tha

  • SSRS for SCOM 2012 need separate instance of SQL

    Hi All, My customer has planned to install SCOM 2012 R2 in their environment. I designed for them as followings: Planned 3 MS servers namely, MS1, MS2 & MS3 The rolls planned on those MS servers as follows: MS1 – Management Server,  Operation console

  • Cisco Agent Desktop incorrect stats Agent Statistics Display

    Hi, I have a very strange problem with a cisco agent desktop user. The times/numbers as displayed in the Agent Statistics Display are incorrect. As you can see from image 1, the agent was presented with 14 calls. The total talking time is 7:22. Howev