Default values is not to be set when using write back.

I have my write back Option work correctly (using the update query).
But when the text box appears in the dashboard shows default 10.00.
If I change that 120 and update the value, it is updated successfully in the database as 120, but still the value of text box in dashboard going on at 10:00

Has anyone before this show? Help, please...

Have you try to delete the cache of your query to the transom of Scripture. It is an option in your physical table in the physical layer of the BI server.

See you soon
Nico

Tags: Business Intelligence

Similar Questions

  • Reset the default value does not

    'Reset to the default value' does not work for my ListBox multicolumn, but it works for my string flags.  Someone at - he never encountered this before?

    I tried to remove all the elements and setting "default value to', but after another execution of the program, still not reset to nothing.  I have to do it programmatically in my code, and I can't do using the server reference VI Reset at the same time.  I have to define arrays of strings individually to null.

    I use a large number of nodes of property in my loop of consumer to read/write the values in the front panel.  Not sure if this is related.

    Thank you.

    This occurs because the value of a multicolumn listbox is a digital scalar or table (depending on the selection mode of the control) Express which line or the currently selected cell.

    "Reset to default" only resets the values and no other properties. In this case, it is the property of ref that hosts that we consider intuitively the value of listbox mc, but it's not.

  • default value is not taken

    When I use the default keyword, it should take values by default if the value inserts are omitted.
    SQL > create table ee (eno number hire_date, date default sysdate)
    2.

    Table created.

    SQL > insert into ee values(101,null);

    1 line of creation.

    SQL > commit;

    Validation complete.

    SQL > select * EA;

    ENO HIRE_DATE
    ---------- ---------
    101
    The default value is not taken...
    Why the statement fails... ?
    SQL>  insert into ee(eno)values(101);
    
    1 ligne créée.
    
    SQL> select * from ee;
    
           ENO HIRE_DATE
    ---------- ----------
           101 2009-03-11
    
    SQL> insert into ee values(102,null);
    
    1 ligne créée.
    
    SQL>  select * from ee;
    
           ENO HIRE_DATE
    ---------- ----------
           101 2009-03-11
           102
    
    SQL> 
    
  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • AF:inputListOfValues sets the value of the first item in the result set when using enter key or tab and component value autosubmit = true

    I use JDev 11.1.1.6 and when I type in a value in an af:inputListOfValues element and press enter or the tab key, it will replace the value I entered with the first element in the set of results LOV. If enter a value, simply click on the component af:inputListOfValues it works correctly. If I use the popup and find a value it works properly as well. I have a programmatic view object that contains a single transitional attribute (this is the view object that is used to create the list of the components of the value of) and then I have another object from view based on entities which defines one of its attributes in a list of the attribute value. I tried to use a base object view of entity to create the LOV to and everything works as expected, so I don't know if this is a bug when using programmatic view objects or if I need more code in the VOImpl. In addition, it seems after that first of the value being replaced by the first value in the result set that it will work correctly as well. Here are some excerpts of important code.

    Also, it seems that this does not work only if the text entered in the component af:inputListOfValues would have only a single game, returned in the result set. For example, given the result defined in code: Brad, Adam, Aaron, Fred, Charles, Charlie, Jimmy

    If we get into Cha, the component works as expected

    If we register A, the component works as expected

    If we get Jimmy, the component does not work as expected, and returns the first value of results IE. Brad

    If we get Fred, the component does not work as expected, and returns the first value of results IE. Brad

    I also checked that I get the same behavior in JDev 11.1.1.7

    UsersVOImpl (programmatic view with 1 transitional attribute object)

    import java.sql.ResultSet;
    
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    
    import oracle.adf.share.logging.ADFLogger;
    
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    
    // ---------------------------------------------------------------------
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Wed Sep 18 15:59:44 CDT 2013
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    // ---------------------------------------------------------------------
    
    public class UsersVOImpl extends ViewObjectImpl {
    
        private static ADFLogger LOGGER = ADFLogger.createADFLogger(UsersVOImpl.class);
        private long hitCount = 0;
    
        /**
         * This is the default constructor (do not remove).
         */
        public UsersVOImpl () {
        }
    
        /**
         * executeQueryForCollection - overridden for custom java data source support.
         */
        protected void executeQueryForCollection (Object qc, Object[] params, int noUserParams) {
    
             List<String> usersList = new ArrayList<String>();
             usersList.add("Brad");
             usersList.add("Adam");
             usersList.add("Aaron");
             usersList.add("Fred");
             usersList.add("Charles");
             usersList.add("Charlie");
             usersList.add("Jimmy");
    
             Iterator usersIterator = usersList.iterator();
             setUserDataForCollection(qc, usersIterator);
             hitCount = usersList.size();
             super.executeQueryForCollection(qc, params, noUserParams);
    
        } // end executeQueryForCollection
    
        /**
         * hasNextForCollection - overridden for custom java data source support.
         */
        protected boolean hasNextForCollection (Object qc) {
    
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             if (usersListIterator.hasNext()) {
         
                 return true;
    
             } else {
    
                 setFetchCompleteForCollection(qc, true);
                 return false;
    
             } // end if
    
        } // end hasNextForCollection
    
        /**
         * createRowFromResultSet - overridden for custom java data source support.
         */
        protected ViewRowImpl createRowFromResultSet (Object qc, ResultSet resultSet) {
    
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             String user = (String)usersListIterator.next();
             ViewRowImpl viewRowImpl = createNewRowForCollection(qc);
    
             try {
    
                 populateAttributeForRow(viewRowImpl, 0, user.toString());
    
             } catch (Exception e) {
    
                 LOGGER.severe("Error Initializing Data", e);
                 throw new JboException(e);
    
             } // end try/catch
    
             return viewRowImpl;
    
        } // end createRowFromResultSet
    
        /**
         * getQueryHitCount - overridden for custom java data source support.
         */
        public long getQueryHitCount (ViewRowSetImpl viewRowSet) {
             return hitCount;
        } // end getQueryHitCount
    
        @Override
        protected void create () {
    
             getViewDef().setQuery(null);
             getViewDef().setSelectClause(null);
             setQuery(null);
    
        } // end create
    
        @Override
        protected void releaseUserDataForCollection (Object qc, Object rs) {
    
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             usersListIterator = null;
             super.releaseUserDataForCollection(qc, rs);
    
        } // end releaseUserDataForCollection
    
    } // end class
    
    

    <af:inputListOfValues id="userName" popupTitle="Search and Select: #{bindings.UserName.hints.label}" value="#{bindings.UserName.inputValue}"
                                                  label="#{bindings.UserName.hints.label}" model="#{bindings.UserName.listOfValuesModel}" required="#{bindings.UserName.hints.mandatory}"
                                                  columns="#{bindings.UserName.hints.displayWidth}" shortDesc="#{bindings.UserName.hints.tooltip}" autoSubmit="true"
                                                  searchDesc="#{bindings.UserName.hints.tooltip}"                                           
                                                  simple="true">
                              <f:validator binding="#{bindings.UserName.validator}"/>                       
    </af:inputListOfValues>
    
    
    
    

    I found a solution to this problem. It seems that, when using a view object programmatic that has a transient as its primary key attribute, you need to override the methods in the ViewObjectImpl so that he knows how to locate the line related to the primary key when the view object records are not in the cache. That's why it would work properly sometimes, but not always. Here are the additional methods that you must override. The logic you use in the retrieveByKey would be on a view view object database object and would be different if you had a primary key consisting of multiple attributes.

    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i) {
        return retrieveByKey(viewRowSetImpl, null, key, i, false);
    }
    
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, String string, Key key, int i, boolean b) {
    
        RowSetIterator usersRowSetIterator = this.createRowSet(null);
        Row[] userRows = usersRowSetIterator.getFilteredRows("UserId", key.getAttribute(this.getAttributeIndexOf("UserId")));
        usersRowSetIterator.closeRowSetIterator();
        return userRows;
    
    }
    
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i, boolean b) {
        return retrieveByKey(viewRowSetImpl, null, key, i, b);
    }
    
  • Default value does not appear is not for OAMessageTextInputBean

    Hi friends,

    I'm trying the earned on the OAMessageTextInputBean default. I also debugging messages in the central and this shows that the new value is used. BU that this value is not displayed in the field. However when I click on the page to customize and then return to the page by clicking the back to demand I am able to see the value. This position is similar to the next station.

    https://community.Oracle.com/message/9133380

    The message by the creator of the post says that "I called setForwardURLToCurrentPage() first and in the processRequest, I used setText().". I tried this but it does not work. Can someone please. Here's the code.

    Thanks in advance

    package xxalm.oracle.apps.ar.hz.components.address.webui;

    import com.sun.java.util.collections.HashMap;
    import java.io.Serializable;
    import java.util.Hashtable;
    import java.util.Vector;
    Import oracle.apps.ar.hz.components.base.webui.HzPuiBaseCO;
    Import oracle.apps.ar.hz.components.util.webui.HzPuiWebuiUtil;
    Import oracle.apps.fnd.common.MessageToken;
    Import oracle.apps.fnd.common.VersionInfo;
    Import oracle.apps.fnd.framework.OAApplicationModule;
    Import oracle.apps.fnd.framework.OAException;
    Import oracle.apps.fnd.framework.server.OADBTransaction;
    Oracle.apps.fnd.framework.webui import. *;
    Import oracle.apps.fnd.framework.webui.beans.OADescriptiveFlexBean;
    Import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    Import oracle.apps.fnd.framework.webui.beans.form.OAFormValueBean;
    Import oracle.apps.fnd.framework.webui.beans.layout.OAMessageComponentLayoutBean;
    Oracle.apps.fnd.framework.webui.beans.message import. *;
    Import oracle.apps.fnd.framework.webui.beans.message.OAMessageTextInputBean;
    Import oracle.apps.fnd.framework.webui.beans.table.OATableBean;
    Import oracle.jbo.common.Diagnostic;
    Import oracle.jbo.domain.Number;
    Import oracle.apps.ar.hz.components.address.webui.HzPuiAddressCreateUpdateCO;
    Import oracle.apps.fnd.framework.OAException;
    Import oracle.apps.fnd.framework.webui.OAWebBeanConstants;

    SerializableAttribute public class XXHzPuiAddressCreateUpdateCO extends HzPuiAddressCreateUpdateCO
    {
    public XXHzPuiAddressCreateUpdateCO() {}

    ' public void processRequest (OAPageContext oapagecontext, OAWebBean oawebbean) {}
    super.processRequest (oapagecontext, oawebbean);
    oapagecontext.writeDiagnostics (this, ' in processRequest", 2);
    OAMessageTextInputBean add2Bean = (OAMessageTextInputBean) oawebbean.findChildRecursive ("HzAddressStyleFlex2");
    If (add2Bean! = null) {}
    add2Bean.setRequired ("Yes");
    add2Bean.SetValue (oapagecontext, "HI");
    oapagecontext.writeDiagnostics (this, 'in' add2, 2);
    }
    OAMessageTextInputBean add3Bean = (OAMessageTextInputBean) oawebbean.findChildRecursive ("HzAddressStyleFlex3");
    If (add3Bean! = null) {}
    add3Bean.setRequired ("Yes");
    }
    oapagecontext.setForwardURLToCurrentPage (null, true, OAWebBeanConstants.ADD_BREAD_CRUMB_NO, OAWebBeanConstants.IGNORE_MESSAGES);
    oapagecontext.setForwardURLToCurrentPage (null, true, OAWebBeanConstants.ADD_BREAD_CRUMB_NO, OAWebBeanConstants.IGNORE_MESSAGES);
    }
    ' Public Sub processFormRequest (OAPageContext oapagecontext, OAWebBean oawebbean) {}
    super.processFormRequest (oapagecontext, oawebbean);
    }
    }

    Jaya Hey,

    This is resolved. I used the setText and it worked. But a question

    Based on the different approach if it's a VO field and field control

    Thank you

  • How to select the default value for a choice of selection when page.jsff load

    Hello everyone, I am newbie have little problem

    I have problem with soc (selectOneChoice)
    in this case I ' to select the default value of af: SelectOneChoice (select first selectItem) when the page is finished loading

    < af:selectOneChoice label = "" Jenny Bahan: "id = 'soc1'"
    autoSubmit = 'true '.
    valueChangeListener = "#{WHStockSetReleaseBean.cekJenisBahan} '"
    Binding = "#{WHStockSetReleaseBean.v_jenisBahan}" >
    * < af:selectItem label = "GBB" value = "GBB" id = "si2" / > * = > i'want to select this value for the default (select first selectItem)
    < af:selectItem label = "GBP" value = "GBP" id = "si1" / >
    < / af:selectOneChoice >

    If someone help me to solve this problem

    THX
    agungdmt

    Hello

    try to set the attribute value to af:selectOneChoice like that.

    
    

    Kind regards
    Sicard.

  • I have a problem in direct charge of path where the default values are not met when using the CSV file to load into the database while his is filled everything in plain insert queries

    -The header of the control file, I added a load direct method(append mode)

    OPTIONS(direct=true,Parallel=true,skip_index_maintenance=true,skip_unusable_indexes=true)

    DATA RELATING TO SUNK COSTS

    ADD

    INSERT INTO TEST_TBL

    (

    col1,

    ...

    Col n-2

    );

    Try to use the classic path instead.  With the direct path, many constraints and triggers, and others are disabled.  Please see the next section of the online documentation.

    https://docs.Oracle.com/database/121/Sutil/GUID-973925DA-8F86-49C1-A707-4564DC3B57AE.htm#SUTIL1330

  • APP-FND-00806: the default value is not valid for the p_period_from segment

    We get this error when a user selects a date that is two years of one of our custom reports. I am fairly new to value sets, so I'm not sure what to include here. The parameter on which the problem has a custom value game which is a list of standard date format type values, but there is no validation of value.

    I have watched a few other items of metalink but have not yet find something that could solve this problem.

    Have you reviewed these docs?

    R12 - Standard presentation on how error - APP-FND-00806 the value xxxxxxis default invalid segment. ledger_id [815823.1 ID]
    "APP-FND-00806' error executing create accounting to the custom help responsibility [ID 1300931.1] program."
    Create accounting assets cannot be run from custom responsibilities [ID 1257416.1]
    Create accountants Fail with error APP-FND-00806 [ID 1189102.1]
    Impossible to run some reports of responsibility related to the custom Application APP-FND-00806 [ID 1436456.1]

    Thank you
    Hussein

  • Linksys E2100 - reset to the default values does not

    Hi, I just bought a used E2100 auction sale, when I plug it I see an 'unnamed' network with lots of bars wireless, but cannot connect because I don't know the ssid and password

    Connecting cable with ipconfig, I get a 10.10.10.108 ip, the bridge is 10.10.10.99. Yet I also can't access.

    I tried the reset down, button for more than one minute, pushing quickly, holding for 30 seconds, holding and the fact unplugging + reconnected the router, but nothing helped.

    I also tried the CD that accompanies it with cable and wifi only, but it does not find the router. I deleted my network wireless by default settings, had my wifi on, was not connected to any network, but the CD did could not find the router.

    When the router is enabled, the WIFI led flashes around once per second, while the LAN led flashes randomly as it should.

    I was wondering if there is anything else I can do?

    Thank you.

    He has no doubt DD - WRT or some other third-party firmware on this subject and they disabled the reset button.

    You can try combinations of username/password of root/admin name.

    Most likely, you will need to find another router. I hope that you do too much for her at the auction. You can buy a router from linksys refurb really cheap out of the home Bank. More safe too.

    Edit: E4200v1 supports the third-party firmware and is probably a better router than the E2100L. The E4200v2 does not support third-party firmware.

  • ChoiceField default value does not match the visible value

    I'm creating an ObjectChoiceField and have noticed a strange behavior.

    As soon as the application loads I see that choice at index 0 is the selected choice. However, if I call mychoice.getSelectedIndex () returns 1. I even tried to call this.setSelectedIndex (0) in the constructor, but it remains 1. If anyone has experienced this?

    NVM. freakin ' getIndex/getSelectedIndex are too similar!

  • Not selectable DataGrid row when using the custom itemRenderer

    I placed created an itemRenderer customized for use in a DataGrid in Flex 3.2, however, when I click in the cell in the grid using this itemRenderer, the line is not selected. (the DataGrid.selectable property is set to true).  Abolition of the use of the converter back the expected features. Here is my renderer object, is there any reason why I should expect this behaviour?  I have other itemRenderers not causing this, but their anatomy is the same... nothing manifestly different about them.

    Thank you

    Muaddib

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:mx mx:HBox ' http://www.Adobe.com/2006/MXML "
    Width = '100% '.
    horizontalAlign = "center" >
    < mx:Script >
    <! [CDATA]
    public private static var millisInSec:int = 1000;
    public private static var millisInMin:int = 60 * millisInSec;
    public private static var millisInHour:int = 60 * millisInMin;
    public private static var millisInDays:int = 24 * millisInHour;
    public private static var unknownMsg:String = "UNKNOWN";

    public var _data: Data;
    private var _valueUpdated:Boolean = false;

    private void getFriendlyFormat(millis:Number):String {}

    ...

    formattedString return;
    }

    override public function set data(value:Object):void {}
    if(null == value)
    return;

    var newData: Data = value in the form of data;
    If (newData! = _data) {}
    _data = newData;
    _valueUpdated = true;
    }
    }

    override protected function commitProperties (): void {}
    {if (_valueUpdated)}
    var finalDate:Date = new Date();
    Update 'timeLabel"according to on_data
    _valueUpdated = false;
    }
    }
    []] >
    < / mx:Script >
    < mx:Label id = "timeLabel" / >
    < / mx:HBox >

    If you are not ' going to call super.data = value, you should probably have a get

    According to the data

  • I can not access Comcast webmail when using Firefox as my browser.

    I had no problem accessing my Web of Comcast email account until today. I have no problem to access my Comcast home page, but when I click on send, it just continues "connecting" no matter how long wait. No error message.

    Note that your system details list shows several Flash plugins.

    • Shockwave Flash 15.0 r0
    • Shockwave Flash 11.4 r402

    You can find the installation path of the plugins on the topic: plugins page.

    You can view the installation folder of Flash player for multiple Flash player plugins and delete older versions of the plugin (NPSWF32) and possibly (re) install the latest Flash Player.

    • (32-bit Windows) C:\Windows\System32\Macromed\Flash\
    • (Windows 64 bit) C:\Windows\SysWOW64\Macromed\Flash\
  • Problems with the photos in El Capitan-cant app drag in other applications and can not find the photos when using Word

    I feel very disappointed with the new iMac (27 inch high range) I bought specifically so that I can work quickly with video editing - BUT who currently my old iMac with Snow Leopard on my desk and still use it to create documents in Word, etc, among other things. He really miss the old iPhoto - all about it. Not like the new photos app at all and I was wondering if I can install iPhoto on the new computer? We're stuck with the white background of the screen and do not like the new editing panel either - I had my screen tonic to a shade of gray that is visually not too exhausting to watch as the white. Is there a way to customize the color of the workspace I have forgotten?

    I'm not also able to drag and drop photos from the app directly in other applications - this was a great feature that could work very quickly. Can't believe that Apple went backwards with this? Or am I still missed something once?

    Also, now, I tried to create a new document in Word and when you open the photo browser to import an image from photos in the document, there is no pictures - all other media is accessible but no pictures, not so to drag picture on the desktop then document - once again, having Apple went backwards , or I'm going crazy?

    Hoping that I do not regret this purchase very expensive!

    A beautiful (and expensive) iMac. Congratulations.

    The latest version of iPhoto still works in (a little hard to get 'quiet' Photos.app) ElCapitan, see a lot of discussions here.

    Drag-and - déposer is depending on the applications. There is still work, as usual.

    Word is updated to the latest? I heard there were a few problems, but they should be solved now.

    Lex

  • Portege A600 - 15G - incorrect APN is set when using 3 G modem

    I encountered a problem with my Portege A600 - 15G:
    It has a 3G modem integrated with an installed sim card.

    When I use the MTS (Russia, 250 01 code network) mobile operator, it uses wrong APN: mts.internet.ru instead of internet.mts.ru.

    When I change it manually in the options for Wireless Manager, it works correctly until the laptop restarts.
    After the reboot it again uses incorrect APN.

    I scanned the registry, but did not find "mts.internet.ru". Possibly the Wireless Manager stores NPP in a dll.

    Maybe someone had a similar problem? How can I solve this problem?

    WBR, Alex.

    Hi Alex

    Find the ConnectionProfiles.csv file. I'm sure you know what you need to change. :) Reset.
    You are using vista or xp?

    /Nifer

