Using [SD]/[ED] parameters in queries. xMII 12.1.1

Hi All,
I've been investigating usage of "[SD]" and "[ED]" parameters in Query Templates and now have some statements either for confirmation or for disproof.
- Values only in XML-datetime format should be assigned to StartDate & EndDate parameters in xMII transactions?
  If SD & ED are unparsable I noticed that xMII assigns the following values: EndDate = datenow, StartDate = datenow - 1hour.
- if EndDate is not in XML-datetime format it is built as StartDate + 1 hour?
- EndDate which is earlier than StartDate is ignored and StartDate value is assigned to EndDate?
- InternalDateFormat setting defines how the dates (SD/ED) are sent to the database server (in a SQL query) and to avoid localization problems (e.g. mm/dd/yyyy vs. dd/mm/yyyy) it should be used in conjunction with corresponding DatePrefix and DateSuffix.
Thanks for your comments,
Dmitry

- Values only in XML-datetime format should be assigned to StartDate & EndDate parameters in xMII transactions?
If SD & ED are unparsable I noticed that xMII assigns the following values: EndDate = datenow, StartDate = datenow - 1hour.
By using the DateTime format for the transaction inputs it keeps your variable types consistent and all of the use cases within your transaction thereby have a known starting point for conversions.  In addition if you use an XacuteQuery template to call the TRX the Mapped Start/End Date properties will allow you to use the MII query time engine just like you would with [SD] and [ED] in a sql query and when using an applet it will allow the full time control bar to be used.  You'll also notice numerous action blocks, like the Document and Query actions have properties for direct linking these properties.  In the case of the query actions all of formatting is handled by the action block and you can link from Transaction.SD to SQLAction.QueryStartDate and it will automatically convert from the XML date format to the query template's DateFormat and assign to the StartDate parameter. (so in other words you have less work and hard coded string formatting to mess with - way more dynamic).
- If EndDate is not in XML-datetime format it is built as StartDate + 1 hour?
This depends a bit on where / how you are using the dates within the query or TRX
- EndDate which is earlier than StartDate is ignored and StartDate value is assigned to EndDate?
There is no time machine for going backwards and the Start must always come before the end, so when time is not chronological it will lock the dates to each other.
- InternalDateFormat setting defines how the dates (SD/ED) are sent to the database server (in a SQL query) and to avoid localization problems (e.g. mm/dd/yyyy vs. dd/mm/yyyy) it should be used in conjunction with corresponding DatePrefix and DateSuffix.
If your query is SELECT * FROM Table WHERE DateColumn BETWEEN [SD] and [ED] the query going through the DB driver will take the relevant date string format it with DatePrefix + Token converted into InternalDateFormat + DateSuffix (where the settings come from the Data Server settings).  SQL Server is simpler with single quotes and more forgiving for the date format, whereas with Oracle you have to deal with the format and the TO_CHAR prefixing, so this allows simpler queries to be built, and by using the date tokens in conjunction with the MII query time engine allow all of the formatting and conversions to be handled by the data server itself.

