MissingRequiredPropertyException: Required property missing. :[SMTP_FROM]

Hi,
I am trying to mail bipublisher reports using delivery channel as 'Email', but getting following exception:
Where should I mention SMTP_FROM value ? and how?
I have mentioned Email From Address in Admin>Delivery Configuration tab.
Please help.
[042811_112430820][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] oracle.apps.xdo.delivery.MissingRequiredPropertyException: Required property missing. Property name :[SMTP_FROM]
at oracle.apps.xdo.delivery.AbstractDeliveryRequest.validateProperties(Unknown Source)
at oracle.apps.xdo.delivery.AbstractDeliveryRequest.submit(Unknown Source)
at oracle.apps.xdo.batch.DeliveryHelper.submitRequests(Unknown Source)
at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitEnterpriseDeliveryRequest(Unknown Source)
at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Source)
at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:119)
at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:311)
at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2008)
at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:358)
at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
Edited by: user12780406 on Apr 27, 2011 11:40 PM
Edited by: user12780406 on Apr 27, 2011 11:40 PM

This is my bursting query. Please suggest changes..to avoid problem of Missing Property Required SMTP_HOST.
<burst enabled="true">
<property name="BURSTING_NODE" value="/A/LIST_S/S/key"/>
<property name="DELIVERY_KEY" value="/A/LIST_S/S/key"/>
<dataSet>
<sql dataSourceRef="DATA">
<![CDATA[SELECT
distinct (key) KEY, 
'Template' AS TEMPLATE,
'RTF' TEMPLATE_FORMAT,
'en-US' LOCALE,
'Excel' OUTPUT_FORMAT,
'EMAIL' DEL_CHANNEL,
'[email protected]' AS PARAMETER1,
'' AS PARAMETER2,
'' PARAMETER3,
'' PARAMETER4,
'' PARAMETER5,
'' PARAMETER6,
'' PARAMETER7
from TABLE               ]]>
</sql>
</dataSet>
</burst>

