Blocking of a field in a table after validation

Hello! "m using jDev 11.1.2.4.0

My project to get a table and I built a few postings by program for when the user insert or modify table data.

Everything works except if the field that is not block, that is, when the user inserts incorrect data, an error message appears, but it is possible to validate the changes anyway.

So, I want to know how to block the field after a valiodation! To do this validation, I use a valueChangeEvent by the following:

FacesContext.getCurrentInstance () .addMessage (id1.getClientId (FacesContext.getCurrentInstance ()),

new FacesMessage (FacesMessage.SEVERITY_ERROR, "invalid year.", ")

"The year should be after 2015."));

Any help is welcome!

Kind regards.

For example, for af:inputText /RichIinputText, there are setValid() method:

http://docs.Oracle.com/CD/E23943_01/apirefs.1111/e10684/Oracle/ADF/view/rich/component/rich/input/RichInputText.html

STO, suffice it to say

setValid (false);

before showing the FacesMessage

Here is an example of the use of setValid(), for af:inputFile, search for FichierMettre update() method in the link below:

Oracle Fusion Middleware Blog by - Mohammed Tanveer: ADF Fileupload - InputFile with autosubmit & valuechange listener

Tags: Java

Similar Questions

  • Updating of the table after insert shows empty cells

    Hello experts,

    I'm trying to insert some custom values of certain fields in a table displayed on my page. The table comes a VO based entity with a sequence number and a few constraints.

    The sequence numbers batteries managed automatically by the database.

    The entry fields are related to a bean managed to get the value with 'GetValue' and then I create a string for the entry. The string then gets cut in the VO as some attributes with the following SQL calculation example:

    REGEXP_SUBSTR (attribut3, "[^,] +' 1, 5")

    But it is on the ViewObject/database layer.

    After I call the method of the VO Impl to create the new line like this:

    Managed bean:

    OperationBinding operationBinding = bindings.getOperationBinding ("addRow");

    operationBinding.getParamsMap () .put ("Value1", someInt);

    operationBinding.getParamsMap () .put ("Value2", someIntToo);

    operationBinding.getParamsMap () .put ("Value3", someString);

    operationBinding.execute ();


    Impl VO:


    ' public void addRow (integer value1, value2 Integer, String value3) {}


    ViewObject vo = this;

    NewRow row = vo.createRow ();


    newRow.setAttribute ("attribut1", value1);

    newRow.setAttribute ("attribut2", value2);

    newRow.setAttribute ("attribut3", value3);


    vo.insertRow (newRow);

    this.getDBTransaction () .commit ();

    }

    I capture without exception again, but when I place everything correctly and trigger the code bean managed via a button action, the table shows the new line with the correct integers, but the channel cut in two by the calculation of SQL from the top shows only blank cells. After that research with the filter of the table and remove the search filter once again, the strings appear correctly.

    For example, after you insert:

    table1.PNG

    Then, after 'refreshment' with the filter:

    table2.PNG

    What can I do about it? I can't really put the data through the InsertWithParams, because I need build the string with the Java Code.

    It only does not show data after insertion, PartialTrigger (s) also will not work.

    You must re-run the sql query after validation (with: vo.executeQuery ())

    Dario

  • Form on a Table with report - change of the source table after created form

    Hi all

    I have a 'form on a Table' where the various fields have the "Source Type" = "column of the database. I have 2 Questions for this type of shape:

    1: in the field "Source value or expression", it is possible to change the name of the field in the Table. But I can't understand how view or even change the underlying Table (which had to be chosen at the beginning, when the form was created at the start).

    2: my question in section that relates to the first question would be, if it is possible to have multiple underlying tables in the same region. Or whether it would be necessary to create a second region or change the "Column of the database" type in a type of SQL query?

    Thank you and best regards,

    David

    To change the table, you need to change the process of the page. A process has been generated called:

    Extraction of line of

    Here, you can modify the table, but you also have to make in your shipment after processes. Who are probably named:

    ApplyMRD and ApplyMRU

    If you want a form to be based on more than one table, you can create a view and base your form on this point of view instead of on the table, or you need customized treatment.

  • Why is the release of the trigger on all fields in a table?

    I have a trigger, and the text is the following. The trigger should write just the emplid in the PS_DM_ADDR_CHG_EMP table whenever there is an update to the fields
    Street1, street.2, STREET3, CITY, STATE, ZIP, COUNTRY in PS_PERSONAL_DATA. But some how it is written emplid in the PS_DM_ADDR_CHG_EMP, when everything starts on any field of the more than 50 fields of the table PS_PERSONAL_DATA. Is there a reason why this happens. I looked in all the other triggers and none of them wrote something on this Board I found a trigger on PS_PERSONAL_DATA for an insert or update or delete on all fields and it uses insert into another table. I couldn't see any other triggers associated with the table PS_PERSONAL_DATA. So, how to diagonize the question of finding what is originally to write the data in the custom table.
    CREATE OR REPLACE TRIGGER HT0P. PERSDATA_RAU
    AFTER UPGRADING FROM STREET1, STREET.2, STREET3, CITY, STATE, ZIP, COUNTRY
    ON PS_PERSONAL_DATA
    REFERRING AGAIN AS NINE OLD AND OLD
    FOR EACH LINE
    DECLARE
    v_Emplid ps_personal_data.emplid%type; -Used for the storage of EMPLID
    BEGIN
    v_Emplid: =: old.emplid;
    UPDATE ps_dm_addr_chg_emp one
    SET a.emplid = v_Emplid
    WHERE (((a.emplid = v_Emplid) and (v_emplid) length = 3))
    or ((substr (a.emplid, 1, 3) = substr (v_Emplid, 1, 3)) and (v_emplid) length = 4 and substr (v_emplid,-1, 1) to ("B", "C", "I, 'K', 'P', 'U'))
    or ((a.emplid = v_Emplid) and length = 4 (v_emplid))
    or ((substr (a.emplid, 1, 4) = substr (v_Emplid, 1, 4)) and length (v_emplid) = 5 and substr (v_emplid,-1, 1) to ("B", "C", "I, 'K', 'P', 'U'))
    or ((a.emplid = v_Emplid) and length (v_emplid) = 5)
    or ((substr (a.emplid, 1, 5) = substr (v_Emplid, 1, 5)) and length (v_emplid) = substr (v_emplid, 1, -1) and 6 in ("B", "C", "I, 'K', 'P', 'U'))
    or ((a.emplid = v_Emplid) and length = 6 (v_emplid))
    or ((substr (a.emplid, 1, 6) = substr (v_Emplid, 1, 6)) and length (v_emplid) = 7 and substr (v_emplid,-1, 1) to ("B", "C", "I, 'K', 'P', 'U')));
    IF SQL % NOTFOUND THEN
    INSERT INTO ps_dm_addr_chg_emp (emplid)
    VALUES (v_Emplid);
    END IF;
    END;

    Hello

    It would be helpful if you could post code formatted using

     tags. Learn more from FAQ
    
    To test your trigger - You may want to create a temparory table and have an insert statement for the temp table in your trigger and test it by updating other columns of your main table. 
    
    Also you may want to ensure it is not the UPDATE statement which is causing the trouble for you by updating some unintended rows...
    
    Regards,
    Rakesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    
  • What is the best way to refresh the table after autosubmit (10.1.3.4)

    What is the best way to refresh the table after autosubmit?

    I have a page that contains a table where if one of the fields is changed it autosubmitted where the view object changes some attributes, based on the field having been changed. I need these modified attributes that appear in the table. But without doing anything, the only way to see these values is to cause the iterator updated table.

    I've been refreshing the table is having a method in a grain of beacking called "getSystemSettingIter.getCurrentRow ();". This seems to be a bit of a hack for me and I was wondering if there is a better way to get the table to update.

    Thanks in advance!

    Have you tried setting between the two partial page refresh?
    http://www.Oracle.com/pls/as111120/lookup?ID=ADFUI385

    http://download.Oracle.com/docs/CD/E15523_01/Web.1111/b31974/web_form.htm#CACEIEEI

  • How to disable the warning of validation on the calculation (read-only) field in the table

    Is it possible to add a line in a calculation script (JavaScript) that prevents a dialog box of a calculation field validation?

    Scenario:

    • Working with fields in a table inserted.
    • In each line, I have a couple of fields that the user has entered. These fields have a Validation model has allowed that the user must enter the data correctly.
    • There is a calculated field based on the data entered by the users. It is this field that throws a warning dialog box "the value entered for Total_Row1 is not valid. "To ignore the validations for Total_Row1, click on ignore.

    Even if I turn off the Model Validation on fields used for the calculation of the warning dialog box always appears. So, it seems to be isolated in the field of computing.

    The calculation area displays the time and I got it originally set as a Date/time field, but also tried to use a text field (as the calculation should appear as 0:45 for 45 minutes in this area).

    I have a suspicion that the warning appears only because I used an array for formatting fields, as I used similar validation profiles and other calculation fields and see not the message when the fields do not appear inside the table.

    I think of easier workaround would be to disable validation for this particular calculation field, but I have no idea how the script that. Any help appreciated lot.

    CARI

    I discovered the problem.  In a word: it was a mistake by naming the fields.

    • I have fields named with line numbers in the field name (for example FieldName_Row1).
    • and fields calls with FieldName_Row1.formattedVallue must have triggered some confusion.

    As soon as I removed the word 'Row' of file names, the question of the warning dialog validation mystery Adobe Acrobat for the calculation field have disappeared.

    Ago about 3-4 hours of my life that I won't be back... ha - ha but if someone else has the problem, I thought I better share my discoveries

  • Best way to apply the Format mask for the fields in a Table of the ADF

    Hi all

    12.1.3 JDev

    I would like to introduce the price data, quantity etc. fields of the ADF Table of the user interface in a specific format.

    These formats need to be dynamic, because they change according to the locale selected and sometimes they differ in the same locale.

    I tried approach converter custom but not satisfied because it is called several times when it is used in a table of the ADF and when asked that told me that this is the behavior.

    Custom converter of an attribute in a table called several times

    So, please suggest a better way to apply the format mask (which has min & max fractions, grouping, rounding) to the fields in the Table of the ADF.

    Please let me know if you need more information.

    Thank you

    B S Bilodeau.

    The second question, which I've mentioned here is the converter is called several times for each click on the table.

    This isn't a problem, this is the expected behavior (and you can't avoid it).

    Dario

  • I create a form based on two tables that have sequences also. When I create insert only row is inserted in the fields in table first and second fields of the table are empty. Why?

    Mr President.

    I create a form based on two tables that have sequences also. When I create insert only row is inserted in the fields in table first and second fields of the table are empty. Why?

    formdoubletables.png

    the page source is

    <?xml version='1.0' encoding='UTF-8'?>
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                    xmlns:f="http://java.sun.com/jsf/core">
      <af:panelFormLayout id="pfl1">
        <af:group id="Group">
          <af:inputText value="#{bindings.VoucherId.inputValue}" label="#{bindings.VoucherId.hints.label}"
                        required="#{bindings.VoucherId.hints.mandatory}" columns="#{bindings.VoucherId.hints.displayWidth}"
                        maximumLength="#{bindings.VoucherId.hints.precision}"
                        shortDesc="#{bindings.VoucherId.hints.tooltip}" id="it1">
            <f:validator binding="#{bindings.VoucherId.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.VoucherId.format}"/>
          </af:inputText>
          <af:inputDate value="#{bindings.VoucherDate.inputValue}" label="#{bindings.VoucherDate.hints.label}"
                        required="#{bindings.VoucherDate.hints.mandatory}"
                        columns="#{bindings.VoucherDate.hints.displayWidth}"
                        shortDesc="#{bindings.VoucherDate.hints.tooltip}" id="id1">
            <f:validator binding="#{bindings.VoucherDate.validator}"/>
            <af:convertDateTime pattern="#{bindings.VoucherDate.format}"/>
          </af:inputDate>
          <af:inputText value="#{bindings.Credit.inputValue}" label="#{bindings.Credit.hints.label}"
                        required="#{bindings.Credit.hints.mandatory}" columns="#{bindings.Credit.hints.displayWidth}"
                        maximumLength="#{bindings.Credit.hints.precision}" shortDesc="#{bindings.Credit.hints.tooltip}"
                        id="it2">
            <f:validator binding="#{bindings.Credit.validator}"/>
          </af:inputText>
        </af:group>
        <af:group id="g1">
          <af:inputText value="#{bindings.Lineitem.inputValue}" label="#{bindings.Lineitem.hints.label}"
                        required="#{bindings.Lineitem.hints.mandatory}" columns="#{bindings.Lineitem.hints.displayWidth}"
                        maximumLength="#{bindings.Lineitem.hints.precision}" shortDesc="#{bindings.Lineitem.hints.tooltip}"
                        id="it3">
            <f:validator binding="#{bindings.Lineitem.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.Lineitem.format}"/>
          </af:inputText>
          <af:inputText value="#{bindings.VoucherId1.inputValue}" label="#{bindings.VoucherId1.hints.label}"
                        required="#{bindings.VoucherId1.hints.mandatory}"
                        columns="#{bindings.VoucherId1.hints.displayWidth}"
                        maximumLength="#{bindings.VoucherId1.hints.precision}"
                        shortDesc="#{bindings.VoucherId1.hints.tooltip}" id="it4">
            <f:validator binding="#{bindings.VoucherId1.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.VoucherId1.format}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Debit.inputValue}" label="#{bindings.Debit.hints.label}"
                        required="#{bindings.Debit.hints.mandatory}" columns="#{bindings.Debit.hints.displayWidth}"
                        maximumLength="#{bindings.Debit.hints.precision}" shortDesc="#{bindings.Debit.hints.tooltip}"
                        id="it5">
            <f:validator binding="#{bindings.Debit.validator}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Credit1.inputValue}" label="#{bindings.Credit1.hints.label}"
                        required="#{bindings.Credit1.hints.mandatory}" columns="#{bindings.Credit1.hints.displayWidth}"
                        maximumLength="#{bindings.Credit1.hints.precision}" shortDesc="#{bindings.Credit1.hints.tooltip}"
                        id="it6">
            <f:validator binding="#{bindings.Credit1.validator}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Particulars.inputValue}" label="#{bindings.Particulars.hints.label}"
                        required="#{bindings.Particulars.hints.mandatory}"
                        columns="#{bindings.Particulars.hints.displayWidth}"
                        maximumLength="#{bindings.Particulars.hints.precision}"
                        shortDesc="#{bindings.Particulars.hints.tooltip}" id="it7">
            <f:validator binding="#{bindings.Particulars.validator}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Amount.inputValue}" label="#{bindings.Amount.hints.label}"
                        required="#{bindings.Amount.hints.mandatory}" columns="#{bindings.Amount.hints.displayWidth}"
                        maximumLength="#{bindings.Amount.hints.precision}" shortDesc="#{bindings.Amount.hints.tooltip}"
                        id="it8">
            <f:validator binding="#{bindings.Amount.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.Amount.format}"/>
          </af:inputText>
        </af:group>
        <f:facet name="footer">
          <af:button text="Submit" id="b1"/>
          <af:button actionListener="#{bindings.CreateInsert.execute}" text="CreateInsert"
                     disabled="#{!bindings.CreateInsert.enabled}" id="b2"/>     
          <af:button actionListener="#{bindings.Commit.execute}" text="Commit" disabled="#{!bindings.Commit.enabled}"
                     id="b3"/>
          <af:button actionListener="#{bindings.Rollback.execute}" text="Rollback" disabled="#{!bindings.Rollback.enabled}"
                     immediate="true" id="b4">
            <af:resetActionListener/>
          </af:button>
        </f:facet>
      </af:panelFormLayout>
    </ui:composition>
    
    
    
    

    Concerning

    Go to your VO Wizard, select the tab of the entity and to check if both the EO is editable or not.

    See you soon

    AJ

  • Check if all the instances of a field in a table are empty?

    I'm having a problem with the control if all instances of a field in a table are empty. If one is empty I need a message box appears. There is a header line and a line of body with several text fields. The line of the body is set to repeat itself and there are buttons to add and remove lines of the body.

    I had success by checking if all fields are blank in the original line by using the following code:

    if ((this.resolveNode("Page1.Table1.Row3.TextField1").rawValue == null | )) this.resolveNode("Page1.Table1.Row3.TextField1").rawValue == "") || (this.resolveNode("Page1.Table1.Row3.TextField2").rawValue == null | ) this.resolveNode("Page1.Table1.Row3.TextField2").rawValue == "") || (this.resolveNode("Page1.Table1.Row3.TextField3").rawValue == null | ) this.resolveNode("Page1.Table1.Row3.TextField3").rawValue == "") || (this.resolveNode("Page1.Table1.Row3.TextField4").rawValue == null | ) this.resolveNode("Page1.Table1.Row3.TextField4").rawValue == ""))

    {xfa.host.messageBox ("Please complete the table of assessment/implementation." )} , 'Incomplete form' , 1);}

    I guess that in all cases be verified that I have to use the 'resolveNodes' function but I could not make it work. That's what I tried:

    if (( == this.resolveNodes("Page1.Table1.Row3.TextField1").rawValue null | )) this.resolveNodes("Page1.Table1.Row3.TextField1").rawValue == "") || .........)

    Although it works not since .rawValue isn't a function that work with resolveNodes (only resolveNode).

    Should what code I use for this?

    Thanks in advance for any advice.

    Hello

    To be able to check each field in a multiple instances of a table line, you must specify which line you are trying to access to...

    To do this, you must specify the index of the row, this way you can treat each rows in a loop and access each field within this line

    Instead of using resolveNodes, I suggest you use resolveNode... and it should look like this:

    for (var i = 0; i)< page1.table1._row3.count;="">

    If (this.resolveNode ("Page1.Table1.Row3 [" + I.ToString + "]").) TextField1.rawValue == null | this.resolveNode ("Page1.Table1.Row3 [" + I.ToString + "]"). TextField2.rawValue | .......) {

    xfa.host.messageBox ("Please complete the table of assessment/implementation.", "incomplete form", 1);

    break;

    }

    }

    I hope this helps!

  • How do you count multiple columns of a field in a table

    How do you count multiple columns of a field in a table

    Select count (*)

    of user_tab_columns

    where table_name = 'YOUR_TABLE '.

  • How to set the alignment of the field in a table in jdev 11.1.2.3?

    Hello
    How to set the alignment of the field in a table in jdev 11.1.2.3?
    for example: to display a body of numbers in a table as right aligned.
    I tried to put field (amount) VO UI Hint Format Type: Number; Format: 0000.00
    and jspx, flowing, but it doesnot work.
    Thank you.
    Bao

    < af:column sortProperty = "#{bindings." VO1.hints.amount.name}.
    sortable = "true".
    headerText = "#{bindings." VO1.hints.amount.label}.
    ID = "c44" width = "60".
    Align = "center" >
    < af:inputText value = "#{row.bindings.Amount.inputValue} '"
    label = "#{bindings." VO1.hints.amount.label}.
    required = "#{bindings." VO1.hints.amount.mandatory}.
    columns = "#{bindings." VO1.hints.amount.DisplayWidth}.
    maximumLength = "#{bindings." VO1.hints.amount.precision}.
    shortDesc = "#{bindings." VO1.hints.amount.ToolTip}.
    ID = "it58.
    secret = "false".
    inlineStyle = "" text-decoration: overline; ">"
    < f: validator binding="#{row.bindings.Amount.validator}"/ >
    < / af:inputText >
    < / af:column >

    Hello
    To set a field right alignment in a table:
    It doesnot work when InlineStyle-> text-align: right;
    It works when ContentStyle-> text-align: right;

  • Asterisk for the fields in a Table bean

    Hi all

    We put some fields in a table that is advanced and the required attribute is 'yes '. But still it is not the asterisk marks on the ground and therefore difficult for our users to distinguish a required field of those non-mandatory. For all other fields that are outside of a bean from the table, if the required attribute is set to yes, then the asterisk appears.

    Is this a limitation of the OPS? or any other justification behind it?

    In the hope of a quick and accurate response to it :-)

    Thank you
    Amit

    Hello Amit,

    For the column you want to make it mandatory, Create ColumnHeader--> sortableHeader on the particular column and set its property indicator required Yes, no, uiOnly or validatorOnly_ according to your requirement.

    Kind regards
    Swati

  • How can I get photoshop to do not block a new copy of my picture after I applied an action?

    Whenever I have apply a photoshop action, photoshop applies the action to a new copy of my photo.  So if I'm playing with actions, I can get by with tons of copies of the same photograph.  I just want to be able to work on the original file I opened.  How can I get photoshop to do not block a new copy of my picture after I applied an action?

    Hello, perhaps one of the steps of the action is to create a copy of the image. This is a very good tactic if you want to avoid affecting your original image.

    Could you put the action, or a screencap of the action with the deployed action panel, if it's not too long?

  • Analyze the table after loading

    Hi gurus

    Let me know how we analyze the target table after loading to finish using an interface.

    Concerning
    Sree

    Hi Mary,

    There are two ways to do it,

    1. customize your IKM own target of Analyze table step added.

    2. create a procedure of ODI which will analyze the target table and can be called after the success of the loading data.

    Thank you
    Guru

  • Analyze tables after creating indexes

    Hi all

    I created new clues on the production environment, we must analyze tables after creating indexes. Why and what analysis do?

    Thanks for the help.
    Select * from V$version;
    
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    "CORE     10.2.0.4.0     Production"
    TNS for HPUX: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production

    There are so many different options and you'll certainly want to tweak your stats based on your system.
    The best thing to do is to read about dbms_stats:
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14211/stats.htm#PFGRF30102
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14258/d_stats.htm#CIHEHDFB

    Here are a few examples to give you an idea of what they look like and how to perform:

    BEGIN
      DBMS_STATS.GATHER_TABLE_STATS(OWNNAME          => 'schema_name',
                                    TABNAME          => 'table_name',
                                    ESTIMATE_PERCENT => DBMS_STATS.AUTO_SAMPLE_SIZE, --> For really big tables oracle can just do a specific percent
                                    METHOD_OPT       => 'for all columns size 1', --> Defines Histograms, size one disables histograms
                                    DEGREE           => 12, --> The degree of parallelism so you'll see 12 parallel threads gathering stats
                                    CASCADE          => TRUE); --> gather stats on the table's indexes also
    END; 
    
    BEGIN
      DBMS_STATS.GATHER_INDEX_STATS(OWNNAME          => 'schema_name',
                                    INDNAME          => 'index_name',
                                    ESTIMATE_PERCENT => 50,
                                    DEGREE           => 4);
    END; 
    

    You can also do

    DBMS_STATS.gather_schema_stats
    DBMS_STATS.gather_database_stats

    and much more...

    I really want to focus on the need to do your homework on them,
    read the docs I linked and adjust your statistical parameters to fit your db objects and how they are accessed/used.
    Having accurate and meaningful statistics are very important to the performance of the database.

Maybe you are looking for

  • Cannot start the installation of recovery

    Can hey someone please help me? I have a toshiba laptop. The other day I was on it and I went away from the computer and it entered into mode 'sleep'. I came back, the screen was black. I pressed the button for a few seconds and the computer turns of

  • Acquisition of data and filtering on FPGA

    Hi all I have trouble to design a FPGA program for acquisition of data and filtering. I have two NOR 9205 modules configured to work in terminal mode of DIFF, i.e. There are 32 entries this program must read every Ts seconds. (Ts is the time discreti

  • Windows Installer still ask to install and do slow computer

    Whenever I start my computer, install the windows box opens with the preparation to install message in it that never ends. He did slow the response computer and files and programs unable to start or to be consulted, whenever seen the box pop up. I ha

  • How to get files from a deleted user where I chose "do not keep files.

    OK, so I have all my files have recently moved to a different user account and when I deleted this user account, I chose "do not keep files" because the reason why I was moving was because it was not a lot of space. Then, I realized that I didn't tra

  • Player Windows 12 will not allow streaming on a single computer with ATT

    Windows player 12 will not allow streaming on a single computer with ATT but goes with another computer.  When streaming is selected, it refers to the administration tools.  Now what?