Can Actions Menu of Interactive Reports work with Custom Authentication?

My testing is leading my to believe that Actions Menu do not work with Custom Authentication (but only work with APEX Authentication) in APEX 3.1.2? If that's true then is there a work around to this?
Just to clarify, I've posted/asked this question twice before:
1) Re: Actions Menu in Interactive Reports does not sort, filter, select cols etc
2) Interactive Report actions don't work for users (i.e. for non-developers)
But I've come to believe this is the main problem. I just don't know how to resolve/work around this?
Thanks for any help.

I haven't setup a sample because my custom authentication is using LDAP authentication. I'm not sure how I can replicate that on the samples server?
I'm using LDAP authentication with a Page Sentry function. My further testing reveals that the Page Sentry function is setting the APEX variable user to NULL (ie blank) whenever there's any code in the Page Sentry function box. PL/SQL code as simple as
BEGIN return TRUE; END;
in the Page Sentry function box sets the "user" is set to <null>. When the Page sentry function box is left empty (no code specified) it sets the "user" properly after authentication against the specified LDAP directory.
What all this has to do with Interactive Reports...
It seems like when the user is NULL it messes-up Interactive Reports that are stored in the flows database. Although it shows the default report properly, but no runtime interactive actions (filtering, sorting, column break, etc.) work.
Can someone please correct or confirm this?
Thanks.

