Holiday hours(saturday,sunday and other holidays of employee) in CATS_DA

HI,
My client wants Holiday hours (Iu2019e Saturday, Sunday & other leaves) to be shown in CATS_DA report. Usually employee is going to fill his time sheet thru CAT2.
I would like to know the possibilities for getting Holiday hours to be shown in the CATS_DA report.
Is there any provision using function module or possibility to track employee holiday hours from CATS with help of holiday calender. If so kindly suggest me.
Is there any provision using functional module or possibility to track data from clusters. Kindly suggest me
Regards
Amar

Hello Koutilya,
I got the same requirement as yours. Can you please suggest me how to achieve this one.
Thanks,
R V Narayana.

Similar Messages

  • Display dates/days except saturday sunday (ASAP)

    Hi all,
           I am developing a BSP application which run queries to be selected from a  dropdown. It basically displays some meeting data..filled or unfilled depending on the query. I want to display the day,date in different columns and a few other columns. But those should not include saturday/sunday and other holidays depending on the country in which the query is run. I have no idea how to do it.
    Plz provide me with any help asap.
    Regards,
    Rohit Khetarpal
    <i>*Suggestions are always rewarded.</i>

    <b>And my earlier code as suggested by Durairaj Athavan Raja was this:</b>
    <b>Layout:</b>
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content>
      <htmlb:page title="Account details" >
        <htmlb:form method = "post">
          <htmlb:tableView id            = "tv2"
                           headerText    = "Account Details"
                           headerVisible = "true"
                           footerVisible = "false"
                           design        = "ALTERNATING"
                           table         = "<%= holidays %>" >
         <htmlb:tableViewColumns>
              <htmlb:tableViewColumn columnName = "date"
                                     title      = "partner"
                                     edit       = "FALSE"
                                     width      = "100%">
              </htmlb:tableViewColumn>
              <htmlb:tableViewColumn columnName = "freeday"
                                     title      = "Start date"
                                     edit       = "FALSE"
                                     width      = "100%">
              </htmlb:tableViewColumn>
              <htmlb:tableViewColumn columnName = "holiday"
                                     title      = "End Date"
                                     edit       = "FALSE"
                                     width      = "100%">
              </htmlb:tableViewColumn>
              <htmlb:tableViewColumn columnName = "HOLIDAY_ID"
                                     title      = "Product"
                                     edit       = "FALSE"
                                     width      = "100%">
              </htmlb:tableViewColumn>
              <htmlb:tableViewColumn columnName = "TXT_SHORT"
                                     title      = "text"
                                     edit       = "FALSE"
                                     width      = "100%">
              </htmlb:tableViewColumn>
              <htmlb:tableViewColumn columnName = "TXT_LONG"
                                     title      = "text"
                                     edit       = "FALSE"
                                     width      = "100%">
              </htmlb:tableViewColumn>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
        </htmlb:form>
    </td></tr></table>
      </htmlb:page>
    </htmlb:content>
    <b>OnInitialization event:</b>
    data: holidays type standard table of  ISCAL_DAY .
    CALL FUNCTION 'HOLIDAY_GET'
    EXPORTING
       HOLIDAY_CALENDAR                 = 'US'
       FACTORY_CALENDAR                 = 'US'
       DATE_FROM                        = '20070101'
       DATE_TO                          = '20070131'
    IMPORTING
    YEAR_OF_VALID_FROM                = year
      YEAR_OF_VALID_TO                 = YEAR_OF_VALID_TO
      RETURNCODE                       = RETURNCODE
      TABLES
        holidays                         = holidays
    EXCEPTIONS
       FACTORY_CALENDAR_NOT_FOUND       = 1
       HOLIDAY_CALENDAR_NOT_FOUND       = 2
       DATE_HAS_INVALID_FORMAT          = 3
       DATE_INCONSISTENCY               = 4
       OTHERS                           = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    In this code, i am not getting any values display under the column names when i execute.Can you suggest something on this too...
    Regards,
    Rohit Khetarpal
    Message was edited by:
            Rohit Khetarpal

  • Went looking for fun movies to download for my holidays. Found Sixteen Candles and others for £3.99, great! Went to download them this morning on wifi and ***! All movies are now £6.99 each. Total RIP OFF for old movies. Why oh why iTunes? So greedy!

    Went looking for fun movies to download for my holidays. Found Sixteen Candles and others for £3.99, great! Went to download them this morning on wifi and ***! All movies are now £6.99 each. Total RIP OFF for old movies. Why oh why iTunes? Stop being so greedy and make older movies a more reasonable price. I would buy a lot more, it's just false economy in my book. Don't get me started on the difference in price with the US.
    Stop being so greedy iTunes!
    Anyone know how I can get cheaper movies?

    Apple won't read your post here since this is a user to user forum. Provide feedback:
    http://www.apple.com/feedback/ - Apple products feedback links

  • MDX to get last Sunday and Saturday

    I built a SSRS 2005 report on a SSAS 2005 cube. The report has start date and end date parameters from Time dimension. I need to set the default values to be last Sunday and last Saturday separately. (financial week is from Sunday to Saturday)
    E.g.
    Start date: [Time].[Day].&[20140309]
    End date: [Time].[Day].&[20140315]
    How can I do it dynamically? I mean for this week is above dates, but for next week, it should be 16 March, 22 March. I know how to do it in T-SQL, which will involve some calculation with system date, but MDX?

    I created a data set in the report and it will have SQL query. This data set will generate the Week Start date and End Date. Use them as parameter default values. the parameter value you need to pass to the MDX query is going to be "[Time].[Day].&["
    + CStr(Format(Parameters!fromdate.Value, "yyyyMMdd")) + "]" and "[Time].[Day].&[" + CStr(Format(Parameters!enddate.Value, "yyyyMMdd")) + "]"
    prajwal kumar potula

  • Getting the data between Sunday and Saturday of last week.(DAYS NOT DATES)

    I have a stored procedure (that has no parameters right now) and does some extraction of data from different tables. One of the table has a column called 'DeliveryDate'.
    Based on the requirements, I have to create an SSRS 2008 R2 Report out of that stored procedure, so that users can see the data of last week from Sunday(Start DAY) to Saturday(End DAY). Even if it is Wednesday today, they should be able to see the data
    from Last Sunday to this Saturday. I don't want to get data of Monday, tuesday or wednesday. Also, these values shouldn't be STATIC. Meaning, if one user wanted to see deliveries on 04-15-2011, then he shoud see the values of the previous week (and NOT
    CURRENT week)
    1. Do I need to create parameters in my stored proc. Are they needed at all ?
    2. Should I use DateAdd, Datediff functions (If someone can explain, how will they be calculated!)

    to get last week sunday and saturday use below. I prefer to use parameters.
    set @startdate = DATEADD(wk,
    DATEDIFF(wk,
    0,
    getdate()),
    -2) --for
    sunday
    set @enddate = DATEADD(wk,
    -1,
    DATEADD(wk,
    DATEDIFF(wk,
    0,getdate()),
    -1))-- for saturday
    also
    refer the following link
    http://blog.sqlauthority.com/2008/08/29/sql-server-few-useful-datetime-functions-to-find-specific-dates/
    ESHANI. Please click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you
    If I run the query on 5/4/2014, will it give me 4/27/2014 for Sunday and 5/3/2014 for Saturday? Meaning if I run it on a Sunday, it will give me the previous Sunday and not the current Sunday's date.

  • Sales (and other) by Hour

    I am creating a report that categorizes certain sales data by hour. For example:
    Time Customers
    Items Sales
    8:00 - 9:00 54
    413 $954.52 
    So far I am just using a CASE statement such as:
    SUM(CASE WHEN SE.TIME_STAMP BETWEEN DATEADD(HH, 0, @START_DATE) AND DATEADD(HH, 8, @START_DATE) THEN SE.ITEM_PRICE ELSE 0 END) AS 'PRE8 SALES',
    I repeat this for each time slot.
    I have two questions, if possible. Question #1: Is there an easier way to get this data from the
    SalesEntries table? I figure I'd ask the experts to see if there was a more ingenious way of getting this data by hour.
    Question #2: I have a unique column, se.salesID. How can I get a unique count of all the salesID values?
    Thank you (as always) for any help you can provide.
    Patrick
    Patrick Regis

    1. I would setup an hour lookup table and JOIN it in for the summary query
    2. SELECT count(*) from YourTable
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • My Ipad 2 has tried to shot down now for 3 hours, just before I could not open Itunes and App Store but Email and other apps was working. them I tried to shot down but I have now for 3 hours black screen whit turning wheel. any I deas what too do?

    My Ipad 2 has tried to shot down now for 3 hours, just before I could not open Itunes and App Store but Email and other apps was working. them I tried to shot down but I have now for now for more that 3 hours black screen whit turning wheel. any I deas what too do

    See Here for
    iPad Basic Troubleshooting
    http://support.apple.com/kb/TS3274
    Unresponsive iPad
    http://support.apple.com/kb/TS3281

  • Tried to install Lion. MacBook is running with showing Apples and other signs (questionmarks etc.) without getting finished after hours. What to do?

    Tried to install Lion. MacBook is running with showing Apples and other signs (questionmarks etc.) without getting finished after hours. What to do?

    The download took hours. But it was completed. After that i got a message that the hard-drive should not be ok. But it started updating the operating system.
    Yesterday I now installed Snow Leopard again and started the download of Lion again. Worked faster and is installed now. Now i have a problem with the charger or the battery.

  • I'm able to login apple store ,and I want to buy a software in apple store, it requires me to answer security questions but I forgot that, after sevaral attmpts ,it was locked,it tells me that I must try after 8 hours.Is there any other option to solve?

    I'm able to login apple store ,and I want to buy a software in apple store, it requires me to answer security questions but I forgot that, after sevaral attampts ,it was locked,it tells me that I must try after 8 hours.Is there any other option to solve?

    http://www.apple.com/support/appleid/security/

  • Convert DVD and other video files for playback on  iPhone, iPod, PSP, etc.

    So, how are your holidays going? Or, if you're reading this on the weekend, how'd they go? Watching various sorts of DVD movies and videos is a better idea for a pastime during your free time. To make your holiday be more colorful with movies, I prefer to recommend an application to help you guys deal with different kinds of video resources, no matter the DVD files or footages shot by camcorders, or videos in formats of FLV, AVI, MKV, etc., in a word, the converted videos will be supported by whatever portable devices you have, including PSP, iPod Classic, iPod Touch, iPod Nano, iPhone (3G), iPhone, Zune, Zune 2, Blackberry, Nokia, Creative Zen, Sony Walkman, iRiver PMP, Archos, PS3, Apple TV, Xbox, iPAQ, Pocket PC, Mobile Phone, etc. The software is Pavtube Video DVD Converter Ultimate, which combines DVD ripper and Video Converter together, and enables you to edit and convert any DVD, video, audio and image files to other popular formats including MP4, 3GP, FLV, MPEG-4, AVI, MPG, MOV, 3G2, VOB, FLAC, MKA, OGG, WAV, AC3, M4A with super fast conversion speed and excellent image and sound quality.
    The detailed user guide will be shown in the following part:
    Step 1: Add video and DVD file
    You are allowed to add videos to this program via clicking "Add Video", and add DVD files to it via clicking "Load DVD". DVD files can be loaded in three ways: "Load DVD ROM", "Load DVD Folder", and "Load ISO/IFO".
    Step 2: Select output format and set destination folder
    Videos and DVD files can be added to this program at the same time, after that, you can click the drop-down list of "Format" to select an output format for your portable devices. The format profile provides you with formats for iPod, iPhone, PSP, PS3, BlackBerry, etc. Meanwhile, you can click the folder icon at the end of "Output" to decide where to save the output files. Moreover, if you want to combine multiple files to be a single file, you can tick "Merge into one file".
    Step 3: Set advanced settings
    If you have the needs of adjusting video and audio parameters to make good control of the output file quality and size, you can click "Settings" button to do it, and all the options like codec, aspect ratio, bit rate, frame rate, audio channel, etc. are changeable on the following window.
    Step 4: Start conversion
    As soon as the above steps are finished, you can click "Convert" button to start conversion, the following ripping window will show you clearly about all the conversion info. After finished, you are able to find out the output files via clicking "Open" button.

    We're not supposed to talk about DVD conversion according to the terms of service ...
    So I'll assume these VOB files are from your HOME MOVIE DVDs you burned yourself and suggest the Videora iPod Classic Video Converter.
    http://www.videora.com/
    It's a really nice program that converts not only your HOME MOVIE DVD VOB files, but AVI, MPEG, and others. You can set the CPU usage from high to low with five settings, it has a queue which you can add multiple files to, and it will minimize to the taskbar for compact convenience. There are other Windows programs that do much the same, but I prefer Videora. Oh ... and it's freeware!!

  • Time Statement Form TF02 - Saturday Sunday

    Hi community,
    Could you explain how we can display
    Saturday
    Sunday
    in the TF02 form in case there is no time event please ?
    I already set up the feature LDAYW (value 7)
    Very useful when an employee is working on Sat or Sun according to his/her work schedule.
    Many thanks in advance.
    Kind regards

    Hi, you must delete following entries in V_T512G maintence view:
    TE XT S 6 $SKIP_NO_PAIRS
    TE XT S 7 $SKIP_NO_PAIRS
    Being 6 and 7 the weekdays.
    Regards,
    Diego.

  • Exchange 2010 management tools and others

    Win2k8 domain, Exchange 2010 servers
    We want to move to Win8.1 but we, the admins, are preventing it because our tools like the Exchange 2010 Management tool doesn't work with Win8.0 so we're stuck with Win7.
    I've googled around and most suggestion never worked.
    Does Microsoft have any plans at all to have Exchange 2010 management tools and other tools we use to manage our domain work with Win8.1?

    Hi Rino, 
    Thanks for your sharing and efforts put on this issue. 
    This will benefit others who encounter the similar scenario as yours.  
    Happy holiday~
    Kate Li
    TechNet Community Support

  • Failed Hardware Scan and other issues E440

    Hi all,
    This is probably more rant than anything, but I wanted to give a heads up to others too.
    I have a ThinkPad E440 that is a year old. From the very first time I turned it on, there have been issues. The first hardware scan (via Lenovo Solution Center - LSC) showed a warning for the Intel Dual Band Wireless-AC 7260 Local Connection Test. There were also tons of System Events that always show up in the "Configuration History" part of the LSC. You can look at the calendar and tell exactly which days I used the computer because there will be System Events generated each day. Things like app crashes and failed drivers.
    In July 2014, I got the first warning for the 16 GB SSD - the SMART Short Self-Test. By February this year it showed as failed for each hardware scan (these were initially set up to run monthly).
    Also the whole time I've had it the touch screen would just stop working at some point and I would have to reboot to get it working again.
    I finally called Lenovo on March 30th, before my warranty expired. When I called that time, I didn't realize the hard drive failure was the SSD. So they sent me a new 500 GB drive. I also added the other things into the case when I talked to them. For the wireless issue they suggested making sure the driver was up to date. I did this and let them know when I called back that it was up to date and still having the warning. So I called them to tell them to tell them about the wireless and also that I realized it was the SSD having the failure, not the main drive. The first case had already been closed even though none of the other items were addressed.
    So they opened another case (this is #2). They said to mail them the laptop since the wireless issue would probably be on the board and it wasn't something I could fix myself. They sent a box with a prepaid overnight shipping label. I was very sick for a few days so I sent it back to them on April 10th (a Friday). Via UPS I saw it was delivered on Saturday. Work was performed on it Monday, April 13th and sent back to me that very day. I received it on April 14th. This part of the service has been excellent - very fast response.
    Being in IT, I included a letter with the laptop that outlined the issues that should have been in the case. I also printed the hardware scans and what the system events looked like.
    When I got the laptop back, the sheet inside said they had replaced the Speaker because of Distorted Sound. This was not even on the list even though I had noticed it. I didn't even power up the laptop before calling them again - yes, I was furious! Plus our power was out...
    So this was noon on the 14th. They opened case #3 and sent me ANOTHER BOX so I could send it back.
    After our power came back on the 15th, I powered up my laptop. I opened the browser (I have it set to restore the previous session) and there was a sexually explicit video on YouTube. I opened the other browser and there was a different video on YouTube. So this person was watching YouTube instead of fixing my laptop. I looked through both browser histories and there was quite a bit of activity while my laptop was at the repair center... I ran the hardware scan - still failed and a warning for the wireless. They really hadn't done anything.
    I also found two pictures of the repair person in the recycle bin...
    So I called back. I was LIVID! They opened another case (this is #4). And sent me ANOTHER BOX. I finally learned the other day that once a case is opened, it cannot be edited or added to at all. Instead, they close the other case and open a new one. I guess their turnaround time for closing cases is excellent! I've never seen a system like that - and I've used a lot of them.
    I got a really nice, patient fellow on the line. He took all my info (again). I emailed him the pictures, screen captures of the YouTube videos, the letter I had sent - everything. He entered as much into the new case as he could - he talked to one of the supervisors to make sure he did it right. Somehow he flagged it so that the laptop would get more attention (time) at the repair facility. He also opened a separate case (an escalation ticket?) for a supervisor to call me regarding the person's conduct at the repair facility. He said they would call me that day. (It's now the 25th and I've never heard from anyone)
    So, he sent me ANOTHER BOX. I've built up quite a stack of them.
    Our power was out AGAIN from the 17th through the 19th (don't get me started).
    I noticed a hardware scan had now gotten a failure on the main hard drive. So I called them on the 21st to add this to the case before sending the laptop back. The girl said they can't add anything to an existing case or edit it at all once it's opened. She would have to open a new case and SEND ME ANOTHER BOX. I told her to forget it because I was ready to send it in and didn't want to wait for another box. I also asked for a status on that "escalation case" where the supervisor was supposed to call me. In order to do this she, yes, wait for it, had to open ANOTHER CASE!! So they would know I wanted a status. I'm completely dumbfounded.
    So I sent it back on the 21st. This time I practically wiped it. I had already removed all my files the last time, but I had left my bookmarks and browser history intact.  I set up a guest logon with admin privileges. I updated my letter and printed off more stuff to include with the box. On one sheet I had only the case number, the serial number and machine type. On another sheet I had "DO NOT SEPARATE THIS PAPERWORK FROM THE LAPTOP" and the case number. I put this sheet on top (The guy on the 15th said my letter and stuff may have gotten separated from the laptop once it was delivered to the repair facility). I used a ton of staples so it would all stay together. I included in my letter the failure on the main hard drive and asked if they could look at it. I wrote about having to open a new case if I wanted to include it.
    They received it on the 22nd. A nice gentleman from the repair facility called me that day asking about the password. that. was. written. on the sheet they have you fill out. I told him what happened last time and also mentioned the hard drive failure and asked if he could look into it. He said they would.
    I received my laptop back yesterday morning.The sheet that came with it said they had "replaced the following parts to complete the repair of your laptop."
    Part Description                                           Symptom
    IMAGE                                                             Replaced due to engineering change
    System board                                                 Network card error
    Hard disk drive                                                Network card error
    ECA-WIRELESS                                            <no symptom listed>
    There was also a sheet saying they had installed a factory preload of software and I needed to install Lenovo and Windows updates.
    When I booted it up, the first thing I noticed, in the lower right corner was:
    Windows 8.1
    SecureBoot isn’t configured correctly
    Build 9600
    I ran a hardware scan. Well, I tried. It stopped part way through and said it finished successfully but most of the tasks showed up as cancelled. I tried to run it again - issues - rebooting ensued. It said the LSC wasn’t available and that I should try again or reboot.
    Tried several times. Then got what I guess is the new BSOD - kinder, gentler:
    Your PC ran into a problem and needs to restart. We're just
    collecting some error info, and then we'll restart for you. (xx% complete)
    If you'd like to know more, you can search online later for this error: DRIVER_CORRUPTED_EXPOOL
    Even though the LSC said my Lenovo files were all up to date, I ran the Update. And first I had to download a new version of Update. Then I downloaded all of the Lenovo updates and installed them (there were quite a few). The BIOS update failed. While I was doing the Lenovo downloads, I got a light blue screen but no text (I was out of the room so I'm not sure what happened). Did CTRL-ALT-DEL and it shows only IE and Task Manager as applications that are running. Could not “Switch to” IE. Hitting window key to go to start didn't do anything. So I had to restart.
    By 3pm yesterday there were 34 system events in the configuration history.
    I ran the hardware scan again after I updated the Lenovo files, and you guessed it! Failure on the SSD (SMART Short Self-Test) and warning on the wireless. Nothing had changed. Except hardware scan is acting different than it did before I sent in the laptop for repairs. When it finishes, it instantly closes and just shows 100% complete. When I click on "see last results" it shows a screen called
    Log Information,
    Canceled 04/24/2015 n:nn pm 
    You have not done a hardware test on your computer
    And the calendar in LSC only shows the very first hardware scan I did on Friday. Even the hardware scan screen shows the date and time of the last scan. It also shows the error code. In order to see exactly what is failing, I have to sit there and watch it very closely and snap a picture of the screen as soon as the error (or warning) shows up.
    When I would try to run Windows update, it would hang up PC Settings. I couldn't even kill it using task manager because it didn't show up as a task. During this, I got a flag saying the firewall wasn't turned on. I tried to turn it on, but clicking on Turn on Windows Firewall didn't do anything. I tried to setup my Microsoft account but that just hung too.
    I ended up running Windows Update FOUR TIMES to get all the updates installed. Every time I ran it, it said "Done!" and I would run it again and more would show up. The last time was this morning.
    At some point, the error about SecureBoot went away.
    Then, I created a bootable BIOS update disk. Following the ReadMe instructions, I went through ThinkPad Setup and verified several values. Of note:
    Secure Boot was DISABLED. According to the ReadMe file, this should be ENABLED in Windows 8.1. I enabled it.
    Under Startup/Boot, according to the ReadMe that came with the BIOS update, UEFI/Legacy Boot is supposed to be set at UEFI Only for Windows 8.1. Mine was set to "Both". I changed it.
    In Startup, OS Optimized Defaults was DISABLED, even though it says right there (and in the BIOS update ReadMe) it should be ENABLED to meet Microsoft Windows 8 Certification Requirement.
    After these updates, I flashed the new BIOS.
    Then, I ran hardware scan again...
    Now I have TWO failures on the SSD: Random Seek Test and SMART Short Self-Test. Great.
    In the Event Viewer (that I recently discovered), it says my disk has a bad block. It just says The device, \Device\Harddisk\DR1, has a bad block. I assume this is the SSD...
    There are 867 events in the event viewer - Critical, Error, and Warning...
    Fifty-two of these are from October 7, 2013 - before my little laptop was a glimmer.
    The rest are from when Lenovo had it and yesterday and today.
    64 of them are the disk error.
    341 are from DeviceSetupManager. 65 of those are from failed driver installs. 69 are for not being able to establish a connection to the windows update service. 64 are from not being able to establish a connection to the Windows Metadata and Internet Services (WMIS).
    3 times it's rebooted without cleanly shutting down
    60 of them are from Service Control Manager and say The TDKLIB service failed to start due to the following error: The system cannot find the file specified.
    One of them says {Registry Hive Recovered} Registry hive (file): '\??\C:\Users\Default\NTUSER.DAT' was corrupted and it has been recovered. Some data might have been lost.
    16 are warnings that various processors in Group 0 are being limited by system firmware.
    12 say the certificate for local system with thumbprint <bunch of hex numbers> is about to expire or already expired.
    108 are warnings for failure to load the driver \Driver\WUDFRd for various devices
    16 are application errors
    One is for the computer rebooting from a "bug check"
    15 are for name resolutions timing out after none of the configured DNS servers responded.
    10 are for SecureBoot being disabled.
    14 for services terminating unexpectedly
    15 are for WLAN Extensibility Module has stopped
    61 are for applications not being able to be restarted because the application SID does not match Conductor SID
    12 are for activation of CLSID timing out waiting for the service wuauserv to stop
    So, I'll call them on Monday and open. a. new. case (#5?) - but really 7. And get A NEW BOX.
    I'll keep you updated!

    Hi amycdero and welcome to the HP Forum,
    I understand that you are having scanning and printing issues after upgrading to Mavericks OS X v10.9.1. I will try my best to help you resolve this issue.
    In this document for Mac OS X: Scanning Software Does Not Open or Stops Responding are steps the may help you with your scanning issue.
    This document for Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems should help with the streaking printing issue.
    I hope this information is helpful. Please let me know.
    Thank you,
    I worked on behalf of HP.

  • I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.  I've been unable to locate an app that will do this.

    I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.
    I've been unable to locate an app that will do this.  The Photos app that comes with the phone or iPad has extremely limited duration controls.  PhotoStream seems to load everything from my phone or iPad not allowing me to just load up a set group of images.
    iPhoto for iPad is getting some terrible recent reviews.  I tried a couple other free apps but they don't use Airplay.
    I can do something like this with iPhoto and my MB Air, but it's kind of ugly to have the computer open in order to connect by Airplay to my Apple TV.  I've thought the iPad or iPhone would be a lower profile controller.
    Am I out of luck?

    Thanks for your help.  Since I'm uninterested in loading all my photos (the only option) into photostream, I won't be able to use the settings in ATV.  I guess I'm just stuck with using iPhoto on my MB Air.  Thanks again.
    paul

  • When trying to update apps an invalid apple id show up and I cannot get the apple id to update to the same id,  I have restored, restored as a new phone, I have been into the manage I am at wits end after 7 hours on hold and working with techs.

    When trying to update apps an invalid apple id show up and I cannot get the apple id to update to the same id,  I have restored, restored as a new phone, I have been into the manage I am at wits end after 7 hours on hold and working with techs.

    Finally got through to tech support and found someone who seemed to know what was going on, he walked me through and using appleid.applesupport got me to a point where i could get a new password for the apple id that kept showing up. 
    I think you were on the right trail and I want to say thanks for your help.  Much appreciated
    ccl43

Maybe you are looking for

  • VGA identified at MacBook but no picture

    I'm trying to use a HDTV with VGA input with my MacBook. The TV works perfectly with a PC, so it isn't the TV or the VGA cable. I plugged in the Apple mini-DVI to VGA connector to the VGA cable; the TV is correctly recognized by the display preferenc

  • Why is my iMac running slow--??

    Hardware Information:           iMac (21.5-inch, Late 2012)           iMac - model: iMac13,1           1 2.7 GHz Intel Core i5 CPU: 4 cores           8 GB RAM Video Information:           NVIDIA GeForce GT 640M - VRAM: 512 MB Audio Plug-ins:         

  • Wrt54g laptop wireless modem connected to router but will not access in any browsers.

    I started a friends laptop at my house put in the security key and it connected to my network with excellent strength.  When I opened IE or Safari it said unable to access page not connected to the internet. I went into the properties of the wireless

  • IOException: There is no process to read data written to a pipe

    Do anyone know what is the meaning of this exception?

  • Acess some website

    Hi I have just brought a N6700 and when i go online to access some chat sites, it won't let me access it.  A message pop up and said "Unsupported Content Type"  These site i'm going on are not dodgy sites, just normal chat site.  My previous phone (d