Similar Messages

  • Custom tag SetProperty: Mandatory attribute property missing

    Ok, first some code. Here's the contents of my displayCollection.tag:
    <%@ tag body-content="scriptless" import="com.serco.inquire.*" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ attribute name="mgr" required="true" %>
    <jsp:useBean id="irc" scope="session" class="com.serco.inquire.irCollection">
      <jsp:setProperty name="mgrid" value="${mgr}" />
    </jsp:useBean>
    ${irc.mgrid}Here's the JSP I'm calling it from (myq.jsp):
    <%@page language="java" import="java.util.*,com.serco.inquire.*" %>
    <%@ taglib prefix="inq" tagdir="/WEB-INF/tags" %>
    <inq:displayCollection mgr="Chris Novish" />Here's the java class for irCollection (used in the tag file):
    package com.serco.inquire;
    import java.sql.*;
    import java.util.*;
    public class irCollection {
         public String mgrid;
         public irCollection() {
              super();
         public void setMgrid(String datum) {
              this.mgrid = datum;
         public String getMgrid() {
              return this.mgrid;
    }And finally, here's the error I get when i try to run myq.jsp:
    org.apache.jasper.JasperException: /WEB-INF/tags/displayCollection.tag(7,2) SetProperty: Mandatory attribute property missing     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:41)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:198)
         org.apache.jasper.compiler.JspUtil.checkAttributes(JspUtil.java:174)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:595)
         org.apache.jasper.compiler.Node$SetProperty.accept(Node.java:1150)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2428)
         org.apache.jasper.compiler.Validator$ValidateVisitor.visit(Validator.java:647)
         org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1182)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2428)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2434)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:475)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Validator.validateExDirectives(Validator.java:1789)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:216)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:372)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:339)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:594)
         org.apache.jasper.servlet.JspServletWrapper.loadTagFile(JspServletWrapper.java:231)
         org.apache.jasper.compiler.TagFileProcessor.loadTagFile(TagFileProcessor.java:577)
         org.apache.jasper.compiler.TagFileProcessor.access$000(TagFileProcessor.java:48)
         org.apache.jasper.compiler.TagFileProcessor$TagFileLoaderVisitor.visit(TagFileProcessor.java:642)
         org.apache.jasper.compiler.Node$CustomTag.accept(Node.java:1539)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2428)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2434)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:475)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2376)
         org.apache.jasper.compiler.TagFileProcessor.loadTagFiles(TagFileProcessor.java:660)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:228)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:372)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:352)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:339)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:594)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:344)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:391)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:722)>
    as far as I can tell, the attribute mgr is set in myq.jsp when it invokes displayCollection.tag, and displayCOllection.tag's only attribute (required) is mgr. so uhm... what do I misunderstand?

    Nick,
    Thanks for your help.
    But I also face another problem that is
    "unable to load class com.jguru.FormBean" when I tried to call another jsp.
    Here are my code :
    package com.jguru;
    public class FormBean {
    private String LName;
    private String FName;
    private String Passwd;
    private String Tel;
    private String Title;
    private String Dept;
    private String Email;
    private String Accesstype;
    public FormBean() {
    LName="";
    FName="";
    Passwd="";
    Tel="";
    Title="";
    Dept="";
    Email="";
    Accesstype="";
    public String getLName() {
    return LName;
    public String getFName() {
    return FName;
    public String getPasswd() {
    return Passwd;
    public String getTel() {
    return Tel;
    public String getTitle() {
    return Title;
    public String getDept() {
    return Dept;
    public String getEmail() {
    return Email;
    public String getAccesstype() {
    return Accesstype;
    public void setLName(String x) {
    LName = x;
    public void setFName(String x) {
    FName = x;
    public void setPasswd(String x) {
    Passwd = x;
    public void setTel(String x) {
    Tel = x;
    public void setTitle(String x) {
    Title = x;
    public void setDept(String x) {
    Dept = x;
    public void setEmail(String x) {
    Email = x;
    public void setAccesstype(String x) {
    Accesstype = x;
    Thanks.

  • "Ipod Cannot Be Updated, The File Required Is Missing" - Can someone help?

    I just got this error today and its bugging me.
    Whenever I try to update my ipod it gives me a new window saying "IPOD (name) cannot be updated, the file required is missing."
    ummm I thought maybe if i restored my ipod the file would be restored too but that didnt work....
    After i restored it, the itunes library updated my ipod with all my original playlists and videos, but now when i try to update it and sync my pictures to it or create new playlists, it gives me that message.
    Can anyone give me some advice on what i can do to fix this problem? i do have the iTunes 7.01 my ipod is the 60G Ipod Video (White)
    Thanks for your help guys, i really need it.

    I just dealt with the same problem. None of the answers people gave to the problem worked!
    Whatever it is that you're trying to put into your iPod... make sure that the file is located in your "My Music" file first.
    Basically, when you get that message double check and if what you selected isn't in "My Music" drag and drop into it and try again.
    I hope that helped!
    I know... so frustrating.

  • "Ipod Cannot Be Updated, The File Required Is Missing" - Help!!

    I just got this error today and its bugging me.
    Whenever I try to update my ipod it gives me a new window saying "IPOD (name) cannot be updated, the file required is missing."
    ummm I thought maybe if i restored my ipod the file would be restored too but that didnt work....
    After i restored it, the itunes library updated my ipod with all my original playlists and videos, but now when i try to update it and sync my pictures to it or create new playlists, it gives me that message.
    Can anyone give me some advice on what i can do to fix this problem? i do have the iTunes 7.01 my ipod is the 60G Ipod Video (White)
    Thanks for your help guys, i really need it.

    I just dealt with the same problem. None of the answers people gave to the problem worked!
    Whatever it is that you're trying to put into your iPod... make sure that the file is located in your "My Music" file first.
    Basically, when you get that message double check and if what you selected isn't in "My Music" drag and drop into it and try again.
    I hope that helped!
    I know... so frustrating.

  • I have ipod classic 5gen it will not sync with windows the error message says ipod can not sync as required file missing   wht to do???

    i have ipod classic 5gen it will not sync with windows the error message says ipod can not sync as required file missing   wht to do???

    Although you used the new USB 3.0 port, the actual connection speed is still USB2.0, as the iPod Dock connector, does not have the 10 times faster USB3.0 signal pins, the connection speed is still 480Mbits/s
    I assumed that you have tried the other USB 2.0 port to no success..
    Can you do the iPod Disk diagnostic as posted earlier by tt2, it wont fix your problem, but helps in troubleshooting.
    Have a nice day!

  • Problem with changing required property based on another field using EL

    Hi,
    In my form, I want to set required property should be true or false for field 'B' based on value of field 'A'.
    Value of 'A' is from 1 to 10 as choice list.
    If 'A' value is 1 then i want i want to set required property of 'B' is false.otherwise the field 'B' should be required.
    I set auto Submit to true for field 'A' and 'A' assigned as partial trigger for 'B'.
    In required property of 'B', i given
    #{bindings.ScheduleLevel.inputValue!=1}
    Now, it is working fine if i try to change the list value of 'A' from 2 to 1 or 1 to 2 or more in the existing record.
    But, if i click create button, then if i choose 1 for 'A', then the 'B' field is not changing from required to non-required.
    my jdev version is 11g.
    Any suggestions please.
    Thanks in advance,
    SAN

    This would not work as validations would fire before. So you will have to accomplish this using a valuechangelistener like this.
    Keep a boolean variable which captures whether field is required or not let' say brequired
    for field A
    set immediate=true, autosubmit=true
    then in value change listener of A you use the code as follows:-
    public void onAChange(ValueChangeEvent valueChangeEvent) {
            Object value=valueChangeEvent.getNewValue();
            if(value!=null&&!value.toString().trim().equalsIgnoreCase("")){
                setBrequired(true);
                FacesContext.getCurrentInstance().renderResponse();
            else{
                setBRequired(false);
                FacesContext.getCurrentInstance().renderResponse();
                }

  • Issue with Panel Tabbed and required property

    Hi All,
    I am using Jdeveloper 11.1.1.4 and I have a pannel tab with 3 tabs and I have an input text in tab2 which is required only in tab2. The problem is when I try to navigate to tab1 from tab2, the required property still shows the error message when nothing is entered .Is there any way to make the required only show the message only when in tab 2??
    Thanks,
    Swathi Patnam

    If you dont want to perform any validations use immidiate=true property. You can use this property either to a button, command link... to most of the ADF components you use to perform any kind of action.

  • Getting the required property of an item in a bean

    Hello all,
    is it possible to get the required property of e.g. a VTextField inside a PJC?
    I am trying to write a bean that iterates through all the components of a form a puts a red border on all fields marked as required in Forms. I cannot find an appropriate getter or ID to use with the getProperty(ID) method.
    Any help is appreciated
    Achim

    There is already a functionality which makrs all required fields:
    Open the file $ORACLE_HOME\forms\java\oracle\forms\registryregistry.dat with a texteditor
    At the end of the file you'll find two entries
    app.ui.requiredFieldVA=false
    #    The background color is specified as an RGB triple.
    app.ui.requiredFieldVABGColor=255,0,0Set the first one to true and the second one to a color of your choice, restart OC4J and check the results, maybe it fits your requirement.

  • Setting field/control "required" property with script

    Am using LiveCycle 8.2.1x and Acrobat Pro Extended 9.1.2.
    I want to change one control's "required" property based upon the user's input in/on another control (a drop-down list selection).  Can it be done with FormCalc or Javascript?  If so, how?

    Hi Brian,
    You can use the nullTest property.
    To make TextField1 mandatory
         TextField1.validate.nullTest = "error";
    To make TextField1 optional
         TextField1.validate.nullTest = "disbled";
    Regards
    Bruce

  • Mandatory attribute property missing problem

    Hi All,
    I tried to do the simple display output, but it can't work.
    My code is as below;
    <HTML>
    <BODY bgColor="#c8d8f8>
    <form action="webapps\ROOT\form.jsp" method=POST>
    <center>
    <table cellpadding=4 cellspacing=2 border=0>
    <th bgco;or="#CCCCFF" colspan=2>
    <font size=5>User Registration</font>
    </th>
    <tr>
    <td valign=top>
    <b>First Name</b>
    <br>
    <input type="text" name="LName" size=15"></td>
    <td valign=top>
    <b>Full Name</b>
    <br>
    <input type="text" name="FName" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Password</b>
    <br>
    <input type="text" name="Passwd" size=15"></td>
    <td valign=top>
    <b>Telephone</b>
    <br>
    <input type="text" name="Tel" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Password</b>
    <br>
    <input type="text" name="Passwd" size=15"></td>
    <td valign=top>
    <b>Telephone</b>
    <br>
    <input type="text" name="Tel" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Titile</b>
    <br>
    <input type="text" name="Title" size=15"></td>
    <td valign=top>
    <b>Department</b>
    <br>
    <input type="text" name="Dept" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Email</b>
    <br>
    <input type="text" name="Email" size=15"></td>
    <td valign=top>
    <b>Access</b>
    <br>
    <input type="text" name="Accesstype" size=15"></td>
    </tr>
    <%-- Create the bean only when the form is posted --%>
    <%
    if (request.getMethod().equals("POST")) {
    %>
    <jsp:useBean id="formHandler" class="com.jguru.FormBean">
    <jsp:setProperty name="formHandler" property="*"/>
    </jsp:useBean>
    <p>
    <hr>
    <font color=red>
    You submitted : <p>
    <b>Login Name:</b><br>
    <jsp:getProperty name="formHandler" pripoerty="LName"/><br>
    <b>Full Name:</b><br>
    <jsp:getProperty name="formHandler" property="FName"/><br>
    <b>Password:</b><br>
    <jsp:getProperty name="formHandler" property="Passwd">/><br>
    <b>Telephone:</b><br>
    <jsp:getProperty name="formHandler" property="Tel">/><br>
    <b>Title:</b><br>
    <jsp:getProperty name="formHandler" property="Title">/><br>
    <b>Department:</b><br>
    <jsp:getProperty name="formHandler" property="Dept">/><br>
    <b>Email:</b><br>
    <jsp:getProperty name="formHandler" property="Email">/><br>
    <b>Access:</b><br>
    <jsp:getProperty name="formHandler" property="Accesstype">/><br>
    <%
    %>
    </font>
    </body>
    </html>
    The error message is
    Internal Servlet error
    org.apache.jasper.compiler.ParseException: getProperty:Mandatory attribute property missing
    Thanks in advance for any assistance.

    Nick,
    Thanks for your help.
    But I also face another problem that is
    "unable to load class com.jguru.FormBean" when I tried to call another jsp.
    Here are my code :
    package com.jguru;
    public class FormBean {
    private String LName;
    private String FName;
    private String Passwd;
    private String Tel;
    private String Title;
    private String Dept;
    private String Email;
    private String Accesstype;
    public FormBean() {
    LName="";
    FName="";
    Passwd="";
    Tel="";
    Title="";
    Dept="";
    Email="";
    Accesstype="";
    public String getLName() {
    return LName;
    public String getFName() {
    return FName;
    public String getPasswd() {
    return Passwd;
    public String getTel() {
    return Tel;
    public String getTitle() {
    return Title;
    public String getDept() {
    return Dept;
    public String getEmail() {
    return Email;
    public String getAccesstype() {
    return Accesstype;
    public void setLName(String x) {
    LName = x;
    public void setFName(String x) {
    FName = x;
    public void setPasswd(String x) {
    Passwd = x;
    public void setTel(String x) {
    Tel = x;
    public void setTitle(String x) {
    Title = x;
    public void setDept(String x) {
    Dept = x;
    public void setEmail(String x) {
    Email = x;
    public void setAccesstype(String x) {
    Accesstype = x;
    Thanks.

  • Problem in using SPEL for Required Property

    Hi,
    While creating a Application Properties View Object PVO
    transient attribute for the required property item what should be the type while using Boolean Iam facing issue
    If any guidense related to SPEL for Required Property it would be helpful
    Regards,
    Krishna

    Hi Reetesh,
    I Haven't got your point clearly.
    I have created a Transient Attributes VO (PVO) with three attributes.
    RowKey Number
    itemRender Boolean
    itemRequired String
    Now My problem is Iam able to make the itemRender feature but not able to see any change the itemRequired Attibute
    So my problem is PPR is working fine for render property but not for required property
    is there any exercise in Tutorial any body came across setting the Required property using PPR. Please metion so that I can refer for more clarification.
    Krishna

  • How to access the Requirements property (& subproperties) of steps and sequences with the TestStand API

    The concept of associating teststand objects to unit requirements for traceability purposes was added to TS 3.5, and I need to find out how to access the array of strings used to store unit requirements in step objects, sequence objects and sequencefile objects. The teststand help file points out that the requirements list of a sequencefile object is accessible using the PropertyObjectFile interface, and also points out that Requirements is a property of the sequence and step classes. Furthermore it implicitly states that the requirements property has a Links subproperty which is an array of strings, but that is pretty much the extent of the documentation on this new feature so far. There seems to be no expression function available to get to those requirements either.
    I know that this feature was added to allow TestStand to interface with RG, and I am planning on using RG, but I would also like to do things with the requirements information within TestStand.
    Anyone? 

    Are you talking about the Requirements Gateway?  It is a separate product from NI that will do what you are looking for.  I haven't used it so I am not sure of the API chain to make it work.  Take a look and see if that is what you were thinking of.
    Hope that this helps,
    Bob Young
    Sorry, I just re-read your original post and see that you are looking to also use the Requirements Gateway, so you obviously know about it.  I don't know what the API changes were that made it work so I am not going to be much help.
    Sorry about posting before getting the correct information from the original.
    Bob Young
    Message Edited by Bob Y. on 08-24-2006 04:54 PM
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

  • Error. Required Attribute Missing

    Hi,
    I had the following code:
    <?xml version="1.0"?>
    <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN" "http://www.wapforum.org/DTD/wml12.dtd">
    <%@ page session="true" %>
    <%@ page import="java.io.*"%>
    <%@ page import="java.sql.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="javax.servlet.*"%>
    <%@ page import="javax.servlet.http.*"%>
    <%
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String url = "jdbc:odbc:DataLink";
    Connection con = DriverManager.getConnection(url);
    %>
    <% Statement stmt = con.createStatement(); %>
    <%! String admin, module, grade, displaySQL; %>
    <%
    admin = (String)session.getAttribute("UserAdmin") ;
    displaySQL = "select * from Exam_Result where AdminNo = '"+admin+"' ";
    java.sql.ResultSet columns = stmt.executeQuery(displaySQL);
    response.setContentType("text/vnd.wap.wml");
    %>
    <wml>
    <card id="Result" title="Exam Result">
    <do type="accept" label="Main menu">
    <go href="MainMenu.jsp"/></do>
    <p align="center">
    <table border=1 align="center">
    <tr>
    <td>Module Code</td>
    <td>Grade</td>
    </tr>
    <% while(columns.next()) {
    module = columns.getString("Module_code");
    grade = columns.getString("Grade");
    %>
    <tr>
    <td> <%= module %> </td>
    <td> <%= grade %> </td>
    </tr>
    <% } %>
    </table>
    </p>
    </card>
    </wml>
    <%
    columns.close();
    stmt.close();
    con.close();
    %>
    When i run using nokia simulator, it display required attribute missing.
    Can anyone help me to solve the error?
    Thanx in advance....

    May be the wap phone has some differences with explorer that IE. For it connect to gateway first,then
    the gate connect to you web server. Perhaps the
    session (you are using) cannot be kept with wap phone.
    You can using url parameters to keep special customer's
    info,and create a timer in your web server to trace special customer's id or name. In this way,you can avoid using session instance. --try it and good luck

  • Error :Required parameters missing when calling up module MARC_SINGLE_READ

    Dear all,
    When trying to do the production order confirmation i am getting the error "Required parameters missing when calling up module MARC_SINGLE_READ".How can this error be solved?
    Thanks,
    Kumar

    Hi
    Please activate the corresponding programs again. I think you got a short dump for this error, if yes, you can see the program's name there.
    Best Regards.
    Leon.

  • Setting required property on pre-update trigger

    i have set required property of 3 items on pre-update trigger of a block such that if user updates a listbox and if the updated value is 'P' for perentage then the user must fill all the 3 fields but even after setting the required property the record is saved if the fields are empty. the trigger is firing & everything looks ok. the portion of code i've used is:
    BEGIN
    IF :ROUTING_ENGINE_RULES.DISTRIBUTION_TYPE = 'P' THEN
    PAUSE; /*TO CHECK ENTRY ON TRIGGER*/
    SET_ITEM_PROPERTY('carrier_cd_percent1',UPDATE_ALLOWED,PROPERTY_true);
         ('carrier_cd3_percent',UPDATE_ALLOWED,PROPERTY_true);
    I'VE SET OTHER 2 FIELDS SIMILARLY
         

    put your code in when-listvalue-changed trigger for that 'P' trigger.
    to put it in existng place is still too late.

Maybe you are looking for

  • Adding music to iPod Shuffle PROBLEM!!!

    ok... when i try to put a music on my iPod Shuffle with iTunes after like 5~10 music the iPod just disconect from my pc and keep doing this all the time anyone know how to fix that?

  • Ios 6 iphone 4 voice control no longer works

    I have an iPhone 4 (not 4s) and with iOS5, Voice Control was pretty reliable. Now that I upgraded to iOS6, it does not work at all. Anyone else having the same issues?

  • Best Practice?: Snapshot Production for Costco Printing

    I've got another LR user friend that asked me to think of a good way to crank out 4x6 images for some overdue family photobooks. My thinking is to have 2 presets, one for vertical, and one for horizontal. The presets would have a 4x6 crop, some clari

  • File Conversions with API...!

    Hi guys...! I'm searching for a file conversion product that comes with an API, which will enable programmers or developers to integrate it in their program. The product must be able to convert PDF, HTML, Excel, Access, Power Point, and Word into a t

  • The listener supports no services-10g

    Dear all, 10g on solaris 10 I shutdown the db and stop the listener ..when I start the listener using lsnrctl start LISTENER is starts and displays The listener supports no services The command completed successfully # listener.ora Network Configurat