Similar Messages

  • Adobe forms work with custom Z transactions?

    Hi everybody,
    Does anybody know if the Adobe interactive forms works with custom Z transaction?

    Hi Bertrand,
                 Me too need the sample code could u send me to this [email protected]
    Thnx,
    Vishnu

  • Interactive Report - Add a 'custom' Action Menu Item

    Hi,
    I'm wondering if it is possible to add 'custom' Action menu items to an interactive report?
    I have a situation where I want to use all the richness that an interactive report gives with it's out of the box functionality, then if a download is selected I need to be able to set a 'lock' on the currently selected records set before the records are downloaded.
    I've had a good look around the forum and various other sites and I can't seem to find anything in this area. The nearest I can find is on the OBD tutorials the ability to add a 'Reset' button.
    I know how to create custom download functionality, to which I could add the required record locking functionality and in turn link to a button, but what I don't know how to do is pull out the selection variables from the Interactive Report in order to construct my select query.
    Maybe I'm barking up the wrong tree and there's a better way if so any suggestions would be most welcome.
    Many thanks in advance Peter..
    Edited by: Pete on Jun 30, 2011 4:16 PM
    Edited by: Pete on Jun 30, 2011 4:24 PM
    Edited by: Pete on Jun 30, 2011 4:31 PM

    Hi,
    For your issue, in SharePoint Designer, Click Custom Action->View Ribbon->Create Custom Action.
    Then the extra form will show up in the Ribbon.
    Refer to the following link:
    http://www.abelsolutions.com/totm/creating-a-custom-action-in-2-steps-with-sharepoint-designer/
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • Can u explain me how to work with OOPs ABAP

    Hi,
    Can u explain me how to work with OOPS Abap,  If possible pls send me some sample programs regarding OOps concept used in Realtime.
    Thanks.

    hii,
    Please check this online document (starting page 1291).
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf
    Also check this links as well.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    http://www.futureobjects.de/content/intro_oo_e.html
    http://www.sap-img.com/abap/business-add-in-you-need-to-understand-abap-oo-interface-concept.htm
    /people/ravikumar.allampallam/blog/2005/02/11/abap-oo-in-action
    What is Object Orientation?
    Object orientation (OO), or to be more precise, object-oriented programming, is a problem-solving method in which the software solution reflects objects in the real world.
    A comprehensive introduction to object orientation as a whole would go far beyond the limits of this introduction to ABAP Objects. This documentation introduces a selection of terms that are used universally in object orientation and also occur in ABAP Objects. In subsequent sections, it goes on to discuss in more detail how these terms are used in ABAP Objects. The end of this section contains a list of further reading, with a selection of titles about object orientation.
    Objects
    An object is a section of source code that contains data and provides services. The data forms the attributes of the object. The services are known as methods (also known as operations or functions). Typically, methods operate on private data (the attributes, or state of the object), which is only visible to the methods of the object. Thus the attributes of an object cannot be changed directly by the user, but only by the methods of the object. This guarantees the internal consistency of the object.
    Classes
    Classes describe objects. From a technical point of view, objects are runtime instances of a class. In theory, you can create any number of objects based on a single class. Each instance (object) of a class has a unique identity and its own set of values for its attributes.
    Object References
    In a program, you identify and address objects using unique object references. Object references allow you to access the attributes and methods of an object.
    In object-oriented programming, objects usually have the following properties:
    Encapsulation
    Objects restrict the visibility of their resources (attributes and methods) to other users. Every object has an interface, which determines how other objects can interact with it. The implementation of the object is encapsulated, that is, invisible outside the object itself.
    Polymorphism
    Identical (identically-named) methods behave differently in different classes. Object-oriented programming contains constructions called interfaces. They enable you to address methods with the same name in different objects. Although the form of address is always the same, the implementation of the method is specific to a particular class.
    Inheritance
    You can use an existing class to derive a new class. Derived classes inherit the data and methods of the superclass. However, they can overwrite existing methods, and also add new ones.
    Uses of Object Orientation
    Below are some of the advantages of object-oriented programming:
    Complex software systems become easier to understand, since object-oriented structuring provides a closer representation of reality than other programming techniques.
    In a well-designed object-oriented system, it should be possible to implement changes at class level, without having to make alterations at other points in the system. This reduces the overall amount of maintenance required.
    Through polymorphism and inheritance, object-oriented programming allows you to reuse individual components.
    In an object-oriented system, the amount of work involved in revising and maintaining the system is reduced, since many problems can be detected and corrected in the design phase.
    Achieving these goals requires:
    Object-oriented programming languages
    Object-oriented programming techniques do not necessarily depend on object-oriented programming languages. However, the efficiency of object-oriented programming depends directly on how object-oriented language techniques are implemented in the system kernel.
    Object-oriented tools
    Object-oriented tools allow you to create object-oriented programs in object-oriented languages. They allow you to model and store development objects and the relationships between them.
    Object-oriented modeling
    The object-orientation modeling of a software system is the most important, most time-consuming, and most difficult requirement for attaining the above goals. Object-oriented design involves more than just object-oriented programming, and provides logical advantages that are independent of the actual implementation
    http://www.sapgenie.com/abap/OO/index.htm
    http://www.geocities.com/victorav15/sapr3/abap_ood.html
    http://www.brabandt.de/html/abap_oo.html
    Check this cool weblog:
    /people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
    /people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
    /people/sap.user72/blog/2005/05/10/a-small-tip-for-the-beginners-in-oo-abap
    /people/ravikumar.allampallam/blog/2005/02/11/abap-oo-in-action
    /people/thomas.jung3/blog/2005/09/08/oo-abap-dynpro-programming
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b6254f411d194a60000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm
    http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://www.allsaplinks.com/
    http://www.sap-img.com/
    http://www.sapgenie.com/
    http://help.sap.com
    http://www.sapgenie.com/abap/OO/
    http://www.sapgenie.com/abap/OO/index.htm
    http://www.sapgenie.com/abap/controls/index.htm
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://www.sapgenie.com/abap/OO/index.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    these links
    http://help.sap.com/saphelp_47x200/helpdata/en/ce/b518b6513611d194a50000e8353423/content.htm
    For funtion module to class
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5954f411d194a60000e8353423/content.htm
    for classes
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b5c54f411d194a60000e8353423/content.htm
    for methods
    http://help.sap.com/saphelp_47x200/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm
    for inheritance
    http://help.sap.com/saphelp_47x200/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm
    for interfaces
    http://help.sap.com/saphelp_47x200/helpdata/en/c3/225b6254f411d194a60000e8353423/content.htm
    For basic stuff......
    abap oops
    http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt
    http://esnips.com/doc/448e8302-68b1-4046-9fef-8fa8808caee0/abap-objects-by-helen.pdf
    http://esnips.com/doc/39fdc647-1aed-4b40-a476-4d3042b6ec28/class_builder.ppt
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/frameset.htm
    ABAP Business Development and Service Provisioning/ABAP Objects
    General information
    What is Object Orientation?
    some blogs
    A small tip for the beginners in OO ABAP
    Object Oriented ABAP (OO-ABAP)
    and others wiki OO Abap
    cheers,
    sharad
    Edited by: sharad narayan on Apr 29, 2008 12:19 PM

  • So Can My Mac Be Made To Work With iChatAV ?  Version three

    < to be be removed later.
    This is a Update to an Existing FAQ <a class="jive-link-external-small" href="http://">http://discussions.apple.com/thread.jspa?threadID=121851
    The expectation is that it will be editted into that item, less the header >
    So Can My Mac Be Made To Work With iChatAV ?
    This question is asked by many who find their computer is below the G3/600Mghz Specs limit set for iChat
    See here in the second table top left box the listing of the G3/600
    Please note there are different Specs for Audio and Video chat.
    This linked Apple Doc has been re-written several times since it originally cam out that it does not quite carry the same help as it once did
    It is presumed that you are going to want to take as much advantage of iChat as you can. So I will talk about Video chatting.
    For Jaguar (10.2.5 - 10.2.8)
    Prior to the beginning of Oct 2004 there was a Jaguar version of iChat AV on sale at the Apple Store as a download. If you are at 10.2.5 - 10.2.8 and downloaded the $29.95 Version 2.0 of iChat for Jaguar, in preperation of using iChat, before this date, you may find some of this information useful.
    The WWDC Anouncement
    If you did not buy it, your only option is to upgrade to Panther.
    For Panther (10.3.x) and Jaguar (10.2.5 -10.2.8)
    IF you fall below the G3/600 mark then you will need this utility, iChatUSBCam from Ecamm.com This will enable the external iSight to work at lower spec machines. The current reported lower limit is around the G3/350Mhz mark.
    It is also will enable USB cameras for use with iChatAV, but there is little in the way of substantive information about Sub G3/600 computers achieving this.
    There have been about a dozen posts to say that it will use a USB cam on a G3 as low as 400Mgz
    It should be noted that computers of this age tend to lack Multi-Tasking and will find that iChat will take up most of their processor time.
    iChat AV FAQ folder
    iSight FAQ Search
    This is a link to the drivers already installed in the Mac OS. The download is not required. *See note below
    Apple used to list the DV camcorders that work with the drivers already in the Mac OS but now Apple no longer does so (Link removed from this section). *See note below.
    Essentially any Firewire camera will work with the OS. Some MiniDV formats can not be seen by iChat though.
    Many USB Webcams will work if you are at 10.4.8 or earlier or only UBS 1.1 ports. This will need the Mac Drivers and the IChatUSBCam utility.
    *Note: Both these last two lists were updated Jan 2004 or before. The purpose of pointing this out to highlight the fact that new cameras have come on the market since. They may work with these drivers or have their own Mac Firewire drivers on their accompanying install CDs.
    The Current list for Firewire Webcams is now here as linked above.
    For Tiger (10.4) and up.
    Much of what has been said before applies to you as well. Most firewire web cams will work DV Camcorder will work. USB cameras can work with the correct Mac Driver and the iChatUSBCam utility.
    However....
    10.4.9 now adds a driver for USB Video Class (UCV) web cams that will work with the OS and iChat. Not all USB video cams are of this type and iChatUSBCam is still needed.
    Mulit-Video Chatting
    This was added to iChat at iChat 3 in Tiger (10.4.x)
    As can be seen from the Specs linked earlier you need a Mac over a certain Spec (G4/1Ghz Dual) to be able to Host Video chats. (plus Internet Speed).
    Ecamm come to people rescue again with PowerBoost if your Mac does not reach those specs.
    Leopard 10.5
    In Leopard the criteria is also for a mac of a certain spec before you even start, This is a G4/867Mghz processor. If you have problems then see this Apple Doc There is also some evidence that this helps other macs with the same message even if not this spec machine.
    This is the 3rd version of this tip. It was submitted on 5/1/08 by Ralph Johns (UK).
    10:09 PM Saturday; January 5, 2008

    < to be be removed later.
    This is a Update to an Existing FAQ <a class="jive-link-external-small" href="http://">http://discussions.apple.com/thread.jspa?threadID=121851
    The expectation is that it will be editted into that item, less the header >
    So Can My Mac Be Made To Work With iChatAV ?
    This question is asked by many who find their computer is below the G3/600Mghz Specs limit set for iChat
    See here in the second table top left box the listing of the G3/600
    Please note there are different Specs for Audio and Video chat.
    This linked Apple Doc has been re-written several times since it originally cam out that it does not quite carry the same help as it once did
    It is presumed that you are going to want to take as much advantage of iChat as you can. So I will talk about Video chatting.
    For Jaguar (10.2.5 - 10.2.8)
    Prior to the beginning of Oct 2004 there was a Jaguar version of iChat AV on sale at the Apple Store as a download. If you are at 10.2.5 - 10.2.8 and downloaded the $29.95 Version 2.0 of iChat for Jaguar, in preperation of using iChat, before this date, you may find some of this information useful.
    The WWDC Anouncement
    If you did not buy it, your only option is to upgrade to Panther.
    For Panther (10.3.x) and Jaguar (10.2.5 -10.2.8)
    IF you fall below the G3/600 mark then you will need this utility, iChatUSBCam from Ecamm.com This will enable the external iSight to work at lower spec machines. The current reported lower limit is around the G3/350Mhz mark.
    It is also will enable USB cameras for use with iChatAV, but there is little in the way of substantive information about Sub G3/600 computers achieving this.
    There have been about a dozen posts to say that it will use a USB cam on a G3 as low as 400Mgz
    It should be noted that computers of this age tend to lack Multi-Tasking and will find that iChat will take up most of their processor time.
    iChat AV FAQ folder
    iSight FAQ Search
    This is a link to the drivers already installed in the Mac OS. The download is not required. *See note below
    Apple used to list the DV camcorders that work with the drivers already in the Mac OS but now Apple no longer does so (Link removed from this section). *See note below.
    Essentially any Firewire camera will work with the OS. Some MiniDV formats can not be seen by iChat though.
    Many USB Webcams will work if you are at 10.4.8 or earlier or only UBS 1.1 ports. This will need the Mac Drivers and the IChatUSBCam utility.
    *Note: Both these last two lists were updated Jan 2004 or before. The purpose of pointing this out to highlight the fact that new cameras have come on the market since. They may work with these drivers or have their own Mac Firewire drivers on their accompanying install CDs.
    The Current list for Firewire Webcams is now here as linked above.
    For Tiger (10.4) and up.
    Much of what has been said before applies to you as well. Most firewire web cams will work DV Camcorder will work. USB cameras can work with the correct Mac Driver and the iChatUSBCam utility.
    However....
    10.4.9 now adds a driver for USB Video Class (UCV) web cams that will work with the OS and iChat. Not all USB video cams are of this type and iChatUSBCam is still needed.
    Mulit-Video Chatting
    This was added to iChat at iChat 3 in Tiger (10.4.x)
    As can be seen from the Specs linked earlier you need a Mac over a certain Spec (G4/1Ghz Dual) to be able to Host Video chats. (plus Internet Speed).
    Ecamm come to people rescue again with PowerBoost if your Mac does not reach those specs.
    Leopard 10.5
    In Leopard the criteria is also for a mac of a certain spec before you even start, This is a G4/867Mghz processor. If you have problems then see this Apple Doc There is also some evidence that this helps other macs with the same message even if not this spec machine.
    This is the 3rd version of this tip. It was submitted on 5/1/08 by Ralph Johns (UK).
    10:09 PM Saturday; January 5, 2008

  • How can I get my ipod to work with itunes?

    When I connect my ipod classic into my new computer it seems that itunes does not recognize it. How can I get my ipod to work with itunes? I'm afraid to disconnect my ipod because the display is saying Do Not Disconnect.

    1. Update iTunes to the latest version. Plug in your iPod. If iTunes still can't recognize it, then in iTunes in the top left corner click help> run diagnostics. On the box that comes up, check the last two things. Click next and it should identify your iPod.
    2. Click on your windows start menu. Type in "services". Click on it and when it pops up, on the bottom of it click on "standard". Now Scroll down to find "Apple Mobile Device" Right click it when you see it and click on "Start". When it has started, close iTunes and replug in your iPod and it should show up.
    3. Check the USB cable
    4 Verify that Apple Mobile Device Support is installed
    5. Restart the Apple Mobile Device Service and verify that the Apple Mobile Device USB Driver is installed.
    6. If you just want to add some photos, songs and movies from computer to your devices, you can use an iTunes alternative to do the job
    7. Check for third-party software conflicts.
    <Link Edited By Host>

  • So Can My Mac Be Made To Work With iChatAV ? (Replacement)

    Original http://discussions.apple.com/thread.jspa?threadID=121851
    So Can My Mac Be Made To Work With iChatAV ?
    This question is asked by many who find their computer is below the G3/600Mghz Specs limit set for iChat
    See here in the box to the top right for current specs.
    Please note there are different Specs for Audio and Video chat.
    It should be noted that the specs also list OS 10.3.x (Panther)
    It is presumed that you are going to want to take as much advantage of iChat as you can. So I will talk about Video chatting.
    For Jaguar (10.2.5 - 10.2.8)
    Prior to the beginning of Oct 2004 there was a Jaguar version of iChat AV on sale at the Apple Store as a download. If you are at 10.2.5 - 10.2.8 and downloaded the $29.95 Version 2.0 of iChat for Jaguar, in preperation of using iChat, before this date, you may find some of this information useful.
    If you did not buy it, your only option is to upgrade to Panther.
    For Panther (10.3.x) and Jaguar (10.2.5 -10.2.8)
    IF you fall below the G3/600 mark then you will need this utility from Ecamm.com This will enable iSight to work at lower spec machines. The current reported lower limit is around the G3/350Mhz mark.
    It is also will enable USB cameras for use with iChatAV, but there is little in the way of substantive information about Sub G3/600 computers achieving this.
    There have been about a dozen posts to say that it will use a USB cam on a G3 as low as 400Mgz
    It should be noted that computers of this age tend to lack Multi-Tasking and will find that iChat will take up most of their processor time.
    iChat AV FAQ folder
    iSight FAQ Search
    This former List of Firewire cameras contains a plain text mention of http://www.ioxperts.com/devices/webcam.html that work with the drivers already in the Mac OS. The download is not required. *See note below
    This former List of DV camcorders that work with the drivers already in the Mac OS and now list just links to the manufactures.. *See note below. With the proviso of the note below this is a list to point out what cameras will work with iChat with the current OS (and some of the preceeding ones). The purpose of linking it here is for those comtemplating purchasing a camera.
    Essentially any Firewire camera will work with the OS. Some MiniDV formats can not be seen by iChat though
    *Note: Both these last two list were updated Jan 2004 or before. The purpose of pointing this out to highlight the fact that new cameras have come on the market since. They may work with these drivers or have their own Mac Firewire drivers on their accompanying install CDs.
    The Current list for Firewire Webcams is now here as linked above.
    10.4.9 now adds a driver for USB Video Class (UCV) web cams that will work with the OS and iChat. Not all USB video cams are of this type and iChatUSBCam is still needed.
    Mulit-Video Chatting
    As can be seen from the Specs linked earlier you need a Mac over a certain Spec (G4/1Ghz Dual) to be able to Host Video chats. (plus Internet Speed).
    Ecamm come to people rescue again with PowerBoost
    9:21 PM Friday; March 30, 2007
    G4/1GhzDual MDD MacBookPro 2gig NETGEAR DG834GUK Hollywood Dazzle DV Mac OS X (10.4.9) Have you read the iChat FAQs ?? ^See link at top of the Topic List ^

    Original http://discussions.apple.com/thread.jspa?threadID=121851
    So Can My Mac Be Made To Work With iChatAV ?
    This question is asked by many who find their computer is below the G3/600Mghz Specs limit set for iChat
    See here in the box to the top right for current specs.
    Please note there are different Specs for Audio and Video chat.
    It should be noted that the specs also list OS 10.3.x (Panther)
    It is presumed that you are going to want to take as much advantage of iChat as you can. So I will talk about Video chatting.
    For Jaguar (10.2.5 - 10.2.8)
    Prior to the beginning of Oct 2004 there was a Jaguar version of iChat AV on sale at the Apple Store as a download. If you are at 10.2.5 - 10.2.8 and downloaded the $29.95 Version 2.0 of iChat for Jaguar, in preperation of using iChat, before this date, you may find some of this information useful.
    If you did not buy it, your only option is to upgrade to Panther.
    For Panther (10.3.x) and Jaguar (10.2.5 -10.2.8)
    IF you fall below the G3/600 mark then you will need this utility from Ecamm.com This will enable iSight to work at lower spec machines. The current reported lower limit is around the G3/350Mhz mark.
    It is also will enable USB cameras for use with iChatAV, but there is little in the way of substantive information about Sub G3/600 computers achieving this.
    There have been about a dozen posts to say that it will use a USB cam on a G3 as low as 400Mgz
    It should be noted that computers of this age tend to lack Multi-Tasking and will find that iChat will take up most of their processor time.
    iChat AV FAQ folder
    iSight FAQ Search
    This former List of Firewire cameras contains a plain text mention of http://www.ioxperts.com/devices/webcam.htmlhttp://www.ioxperts.com/devices/webcam.html that work with the drivers already in the Mac OS. The download is not required. *See note below
    This former List of DV camcorders that work with the drivers already in the Mac OS and now list just links to the manufactures.. *See note below. With the proviso of the note below this is a list to point out what cameras will work with iChat with the current OS (and some of the preceeding ones). The purpose of linking it here is for those comtemplating purchasing a camera.
    Essentially any Firewire camera will work with the OS. Some MiniDV formats can not be seen by iChat though
    *Note: Both these last two list were updated Jan 2004 or before. The purpose of pointing this out to highlight the fact that new cameras have come on the market since. They may work with these drivers or have their own Mac Firewire drivers on their accompanying install CDs.
    The Current list for Firewire Webcams is now here as linked above.
    10.4.9 now adds a driver for USB Video Class (UCV) web cams that will work with the OS and iChat. Not all USB video cams are of this type and iChatUSBCam is still needed.
    Mulit-Video Chatting
    As can be seen from the Specs linked earlier you need a Mac over a certain Spec (G4/1Ghz Dual) to be able to Host Video chats. (plus Internet Speed).
    Ecamm come to people rescue again with PowerBoost
    3:09 PM Saturday; April 7, 2007

  • Hi im staying in UAE, why doesnt my interactive notification work with other apps like facebook?

    why doesnt my interactive notification work with other apps like facebook?
    its only working with the message app notifications.

    Sounds like the iPhone is carrier locked with Vodafone and if so, it can't be used with another carrier's SIM card.
    If so, only Vodafone can officially unlock the iPhone or send the unlock request to Apple.

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

  • Can't get out.print to work with XML jsp tags

    <jsp:scriptlet>
    if(ErrorTrap == true) {
         out.println("<tr><td colspan=\"center\" align=\"center\">There was" an error while processing the form</td></tr>");
         ErrorTrap = false;
    </jsp:scriptlet>
    I can't get this script to work with the XML stype jsp tags. It keeps telling me the <jsp> tags are untermintaed. Is there a special trick to fix this or do I have to use the non-XML type tags?

    Sorry, I didn't mean to put the extra " in the out.println text string. :-/

  • Can't get Palm Zire to work with windows 7

    Can't get palm zire to work with windows
    Post relates to: Palm Pilot

    Please review the "stickied" threads near the top of this board, about syncing with Windows 7 and Vista.  It's all there. 
    After you've been through and tried everything there is to try, and still have problems, please post back with specific info about exactly what you've tried, what version of Windows 7 you have (32-bit or 64-bit), etc.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • How can I get elements 11 to work with 16 bits photos?

    In the expert mode of Photoshop Elements 11, I can only work with 8 bits photos. How can I get Elements 11 to work with 16 bits photos?

    No, you can still buy photoshop cs6 (perpetual license) if one doesn't want to subscribe to the cloud version (photoshop cc version 14)
    Either way is expensive compared to photoshop elements.
    http://www.adobe.com/products/cs6.html?promoid=JOLIS

  • How can I get photoshop CS2 to work with Windows 8.1?

    how can I get photoshop CS2 to work with Windows 8.1?

    Have a look at
    http://forums.adobe.com/message/4976720
    Cheers
    John

  • How can i get ical invitations to work with outlook users?

    how can i get ical invitations to work with outlook users?
    I can send ical meeting invitations but outlook users are having problems having the meeting show up in their calendar….

    My Epson is able to do scans using Image Capture without any problems at all.
    Allan

  • How can I get Phillips Fidelio to work with ios7

    How can I get Phillips Fidelio to work with ios7. It worked with the previous operating system

    Not sure if this is the same problem others are having, but I used to play music on my Philips Fidelio by opening the Music app on my ipad and clicking on the box with the triangle (which has now disappeared in the new OS). However, if you have the philips dockstudio app, the box still appears there and I was able to get my speakers working again.

Maybe you are looking for

  • How To Resize Animated GIF's All At Once?

    I have seen people say you can resize an animated GIF in Fireworks without doing it one frame at a time, but nobody says exactly how. Maybe I'm missing something simple, but is this possibe and if so, how do you do it? I tried using the forum search

  • __VA_ARGS__ does not expand correctly when no argument is given

    It seems that there is a bug in expansion of __VA_ARGS__ for variable argument macros. test1.c #define debug(arg1, ... ) myfunc(arg1, __VA_ARGS__) main() { int i; debug(i) debug(i,i); preprocessed output bash-3.00$ cc -E testvar1.c # 1 "testvar1.c" #

  • Can Windows servers have hyphens in name?

    Hello... I am a relitivelt new Mac user, and in my new position...charged with connecting a G4 to our Windows Small Business Server network. Here's the issue...When I use "go to server", I can see the network, and can get to the server, but when I tr

  • How to REEXECUTE last_query ?

    Hi ! How to to repeat last query using :system.last_query. This needs for filling the fields which is filled in database trigger. null

  • Smart form  page skip.

    Deer all. When I pint smart form in print preview , if it is 2 page, it is printed  just one page. so I have tested  to change  print machine. but I can see  still  same result. what is the solution. If know that, Please answer  me.  thank you. 1page