Filter printers for mobile iPrint app

We have imported several hundred printers from OES to appliance to offer mobile printing services to a number of schools. To make this more manageable we have put the printer objects in one container per school unit and created one user object per school unit (not imported users via LDAP). The general idea is to present only relevant printers to each school unit user, otherwise the printer selection list gets... long.
As it appears ALL printers are shown in the printer selection list but only those where the user logged in to the app are assigned user rights will print. Is it possible to hide the ones a particular user isn't allowed to use anyway?

I have an HP Officejet 6400 series all in one wireless printer.  I recently purchased an iPad2 and am looking for an app that will allow me to print from my iPad2

Similar Messages

  • Flex Hero, how to make a whiteboard for Mobile Flex App in Android platform?

    I had made a whiteboard with the sdk 3.5 for PC, but when i use the same way in the SDK Hero, i can't draw any shape.
    I use a image to draw picture on it, and the   image.source   is   a  Sprite, and when i creat a new shape,  i add it in the Sprite,
    it is worked in the sdk 3.5, but it is not work in the Mobile Flex App.
    can anyone help me?
    Thanks  HamlinXu

    may be i know what happen,  i try to draw shape on  the view,not on the Image, it work.
    i think may be my image does not show on the view, but i have set the visible=true, it is stilll can't see the Image,
    how to make the Image can see in the view?

  • Development tools for mobile device apps.

    Is there tools to develop sap mobile apps/add-ons?

    Hi JBrotto,I have an API in order to develop mobile solutions for Business One and others ERP.
    Please get in contact directly with me if you need more info.
    Kind Regards,
    paolo
    Edited by: Paolo Manfrin on Oct 21, 2011 1:00 PM

  • Autostart camera for mobile android app

    Hi
    an augmented reality app working fine in my desktop but I have convert that to android app. I need when user open this app it autostart camera of mobile because user can't run this app without camera. how can i do this..?

    Am still waiting. Anyone out there who got new info on this?
    I am also wondering if it will be part of the creative cloud I already pay for on a monthly basis.

  • Charting options for Mobile iPad app

    Hello
    Does anyone know if there is any Charting limitations for the iPad Webi app?  We are creating reports with Bubble charts but the content is not showing.
    Thanks for your help.
    Regards
    Perven

    I dont think it is supported.  Check release notes below for more details.
    https://websmp205.sap-ag.de/~sapidb/012006153200000273552011E/Mobile_Release_Notes.pdf

  • Design considerations for mobile version of website

    My company has just implemented a new version of our coporate website using Oracle Portal, and ADF. However we do not have comprehensive mobile support but it is required. From my research I've learned we should be using ADF mobile. However, the resources I have found have been geared more at developers and I work as a Business Analyst. Can you point me to online resources (white papers, tutorials etc.) that deal with requirements and design considerations for porting over to a mobile version?
    Thanks in advance.

    My apologies for lateness in checking this thread.
    Here is an article I wrote that might help. Most of the paper is geared toward developer, but the first few sections talks about best practices for mobile browser app in general, not just for iPhone. http://www.oracle.com/technology/pub/articles/huang-iphone.html
    You can also check out this link: http://www.orato cle.com/technology/tech/wireless/adf_mobile.html.
    As for design consideration, a few rules of thumb:
    - First, obviously use ADF Mobile and Trinidad components. We put a lot of effort in adding rendering support for different mobile devices.
    - Next, figure out what devices you want to support. Browsers found in smartphones varies greatly, and in consumer/feature phones, the support is even less consistent. In general you should be able create one app/set of screens for all mobile devices, but you should plan on having ability to test it out on different devices.
    - Determine what information is really needed by mobile user. Not all information available in desktop application may be applicable for mobile users
    - Design your mobile screens based on a few key principals:
    - Display data as user needs it, instead of trying to display everything. For example, instead of displaying master-detail data on the same screen, break it out into 2 screens. Master data may be a list, and user would click on a particular piece of data to look at the details of that master record.
    - Provide navigation buttons on each screen, and ensure they are easy to get to on a page. For example, using the iPhone paradigm, there is a navigation bar at the top of the page where you can go between views.
    - Place command buttons at location where it's easy for user to get to. For example, if you need to allow user to modify a long list of fields, you may want to place save button on top and button of the screen, so user can easily get to it without having to scroll around too much.
    - Use style sheets to achieve mobile-platform optimized UI. For example, if you intend to support touch screen devices (iPHone, BB Storm, etc), then style your application so buttons, command links, etc, are big enough so it's easy to get to. For non-touch screen devices, then it's OK to compress the UI, but ensure user can easily flow between controls to get to the functionality they need. For example, using a trackball to scroll to a button.
    Thanks,
    Joe Huang

  • IPrint app for iPad and Photosmart 2710

    Is there currently anyway to print from the iPad to the Photosmart 2710? The iPrint app appears to be useless for this printer. Has anyone heard if it will be supported?

    http://www.hp.com/global/us/en/consumer/digital_ph​otography/free/software/mobile-printing-solutions.​...
    Take a look at the HP iPrint Photo mobile app - that could help you. 
    I am an HP employee.

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • IPrint app for iOS fails to print photos in colour

    We are running the latest build of the iPrint Appliance (Version: 1.0.1.69 Patch 1) and cannot get the iPrint app for iOS to print photos in colour. I suspect that this is a problem with the internal renderer and JPG files. Printing a PDF, DOC or DOCX file which uses the External windows renderer prints in colour without any issues. Anyone know whether this is a known bug or how I can enable colour printing for a JPG file?
    Thanks
    Chris

    ckaropoulos,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • How to create and use Data Vault with HTML/JavaScript (SAPUI5) for Mobile Apps?

    Hello,
    I am creating a demo Enterprise Mobile App, for cross platform and I want to use the Data Vault.
    I am not able to figure out how to implement the Data Vault with HTML/JavaScript i.e. SAPUI5 for cross platform mobile apps I have a tutorial, but it is for Android based apps. Where as I want it for iOS as well. I guess, in this case, implementing the Data Vault using SAPUI5 over HTML and JavaScript would be  better.
    If anyone has any links or sample code to implement Data vault in HTML/JavaScript (SAPUI5) or specific for iOS apps, it would be great.
    Thank you.

    Hi,
    This is the "SAP Mobile Documents" community, so this seems to be the wrong place for asking your question related to Data Vault / SAPUI5.
    Maybe you should post your question here: http://scn.sap.com/community/developer-center/front-end.
    best regards,
    Ingo

  • How to disable click for open a app mobile? i have picture.

    how to disable click for open a app mobile?
    How i do?
    why adobe captivate need to click for open app.
    i need to open auto.
    thank you

    Swiping down from the midle of the screen will open the search window on its upper section.

  • Can't download mobile DVR app for BlackBerry Storm

    Seems like the Verizon download link (m.verizon.com/tv/download) to the mobile DVR app is broken???  Get the terms page, but after hitting "agree" the file transfer fails.  Have tried several times for a day or so... no joy.

    Andrew, the OP said he has '''2.3.6''' when Google Play says 2.3 is the minimum. It has been Android '''2.3''' since Firefox '''31.0''' release.
    What phone or tablet is it as while it has 2.3+ it may have some performance issues.

  • What is a good mobile TV app for an I pad 2?

    What is a good mobile TV app for an I pad 2?

    Many networks have IOS apps (i.e. ABC). Search the app store

  • Before I updated to ios7, I had the nationwide mobile banking app. This app would not function properly once the update had downloaded, so , following previous advice, I deleted the app. Now when I try to download the app, I get 'no results for this app'.

    Before I updated my iPad to ios7, I had the Nationwide Mobile Banking app. Once the update was completed, the app would not open properly. On advice I deleted the app, and now, when I try to reinstall it from iTunes app store, I get this  'no results found for natiowide mobile banking'. Why is this happening??

    Are you sure your AppleID is NOT tied to the US store? If you are trying to buy an app from the Swedish store you will be unable to do that. Some apps are only available on certain stores. That is why you get the "Cannot connect to the iTunes store" message when trying to buy that app. Your updates are being done from the US store ; thats why you can update sometimes and sometimes not.
    If you keep encountering problems contact iTunes support. They will help you sort it out.

  • Can't find eBay Mobile in App Store on iPod Touch! Is it for iPhone only ?

    At iPod Touch 2.0, I tried to search for eBay in App Store. Turns out there only a Paypal. My friend's iPhone 3G's got eBay, wonder why isn't iPod Touch. Means a lot to me a eBay powerseller.
    Message was edited by: Kashahayh

    Solved! Blame Apple Canada! Logon your App Store using a account that's registered with an American address. and iPod Touch will automatically go to the US App store (there's eBay Mobile) instead of the Canadian one(which doesn't provide eBay Mobile).

Maybe you are looking for

  • Questions about using a PDF form online

    I have a client who wants to create an online version of a PDF form that they are currently using. I am currently trying to explain to them that this would be best done as an HTML web form, but I may not win this argument. I have only used PDFs for p

  • ALV Edit Field with error

    Hi! I'm trying to enter data into a few fields of my ALV but when I press save or double click or try to do any action I'm getting and error and I can't go into my gode to get the data and save it into my tables. I declarated my ALV table like DATA B

  • Cisco prime infrastructure 1.3

    Hi Experts, i am currently try to explore cisco prime Infra 1.3 and facing some problem. 1 : i have set the admin password at startup config but this password is not working(i am pretty sure that i have enter the same password) 2: Can i change the pr

  • SAP 4.7 - Enterprise

    Which version of J2EE dose it use? 6.20? Dose the 4.7 support 64 bit hardware architecture?

  • Howto get information about Java Stored Procedures programmaticly

    Hi all, using the DatabaseMetaData object it is easily possible to get information about database objects like tables, columns or even plsql stored procedures. But is there a way to get information about Java Stored Procedures which are published in