Value set problem in oracle apps

Hi
I have got one problem with value set
There are two parameters in report
1. Collector Name -> value set table type
2. Customer name -> value set table type
I want , when I give collector name the customer name parameter should be disabled automatically and when I give customer name , collector name parameter should be disabled.
I tried with dummy parameter also but not reach upto the result
Gautam

In program define i created 3 parameters
1.Collector -> value set -> xxbs_collector
2. Dummy -> value set -> xxbs_dummy
sql statement select 'Y' from dual where :$Flex$.xxbs_collector is null
<When collector is null then it will pass 'Y' to dummy
3. Customer -> value set -> xxbs_customer
in where clause of customer :$Flex$.xxbs_dummy = 'Y'
i.e. when collector is null the dummy value will be 'Y' and customer
parameter will be enable when dummy = 'Y'
This is what I have done , but it is not working
Gautam

Similar Messages

  • How to find dependency of a value set created in oracle apps in discoverer

    Hi all,
    I would like to know the names of discoverer reports which are all refers a particulat valueset created in oracle apps.
    Thanks
    Feroz

    Hi All,
    Just want to share my findings on the same.....
    After login into eTRM on the left hand side there is a link with the name "FND DATA DICTIONARY" just click on that ,it will list you all the products(Modules).select the specific module ,it will list the no. of table's ,views etc in that module.click on the tables, it will list all the table .select the table that is requreid .It will display what are all the foreign keys including the tables involved in that table.
    Please let me know if anyone need further help..
    hope this will help.
    Thanks
    Naveen.

  • Deployement problem in Oracle App Serv with hibernate + JPA and Spring

    Dear All,
         I am facing a problem in deployment of a web application in oracle application server 10g. but the same is working fine with Tomcat. The following Exception. Is being thrown.
         Failed to deploy web application "OraTest". Failed to deploy web application OraTest". . Nested exception Resolution:
    Base Exception:
    java.rmi.RemoteException
    deploy failed!: ; nested exception is:
    oracle.oc4j.admin.internal.DeployerException: Unknown assembly root-tag attribute: version. deploy failed!: ; nested exception is:
    oracle.oc4j.admin.internal.DeployerException: Unknown assembly root-tag attribute: version     I am using the following technologies
    1.     Spring 2.0.7
    2.     Struts 2.0.9
    3.     Hibernate 3.3
    4.     JPA 1.0
    5.     Oracle App Server 10.1.2.0.2
    Web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <display-name>My Application</display-name>
         <filter>
              <filter-name>struts2</filter-name>
              <filter-class>
                   org.apache.struts2.dispatcher.FilterDispatcher
              </filter-class>
         </filter>
         <filter-mapping>
              <filter-name>struts2</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>
         <welcome-file-list>
              <welcome-file>/index.jsp</welcome-file>
         </welcome-file-list>
         <servlet>
              <servlet-name>dwr-invoker</servlet-name>
              <servlet-class>
                   org.directwebremoting.servlet.DwrServlet
              </servlet-class>
              <init-param>
                   <param-name>debug</param-name>
                   <param-value>true</param-value>
              </init-param>
         </servlet>
         <servlet-mapping>
              <servlet-name>dwr-invoker</servlet-name>
              <url-pattern>/dwr/*</url-pattern>
         </servlet-mapping>
         <listener>
              <listener-class>
                   org.springframework.web.context.ContextLoaderListener
              </listener-class>
         </listener>
         <context-param>
              <param-name>contextConfigLocation</param-name>
              <param-value>
                   /WEB-INF/conf/spring/datasource-context.xml,
                   /WEB-INF/conf/spring/aop-context.xml          
              </param-value>
         </context-param>
    </web-app>
    /Datasource-context.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
         <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" lazy-init="true"/>
         <!--  following code is for using oracle -->
            <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" lazy-init="true">
              <property name="driverClassName">
                   <value>oracle.jdbc.driver.OracleDriver</value>
              </property>
              <property name="url">
                   <value>jdbc:oracle:thin:@//xxx.xxx.xxx.xxx/mydb</value>
              </property>
              <property name="username">
                   <value>admin</value>
              </property>
              <property name="password">
                   <value>admin</value>
              </property>
         </bean>
         <!--  following code is for using mysql -->
         <!--
         <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" lazy-init="true">
              <property name="driverClassName">
                   <value>org.gjt.mm.mysql.Driver</value>
              </property>
              <property name="url">
                   <value>jdbc:mysql://192.168.10.157:3306/tpsadmin</value>
              </property>
              <property name="username">
                   <value>tpsadmin</value>
              </property>
              <property name="password">
                   <value>tpsadmin</value>+
              </property>
         </bean>
         -->
         <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" lazy-init="true">
              <property name="persistenceUnitName" value="mkclsetsPersistenceUnit"/>
              <property name="dataSource" ref="dataSource"/>
              <property name="jpaVendorAdapter">
                   <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" lazy-init="true">
                        <property name="database" value="ORACLE"/>               
                        <property name="showSql" value="true"/>
                   </bean>
              </property>
         </bean>
         <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" lazy-init="true">
              <property name="entityManagerFactory" ref="entityManagerFactory"></property>
         </bean>
         <tx:annotation-driven transaction-manager="transactionManager"/>     
    </beans>Aop-context.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
    <!--  Bean Definition of all the required Interceptors -->
         <bean id="methodLoggingAdvice" class="com.mkcl.sets.common.interceptor.MehodLogInterceptor"/>
         <!--
         <bean id="appCacheManager" class="net.sf.ehcache.CacheManager">
              <constructor-arg index="0" type="java.net.URL" value="classpath:country-ehcache.xml"/>
         </bean>     
         -->
          <!--bean id="methodCacheInterceptor" -->
         <bean id="methodCachingAdvice"
              class="com.mkcl.sets.common.interceptor.MethodCacheInterceptor">
              <property name="cache">
                   <ref local="methodCache" />
              </property>
         </bean>
         <bean id="cacheManager"
              class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
              <property name="configLocation">
                   <value>WEB-INF/conf/other/ehcache.xml</value>
              </property>
         </bean>     
         <bean id="methodCache"
              class="org.springframework.cache.ehcache.EhCacheFactoryBean">
              <property name="cacheManager">
                   <ref local="cacheManager" />
              </property>
              <property name="cacheName">
                   <value>mkclSetsCache</value>
              </property>
         </bean>      
         <!--
         <bean id="methodCachingAdvice" class="interceptor.MethodCachingInterceptor"/>
          -->
         <aop:config>
              <aop:pointcut id="getCountriesPointCut" expression="execution(* com.mkcl.sets.dao.master.impl.LocationDAOImpl.getCountries())"/>          
              <!-- <aop:pointcut id="methodLogPointCut" expression="execution(* com.mkcl.sets.service.master.impl.CategoryServiceImpl.getAllCategories(..))"/> -->
              <aop:pointcut id="methodLogPointCutDao" expression="execution(* com.mkcl.sets.dao..*.*(..))"/>
              <aop:pointcut id="methodLogPointCutService" expression="execution(* com.mkcl.sets.service..*.*(..))"/>
              <aop:advisor id="methodCachingAdvisor" advice-ref="methodCachingAdvice" pointcut-ref="getCountriesPointCut"/>          
              <aop:advisor id="methodLoggingAdvisorDao" advice-ref="methodLoggingAdvice" pointcut-ref="methodLogPointCutDao"/>
              <aop:advisor id="methodLoggingAdvisorService" advice-ref="methodLoggingAdvice" pointcut-ref="methodLogPointCutService"/>
         </aop:config>
    </beans>Persistence.xml
    <persistence xmlns="http://java.sun.com/xml/ns/persistence"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
        version="1.0">
         <persistence-unit name="mkclsetsPersistenceUnit" transaction-type="RESOURCE_LOCAL">
              <!-- jta-data-source>mkclDS</jta-data-source-->
              <provider>org.hibernate.ejb.HibernatePersistence</provider>
              <!-- properties>
                   <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
                   <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.OC4JTransactionManager"/>
              </properties-->
         </persistence-unit>
    </persistence>Do I need to add some other configuration in the existing files or do I need to add some other configuration files ? Please help to deploy my application.
    Thanks a lot in advance.
    With Best Regards,
    Ishaan
    null

    Did you ever find a solution to this Ishaan?
    I imagine you ended up having to upgrade 10gR2 to 10gR3 at least. Correct?

  • Printers problem in Oracle apps

    Hi Apps DBAs,
    We have a printer, which has printing problem for a while. It can print outside of Oracle apps.
    But from oracle apps. nothing happens.
    I checked the printer setting on operating system level, it is a Gestetner using DSm645sp driver( recommended)
    In oracle application, current configuration is --PASTA Universal Printer Type.
    Also in our current configuration, there is no DSm645sp driver registered.
    If I want to add this driver to our system, how can I fill in those fields:
    User driver, arguments, initializations, reset.
    Thanks in advance,
    Lily

    You do not need to fill those fields since its provided by Pasta ..
    I suggest you do the following:
    1) Make sure you can print from the OS
    2) Apply the latest release of Pasta (Patch 3325651)
    3) Got to Sysadmin Resp. > Printer > Setup and register your printer
    Enter the printer name as defined in the OS & select (--PASTA Universal Printer Type) for the Printer Type
    4) Bounce the concurrent manager

  • Matrix Report Problem in Oracle Apps

    Hii All,
    I have created a matrix report in Orace Application using Oracle 6i. It running properly in Report 6i. But after registering in Oracle Apps,
    It does not shows any output.
    Database 10g
    Report 6i
    EBS Oracle 11i
    Thanks
    PS

    Hi PS
    Please check below links:
    How to create a matrix report
    How to create a matrix report
    how to build matrix report
    how to build matrix report
    Oracle Reports Building Reports
    http://download.oracle.com/docs/html/B10602_01/part4.htm
    Regard
    Helios

  • Oracle Apps Integrationn Question

    We are planning to integrate our corporate website with Oracle Apps for creation of Appointment/Task,I have the following questions
    1)How the security is to be taken care of if we want to call the Oracle API via database link or some gateway?
    2)The corporate webserver is outside the firewall while Oracle Apps is inside,how both of them can talk to each other is that some thing has to be done with the firewall setting?
    3)If Oracle Apps is down for maintenance usually how the companies handle transaction or do they just show a message that temporarily it is down,currently our requirement is to allow the customers to create task/appointments 24*7 as part of the requirement we need to check the territories/shift for availability for assignment of task so we can store the data temporarily and process it later also we need to return a confirmation number.
    Thanks

    Hello Sunil,
    1)How the security is to be taken care of if we want to call the Oracle API via database link or some gateway?Answer to calling APIs can be seen in the thread below;
    APIs to get data from Oracle E-Business Suite
    2)The corporate webserver is outside the firewall while Oracle Apps is inside,how both of them can talk to each other is that some thing has to be done with the firewall setting?The Oracle Apps server has to be assigned into a DMZ (Demilitarized Zone) or all the ports shown in your installation log has to be open in the firewall. I am sure your network administrator can advise which is best for the purpose you need it for.
    3)If Oracle Apps is down for maintenance usually how the companies handle transaction.You have to configure a HA-high availablity system, probably multinode, so when a box is down, the others can kick in to handle the customers 24*7 demands, otherwise, you may have to just advise that the system is unavailable via a website. Attempting to configure a temporary storage point can prove to be more of a management issue. Most things are possible, it only depends on your strategy and available support and managemment budget and resources.

  • Squid in Fedora 13 and Oracle Apps

    Hello,
    I hope I put this in a right forum. I'm trying to setup squid in Fedora 13 and get a problem with Oracle Apps. I'd setup so that only certain user can request http service by setup authentication. By default, there's already acl rule for port 1025-65535 and I'd created a rule to allow access to my domain for our local user.
    For the port the acl is like this : acl Safe_ports port 1025-65535
    For the domain the acl is like this : acl tstdomain dstdomain_regex \.testdomain.com$
    Now what I want to have is if a user doesn't have authentication, he/she can still access local webpage in our server, such as webserver or Oracle E-Business Suite.
    I'd tested, using a user that doesn't have authentication, and can access all my server if the domain doesn't have any port but it didn't work for Oracle E-Business Suite, because to access the format is like http://hostname.domain_name:port_number.
    Is there anything I need to add/change? thanks.

    TommyReynolds wrote:
    Do you have squid listening on the {font:Courier}:port_number{font}? There is an entry for that in the squid config file.Hi Tommy,
    you mean beside the standard port to listen I must add another port to listen? So instead of having :
    http_port 3128
    I must have :
    http_port 3128
    http_port 8000
    in my squid.conf?
    Thanks
    Had tried but that thing didn't work.
    If I bypass squid then the connection to oracle ok. Even I entered username and password still can't access oracle but other web is ok. So something need to be done in squid. Anyone can help? Thanks.
    Edited by: user_apps on Jul 15, 2010 8:54 PM

  • Cost Allocation Flexfield with Table Value Sets

    Hi
    I am setting up Costing for Payroll. I have a requirement where I want to use Table Validated value sets for Cost Allocation Flexfield. In the Administrator Guide it is written that we should not use Table validated value sets for any KFFs.
    I still tried the same (defining Table validated value sets) and my process errored out. It was giving following error
    Value 381 for the flexfield segment Cost Center does not exist in the value set
    SJR_COST_CENTER_LIST.
    invalid code combination:
    381SJR_COST_CENTER_LIST is name of the value set.
    Then I changed the value set and keep the code and meaning in the value set table as same and my process worked fine.
    Now I want to know that should I use Table validated value set or not. As Oracle does not support these in KFFs

    Hi Thierry
    Thanks for the reply
    have you used cross validation rules?I am not sure about cross validation rules and how we can use in my case.
    An other thought: there is an action parameter available parameter_name=COST_API_IMODE
    Set the parameter_value = 'Y'In my case my costing process is working fine, even when I define my table validated value sets. My question is should we define table validated values sets or not as Oracle does not support it now? Oracle use to support this for KFFs some time back but now they are saying they does not support.
    Are there any known issues if we use Table validated value sets? Why Oracle does not support it for KFFs?

  • Squid and Oracle Apps

    Hello,
    I hope I put this in a right forum. I'd put in the Linux (Non OEL) forum but still not solved yet.
    I'm trying to setup squid in Fedora 13 and get a problem with Oracle Apps. I'd setup so that only certain user can request http service by setup the authentication.
    By default, there's already acl rule for port 1025-65535 and I'd created a rule to allow access to my domain for our local user.
    For the port the acl is like this : acl Safe_ports port 1025-65535
    For the domain the acl is like this : acl tstdomain dstdomain_regex \.testdomain.com$
    Now what I want to have is if a user doesn't have authentication, he/she can still access local webpage in our server, such as webserver or Oracle E-Business Suite.
    I'd tested, using a user that doesn't have authentication, and can access all my server if the domain doesn't have any port but it didn't work for Oracle E-Business Suite, because to access the format is like http://hostname.domain_name:port_number.
    I'd tested to put the port & allow http access specifically like this:
    acl oratest_port port 8000
    http_access allow oratest_port
    and even removed the port restrictions
    but still not worked.
    If I take out the squid proxy and connect directly to Oracle Apps it worked without any problem.
    Is there anything I need to add/change/misplaced? thanks.
    Edited by: user_apps on Jul 15, 2010 9:47 PM

    Hi,
    Please mention your application release along with the database version and OS.
    Are you trying to setup a web cache? If yes, please refer to:
    Note: 306653.1 - Installing and Configuring Web Cache 10.1.2 and Oracle E-Business Suite 11i
    Note: 380486.1 - Installing and Configuring Web Cache 10g and Oracle E-Business Suite 12
    Thanks,
    Hussein

  • Oracle apps value sets

    can any body tell me how to get the distinct values for a table valueset
    from GL_CODE_COMBINATIONS table i want to get the distinct values of SEGMENT2 so any body tell me how to create a table value set for this its very very urgent.
    Regards,
    Azeez
    [email protected]

    Hi
    When u create table value sets
    Table columns-----------
    Value-
    Meaning
    -ID------------distinct(id) from that table
    it will work fine let me know if u ned anything.
    Rakesh

  • Problem in enter-query and execute-query in TEMPLATE.fmb in Oracle Apps R11

    I have created the form using TEMPLATE.fmb in Oracle Apps R11i. There is 2 problems listed below when it queries the records:-
    1) Cannot query the record by the specific value e.g. Cannot retrieve the PO records by entering the specific PO number.
    2) Always display the message 'Do you want to save the record?' whenever the <ENTER-QUERY> key (i.e. F11) is pressed.
    HOWEVER, it works fine for ALL records without entering any specific values.
    Does anybody help to solve these two problems? Any hints? Thanks for any helps.

    try setting the block status to query or record
    status to new prior to getting in the enter-query
    mode.
    Thanks
    TapashHi Tapash, Dun understand.. please give more details.. Thanks.

  • Oracle Apps Problem

    Hi,
    I am trying to create a sales order in oracle APPS by invoking a Apps adpater through Process_order API and facing the following problem.
    file:/D:/product/10.1.3.1/OracleAS/bpel/domains/default/tmp/.bpel_X12_4010_850_1.0_3d82ae6bde584c24576ce07e5ab4cd43.tmp/CreateOrder.wsdl [ CreateOrder_ptt::CreateOrder(InputParameters,OutputParameters) ] - WSIF JCA Execute of operation 'CreateOrder' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the APPS.XX_BPEL_CREATEORDER.OE_ORDER_PUB$PROCESS_ORDER API. Cause: java.sql.SQLException: ORA-06531: Reference to uninitialized collection
    ORA-06512: at "APPS.XX_BPEL_CREATEORDER", line 1
    ORA-06512: at "APPS.XX_BPEL_CREATEORDER", line 1
    ORA-06512: at line 1
    [Caused by: ORA-06531: Reference to uninitialized collection
    ORA-06512: at "APPS.XX_BPEL_CREATEORDER", line 1
    ORA-06512: at "APPS.XX_BPEL_CREATEORDER", line 1
    ORA-06512: at line 1
    ; nested exception is:
         ORABPEL-11811
    Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the APPS.XX_BPEL_CREATEORDER.OE_ORDER_PUB$PROCESS_ORDER API. Cause: java.sql.SQLException: ORA-06531: Reference to uninitialized collection
    ORA-06512: at "APPS.XX_BPEL_CREATEORDER", line 1.
    I tried setting the value of Api_version as 1.0 in Bpel but it did not work out.
    Anyone has any idead what need to be done.
    My Inbound file EDI 850 and I am able to convert to EDi-xml through B2B using 850.ecs and 850.xsd.I have done necesarry mapping in BPEL.
    Regards
    Lalit

    Hi,
    More Description about the problem.
    Assign_1 (faulted)
    [2007/10/05 18:48:21] Updated variable "Write_PO_Write_InputVariable" More...
    -<Write_PO_Write_InputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Transaction-850">
    -<ns0:Transaction-850 xmlns="urn:oracle:integration:b2b:3CF137EF428E4714AEC4D36FB913652A" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" XDataVersion="1.0" Standard="X12" Version="V4010" CreatedDate="2007-10-05T18:48:21" CreatedBy="ECXEngine_837" GUID="{C707A1C3-9ECB-43B9-9595-E9C7F47E35B1}" xmlns:ns0="http://www.edifecs.com/xdata/100">
    -<Internal-Properties>
    -<Data-Structure Name="Interchange">
    <Lookup Name="InterchangeSenderQual">01
    </Lookup>
    <Lookup Name="InterchangeSenderID">012430880M
    </Lookup>
    <Lookup Name="InterchangeReceiverQual">12
    </Lookup>
    <Lookup Name="InterchangeReceiverID">8008411428
    </Lookup>
    <Lookup Name="InterchangeControlVersion">00400
    </Lookup>
    <Lookup Name="Standard">X12
    </Lookup>
    <Property Name="InterchangeAuthorizationInfoQual">00
    </Property>
    <Property Name="InterchangeAuthorizationInfo"/>
    <Property Name="InterchangeSecurityInfoQual">00
    </Property>
    <Property Name="InterchangeSecurityInfo"/>
    <Property Name="InterchangeSenderQual">01
    </Property>
    <Property Name="InterchangeSenderID">012430880M
    </Property>
    <Property Name="InterchangeReceiverQual">12
    </Property>
    <Property Name="InterchangeReceiverID">8008411428
    </Property>
    <Property Name="InterchangeDate">070212
    </Property>
    <Property Name="InterchangeTime">1302
    </Property>
    <Property Name="InterchangeControlStandard_RepeatingSeparator">U
    </Property>
    <Property Name="InterchangeControlVersion">00400
    </Property>
    <Property Name="InterchangeControlNumber">000002109
    </Property>
    <Property Name="InterchangeAckRequested">0
    </Property>
    <Property Name="InterchangeUsageIndicator">P
    </Property>
    <Property Name="InterchangeComponentElementSep">0x3f
    </Property>
    <Property Name="DecimalSeparator"/>
    <Property Name="ElementDelimiter">0x2a
    </Property>
    <Property Name="ReleaseCharacter"/>
    <Property Name="RepeatingSeparator"/>
    <Property Name="SegmentDelimiter">0xfffd0xd0xa
    </Property>
    <Property Name="SubelementDelimiter">0x3f
    </Property>
    <Property Name="InterchangeChildCount">1
    </Property>
    <Property Name="InterchangeTrailerControlNumber">000002109
    </Property>
    -<Data-Structure Name="Group">
    <Lookup Name="GroupSenderID">012430880M
    </Lookup>
    <Lookup Name="GroupReceiverID">8008411428
    </Lookup>
    <Lookup Name="GroupVersionNumber">004010
    </Lookup>
    <Property Name="GroupID">PO
    </Property>
    <Property Name="GroupSenderID">012430880M
    </Property>
    <Property Name="GroupReceiverID">8008411428
    </Property>
    <Property Name="GroupDate">20070212
    </Property>
    <Property Name="GroupTime">1302
    </Property>
    <Property Name="GroupControlNumber">2109
    </Property>
    <Property Name="GroupAgencyCode">X
    </Property>
    <Property Name="GroupVersionNumber">004010
    </Property>
    <Property Name="GroupChildCount">1
    </Property>
    <Property Name="GroupTrailerControlNumber">2109
    </Property>
    -<Data-Structure Name="Transaction">
    <Lookup Name="TransactionID">850
    </Lookup>
    <Property Name="TransactionID">850
    </Property>
    <Property Name="TransactionControlNumber">21090001
    </Property>
    <Property Name="TransactionImplementationReference"/>
    <Property Name="TransactionChildCount">41
    </Property>
    <Property Name="TransactionTrailerControlNumber">21090001
    </Property>
    </Data-Structure>
    </Data-Structure>
    </Data-Structure>
    </Internal-Properties>
    -<Segment-ST>
    <Element-143>850
    </Element-143>
    <Element-329>21090001
    </Element-329>
    </Segment-ST>
    -<Segment-BEG>
    <Element-353>00
    </Element-353>
    <Element-92>SA
    </Element-92>
    <Element-324>07042600
    </Element-324>
    <Element-328 xsi:nil="true"/>
    <Element-373>20020117
    </Element-373>
    <Element-367 xsi:nil="true"/>
    <Element-587>NA
    </Element-587>
    </Segment-BEG>
    -<Segment-CUR>
    <Element-98>BY
    </Element-98>
    <Element-100>USD
    </Element-100>
    </Segment-CUR>
    -<Segment-REF>
    <Element-128>VR
    </Element-128>
    <Element-127>9698
    </Element-127>
    </Segment-REF>
    -<Segment-REF>
    <Element-128>PHC
    </Element-128>
    <Element-127>A
    </Element-127>
    </Segment-REF>
    -<Segment-PER>
    <Element-366>IC
    </Element-366>
    <Element-93>JOHN,SMITH
    </Element-93>
    <Element-365>TE
    </Element-365>
    <Element-364>(416)480-9999 EXT.
    </Element-364>
    </Segment-PER>
    -<Segment-FOB>
    <Element-146>CC
    </Element-146>
    <Element-309 xsi:nil="true"/>
    <Element-352 xsi:nil="true"/>
    <Element-334>02
    </Element-334>
    <Element-335>FOB
    </Element-335>
    <Element-309_1>OA
    </Element-309_1>
    </Segment-FOB>
    -<Segment-ITD>
    <Element-336 xsi:nil="true"/>
    <Element-333>3
    </Element-333>
    <Element-338 xsi:nil="true"/>
    <Element-370 xsi:nil="true"/>
    <Element-351 xsi:nil="true"/>
    <Element-446 xsi:nil="true"/>
    <Element-386>30
    </Element-386>
    </Segment-ITD>
    -<Loop-N1>
    -<Segment-N1>
    <Element-98>ST
    </Element-98>
    <Element-93>CT RETAIL - A.J.BILLES D.C.
    </Element-93>
    <Element-66>9
    </Element-66>
    <Element-67>2016136689005
    </Element-67>
    </Segment-N1>
    </Loop-N1>
    -<Loop-PO1>
    -<Segment-PO1>
    <Element-350>1
    </Element-350>
    <Element-330>10
    </Element-330>
    <Element-355_1>EA
    </Element-355_1>
    <Element-212>7.5
    </Element-212>
    <Element-639>NT
    </Element-639>
    <Element-235_1>SK
    </Element-235_1>
    <Element-234_1>043-6234-6
    </Element-234_1>
    <Element-235_2>VP
    </Element-235_2>
    <Element-234_2>4910
    </Element-234_2>
    </Segment-PO1>
    -<Loop-CTP>
    -<Segment-CTP>
    <Element-687 xsi:nil="true"/>
    <Element-236>UCP
    </Element-236>
    <Element-212>7.5
    </Element-212>
    <Element-380 xsi:nil="true"/>
    <Composite-C001 xsi:nil="true"/>
    <Element-648 xsi:nil="true"/>
    <Element-649 xsi:nil="true"/>
    <Element-782 xsi:nil="true"/>
    <Element-639>QT
    </Element-639>
    </Segment-CTP>
    </Loop-CTP>
    -<Segment-PO4>
    <Element-356 xsi:nil="true"/>
    <Element-357>1
    </Element-357>
    <Element-355_1>EA
    </Element-355_1>
    -<Element-103>
    <Part-103.1>PKG
    </Part-103.1>
    <Part-103.2>90
    </Part-103.2>
    </Element-103>
    </Segment-PO4>
    -<Segment-DTM>
    <Element-374_5>010
    </Element-374_5>
    <Element-373_1>20020315
    </Element-373_1>
    </Segment-DTM>
    </Loop-PO1>
    -<Loop-PO1>
    -<Segment-PO1>
    <Element-350>2
    </Element-350>
    <Element-330>20
    </Element-330>
    <Element-355_1>EA
    </Element-355_1>
    <Element-212>175
    </Element-212>
    <Element-639>NT
    </Element-639>
    <Element-235_1>SK
    </Element-235_1>
    <Element-234_1>043-6340-2
    </Element-234_1>
    <Element-235_2>VP
    </Element-235_2>
    <Element-234_2>4310
    </Element-234_2>
    </Segment-PO1>
    -<Loop-CTP>
    -<Segment-CTP>
    <Element-687 xsi:nil="true"/>
    <Element-236>UCP
    </Element-236>
    <Element-212>175
    </Element-212>
    <Element-380 xsi:nil="true"/>
    <Composite-C001 xsi:nil="true"/>
    <Element-648 xsi:nil="true"/>
    <Element-649 xsi:nil="true"/>
    <Element-782 xsi:nil="true"/>
    <Element-639>QT
    </Element-639>
    </Segment-CTP>
    </Loop-CTP>
    -<Segment-PO4>
    <Element-356 xsi:nil="true"/>
    <Element-357>1
    </Element-357>
    <Element-355_1>EA
    </Element-355_1>
    -<Element-103>
    <Part-103.1>PKG
    </Part-103.1>
    <Part-103.2>90
    </Part-103.2>
    </Element-103>
    </Segment-PO4>
    -<Segment-DTM>
    <Element-374_5>010
    </Element-374_5>
    <Element-373_1>20020315
    </Element-373_1>
    </Segment-DTM>
    </Loop-PO1>
    -<Loop-CTT>
    -<Segment-CTT>
    <Element-354>2
    </Element-354>
    </Segment-CTT>
    </Loop-CTT>
    -<Segment-SE>
    <Element-96>41
    </Element-96>
    <Element-329>21090001
    </Element-329>
    </Segment-SE>
    </ns0:Transaction-850>
    </part>
    </Write_PO_Write_InputVariable>
    [2007/10/05 18:48:21] Error in evaluate <from> expression at line "80". The result is empty for the XPath expression : "/ns3:Transaction-850".less
    oracle.xml.parser.v2.XMLElement@11506bb
    [2007/10/05 18:48:21] "{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure" has been thrown.less
    -<selectionFailure xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/">
    -<part name="summary">
    <summary>
    empty variable/expression result.
    xpath variable/expression expression "/ns3:Transaction-850" is empty at line 80, when attempting reading/copying it.
    Please make sure the variable/expression result "/ns3:Transaction-850" is not empty.
    </summary>
    </part>
    </selectionFailure>
    Regards
    Lalit

  • Adding a  value to an LOV in an Oracle apps form

    Hi Guys
    Im new to forms and customizations in apps as im sure will be apparent with the questions i have :-)I have a requirement to add a value to an LOV on a field in an oracle apps form.
    My question is
    1: How do i get the lov query?
    2: How do i edit an existing query.
    3: How can i solve this problem.
    Thanks

    Since you are working with the E-Business Suite, most likely the LOV is based on a Value Set. I strongly recommend you confer with a coworker for guidance on how to investigate an Oracle EBS Form. Value Sets are defined within the EBS setup screens and you have to be assigned to a responsibility that will allow you to modify and create Value Sets. I also strongly recommend you visit the Oracle Applications Documentation web site and review the Oracle Applications Developer's Guide and Oracle Applications User Interface Standards for Forms-Based Products for your particular version of the EBS.
    Also, the General EBS Discussion is the more appropriate forum to post this type of question.
    Hope this helps.
    Craig...

  • Problem with Table Value Set

    Hi,
    i have created a Table value Set for showing Vendor_site_code in DFF
    XXXX_VENDOR_NAME
    Table Application :Purchasing
    Table Name:PO_VENDORS
    Value:VENDOR_NAME
    ID:VENDOR_ID
    XXXX_VENDOR_SITECODE
    Table Application :Purchasing
    Table Name:PO_VENDORS PV, PO_VENDOR_SITES_ALL PVS
    Value:PVS.VENDOR_SITE_CODE
    ID:PVS.VENDOR_SITE_ID
    where/order by: where PV.VENDOR_ID=PVS.VENDOR_ID
    XXX_ITEM
    Table Application :IVENTORY
    Table Name:MTL_SYSTEM_ITEMS_B
    Value:PVSSEGMENT1||'-'||SEGMENT2||SEGMENT3
    ID:PVS.INVENTORY_ITEM_ID
    where/order by:WHERE ORGANIZATION_ID = cs_std.get_item_valdn_orgzn_id
    i am facing the below error when opening the Form related to that DFF
    APP-FND-01564: ORACLE error 1722 in FDFGVD
    Cause: FDFGVD failed due to ORA-01722: invalid number.
    The SQL statement being executed at the time of the error was: SELECT PVS.VENDOR_SITE_ID,PVS.VENDOR_SITE_CODE VALUE, PVS.VENDOR_SITE_CODE DESCRIPTION, NVL('N', 'N'), NVL(TO_NUMBER(NULL), -1), NULL, NVL('Y', 'Y'), NVL(TO_CHAR(TO_DATE(NULL), 'J'), 0), NVL(TO_CHAR(TO_DATE(NULL), 'J'), 0) FROM PO_VENDORS PV, PO_VENDOR_SITES_ALL PVS WHERE ( PV.VENDOR_ID=PVS.VENDOR_ID) AND PVS.VENDOR_SITE_ID = :X and was executed from the file &ERRFILE.

    Can you say where have you placed this valueset - which DFF, in which form?

  • How to schedule the Request set in Oracle Apps

    Hi Everyone,
    Hope all are doing good, I would like to know scheduling in Oracle Apps.
    Here is the my scenario, i.e I have an one Request Set named Custom Invoice Request Set.
    Now i want to run this request set for every 5 minutes. For that what do i have to do.
    Can anyone please suggest me.

    Hi,
    Please follow the below steps:
    1. Log into the system
    2. View > Request > Submit a new Request > Request Set > Select the request set (from list of values)
    3. Click on schedule (Dont click on submit)
    4. Click on Periodically
    5. For "Re-run every" parameter enter value
              i.    5
              11. minutes (from the drop down value).
    6. Click OK
    This will achieve your objective.
    Hope answered the question.
    Best Regards,

Maybe you are looking for

  • Gmail Account in iMail - adding multiple exchange SMTP addresses to Gmail

    Summary:  I am trying to use my Gmail to send messages through iMail from my other addresses that I have added to my Gmail account successfully. Detail: I currently have 5 email addresses, and the most recent one I created was my Gmail address.  Ever

  • New Keyboard Shortcut Webapp for Motion 5

    Hi all, To help you memorize all keyboard shortcuts for Motion 5 (and Final Cut Pro X), here's a nifty online tool that visualizes them: http://keycommands.info/motion-5-keyboard-shortcuts.php Cheers

  • I dont have any username/password at my testdesktop

    How i can work when EM ask for Host credentials, I did'n set any when l login to my desktop, Example while doing reorg of table An error occurred verifying the host credentials. Make sure the credentials are valid and that they specify an account wit

  • Issue Tracking Application

    Can someone please help. I have been through Chapter 10 of the 2 Day Play Application Express Developer Guide 2.1, "How to Build and Deploy an Issue Tracking Application". At run time when I select the Delete button, the confirmation box appears. Sel

  • OfficeWebApps Excel edit

    Hi , I've installed and set  officewebapps. word (view and edit)  working great. But I'm having problems also excel. http://.../_layouts/15/WopiFrame.aspx?sourcedoc=/...xlsx&action=edit    or  http://.../_layouts/15/WopiFrame.aspx?sourcedoc=/...xlsx&