Working with LOV

Hi all.
hoe to deal with LOv after assigning it to a text field??, let's say that the LOV will retrieve supplier numbers and names into the text field (supplier_no),
Then is there a trigger to write? or that is enough\????
Thank u very much,,
Tasneem

Hi Tasneem
is there a trigger to write? or that is enough\????KEY-LISTVAL,POST-CHANGE, WHEN-VALIDATE-ITEM, POST-TEXT-ITEM, etc. triggers
u can look for it in nthe on-line help of forms or use...
DECLARE
v_return boolean;
BEGIN
v_return := show_lov('ur_lov_name');
END;or u can writye this code in WHEN-BUTTON-PRESSED Trigger...
Hope this helps...
Regards,
Amatu Allah

Similar Messages

  • How to make "Duplicate Row" button work with LOV

    Hi,
    I am using JDeveloper version: Studio Edition Version 10.1.3.1.0.3984
    JHeadstart version: 10.1.3.1 Release 10.1.3.1.26
    We have a VO where there are 2 EOs - one is Updatable and one is Reference.
    We are using Association for the Reference EO.
    In the page we have a LOV and from the LOV we are redirecting some fields including some fields for the Reference EO (to show only).
    Everything works fine.
    But the problem is, - we checked the "Show Duplicate Row Button?" option in the Application Definition file.
    when we click the "Duplicate Row" button then we get the error:
    javax.faces.el.EvaluationException: oracle.jbo.ReadOnlyAttrException: JBO-27008: Attribute set for UserId in view object Userpermission_under_Personalinfo_View_for_Owner failed
    the attribute UserId is from Reference EO in the VO.
    Can anybody suggest how we can make the duplicate work in this case?
    And one more thing - If we check the "Show Duplicate Row Button?" option in JHeadstart Application Definition file, it shows the "Duplicate Row" button in the table layout. Is there any way so that we can put the "Duplicate Row" button in the form layout or do we have to do it using a .vm file modification ?
    Any suggestion would be appreciated.
    Thanks
    Syed Jabbar
    University of Windsor
    Windsor, ON, Canada

    Syed,
    This is fixed in a later JHeadstart 10.1.3 release.
    If you don't want to upgrade, you need to override the duplicate row method in JhsCollectionModel as follows:
    public void duplicateRow(ActionEvent event)
    DCIteratorBinding ib = getRangeBinding().getIteratorBinding();
    int rangeSize = ib.getRangeSize();
    int rowsInRange = ib.getAllRowsInRange().length;
    int insertPos = 0;
    if (!isNewRowsAtTop())
    insertPos = rowsInRange < rangeSize? rowsInRange: rangeSize - 1;
    Row currentRow = ib.getCurrentRow();
    Row row = ib.getRowSetIterator().createRow();
    row.setNewRowState(Row.STATUS_NEW);
    ib.getRowSetIterator().insertRowAtRangeIndex(insertPos, row);
    AttributeDef[] attrs = ib.getAttributeDefs();
    for (int i = 0; i < attrs.length; i++)
    if (!attrs.isPrimaryKey() &&
    (attrs[i].getUpdateableFlag() == AttributeDef.UPDATEABLE ||
    attrs[i].getUpdateableFlag() ==
    AttributeDef.UPDATEABLE_WHILE_NEW))
    String attrName = attrs[i].getName();
    row.setAttribute(attrName, currentRow.getAttribute(attrName));
    ib.setCurrentRowIndexInRange(insertPos);
    discloseRow(row, true);
    Steven Davelaar,
    JHeadstart team.

  • Problems with LOVs

    I'm working with ADF 11g, and I have a problem when i work with LOVs.
    I have a table in my database which has a composite primary key of 4 fields (columns). I have also created a viewObject for this table and i have added a list of values to each field. After this, i created an ADF Table in my JSF page.
    When i execute my page i have problems editing and creating a register, as only the first LOV it's available. The other LOVs don't open when I select them.
    I'm working with more pages with some LOVs in each of them and they work fine. I only found problems while working with pages that have composite primary keys.
    Could you please tell me a way to solve this?
    Thank you in advance.

    In the EO and VO I've checked the option "While New" in the four fields of primary key.
    If I make AM Tester, works properly. However, in jspx page I get an error when trying to open the second LOV.
    <RegistrationConfigurator><handleError> Server Exception during PPR, #1
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'row' resolved to null
         at com.sun.el.parser.AstValue.getTarget(AstValue.java:67)
         at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:126)
         at com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:230)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:481)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:395)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.wasSubmitted(EditableValueRenderer.java:342)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.decodeInternal(EditableValueRenderer.java:116)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.decodeInternal(SimpleInputListOfValuesRendererBase.java:94)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.decodeInternal(LabeledInputRenderer.java:55)
         at oracle.adf.view.rich.render.RichRenderer.decode(RichRenderer.java:293)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1121)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:715)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processDecodes(UIXComponentBase.java:816)
         at org.apache.myfaces.trinidad.component.UIXEditableValue.processDecodes(UIXEditableValue.java:236)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1175)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1413)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1073)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1383)
         at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:544)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:161)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:675)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:313)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

  • I followed all the directions to get Norton 360 to work with Firefox 8, but nothing works. I love Firefox, but if my Norton 360 won't work with it I'll be stuck with IE, which I do not like. Please Help Me!

    I followed all the directions to get Firefox 8 to work with my Norton 360, but nothing has worked. Is there anything else I can do? I didn't know there was an issue when I first upgraded to Firefox 8 so didn't choose the Norton plug ins immediately so I uninstalled Firefox hoping to be able to do it correctly when I Downloaded it again. Unfortunately it didn't ask me any thing regarding Norton so I went to Plug ins as directed to Enable Norton 360's plug ins, but none were listed.
    What can I do now? I LOVE Firefox! If we can't make it work I'll be stuck with Internet Explorer which I do not care for at all!
    I need to have Norton Security to protect my computer. Please help me find a solution to this problem ASAP.
    Thank you,
    Susan L Woods
    [email protected]

    Hi Susie, I use Norton 360 and have the latest Firefox 8 installed is working fine for me. Firefox 8 support for [http://community.norton.com/t5/Norton-360/Firefox-8-Support-for-Norton-Toolbar/td-p/581640 Norton Toolbar] was released on Nov 8th. Install the appropriate add-ons based on the version of Norton 360 you're using (see official Norton link above). Hope this helps.

  • I would like to know is McAfee's SiteAdvisor - a feature I love using in Firefox 3.6 works with Firefox 4 before I upgrade, or another add on that's recommended for secure web browsing.

    I'm thinking of upgrading to Firefox 4 but want to verify that most of my add ons should work before doing so. I'm a big fan of McAfee's SiteAdvisor & how websites are color-coated to let you know the quality of the site. I want to know if it's compatible with Firefox 4 or if not what would be a comparable feature. Thanks!

    You have found the correct place. Just continue asking your questions here in this thread.
    Reading some of the help article may be of assistance in getting started.
    * [[Firefox Hello - video and voice conversations online]]
    * [[Where is the Firefox Hello button?]]
    * [[Join a conversation on Firefox Hello]]
    * [[Which browsers will work with Firefox Hello?]]
    * [[Create and manage your contacts list on Firefox Hello]]

  • Adobe Creative Cloud does not support Bootcamp by Apple IOS operating system, but does work with boot camp Win 8.1 why"

    Adobe Creative Cloud does not support APPLE latest IOS operating system, but does allow Windows 8.1 to be accepted. This seems a shame to me, as
    Apple IOS is the leader in graphics, photography. The advertising states it is usable under both APPLE IOS and Microsoft 8.1 windows operating systems. Adobe Support Chat Sooraj tells me on 02/19/2015 that i must buy two computers to have it operate on both operating systems. Adobe will not support apple's Boot CAMP allowing both operating systems.
    i love the apple product and love the ADOBE Photoshop CC, but it simply does now work with an apple keyboard and a WiN operating system. .[email protected]  Adobe Creative Cloud

    In Thehatters defence, this was initially posted in the MacbookPro forum and then moved to Boot Camp,
    If you have any joy solving your trackpad device driver issue, feel free to post here (there might be a similar fix for my  wireless adapter device)
    Thanks

  • Problem Working With Framemaker 9 Dita XML Files in Framemaker 10

    I just upgraded to Framemaker 10. I am encountering a number of problems when I try to work with my Dita XML help topics, which were last saved in Framemaker 9 format.
    1. Using the Default Dita Template
    When I open one of my documents in Framemaker 10, the Dita 1.2 template ditabase.fm is automatically applied. Everything seems fine. But then when I convert the XML to Eclipse help (which is essentially html, so we're going from XML to HTML) using Dita Open Toolkit ant scripts, I see this message:
    [pipeline] [DOTJ013E][ERROR] Failed to parse the referenced file 'html\c_licensing.xml' due to below exception. Please correct the reference base on the exception message.
    [pipeline] c_licensing.xml Line 25:Attribute "xmlns:ditaarch" must be declared for element type "dita".
    I then opened the xml  file in a text editor, and I saw this on line 25:
    <dita xmlns:ditaarch = "http://dita.oasis-open.org/architecture/2005/">
    Line 25 looks fine to me. Am I missing something? 
    2. Switching to a 1.1 Dita Template
    I tried to work around the above problem. In Framemaker, I tried to set a different structured application as the default one. I closed all files and chose the default Dita 1.1 structured application (it defaults to the Dita 1.1. Composite app.)
    Then I tried to open my file: I got this message inside Framemaker:
    "Validation of XML failed. Continue?
    Error at [FILE PATH], line 25, char 72, Message: Attribute '{http://www.w3.org/2000/xmlns/}ditaarch' is not declared for element 'dita'
    Sounds familiar, doesn't it?
    I switched from the default Dita 1.1. Composite structured application to the Dita 1.1. Topic structured application. Then I dirtied the source file and saved it. The messages I got in FrameMaker log window included the one above, plus I got a variety of Unknown Element messages, things like this:
    Unknown element dita,
    unknown element concept,
    various attributes are not declared for concept,
    unknown element conbody.
    If I switch back to the Dita 1.1 Composite application all of these messages diappear except for this one:
    Attribute '{http://www.w3.org/2000/xmlns/}ditaarch' is not declared for element 'dita'
    My ant conversion scripts from the Dita Open Toolkit are still unable to process this file. They give the same message as is listed in (1) above and the file is not converted to HTML.
    Can anyone help me with this problem? I've also posted this question to the Dita Users Group on Yahoo Groups. If I get an answer in one place, I'll post it in the other.
    Thanks,
    Nina P.

    I really appreciate all the help you are providing with this, Scott. I tried your latest suggestions. Here's what happened:
    Application Mappings:
    I figured out how to add my "BigPage" structured application to the Applications Mappings dialog. I made a new "BigPage"  mapping type, then figured out the non-intuitive part: how to add my individual BigPage topic types to it.  I closed and reopened FrameMaker opened my test document, and, as before (before I did the application mappings) I saw my BigPage applications listed in the Structure Tools > Set Structured Application drop-down. I selected the appropriate application (in this case it was DITA1.1-BigPage-Reference-FM and clicked the "Set" button. 
    It is at this point in Framemaker 9 (and also once, in FrameMaker 10, early in this process, but I haven't been able to replicate it since) that the page size would change to tabloid size, indicating that the document was using the template from the BigPage reference structured application, not the regular DITA1.1 reference application. But this did not happen.
    I tried saving the document, closing it, and reopening it. Once again the default structured application assigned to that document was "reset" to DITA1.1-Reference-FM.  But the fact that the page size did not immediate refresh to tabloid size told me that although I did select the BigPage application in the drop-down, it wasn't being applied.
    Public IDs:
    The public ID in my test reference XML file is:  <!DOCTYPE reference PUBLIC "-//OASIS//DTD DITA Reference//EN" "reference.dtd" [
    The four public IDs in the DITA1.1-BigPage-Reference-FM entry in structapps.fm (in the Entity Locations section) are:
    -//OASIS//DTD DITA Reference//EN 
    -//IBM//DTD DITA Reference//EN
    -//OASIS//DTD DITA Composite//EN
    -//IBM//DTD DITA Composite//EN
    Do you see anything wrong with the above? .
    Directory Structure: 
    Maybe I cloned the application incorrectly?  Here's what I did:
    1. In C:\Program Files (x86)\Adobe\AdobeFrameMaker10\Structure\xml, I copied the folder called DITA and pasted it into the same directory. I renamed this folder DITA-BigPage
    2. Inside DITA-BigPage, I opened the app folder. Inside each subfolder in app, DITA-Reference-FM, for example, I opened the edd file in Framemaker. In this case, the edd file name was reference.edd.fm.
    3. I edited the top line of reference.edd.fm.  It originally said:
    Structured Application: DITA1.1-Reference-FM.
    I changed it to say:
    Structured Application: DITA1.1-BigPage-Reference-FM
    4. I saved the EDD file. Then I opened the template file in the same folder. It was called: reference.template.fm.
    5. In reference.template.fm, I first changed my page size: Format Menu > Page Layout > Page Size > Tabloid > Set.
    6. Then I imported the element definitions from the corresponding EDD file:  File > Import > Element Definitions > reference.edd.fm > Click Import > Click OK to dismiss verification message.
    7. I repeated the above process for all topic-type folders. For the maps types, I did not change the page size, as these will never display as topics in my online  help. I did nothing to the dtd folder.
    8. Once all this was done, I opened structapps.fm.  I did the following to all Dita1.1 elements in the structure tree.
    Selected the Dita 1.1 XMLApplication element, for instance, the one named Dita1.1-Reference-FM, copied it, and pasted it underneath the original element.
    The original first few lines in the clone looked like this:
    Application Name: DITA1.1-Reference-FM
          Template:              $STRUCTDIR\xml\DITA\app\DITA-Reference-FM\reference.template.fm
          DTD:                       $STRUCTDIR\xml\DITA\app\dtd\reference.dtd
          Read/write Rules:  $STRUCTDIR\xml\DITA\app\DITA-Reference-FM\reference.rules.fm
          DOCTYPE:              reference
    I changed these lines to look like this, using your suggestion to create a variable for the first part of the URLs to enable speed and accuracy:
           Application Name:      DITA1.1-BigPage-Reference-FM
                   Template:                    $STRUCTDIR\xml\DITA-BigPage\app\DITA-Reference-FM\reference.template.fm
                   DTD:                            $STRUCTDIR\xml\DITA-BigPage\app\dtd\reference.dtd
                   Read/write Rules:        $STRUCTDIR\xml\DITA-BigPage\app\DITA-Reference-FM\reference.rules.fm
                   DOCTYPE:                    reference
    I also changed the "Filename" URLs in the "Entity Locations" section of this XMLApplication clone from  $STRUCTDIR\xml\DITA\app\  to $STRUCTDIR\xml\DITA-BigPage\app\.  Applying the "BigPage" variable I'd created for this purpose made this go quickly.
    Finally, after this didn't work the first few times I tried it, I got suspicious that the structapps.fm file in my AppData folder (in my case, it was in the Roaming subfolder under the usual Adobe directories) was overriding the modified structapps.fm file in the Framemaker program directory so I replaced the one in AppData (it had all the original settings) with my modified version.  This had no effect, unfortunately.
    That was my process. After doing the above, the Dita1.1-BigPage applications all listed in the Set Structured App drop-down. They just didn't work,when applied to my XML documents. Nor did the application "remember" what structured application I had set when I opened a new xml document  or closed/reopened the current document or closed/reopened the application.  Did I place the directories correctly for Framemaker 10?  This is the way I did it for FrameMaker 9 and it worked successfully.
    As much as I'd love to solve this mystery, I've thought of a workaround I can fall back on  that doesn't involve using a cloned application.  I will change the page size of a few of the original Dita1.1 sturctured application templates to tabloid size, but leave the Topic structured application at letter size. I'll then apply the Topic structured application to my PDFs and use the others for my help topics.  I'll set this up now. If this doesn't work, then I'll know there's a much bigger problem at the base of this, perhaps even something to do with changing page sizes in templates.

  • Will an Infra-Red Adapter work with a macbook pro retina display so I can use the apple TV remote for presentations?

    I have always used the apple TV remote for my presentations.  I bought a retina display last year for the betterment of my presentations and now I have to stand near my computer and hit a button to change my slides where as before I used my remote.  Will a infra-red adapter work with the apple TV remote in the macbook pro retina display?  Love my computer, but very disappointed not to have a remote for presentations that does not need the internet.  Does anyone have any ideas?

    Yes, I used that and it works great if you have wireless connection.  Im looking for  a remote that worked like the apple TV remote.  My questions is, "Is there a USB infra-red remote that works with mac.  I have found this one: Keyspan EZ1 easy presenter.  It claims with works with PC and Mac and the reviews are good.  Does anyone know anything about it or if it works with retina display macs?

  • Why my new Mac mini  DVI dual link mini display port adapter doesn't work  with my 30"display (LG W3000H)?

    Hello There
    Can any of you advise on the below? Tried to connect Mac mini with a 30" display through a DVI dual link mini display port adapter. For the first try Mac mini go connected to the display, then i've chosen the highest resolution (2560x1600, native) and right at that moment they got disconected. Since then the display stays black. What can be the issue, is it possible DVI dual link mini display port adapter is not compatible with 30"display (LG W3000H)? It works with DVI male-male cable plus DVI HDMI adapter as long as the resolution stays under 1280x800. Any idea is much appreciated.
    Thank you, Vera

    Hi,
    I can report that my Mac Mini Intel Duo connected instantly and without even having to set it up (on the first try) with my 1366x768 native resolution DELL 50" Plasma Display. It's so beautiful that I just want to stand there and fondle my HDTV as I drool haplessly like Homer Simpson with a doughnut in his mouth. Seriously, no problems.... guess I bought the right cable (ebay).
    Before you buy a Duo, make sure you're aware of the airport and bluetooth issues that so many (maybe everyone who tries to use them together) are having. It seems that bluetooth interferes with airport, or maybe the other way around. Anyway, it's messed up. Also, Airport reception is generally VERY poor with the new Intel Mac Mini.
    Despite these things, I still love mine (I now have 2 base stations and an airport express for my powerhouse wireless needs, and an external DLink bluetooth-2-USB dongle solved the bluetooth/airport issues... in my case).
    FWIW,
    awk
    667-MHz Ti PowerBook G4.   Mac OS X (10.3.9)  

  • I recently bought a new macbook pro and set it up using the migration assistant and my mac mini.  I can't get the text message forwarding feature to work with both computers.

    I recently bought a new macbook pro and set it up using the migration assistant from my mac mini.  I can't get the text message forwarding feature to work with both computers.  It keeps saying that I only have 2 devices setup, my iPad and my macbook pro.  When I mess with the setting on my mac mini, it goes from saying that that is one of the devices to my macbook pro being the 2nd device.  I think that something happened as a result of my using the migration assistant and now it thinks that my macbook pro and my mac mini are one and the same computer.  Any ideas?

    Thanks, Sig.
    The old computer is a 2.6 Ghz Intel Core 2 Duo
    The new one is a 2.3 GHz intel core i7
    In going over this, thanks to "tallking it out" with you, I did discover the Text Edit problem.  Because I've still been unable to get the new computer text size (fonts or whatever) to match the old computer, I did not notice that the curser is now different--the line midway down the curser has to be placed on the line I am working upon, otherwise the edits go elsewhere on the page.  Now, with a bit of difficulty, I am able to get Text Edit to work correctly.
    If you have any ideas as to why my menu bar and Text Edit type are still so slow, I'd love to have them. 
    (I went through the process you suggested earlier, re my Trackpad preferences, and found no improvement.)

  • I'm working with dual monitors but can't get it to boot up on my main screen, so all my icons get messed up

    Hey all,
    So I have a Mac Pro at work and it's connected to a 30" monitor and a smaller monitor. I have the larger one set as the primary screen, but when the computer boots it always uses the smaller monitor as the primary, load all my icon on the smaller monitor, then finally swaps everything to the larger monitor. This messes up all my icons on my desktop since they go from placment on a smaller screen then back to the larger one.
    Is there any way to force the mac to boot up with the larger monitor? Or not screw up all my icons?

    Yes.
    A previous attempt was made through my home network, but after much name-calling at the tech support (dude wasn't listening to me) for the print server I bought (which SAYS they work with Mac... such BS), I gave up on that and hooked it back up to the PC. it worked fine. ButI want it to work with the Mac. It should be able to.
    So, now it's hooked up, via USB, directly to the Mac. I love this MF printer... it's the one one I could find a the time that did everything I wanted... and I wouldn't go back to HP, even if they paid me. (that's what I had before)
    Thanks
    A.
    iMac G5   Mac OS X (10.4.10)  

  • Podcast app doesn't work with iTunes this made me want back to 5.1.1

    Apple may want to make podcast more popout. they made a NEW app "podcasts"
    but I start to hate apple to do this just like the iOS 6 maps.
    the new Podcasts app is desinged to be work alone (without iTunes)
    it can download subscribe find,  ok that's cool but it just won't work with iTunes. maybe apple have data shows more people are iDevice centered.
    But I'm an iTunes centered user. I use iTunes to search subscribe download and DELETE Podcast that I've watched. and I LOVE THIS WAY! I DON"T WANT MY PHONE TO Manage or store podcasts!
    back to iOS 5. every moming, I sync my iPhone with my iTunes, 1 new unplayed podcasts from every show was synced to my iPhone. and I play them on the way to my company.
    at night I watch some other shows on my mac. them sync with iPhone. all played podcasts will not remain on iPhone, and marked as played in iTunes and ready to be deleted. iTunes only keep 4 episodes.   all things is automatic. but iOS 6 Changes everything.  It won't works with iTunes, and music can't play podcasts anymore. I have to Manually subscribe on iPhone again! and Manualy delete on iPhone and Manualy delete on iTunes.
    THIS IS TOTOALLY Unacceptable... for me. My phone or iPad have very limited spaces, and 3G data plan.
    Use iTunes means, no 3G needed, download only once!
    Use Podcast app and sync over iCould means 3G data and download as the same number as yours devices. for me I have to download a  same show for 3 times.
    I Hope there is some way that can make the old music app back.

    I agree, i tried to do what i always do at my office today on my ipod touch, connect to the wifi at the end of the day to download new podcast episodes for my subway ride home, and instead, iTunes with the ios6 update installed yesterday won't let me do that, it tells me i need the new Podcasts app, fine, i go install it, and then when i go back to music, it tells me my podcasts are moved, i go to the new app, so over i go.  The new app is slow, crashes twice trying to get into it, i can't see any way to make a playlist, i managed to download some new episodes, but can't see how to make a playlist still.  I found out how to delete it (and doing so brought back Podcasts and my podcast playlist to the music app, huzzah!!)
    The Podcasts app is not the quality i want from Apple.  I like my ipod, i really do, but it seems Apple is convinced that whenever they make a change they think will make things better, they delete old ways of doing things that work for us, the real people in the world using their devices.  I like the notion of a stand alone app for finding and downloading podcasts, but why does that necessitate removing them from the music app to play since primarily i download all my new podcasts at night, listen to some on my computer while working at home, put them in an itunes playlist in the order i want to listen to them, then sync each morning with my PC to have whatever i haven't listened to in a playlist so it can play all day at work while i'm there.
    Hopefully Apple can learn from this and the ongoing Maps debacle to maybe not be so quick to tell their users how we have to use the devices, and instead spend some time listening to how we use the devices to make our experience better rather than enforcing how they want it used on us.

  • Safari Doesnt Work with Joomla?

    Hello! How can I make Safari work with Joomla. Some stuff, in the built in JCE Editor dont show up or are greyed out in Safari. Also insert image etc dont work. Does anyone kow of any Safari updates/java updates which may help these features work. I love surfing on Safari, and dont want to have to change my browser because of this.
    Safari Version 2.0.4 (419.3)
    Mac OSX 10.4.8 PPC
    PB 1.5 Ghz, 1GB RAM

    Posting my question in joomla boards makes sense, but sineits an open source thing, i wonder how many people will have worked n joomla who need to be told. I learnt from thier boards that it works well on mozilla based browsers, but not so well on konqueror based ones, like Safari, and maybe Safari and work on its backend a bit to accomodate. I used firefox on ac and it works fine

  • Trouble keeping Server 10.4.8 Intel working with 2003 AD.

    I have been trying for a week to get a 10.4.8 MacPro server to stay bound to my 2003 AD network. Using Bombich's doc, items checked off as I go, I can get it to work briefly. Then within an hour suddenly the time zone is wrong and no clients can attach to SMB shares I have created. Quite a few error messages related to Winbindd not being able to fetch the SID for for our domain and log.smbd errors like writesocketdata: write failure. Error = Broken Pipe.
    Tried rebinding to no avail. I would love to hear from someone else who can say "oh yeah it works fine for me at work". Is it a hardware (Intel) issue or Xeon, I mean I can read a whitepaper and it works for a while, then nothing. If you know of an updated how-to for an apparent idiot I'd be interested.
    (NOTE: Even when the shares don't work I can still see and add AD users and groups in WGM, so I seem to be partially bound, maybe for everything except the SMB shares I need.)
    TIA for any help
    13" Macbook (Black) 2.0 GHz Intel w/ 1.25GB Mac OS X (10.4.8)

    I have rebuilt the machine multiple times. In several of those times I used the AD server that is the DNS server as well as the Time server, in most recent I pointed both of them to time.apple.com. But there is an odd issue with the Time zone becoming altered by some action that once you see that you know your goobered again. I can no longer get the regular OD functionality to work, the LDAP service cannot even authenticate with itself and is spewing errors. If I weren't between builds and hadn't been up all night I would have posted the console log that contained the errors. I plan on attempting to bind to the root forest domain this time instead of the child domain I have been working with. I will post back with results later. The time server is a critical piece of this working as is DNS.

  • Do you want to work with Alister Chapman in Austin, Texas?

    Omega - Events - FilmCraft Workshops with Alister Chapman
    Omega Broadcast Group Presents:
    CineShops FilmCraft Workshops with Alister Chapman
    Featuring the Sony PMW-F5, NEX-FS700 and PMW-200
    CineShops FilmCraft Workshop with Alister Chapman
    About Alister Chapman
    Alister Chapman is a highly regarded, award winning director of photography with over 20 years of experience in broadcast television and commercials. He is a Sony I.C.E (independent Certified Expert) as well as a guest lecturer at Singapore Polytechnic, the V.I. Academy, Santa Fe and the F-Stop Academy. He is a great educator and able to very clearly and simply explain sometimes difficult principles. He runs workshops all over the world, as a working cameraman and DoP his expertise comes from the real world of video and film production. This means that not only will you become a better shooter but you will also learn about how crews work on larger productions, how to pitch for commissions and how to make money from your productions.
    Event Details and Session Descriptions, sign up for 1, 2 or all 3!
    Saturday, December 7
    From Hobbyist to Pro-Shooter, learn what it takes to turn your hobby into a profession.
    You love shooting video for fun and now you are thinking of turning that into a business. What do you need to do, how do you start? Learn the techniques that help turn an amateur into a pro, how to shoot and prepare a show reel and how to pitch for work.
    Who is this workshop for: Anyone!
    Monday, December 9
    Advanced shooting techniques for the modern filmmaker.
    Discover how to spice up your video productions using clever but surprisingly easy shooting methods including time-lapse, slow motion, green screen and motion control. In the past these techniques were expensive and difficult. Today they are within almost everyone’s grasp. In this workshop you will learn how make the most of these exciting creative tools. We will spend time in the classroom and studio learning the principles behind these methods. In the evening we will put it all into practice with an evening shoot where we combine time-lapse, motion control and green screen to produce a cleverly composite scene.
    Who is this workshop for: Anyone! You don't need to have any previous film making experience to learn a great deal during this workshop. However some experience of basic video shooting or still photography is beneficial. We will provide a basic motion control rig and a selection of cameras, but if you have a DSLR or time-lapse capable camcorder you might want to bring that along.
    Tuesday, December 10
    Modern Digital Cinematography Techniques.
    This workshop is for videographers, digital imaging technicians and cinematographers that are interested in learning more about the latest camera technologies. Learn about shooting using Log gamma, raw and 4K. What are the differences between conventional gammas, log and raw and how does it affect the entire production. Discover how to work with LUT's (look Up Tables) and "Looks". Find out how to correctly use the ACES workflow (Academy Color Encoding System) to gain consistency between different cameras and standardize your workflow. Learn how to safely manage the large amounts of data that can be generated by a modern digital cinema camera and then how to grade the footage using DaVinci Resolve.
    Who is this workshop for: Intermediate to advanced content creators!
    This is an opportunity not to be missed. A chance to hone existing skills, learn new techniques, improve your knowledge of camera setups and how they effect post production or find out how a modern film crew work together as a team.

    We interviewed Alister and some of the participants after they produced this music video for a local band:
    Interview: 
    https://vimeo.com/80512703
    Music video:
    vimeo.com/57591968
    Alister returns to Austin for 3 exciting workshops December 7 - 10, 2013. Register now to attend!
    omegabroadcast.com/fmp/events-detail.php?&-recid=343

Maybe you are looking for

  • How to create a proxy object for MOSS integration via WebDynpro For ABAP

    Hello all, I have a question about the creation of an ABAP proxy class in SE80. When i follow this link: [https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/6066fbe8-edc4-2910-9584-a9601649747d&overridelayout=true] i see on page 7 that there is:

  • Object and class problem

    I have a homework assignment that i cant seem to figure out. I have to create a class that has an id, date when made, balance, interest rate (annually converted to monthly), be able to make a withdraw and show the new balance as well as make a deposi

  • Custom transaction authorization

    Hi, I have a custom transaction which calls a custom table. And as there's no ABAP code for that, it's not possible to enter ABAP statement - AUTHORITY-CHECK to check any data before user run custom transaction. Is it possible to restrict custom tran

  • Why is Quicktime 7.1 hanging up my computer playing video files?

    Please, I need help because this is way frustrating. I bought an iPOD 5th gen 60 Gb and QT 7.1 Pro to convert my video files and sync them with my iPOD. My computer hangs up every time I try and play a local video file from my hard drive. (Same thing

  • LSMW of runs with a mandator export/- import

    At present we migrate our system landscape of SAP the releases 4.6C on mySAPERP2005. Before the migration of the quality assurance system (FQ2) we imported here in the mandator 151 a mandator export of the productive mandator (FP2 system/mandator 150