Similar Messages

  • How to use multiple selection parameters in the data model

    Hi, after have looked all the previous threads about how to use multiple selection parameters , I still have a problem;
    I'm using Oracle BI Publisher 10.1.3.3.2 and I'm tried to define more than one multiple selection parameters inside the data template;
    Inside a simple SQL queries they work perfectly....but inside the data template I have errors.
    My data template is the following (it's very simple...I am just testing how the parameters work):
    <dataTemplate name="Test" defaultPackage="bip_departments_2_parameters">
    <parameters>
    <parameter name="p_dep_2_param" include_in_output="false" datatype="character"/>
    <parameter name="p_loc_1_param" include_in_output="false" datatype="character"/>
    </parameters>
    <dataTrigger name="beforeReport" source="bip_departments_2_parameters.beforeReportTrigger"/>
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    select deptno, dname,loc
    from dept
    &p_where_clause
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_DEPT" source="Q2">
    <element name="deptno" value="deptno"/>
    <element name="dname" value="dname"/>
    <element name="loc" value="loc"/>
    </group>
    </dataStructure>
    </dataTemplate>
    The 2 parameters are based on these LOV:
    1) select distinct dname from dept (p_dep_2_param)
    2) select distinct loc from dept (p_loc_1_param)
    and both of them have checked the "Multiple selection" and "Can select all" boxes
    The package I created, in order to use the lexical refence is:
    CREATE OR REPLACE package SCOTT.bip_departments_2_parameters
    as
    p_dep_2_param varchar2(14);
    p_loc_1_param varchar2(20);
    p_where_clause varchar2(100);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    CREATE OR REPLACE package body SCOTT.bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    if (p_dep_2_param is not null) --and (p_loc_1_param is not null)
    then
    p_where_clause := 'where (dname in (' || replace (p_dep_1_param, '''') || ') and loc in (' || replace (p_loc_1_param, '''') || '))';
    else
    p_where_clause := 'where 1=1';
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    As you see, I tried to have only one p_where_clause (with more than one parameter inside)....but it doesn't work...
    Using only the first parameter (based on deptno (which is number), the p_where_clause is: p_where_clause := 'where (deptno in (' || replace (p_dep_2_param, '''') || '))';
    it works perfectly....
    Now I don't know if the problem is the datatype, but I noticed that with a single parameter (deptno is number), the lexical refence (inside the data template) works.....with a varchar parameter it doesn't work....
    So my questions are these:
    1) how can I define the p_where_clause (inside the package) with a single varchar parameter (for example, the department location name)
    2) how can I define the p_where_clause using more than one parameter (for example, the department location name and the department name) not number.
    Thanks in advance for any suggestion
    Alex

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • Named Parameters in Queries - the spec vs the Java EE 5 Tutorial

    Hi,
    I've been studying the topic about the named parameters in JPA and found one inconsistency between the spec and the Java EE 5 Tutorial. Could anyone lend me a helping hand understanding it?
    The Java Persistence API spec (ejb-3_0-fr-spec-persistence.pdf) 3.6.3 "Named Parameters" at page 69 reads:
    The use of named parameters applies to the Java Persistence query language, and is not defined for native queries.
    whereas the Java EE 5 Tutorial in the section Named Parameters in Queries (http://java.sun.com/javaee/5/docs/tutorial/doc/PersistenceIntro3.html#wp81563) of The EntityManager reads:
    Named parameters are case-sensitive, and may be used by both dynamic and static queries.
    I think that the reality is that every JPA provider supports named parameters in dynamic and static queries, but it's not fully supported by the spec (yet not forbidden).
    Jacek
    Jacek Laskowski
    http://www.jaceklaskowski.pl

    Hi Jacek,
    These are not conflicting statements. Named parameters apply to the Java Persistence
    Query language only, not to native queries. There are two ways to specifiy
    Java Persistence Query Language queries : dynamically and statically. You can
    either pre-define the query string using @NamedQuery
    static :
    @NamedQuery(name="findPersonByName",
    query="SELECT OBJECT(p) FROM Person p WHERE p.name LIKE :pName")
    OR, pass the query string in at runtime using EntityManger.createQuery
    dynamic :
    em.createQuery("SELECT OBJECT(p) FROM Person p WHERE p.name LIKE :pName")
    The dynamic approach allows you to construct portions of the query string at runtime.
    My example doesn't do that but the point is that use of the createQuery()
    API is considered the dynamic approach.
    The crux of the Java EE 5 Tutorial statement you referenced is that named parameters apply to
    both the static and dynamic use of Java Persistence Query Language queries.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Using SET GET parameters in ITS

    Hi All,
    Is it possible to use set get parameters in ITS. We want to set some parameters in a BADI and read the value in ITS Template .
    Or is there any other method to do this?
    Thanks,
    Anubhav

    Sure. In your abap program use the following code
    *  ITS macros
    INCLUDE avwrtcxm.
    GET PARAMETER ID 'YOUR_PARAMETER' FIELD SAVE_PARAMETER.
    field-set u2018~YOUR_PARAMETERu2019 1 SAVE_PARAMETER.
    field-transport.
    in the template you can now use ~YOUR_PARAMETER.
    regards,
    Klaus
    Edited by: Klaus Layer on Feb 3, 2009 5:05 PM

  • How to use a Web Template with queries from multiple BW Systems?

    Hi all,
    can anybody help me how to use a Web Template with queries (DATA PROVIDER)in it from multiple BW Systems?
    Thanks in advance, best regards
    Frank

    Great! Thanks for the quick response.
    Have you tried this for XMLA datasources created within the EP system also?
    i.e use Web Analyzer to create a view from the XMLA source and use that view within WAD?
    Thanks.

  • How to use SET & GET Parameters in Module Pool

    Hi Friends,
    Can anyone please tell how to use SET / GET parameters and PARAMETER ID for a text box (Input / Output field ) in module pool? What is the purpose and where do we need to do coding for it?
    Note : I will definitely give the marks for good responses.
    Thanks in advance,
    Pradeep

    Hi Pradeep,
    You can save values in the SAP memory using a parameter ID. These
    are user and terminal-session specific, but available to all internal and
    external sessions.
    SET Parameter copies the corresponding field contents into the SAP
    System memory in the PAI processing block.
    GET Parameter copies the corresponding field contents from the SAP
    memory at the end of the PBO processing block, after data has been
    transferred from the program, if the screen field still has its initial value
    You can link an input/output field to an area of the SAP memory in the
    ABAP Dictionary.
    When you use an input/output field that is defined in the ABAP
    Dictionary, its parameter ID is displayed in the Dictionary attribute
    Parameter ID in the Screen Painter.
    Usage
    SET PARAMETER ID: ’CAR’ FIELD space,
    ’CON’ FIELD space,
    ’DAY’ FIELD space.
    Here is the link that explains the usage of GET/SET in detail
    <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm">http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm</a>
    Regards,
    Sharadha

  • In BAPI's why the structures are used in table parameters?

    Hello sir,
    what is BAPI sir? In BAPI's why the structures are used in table parameters?  table parameters they are using structures but not using any customized tables ? 
    regards
    rachu.

    Hello Rachu
    BAPIs provide RFC-enabled interfaces to SAP business objects (e.g. like customer, sales order, purchase order, etc.).
    A BAPI does basically the same like you would need to do calling the corresponding transaction (e.g. BAPI_SALESORDER_CREATE -> VA01).
    Since they are RFC-enabled they can be called from external systems.
    BAPIs represent an external interface for the outside world. Very often you will find within the BAPI that there is a mapping done to the (SAP-)internal structures at the beginning of the coding and vice versa at the end of the coding. Thus, you will (almost) never find any DB table name used as type of a BAPI TABLES parameter.
    Regards
      Uwe

  • How to use SQL functions in the queries

    hey guys i wanna know how to use SQL functions in the queries is it possible or not .

    Hi,
    Wat exactly that set values are?
    those from sql query?
    How to use count():
    The COUNT() function returns the number of rows that matches a specified criteria.
    SQL COUNT(column_name) Syntax
    The COUNT(column_name) function returns the number of values (NULL values will not be counted) of the specified column:
    SELECT COUNT(column_name) FROM table_name
    SQL COUNT(*) Syntax
    The COUNT(*) function returns the number of records in a table:
    SELECT COUNT(*) FROM table_name
    SQL COUNT(DISTINCT column_name) Syntax
    The COUNT(DISTINCT column_name) function returns the number of distinct values of the specified column:
    SELECT COUNT(DISTINCT column_name) FROM table_name
    The IN function helps reduce the need to use multiple OR conditions.
    The syntax for the IN function is:
    SELECT columns
    FROM tables
    WHERE column1 in (value1, value2, .... value_n);

  • Problem in using query bind parameters with dynamic domains

    Hi JHeadstart Team,
    I am trying to implement the functionality you have mentioned in the chapter 3 of JHS Developer's Guide Using Query Bind Parameters section. I followed the instructions but when I run the application, the following errors are shown on the top of the page :
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ElgOfMajDomainQueryBindParams"
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ElgOfMajDomainQueryBindParams"
    I also read the chapter 5 - Query Bind Parameters and found that there is a difference between my page definition and the one mentioned in the JHS Developer's Guide .the refresh property in the InvokeAction section of our page definition was "ifNeeded" and I changed it to "renderModel". Now I just get these 2 following errors :
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    What is the probable cause of this problem ?
    Any help would be appreciated.
    Best Regards,
    Navid
    P.S. We are using Jdeveloper 10.1.3 and jhs 10.1.3 biuld 97.

    Dear Steven,
    I have noticed that I have this difficulty with every dynamic domain which uses query bind parameters.
    Here is a scenario which leads to the same error.
    I want to have a read only view object on cg_ref_codes table with a p_domain_name parameter so that I can use it for every drop down list in my application.
    1- I added a read only view with the following query :
    select rv_domain,rv_low_value ,rv_high_value ,rv_abbreviation ,rv_meaning
    from cg_ref_codes
    where (:p_domain_name is null or rv_domain = :p_domain_name)
    2- I added a bind variable to the view with the name of p_domain_name
    3- I added the view to application module
    4- I made a dynamic domain and put the following values in the query bind parameters but I always got the same errors and the drop down list always showed every record in cg_ref_codes which probably means that the parameter was sent to view object with the value of null.
    p_domain_name=#{'RELIGION'}
    p_domain_name=#{RELIGION}
    p_domain_name=#{"RELIGION"}
    p_domain_name='RELIGION'
    I also tried to use a trick to check if this problem relate to constant value, so I update one field of my form to the constant I wanted and used the following value for query bind parameters :
    p_domain_name=#{bindings.EngOrgPersonFirstName.inputValue}
    but the result was the same.
    I am realy confused with this error. Any prompt help would be highly appreciated.
    Thanks in advance,
    Navid
    Here is one of stack trace :
    14:05:10 ERROR (ApplicationImpl) -Managedbean ReligionsQueryBindParams could not be created Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
         at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:576)
         at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:233)
         at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
         at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
         at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
         at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
         at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
         at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
         at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
         at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
         at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
         at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
         at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
         at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
         at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
         at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
         at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
         at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1185)
         at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:772)
         at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:801)
         at com.sun.faces.config.ManagedBeanFactory.setMapPropertiesIntoBean(ManagedBeanFactory.java:773)
         at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:519)
         ... 57 more
    Caused by: java.lang.NullPointerException
         at oracle.jheadstart.controller.jsf.bean.QueryBindParams.getNamedParams(QueryBindParams.java:94)
         ... 66 more
    14:05:11 DEBUG (JhsPageLifecycle) -Executing prepareModel, page=/WEB-INF/engorg/page/EngOrgPerson.jspx, pagedef=EngOrgPersonPageDef
    14:05:11 DEBUG (JhsNavigationHandlerImpl) -Executing checkRoles
    14:05:11 ERROR (ManagedBeanFactory) -Possible cyclic reference to managedBean ReligionsQueryBindParams
    14:05:11 ERROR (ApplicationImpl) -Managedbean ReligionsQueryBindParams could not be created Possible cycle reference to managed bean "ReligionsQueryBindParams"
    javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
         at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:189)
         at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
         at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
         at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
         at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
         at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
         at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
         at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
         at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
         at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
         at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
         at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
         at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
         at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
         at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
         at oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle.prepareModel(JhsPageLifecycle.java:798)
         at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
         at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    14:05:11 DEBUG (BreadcrumbStack) -Adding breadcrumb to stack: "?????? ??????? ??? ?????" (/WEB-INF/engorg/page/EngOrgPerson.jspx)
    14:05:11 DEBUG (JhsPageLifecycle) -Executing prepareRender, page=/WEB-INF/engorg/page/EngOrgPerson.jspx, pagedef=EngOrgPersonPageDef
    14:05:11 DEBUG (BreadcrumbStack) -Breadcrumb already on stack; rolling back the stack
    14:05:11 DEBUG (BreadcrumbStack) -Adding breadcrumb to stack: "?????? ??????? ??? ?????" (/WEB-INF/engorg/page/EngOrgPerson.jspx)
    06/11/20 14:05:11 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:11      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:11      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:11      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    06/11/20 14:05:11      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:11      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:11      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:11      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:11      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:11      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:11      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:11      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:11      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:11      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:11      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:11      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:11      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:11      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:11      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:11      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 44 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:576)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:233)
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 55 more
    06/11/20 14:05:12 Caused by: java.lang.reflect.InvocationTargetException
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    06/11/20 14:05:12      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    06/11/20 14:05:12      at java.lang.reflect.Method.invoke(Method.java:585)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1185)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:772)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:801)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setMapPropertiesIntoBean(ManagedBeanFactory.java:773)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:519)
    06/11/20 14:05:12      ... 57 more
    06/11/20 14:05:12 Caused by: java.lang.NullPointerException
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.bean.QueryBindParams.getNamedParams(QueryBindParams.java:94)
    06/11/20 14:05:12      ... 66 more
    06/11/20 14:05:12 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle.prepareModel(JhsPageLifecycle.java:798)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:12      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:12      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:12      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:12      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 45 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:189)
    14:05:12 DEBUG (JhsPageLifecycle) -Executing prepareRender, page=/WEB-INF/engorg/page/EngOrgPerson.jspx, pagedef=EngOrgPersonPageDef
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 56 more
    06/11/20 14:05:12 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    14:05:12 DEBUG (BreadcrumbStack) -Breadcrumb already on stack; rolling back the stack
    14:05:12 DEBUG (BreadcrumbStack) -Adding breadcrumb to stack: "?????? ??????? ??? ?????" (/WEB-INF/engorg/page/EngOrgPerson.jspx)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:12      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:12      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:12      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:12      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 44 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:576)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:233)
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 55 more
    06/11/20 14:05:12 Caused by: java.lang.reflect.InvocationTargetException
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    06/11/20 14:05:12      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    06/11/20 14:05:12      at java.lang.reflect.Method.invoke(Method.java:585)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1185)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:772)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:801)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setMapPropertiesIntoBean(ManagedBeanFactory.java:773)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:519)
    06/11/20 14:05:12      ... 57 more
    06/11/20 14:05:12 Caused by: java.lang.NullPointerException
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.bean.QueryBindParams.getNamedParams(QueryBindParams.java:94)
    06/11/20 14:05:12      ... 66 more
    06/11/20 14:05:12 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle.prepareModel(JhsPageLifecycle.java:798)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:12      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:12      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:12      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:12      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 45 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:189)
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 56 more
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\sync.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\netcfg.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\lib\jcert.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\ldap\oidadmin\dasnls.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\owm\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\encryption\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\ldap\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\oem_bin\lib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\oem_bin\lib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\oraclepki.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ospnego.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\dms\diagnostics\lib\ojdl.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\xdk\xml.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\webservices\lib\.\namespace.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\classes doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\share.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xschema.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojmisc.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\dms\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-beanutils.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-collections.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-digester.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-logging.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-validator.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\jakarta-oro.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\struts-legacy.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\classes doesn't exist on classpath
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:32: warning #556: variable session assigned to but never used
    06/11/20 14:05:18 HttpSession session = pageContext.getSession();06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:34: warning #556: variable application assigned to but never used
    06/11/20 14:05:18 ServletContext application = pageContext.getServletContext();06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:36: warning #556: variable page assigned to but never used
    06/11/20 14:05:18 MhudAppModuleMenu1Tabsjspx page = this;06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:37: warning #556: variable config assigned to but never used
    06/11/20 14:05:18 ServletConfig config = pageContext.getServletConfig();06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:38: warning #556: variable __ojsp_varRes assigned to but never used
    06/11/20 14:05:18 javax.servlet.jsp.el.VariableResolver __ojsp_varRes = (VariableResolver)new OracleVariableResolverImpl(pageContext);06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:40: warning #556: variable __ojsp_s_out assigned to but never used
    06/11/20 14:05:18 com.evermind.server.http.JspCommonExtraWriter __ojsp_s_out = (com.evermind.server.http.JspCommonExtraWriter) out;06/11/20 14:05:18 ^
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\sync.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\netcfg.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\lib\jcert.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\ldap\oidadmin\dasnls.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\owm\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\encryption\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\ldap\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\oem_bin\lib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\oem_bin\lib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\oraclepki.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ospnego.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\dms\diagnostics\lib\ojdl.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\xdk\xml.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\webservices\lib\.\namespace.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\classes doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\share.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xschema.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojmisc.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\dms\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-beanutils.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-collections.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-digester.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-logging.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-validator.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\jakarta-oro.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\struts-legacy.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\classes doesn't exist on classpath
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleEngOrgPersonMenu2Tabs_jspx.java:32: warning #556: variable session assigned to but never used
    06/11/20 14:05:21 HttpSession session = pageContext.getSession();06/11/20 14:05:21 ^
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleEngOrgPersonMenu2Tabs_jspx.java:34: warning #556: variable application assigned to but never used
    06/11/20 14:05:21 ServletContext application = pageContext.getServletContext();06/11/20 14:05:21 ^
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleEngOrgPersonMenu2Tabs_jspx.java:36: warning #556: variable page assigned to but never used
    06/11/20 14:05:21 MhudAppModuleEngOrgPersonMenu2Tabsjspx page = this;06/11/20 14:05:21 ^
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_en

  • Use of Additional Parameters in JMS Adapter

    Hi Frnds,
    Can any one explain the use of Additional Parameters  in JMS Adapter.
    Regards,
    Raj

    HI,
    To make additional settings or replace the default settings, enter the parameters and values in the table.
    those are JMSMessageClass and JMS.Message.method.setStringProperty.
    For more details.
    http://help.sap.com/saphelp_nw04/helpdata/EN/10/b1b4c8575a6e47954ad63438d303e4/content.htm
    Thanks.

  • Calling a stored procedures and using its output parameters in a report

    Hi,,
    I have a procedure defined in a package on the database. This procedure returns a number of output parameters. How do I call this procedure and use the output parameters in my report ?
    Thanks, Mark

    Depends on the level at which the procedure has to be called. If its at report-level, call the Form in the BEFORE-REPORT-trigger (or AFTER-PARAMFORM) and store the out-values in Placeholder-columns. These you can use anywhere in your report.

  • How to use Generate Synchronization Parameters for PSK modulation and demodulation

    Hi I am trying to use Generate Synchronization Parameters.vi to sync the recovered stream after demodulation and my input stream to modualtion block but I don't know how to work with this block to sync input stream with output stream. Also would you please let me know what are the ways to sync input bits and demodulation  bit stream.I really appreciated your help
    Thanks
    Solved!
    Go to Solution.

    Hi en99,
    In order to use "MT Generate Synchronization Parameters.vi" you must wire in the following on your block diagram:
    The system parameters created in "MT Generate System Parameters.vi" needs to be wired directly to the sync vi.
    The synchronization parameters need to be wired direct to "MT Demodulate.vi"
    The synchronization bits can be wired into the sync vi direct from "MT Generate Bits.vi"
    What I have done is taken your 11.vi that you uploaded in your previous post and altered it to contain the sync vi. I have saved it as a 2010 version.
    I hope this information helps!
    Kind Regards,
    Laurence C.
    Senior Test Development Engineer
    Dyson Ltd
    Attachments:
    11sync2010.vi ‏18 KB

  • Is it possble to use out/inout parameters in function?

    Is it possble to use out/inout parameters in function?

    Hi,
    user10784864 wrote:
    But I can't call the function from SQL if it contains DML statements also right?Right.
    I know of two separate and independent reasons why fucntions with OUT arguments (or IN OUT arguments; I'll just say OUT in the remainder of this message)might not be a good idea.
    (1) They can be confusing, and
    (2) you can't call them from SQL statements.
    My reasons for (1):
    They are potenially confusing, because people usially expect the function value (alone) to pass information back to the caller. I like to write code that works. I like to avoid writing code that doesn't work, even if the reason is simply because someone else didn't read the documentation carefully. Notice I didn't say "Never write a function with OUT arguments", I said think carefully before you do. I believe there are good uses for such functions. I also believe that there are good uses for duct tape, and those good uses account for maybe 1% of the actual applications. (By the way, DML in stored procedures is another thing that is done far more often than it should.)
    If one of these reasons doesn't apply in your case, you should still consider the other reason.

  • Using null for parameterized "newInstance(Object [])" method in Object[].

    I have a really serious problem. I am creating instances of specific classes by using reflection techniques. I am reading a flat file, finding class from its name and creating it by using its parameterized constructor. Example:
    line 1: Dummy("A",Dummy2("B"),12,,"C");
    I create an instance of Dummy with parameters "A", an instance of Dummy2 object with value "B", 12 (I use here Integer as wrapper), null (There is no wrapper for null :( ) and "C".
    I find constructor by using findConstructors() and looking their parameter counts, creating an object array with given values and calling:
    constructorIFoundBefore.newInstance(objectArrayIPrepared);
    But!!!
    Because I use null directly, I got this message:
    java.lang.IllegalArgumentException: argument type mismatch
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at reader.parser.ObjectCreator.createObjectFromObjectItem(ObjectCreator.java:192)
         at reader.parser.ObjectCreator.createObjectFromParseItem(ObjectCreator.java:112)
         at reader.parser.ObjectCreator.createObject(ObjectCreator.java:78)
         at reader.analyzer.FileAnalyzer.analyzeAndCreateObjects(FileAnalyzer.java:95)
         at reader.ReverseReader.main(ReverseReader.java:43)
    I will be very glad if you help me.
    Thanks a lot!
    Gokcer

    I said something wrong. Sorry. While invoking a method (or a constructor) we need an object array which are equivalent to parameters. For example to call a method or constructor for class A;
    class A {
    int age;
    String name;
    public A(int age, String name){
    this.age = age;
    this.name = name;
    public set(int age, String name){
    this.age = age;
    this.name = name;
    we use in any place
    A a1 = new A(12,"Gokcer");
    A a2 = new A(15,null);
    To achieve this by using reflection techniques, we must find constructor with two parameters of class A. At this point "BetterMethodFinder" will give great help.
    After finding right constructor, we must create an object array to tell the constructor parameters (age and name). At this point we need an object array which stores our parameters. Code must be like this.
    Object []params = new Object[2]; // we have two parameters.
    params[0] = new Integer(12); // we can't use params[0]=12
    // because 12 is not an object. (It is a
    // primitive type)
    params[1] = "Gokcer";
    Now create the new object.
    A a1;
    a1 = constructorWeFound.newInstance(params);
    While creating param[], we could also use:
    Object []params = new Object[2] {new Integer(12),"Gokcer"};
    While creating a2, we can use "null" directly for second parameter.
    params = new Object[2] = {new Integer(15), null};
    or
    Object []params = new Object[2];
    params[0] = new Integer(15);params[1] = null;
    Thanks again everyone who replied me.
    My sincerely...

  • How do i use ranges and parameters together?

    Plz help me...
    I have a selection screen with about 8 parameters out of which two are mandatory, i.e. a flag and the date of creation. What I need to do is delete certain entries from a database table based on the parameters input by the user. Now the problem is when i am using the delete statement using where statement..
    delete from zinbd_delv where vbeln     = vbeln    and             
                                 posnr     = posnr    and
                                 lfimg     = lfimg    and
                                 lfdat     = lfdat    and
                                 created  = created and
                                 status   = status.
    But suppose the user enters data in only the two mandatory fields and say status = 'X' and created = 'XX/XX/XXXX'. In that case it should delete all the entries from the table where status = X and creation date as specified but since it will find the other parameters as blank it will fail. Can we use range table for this...plz tell me how to do it.

    i think if you are using parameters then you have to enter the value in that.
    or
    select-options : sop for mara-matnr no intervals no-extension.
    for single entry.
    data : itab like zinbd_delv occurs 0 with header line.
    select * from zinbd_delv ito table itab where vbeln in vbeln and
    posnr in posnr and
    lfimg in lfimg and
    lfdat in lfdat and
    created in created and
    status in status.
    delete zinbd_delv from table itab.
    commit work.
    regards
    shiba dutta

Maybe you are looking for

  • I can't burn a playlist because computer isn't authorized. Error shows old email address. How do I correct that?

    Hi, I created a playlist and I want to burn it to a disc. However, I got a message that stated that certain songs were not authorized to play on this computer. In the message box it listed an incorrect email address. I tried to change it but that did

  • BCM 4313 wireless can't connect, ethernet works only in live CD

    Hi! I'm finding it impossible to get Arch working due to internet problems, and I've spent a while trying to figure out how to solve them and got nowhere. My laptop has Broadcom 4313 wireless. Using wifi-menu, I can see a bunch of wireless networks,

  • Create table by another table query wid contraints

    how can we create table by another table but wid all the constraints of that table means create table emp_test as select * from emp it will create the replica of emp table but not constraints so how can i creat table along wid constraints

  • Imovie sound disappears using facetime??

    I tried to record using Facetime and the blue bar has appeared for sound, but I cannot get it to play - the movie plays but without the audio! any help please? I can seperate the audio so I know its there, but for some reason I cannot hear it. I have

  • Cleanning Planning Levels

    Hi Experts, We have in ower environment server a lot of  planning levels which were made only for test.  How can we identify easly and quicly, the planning levels-planning function that are involved/included in any sequence and which are not involved