Maybe you are looking for

  • Satellite L300D-10B: how to increase shared memory?

    Hi, I have a noob question q :) I use XP Professional.My L300D-10B, using the Videocard ATI Radeon X 1200 Seris with 800 MB shared memory, but the work on 128.I have a question; How can I up to 256? There were just 800?I have 2 GB of RAM and I think

  • Pavilion: Support recovery - so frustrated!

    My 13 month old Pavilion had a complete hard drive failure.  He was replaced by Best Buy (two weeks out of warranty) so that the cost of the hard drive... but HP says I have to pay for the recovery media.  I get that he died two weeks too late and th

  • Evaluation of SQL Server Standard Version 2016 features

    Hello We are looking to test the new functionality of availability (SAC) Basic groups in SQL Server 2016 Standard Edition. So far, I have not been able to find a copy of the standard evaluation. Is there a way that we can get your hands on one to tes

  • 32-bit Windows Imaging Component (WIC) download

    I have reinstalled my software on my computer and I was instructed that I must download 32-bit Windows Imaging Component (WIC). There are many downloads with different extensions.  How do you know that one to download?

  • How can I stop the songs of copy as well as on file when I sync in WMP 11 for my device

    Whenever manually copy or move songs to synchronize songs copy on my mp3 player in separate folders. Which is fine, but the files contain only one song per folder. SO, I have to move the songs one by one in each folder where I want that they. Is anyw