Try to change 'Card Status' but reponse is"Conditions of use not satisfied"

Dear
I tried to change card status from "INITIALIZED" to "SECURED" after putting 3 keys.
However it says "Conditions of use not satisfied"
APDU that I sent is below
=> 80 F0 80 0F 07 A0 00 00 00 03 00 00 ............
(30 msec)
<= 69 85 i.
Status: Conditions of use not satisfied
I have 2 questions.
1) Do you know why?
2) Do you know what is the "Initial Key of JCOP Cards"
Is it 404142434445464748494a4b4c4d4e4f ?
Any help would be greatly appreciated.

Ok well in playing around with my code, I had narrowed the problem down to a cipher object that I was using for signing (even though I was explicitly setting it to null when the applet was uninstalled). I store the key that I pass into the init call in an array - I changed this array from static to non static and that has made the problem go away. However I am not sure why. Does anyone have any thoughts on this?
Edited by: Swati Patel on 07-Sep-2011 00:40

Similar Messages

  • I changed my password but when  I go to use my itunes gift card the security questions I am being asked I cannot remember, I changed my password but when  I go to use my itunes gift card the security questions I am being asked I cannot remember

    I changed my password but when  I go to use my itunes gift card the security questions I am being asked I cannot remember them

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then the steps half-way down this page give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

  • I try to log into itunes but get message Apple ID does not have permission to access iTunes Connect.

    I try to log into itunes but get message Apple ID does not have permission to access iTunes Connect.
    What do I need to do to have access to iTunes?

    do you have your apple id set up for publishing books?
    please take a look here:
    https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/wa/bookSignup

  • Help me please i have ipad 3 its screen goes blank white again & again ... last night i try to restart my ipad but after that my ipad is not turning on when i put it on charge there beep coming again & again..

    Help me please i have ipad 3 its screen goes blank white again & again ... last night i try to restart my ipad but after that my ipad is not turning on, when i put it on charge there beep coming again & again..

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these Steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • Hi, I try to change my password, but I forgot the security questions, and the recovery email address is not my current email (I did setup other two email). Could you please help?

    Hi,
    Since I lost my phone yesterday, and I try to change my AppleID password, however I forgot my security questions and the recovery email address is very old, not my current one, please help me.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (125110)

  • HT201209 I have a credit card listed, but no longer wish to use credit cards.  I went and bought some ITUNES cards and have redeemed them, but it's not letting me delete my credit card info and use the ITUNES cards!!!  What do I do? I'm getting so frustra

    Question~
    I am currently using a Credit Card for payment methods on the ITUNES store.  But my sons are now using it also, so my husband thought it would be best to delete the card and buy ITUNES gift cards instead so we dont have to keep loading this card.  But it's not deleting my information. I redeemed the cards already and says that I have a balance on my account.  But when we try to purchase something it takes me to the billing screen and it says there is an issue with a previous purchase because the card was declined!  What do I do??  Someone please help.  Thanks so much!

    Remove the invalid credit card.

  • ı have to change my country but it says ı need to use all of my mony but ı have only 0.24£ how ı could make it 0

    ı have to change my country but the system says ı need to use all my money in the stor but ı have only0.24 pound and ı cant find any thing. ı have to change my country becouse ı want to add turkish credit card

    If you are now in the UK then you can try contacting iTunes support and see if they can remove the balance from your account : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Try to change table image but system preferences won't open

    Hello all. I need your help. My table image got all blue. Itried to change it but the system preferences doe not open. What should I do?

    Restart the machine, that's where I'd start.

  • TS2446 Hi,  had the disabled message this morning, but nervous about the reset function as asking me for my full debit card details.  Will change passwords regardless, but is this a scam or not?

    Had the disabled message on my email this morning.  Nervous about the reset function as asking for bank details.  Is this a scam?
    Thanks

    Hi,
    thanks for the comments and help guys.
    the email address i received from is this one "[email protected]",
    Which I would assume to be ok, but it is the payments link that I'm concerned about.  Wanting bank sort codes, security number, etc.  really not comfortable giving that out to anyone at any time

  • JSP:I changed a class but WHY IT WANTS TO USE THE PREVIOUS ONE? HELP!!!!!!!

    I am using HTMLform+JSP+javabean for executing a query into the database end showing the retrieved values.
    For Building the query end Executing the query SQLQueryBean.class was used and it worked;
    For showing retrieved values SQLResultSetBean.class was used: but the error page displaied cannot instanciate sql.SQLResultSetBean
    After having tried many stuff I changed SQLResultSetBean with SQLQueryResultsBean.java that pratically works in a similar manner but I received error related with SQLResultSetBean.class ...WHY MY CHANGES HAVE NOT BEEN UPDATED?
    This Is the jsp file:
    <%@ page language="java"
    import="java.sql.*, java.io.*, java.util.*, java.lang.*"
    errorPage="errorpage.jsp"
    %>
    <jsp:useBean id="query" scope="page" class="sql.SQLQueryBean" />
    <jsp:setProperty name="query" property="*"/>
    </jsp:useBean>
    <%--I TRIED TO HIDE THIS CODE BUT IT WAS USELESS
    <jsp:useBean id="results" scope="page" class="sql.SQLQueryResultsBean" />
    <jsp:setProperty name="results" property="*"/>
    </jsp:useBean>
    --%>
    <jsp:useBean id="oneRow" scope="page" class="sql.SQLRow" />
    <jsp:setProperty name="oneRow" property="*"/>
    </jsp:useBean>
    <html>
    <body bgcolor="white">
    <%! Integer identifier;%>
    <%! String general; %>
    <%! String[] ingr; %>
    <%! Vector column = new Vector(); %>
    <%! Vector whereCols = new Vector(); %>
    <%! String myQuery = null; %>
    <%-- ***** ACTION 1: Searching pizza names by ingredients! **** --%>
    <%
    String action = request.getParameter("action1");
    if(action.equals("Search pizza")){
    %>
    <%-- ***** SETTING Database, table and columns for SELECT clause **** --%>
    <hr>
    <font size = 5 color ="red">
    <center>
    DEBUG:<br>
    </font>
    <font size = 2 color ="blue">
    database: <%query.setDatabase("testkatia");
    out.println(query.getDatabase());%>
    <br>
    table: <%query.setTable("relation1");
    out.println(query.getTable());
    query.selectColumns("pizza_id");
    query.isDistinct(true);
    column = query.getColumns();
    %>
    <br>
    selected column(s) is(are):
    <ul>
    <%
    if (!column.isEmpty()) {
         for (int i = 0; i < column.size(); i++) {
    %>
    <li>
    <%
              out.println (column.get(i));
         } else out.println ("none selected");
    %>
    </ul>
    </font>
    <hr>
    <%-- ***** SETTING columns value and oper. for the WHERE clause **** --%>
    <%
    ingr = request.getParameterValues("Checkbox1");
    if(ingr!= null){
    for(int i = 1; i <=ingr.length; i++){
    if(i>1 && i<=ingr.length)
    query.selectAnd_OrForWhere("or");
    for(int j=1; j<=24; j++){
    if(ingr[i-1].equals(("ing"+j))){
    general = String.valueOf(j);
    query.selectWhereParameters("pizzaing_id","=",general, "integer");
    %>
    <font size=5 color ="red">
    DEBUG:
    </font>
    <font size = 2 color ="blue">
    <%
    if(query.checkWhereParameters()){
    out.println("Where Clause is Ok");
    %>
    <br>
    <%
    whereCols=query.getColsForWhere();
    out.println("Cols for Where; "+ whereCols.toString());
    else {
    throw new Exception("parameters in the where clause are wrong!n whereClause = "+ query.getWhereClause());
    %>
    </font>
    <hr>
    <font size = 5 color ="red">
    <center>
    DEBUG:<br>
    </font>
    <font size =2 color= "blue">
    The built query is: <%myQuery = query.buildQuery();
    out.println(myQuery);
    %>
    <%--
    <%!Vector rows = new Vector();%>
    <%
    if(myQuery!=null){
    results = myQuery.queryExe(sqlQuery);
    if(results == null) out.print("<br>SQLQueryResultsBean obj is NULL!");
    out.println("<br>---retrieved row num. is--- "+results.getRowNumber());
    out.println("<br>---Number of columns is--- "+results.getColNumber());
    rows = results.getRetrievedRows();
    if(!rows.isEmpty()){
    out.print("col.: ");
    for(int k= 0; k<results.getColNumber(); k++)
         out.print((String)results.getColNames().get(k)+" ");
    out.println("<br>");
    for(int i=0; i < results.getRowNumber(); i++){
         oneRow = (sql.SQLRow)rows.get(i);
         out.print("<br>row"+(i+1)+": ");
         for(int j=0; j<oneRow.rowSize(); j++)
         out.print((String)oneRow.getRowValue(j)+" ");
         out.println("<br>");
    %>
    --%>
    </body>
    </html>
    The error that I got is:
    Error: 500
    Location: /goreme/jspFiles/searchPizzaOrIngr.jsp
    Internal Servlet Error:
    javax.servlet.ServletException: sql/SQLResultSetBean
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java)
    at org.apache.tomcat.core.Handler.service(Handler.java)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java)
    at org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection(Ajp12ConnectionHandler.java)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java)
    at java.lang.Thread.run(Thread.java:498)
    Root cause:
    java.lang.NoClassDefFoundError: sql/SQLResultSetBean
    at java.lang.Class.getMethods0(Native Method)
    at java.lang.Class.getDeclaredMethods(Class.java:1071)
    at java.beans.Introspector$1.run(Introspector.java:858)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.beans.Introspector.getPublicDeclaredMethods(Introspector.java:856)
    at java.beans.Introspector.getTargetEventInfo(Introspector.java:562)
    at java.beans.Introspector.getBeanInfo(Introspector.java:300)
    at java.beans.Introspector.getBeanInfo(Introspector.java:87)
    at org.apache.jasper.runtime.JspRuntimeLibrary.introspecthelper(JspRuntimeLibrary.java)
    at org.apache.jasper.runtime.JspRuntimeLibrary.introspect(JspRuntimeLibrary.java)
    at jspFiles._0002fjspFiles_0002fsearchPizzaOrIngr_0002ejspsearchPizzaOrIngr_jsp_70._jspService(_0002fjspFiles_0002fsearchPizzaOrIngr_0002ejspsearchPizzaOrIngr_jsp_70.java:111)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java)
    at org.apache.jasper.servlet.JspServlet$JspCountedServlet.service(JspServlet.java)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java)
    at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java)
    at org.apache.tomcat.core.Handler.service(Handler.java)
    at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java)
    at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java)
    at org.apache.tomcat.core.ContextManager.service(ContextManager.java)
    at org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection(Ajp12ConnectionHandler.java)
    at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java)
    at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java)
    at java.lang.Thread.run(Thread.java:498)
    Does somebody know what happened and why it continues to search SQLResultSetBean.class?...I have also restarted tomcat!!!![b]
    Please drop me some helps! It would be really nice!
    katia

    THANKS A LOT!
    I am going on like a snail but maybe before die I will see this project works!
    Unfortunately now I have got the previous error: that said:
    "Error Page
    Received the exception:
    javax.servlet.ServletException: Cannot create bean of class sql.SQLQueryResultsBean"
    While If I remouve the usebean tag for sql.SQLQueryResultsBean it dislpaied:
    DEBUG:
    database: testkatia
    table: relation1
    selected column(s) is(are):pizza_id
    DEBUG: Where Clause is Ok
    Cols for Where; [pizzaing_id, pizzaing_id, pizzaing_id]
    DEBUG:
    The built query is: SELECT DISTINCT pizza_id FROM relation1 WHERE pizzaing_id = 1 or pizzaing_id = 2 or pizzaing_id = 3
    The built where clause is: WHERE pizzaing_id = 1 or pizzaing_id = 2 or pizzaing_id = 3
    So why Cannot create SQLQueryResultsBean ?
    JSP
    All the code is here:
    <%@ page language="java"
    import="java.sql.*, java.io.*, java.util.*, java.lang.*"
    errorPage="errorpage.jsp"
    %>
    <jsp:useBean id="query" scope="page" class="sql.SQLQueryBean" />
    <jsp:setProperty name="query" property="*"/>
    </jsp:useBean>
    <%--
    <jsp:useBean id="results" scope="page" class="sql.SQLQueryResultsBean" />
    <jsp:setProperty name="results" property="*"/>
    </jsp:useBean>
    --%>
    <jsp:useBean id="oneRow" scope="page" class="sql.SQLRow" />
    <jsp:setProperty name="oneRow" property="*"/>
    </jsp:useBean>
    <html>
    <body bgcolor="white">
    <%! Integer identifier;%>
    <%! String general; %>
    <%! String[] ingr; %>
    <%! Vector column = new Vector(); %>
    <%! Vector whereCols = new Vector(); %>
    <%! String myQuery = null; %>
    <%-- ***** ACTION 1: Searching pizza names by ingredients! **** --%>
    <%
    String action = request.getParameter("action1");
    if(action.equals("Search pizza")){
    %>
    <%-- ***** SETTING Database, table and columns for SELECT clause **** --%>
    <hr>
    <font size = 5 color ="red">
    <center>
    DEBUG:<br>
    </font>
    <font size = 2 color ="blue">
    database: <%query.setDatabase("testkatia");
    out.println(query.getDatabase());%>
    <br>
    table: <%query.setTable("relation1");
    out.println(query.getTable());
    query.selectColumns("pizza_id");
    query.isDistinct(true);
    column = query.getColumns();
    %>
    <br>
    selected column(s) is(are):
    <ul>
    <%
    if (!column.isEmpty()) {
         for (int i = 0; i < column.size(); i++) {
    %>
    <li>
    <%
              out.println (column.get(i));
         } else out.println ("none selected");
    %>
    </ul>
    </font>
    <hr>
    <%-- ***** SETTING columns value and oper. for the WHERE clause **** --%>
    <%
    ingr = request.getParameterValues("Checkbox1");
    if(ingr!= null){
    for(int i = 1; i <=ingr.length; i++){
    if(i>1 && i<=ingr.length)
    query.selectAnd_OrForWhere("or");
    for(int j=1; j<=24; j++){
    if(ingr[i-1].equals(("ing"+j))){
    general = String.valueOf(j);
    query.selectWhereParameters("pizzaing_id","=",general, "integer");
    %>
    <font size=5 color ="red">
    DEBUG:
    </font>
    <font size = 2 color ="blue">
    <%
    if(query.checkWhereParameters()){
    out.println("Where Clause is Ok");
    %>
    <br>
    <%
    whereCols=query.getColsForWhere();
    out.println("Cols for Where; "+ whereCols.toString());
    else {
    throw new Exception("parameters in the where clause are wrong!n whereClause = "+ query.getWhereClause());
    %>
    </font>
    <hr>
    <font size = 5 color ="red">
    <center>
    DEBUG:<br>
    </font>
    <font size =2 color= "blue">
    The built query is: <%myQuery = query.buildQuery();
    out.println(myQuery);
    %>
    <br>
    The built where clause is:
    <%
    out.println(query.getWhereClause());
    %>
    </font>
    </center>
    <hr>
    <%
    %>
    <%--
    <%!Vector rows = new Vector();%>
    <%
    if(myQuery!=null){
    results = myQuery.queryExe(sqlQuery);
    if(results == null) out.print("<br>SQLQueryResultsBean obj is NULL!");
    out.println("<br>---retrieved row num. is--- "+results.getRowNumber());
    out.println("<br>---Number of columns is--- "+results.getColNumber());
    rows = results.getRetrievedRows();
    if(!rows.isEmpty()){
    out.print("col.: ");
    for(int k= 0; k<results.getColNumber(); k++)
         out.print((String)results.getColNames().get(k)+" ");
    out.println("<br>");
    for(int i=0; i < results.getRowNumber(); i++){
         oneRow = (sql.SQLRow)rows.get(i);
         out.print("<br>row"+(i+1)+": ");
         for(int j=0; j<oneRow.rowSize(); j++)
         out.print((String)oneRow.getRowValue(j)+" ");
         out.println("<br>");
    %>
    --%>
    </body>
    </html>
    SQLQueryResultsBean
    package sql;
    import java.sql.*;
    import java.util.*;
    public class SQLQueryResultsBean {
    String _sqlQuery;
    ResultSet resultSet;
    int colNumber;
    int rowNumber;
    Vector colTypes = new Vector();
    Vector colNames = new Vector();
    Vector _retrievedRows = new Vector();   
    //Constructor IS IT THIS THE PROBLEM?
    public SQLQueryResultsBean(ResultSet rs){
         this.setResultSet(rs);
    //Methods for setting and retrieving the ResultSet object
    public void setResultSet(ResultSet rs){
         resultSet = rs;
    public ResultSet getResultSet(){
         return resultSet;
    //Methods for setting and retrieving the Number of the column
    public void setColNumber(int n){
         colNumber = n;
    public int getColNumber(){
         return colNumber;
    //Methods for setting and retrieving a vector containing all the names of the selected columns
    public void setColNames(Vector c){
         colNames = c;
    public Vector getColNames(){
         return colNames;
    //Methods for setting and retrieving a vector containing all the types of the selected columns
    public void setColTypes(Vector t){
         colTypes = t;
    public Vector getColTypes(){
         return colTypes;
    //Methods for setting and retrieving the number of the selected rows
    public void setRowNumber(int n){
         rowNumber = n;
    public int getRowNumber(){
         return rowNumber;
    //Methods for storing and retrieving the rows selected with the query;
    public void setRetrievedRows(Vector retrievedRows){
         _retrievedRows = retrievedRows;
    public Vector getRetrievedRows(){
         return _retrievedRows;
    //-----STORING THE RESULTS IN CLASS VARIABLES-----
    //-----TYPES, NAMES, NUMBERS OF THE COLUMNS OF A GENERIC ROW AND-----
    //-----FOR STORING THE NUMBER OF THE RETRIEVED ROWS-----
    //storing the results before to close the connection
    public void storeValues() throws SQLException {
    ResultSet rs = this.getResultSet();
    Vector rows = new Vector();
    String value;
    this.setRowNumber(this.countRowNumber());//set number of rows
    this.setParameters(); //set number, types and names of the columns
    //We Move the cursor to the given row number in this ResultSet object.
    for(int i = 0; i<this.getRowNumber(); i++){
         rs.absolute(i+1);
         SQLRow newRow = new SQLRow();
         //Then we retrieve values end collect them in a vector
         for (int j=0; j<this.getColNumber(); j++){
         value =rs.getString(j+1);
         newRow.buildRow(value);
         rows.add(newRow.getRow());
    this.setRetrievedRows(rows);
    //Methods for automatically setting this parameters:
    //columnNumber, colNames, coltypes.
    //It is not public but used inside storeValues();
    void setParameters(){
         try{
         ResultSetMetaData meta = this.getResultSet().getMetaData();
         int totColumns = meta.getColumnCount();
         this.setColNumber(totColumns);
         Vector names = new Vector();
         Vector types = new Vector();
         for (int i=1; i<=totColumns; i++){
         names.add(meta.getColumnName(i));
         types.add(meta.getColumnTypeName(i));
         this.setColNames(names);
         this.setColTypes(types);
         }catch(Exception e){e.printStackTrace();}
    //Methods for counting the number of the selected rows.
    //It is not public but used inside storeValue();
    int countRowNumber(){
         int count=0;
         try{
         ResultSet rs = this.getResultSet();
         // Moving the cursor to the front of this
         //ResultSet object, just before the first row.
         rs.beforeFirst();
         while(rs.next())
         count++;
         rs.beforeFirst(); //replacecing cursor before the first row
         }catch(Exception e){e.printStackTrace();}
         return count;
    If you (or someone on this forum) have any ideas for that I will be really grateful!
    katia

  • On Change of Status filed as Rejected, Reason Field does not get populated

    Hi,
    I have issue while setting the Status field on UI.
    I have created WF which gives the user an option to ACCEPT OR REJECT the work item assigned to the user.
    But if the Status is REJECTED, there is another field 'REASON ',that has to be populated based on the status as 'REJECTED'.
    The WF shows the status as IN PROCESS for the Step REASON once the Status is REJECTED.
    The WF is getting stuck for long time and the status of the Step REASON  is not getting changed to Completed.
    Regards,
    Tarmeem.

    Hi,
    Are you using the std. Task TS20000139 to populate the comments?
    Is it a Dialog Task, Is it populated correctly once the Rejection button occurred. Check the binding of that Task
    Regards,
    Surjith

  • I keep getting cannot fetch tray error when i try to change themes and so on. I am using my aol as a home page.

    I can't change themes, my Aol weather doesn't work. but if i delete it, it pops right back as soon as Firefox reloads or restarts. I am using Aol my homepage.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Question:  my iCal has changed a reminder from green to purple.  I change it back, but purple returns.  This has not happened before...

    My 'personal' reminder color of green has been green since day one.  Suddenly it changed to purple, and I cannot make it change back for more than 30 seconds--it will change to green after going to edit, get info, then return to purple immediately
    by itself.  A small circle shows up like something is downloading, and green becomes purple again.  Very frustrating. 

    Make sure you select the correct account in the From: drop-down menu when composing a message.

  • HT1918 I want to change a credit card number but I can'to change

    I want to change a credit card number but I can'to change

    You have not said what happens when you try to change it... Any error messages...?
    Changing Account Information
    http://support.apple.com/kb/HT1918

  • Error in CV02N while changing the status.

    Hi Experts,
    We are getting a error while changing the status of technical change document that " Inconsistent characteristic value assignment" .The document is in status "in use" and we are trying to change it to " old version" using T code CV02N.
    when I tried to see the error desription it is telling that delete the inconsistencies. But I didn't find the list of incosistencies. What may be the problem? Please help me out to get ride of this problem.
    Thanks and best regards,
    Praveen

    Hi Pete,
    The full text message: Inconsistent characteristic value assignment
    Message no. C1821
    In diagnosis it is telling that "You want to change the value assigned to a characteristic. However, the change causes inconsistency, so the new value is not allowed."
    Actually I am just changing the status of the document. I am not changing any characteristic value.
    Actually it is appearing as information message. but while saving it pop up and not allowing to save.
    Please do the needful.
    Best Regards,
    Praveen

Maybe you are looking for

  • Open Purchase Order Form in Find Mode

    Hi, I have to open the Purchase Order Form in Find Mode.How to open in Find mode?. I Used the Following Code in Form_Load  && Action_Success=true if(oForm.Mode = SAPbouiCOM.BoFormMode.fm_ADD_MODE)         oForm.Mode = SAPbouiCOM.BoFormMode.fm_FIND_MO

  • Copy Inspection Results of one lot to other lots at a time

    Dear Experts,                      As per settings made under "Make Settings for Copy of Inspection Results" I am able to copy inspection results but still I am not getting what I exactly want. Below are different requirements explained in details 1.

  • Workspace on OAS 10.1.2.0.2 not working

    Hello All, please help me to deploy Workspace on OAS 10.1.2.0.2 Now after I deployed Workspace, PMA, Financial Reporting and WebAnalysis on OAS 10.1.2.0.2 I gave all availible roles to admin user in Shared Services after all I don't see any more besi

  • Invalid Factory Calender error

    Hello gurus, While making a subcontracting PO, the following error is coming "Invalid factory error or error in the factory calender" I have checked the plant settings & have put Factory calender IN for the plant. Still the error is coming. How to re

  • IPhone 4 & iOS 7.0.4: Talk to Type Feature?

    I got an iphone 4 from work (long story - suffice it to say that they're not entirely) after having an iPhone 4s.  Question: does the iPhone 4 have the ability to talk to type?  My iphone 4s had a little mic icon on the virtual keyboard, but I don't