Signal breaks up and stutters

Forgive me if this is the same thing that others have been describing as pixelation, but I havent heard it described this way so I wasn't sure if it's the same thing. I have been having problems particularly with one of my Moto DVRs on certain channels, Local HD, BBCa, that looks remarkably like what used to happen on DirecTV during a storm when the sat signal was being affected by the weather. Freezing and stuttering, and it is recorded that way on the DVR. It's quite frustrating, as that was one of the reasons I switched from DirecTV. Does this sound like the same thing that people have been using attenuators with their TIVOs to fix? Is my DVR wonky? 

Thanks for the quick response; this forum seems to be geared more towards actually helping than just complaining. Do you know if once the cable cards and attenuators and all are set up correctly in the TIVOs, are people still having this problem? Because between this issue and the bad guide, it might finally be enough to drive me over the edge to buying an HD Tivo, if I knew it would take care of it.  

Similar Messages

  • How many break points and watchpoints are allowed in ECC 6.0

    Hi,
    Can any one say how many break points and watchpoints are allowed in ECC 6.0

    Hi ,
    A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The Debugger is activated when the program reaches this point.Max 30 breakpoints we can use.
    There is a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change ie...Watchpoints allow you the option of monitoring the content of individual variables.The Debugger stops as soon as the value of the monitored variable changes.You can use max of 5 watchpoints.
    Difference
    1. Break Point.
    At particular LINE of SOURCE CODE,
    the system will STOP there.
    2. Watch Point.
    If you want to interrupt a program when the contents of a field or structure change, use a watchpoint. You can set up to five watchpoints, including watchpoints for strings.
    (For this, we have to give some
    VARIABLE NAME & VARIABLE VALUE - with relational operator)
    When this CONDITION gets satisfied,
    (anywhere during the execution of the program),
    the system will AUTOMATICALLY STOP THERE.
    (EG when the value of matnr reaches the specified value)
    That is the purpose of WATCHPOINT
    (the system will WATCH it, like a dog)
    Please go through this link:
    Watchpoint Vs breakpoint
    http://help.sap.com/saphelp_nw04/helpdata/en/c6/617cdce68c11d2b2ab080009b43351/content.htm
    Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger. Watchpoints allow you the option of monitoring the content of individual variables.
    The Debugger stops as soon as the value of the monitored variable changes.
    In addition, conditions can be specified. The Debugger also checks whether such a condition is fulfilled.
    For more details...
    http://help.sap.com/saphelp_nw04/helpdata/en/c6/617cd9e68c11d2b2ab080009b43351/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/f1/792442db42e22ce10000000a1550b0/frameset.htm
    If satisfied, rewards me..
    Kind Regards
    Yogesh

  • Break points and watch points

    Hi all
       Can anybody help me using break points and watch points.what do they exactly do as well..
    Thanks
    abap user

    Hi
    <b>Breakpoints</b>
    Instead of starting an ABAP program directly in the Debugger, you can also debug a program by creating one or more breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The program runs normally until the breakpoint is reached.
    There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field <b>change. For further information, refer to Watchpoints.
    Breakpoint Variants</b>
    The Debugger contains different breakpoint variants:
    <b>Static</b>     The BREAK-POINT statement in an ABAP program. Static breakpoints are not normally user-specific. However, you can make them user-specific.
    <b>Directly-set</b>
    dynamic breakpoints     Can be set in the ABAP Editor or the Debugger. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.
    <b>Breakpoint</b>
    at statement     The Debugger stops the program directly before the specified statement is executed.
    <b>Breakpoint at subroutine</b>     The Debugger stops the program directly before the specified subroutine is called.
    <b>Breakpoint at function module</b>     The Debugger stops the program directly before the specified function module is called.
    Breakpoint at method     The Debugger stops the program directly before the specified method is called.
    <b>Breakpoints at system exceptions</b>     The Debugger stops the program directly after a system exception, that is, after a runtime error has been intercepted.
    <b>Use</b>
    <b>Static Breakpoints</b>
    Static breakpoints are not normally user-specific. Once a user has inserted a BREAK-POINT statement in an ABAP program, the system always interrupts the program at that point. You should only use static breakpoints during the development phase of an application. You should set static breakpoints whenever more than one programmer is working on the same program and you always want to stop the program in the same place.
    <b>Dynamic Breakpoints</b>
    Dynamic breakpoints are user-specific. You should, therefore, use them when you only want the program to be interrupted when you run it yourself. All dynamic breakpoints are deleted when you log off from the R/3 System.
    Dynamic breakpoints are more flexible than static breakpoints, because you can deactivate or delete them at runtime. They have the following advantages:
    •     You do not have to change the program code
    •     You can set them even when the program is locked by another programmer
    •     You can define a counter (for example, only activate the breakpoint after it has been reached five times).
    <b>Special Dynamic Breakpoints</b>
    Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the program code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger.
    <b>Transferring Breakpoints to HTTP and Update Sessions</b>
    If an HTTP or update session is called from a Logical Unit of Work (LUW), new work processes are started for these new sessions. Breakpoints that were defined beforehand in the calling LUW are copied to these sessions where they can be displayed under breakpoints.
    If, for example, the update module func is called via CALL FUNCTION func IN UPDATE TASK, the new work process is displayed in a second window if Update debugging was selected under Settings in the debugging mode. All the breakpoints that were set in the calling LUW can then be processed here.
    <b>Static Breakpoints</b>
    You should only use static breakpoints during the development phase of an application. You must remove them from your program before you transport it.
    Setting Breakpoints
    To set a static breakpoint, use the ABAP statement BREAK-POINT . Place the breakpoint in the line at which you want to interrupt the program.
    program RSDEBUG_01.
    if SY-SUBRC <> 0.
    break-point.
    endif.
    When you run the program, the runtime processor interrupts it when the breakpoints occur. You can number your breakpoints to make them easier to identify ( BREAK-POINT 1, BREAK-POINT 2 …).
    Static breakpoints are not normally user-specific. The program is, therefore, always interrupted as soon as the runtime processor reaches the line containing the breakpoint. The program is interrupted regardless of the user who executes it.
    However, you can set user-specific static breakpoints using the BREAK statement followed by your user name. For example, if you use the statement BREAK SMITH , the program is only interrupted when user Smith runs it. Although user-specific breakpoints appear in the program code, they are not active when other users run the program. You should, however, be careful if an application is being used by several users with the same name.
    Deleting Breakpoints
    Since static breakpoints apply to all users, you must remove them from the program once you have finished testing it. In the ABAP Editor, you can find breakpoints quickly by choosing Utilities &#61614; Global search. You can also use the Extended Program Check to find them.
    If you do not remove static breakpoints from your program, they will be transported to your production system. This could cause serious problems in the production system.
    <b>Dynamic Breakpoints</b>
    You can set up to 30 dynamic breakpoints without changing the program code. Dynamic breakpoints can be set either in the ABAP Editor or directly in the Debugger.
    Setting Dynamic Breakpoints in the ABAP Editor
    You can set dynamic breakpoints in the ABAP Editor regardless of whether you are in display or change mode. You can also set breakpoints directly from within the Debugger at runtime. To set a dynamic breakpoint in the ABAP Editor:
    1.     Position the cursor on the line of the source code at which you want to set the breakpoint.
    2.     Choose Utilities &#61614; Breakpoints &#61614; Set or the Stop icon. The system confirms that the breakpoint has been set.
    To display a list of all dynamic breakpoints in a program, choose Utilities &#61614; Breakpoints &#61614; Display. You can use this list to navigate to a particular breakpoint or to delete one or more breakpoints from the program.
    Setting Dynamic Breakpoints in Debugging Mode
    To set a dynamic breakpoint in the Debugger:
    1.     Position the cursor on the line in which you want to set the breakpoint.
    2.     Select the line by double-clicking it or choosing Breakpoint &#61614; Set/delete.
    The system sets the breakpoint, and displays a small stop sign to the left of the relevant line. If the line already contained a breakpoint, it is deleted.
    When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    <b>
    Breakpoints at Statements</b>
    You can use this special kind of dynamic breakpoint to interrupt a program directly before an ABAP statement is processed.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at an ABAP statement:
    1.     Choose Breakpoint &#61614; Breakpoint at &#61614; Statement...
    2.     Enter the ABAP statement.
    The system sets a breakpoint at all points in the program at which the ABAP statement occurs.
    3.     Choose ENTER.
    The breakpoint applies to all lines containing the specified statement.
    Result
    The system confirms the breakpoint and adds it to the list in the display. When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    <b>Breakpoints at Subroutines</b>
    You can use this special kind of dynamic breakpoint to interrupt a program directly before a subroutine is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint for a subroutine:
    1.     Choose Breakpoint &#61614; Breakpoint at &#61614; Event/Subroutine.
    2.     Enter the name of the subroutine before which you want to interrupt the program. By default, the Program field contains the name of the program that is currently active. The system sets a breakpoint wherever the specified subroutine occurs in the program code.
    3.     Choose ENTER.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    <b>Breakpoints at Function Module</b>
    You can use this kind of dynamic breakpoint to interrupt a program directly before a function module is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    <b>To set a breakpoint for a function module</b>:
    1.     Choose Breakpoint &#61614; Breakpoint at &#61614; Function module... 
    2.     Enter the name of the function module before which you want to interrupt the program. The system sets a breakpoint wherever the specified event, module pool, or subroutine occurs in the program code.
    3.     Choose ENTER.
    Result
    If you entered a valid function module name, the system confirms that the breakpoint has been set. If the function module exists in the system, the new breakpoint is added to the display list.
    <b>Breakpoints at System Exceptions</b>
    You can use this special form of dynamic breakpoint to interrupt a program immediately after a runtime error has occurred.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at a system exception:
    Choose Breakpoint &#61614; Breakpoint at &#61614; System exception.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    When a system exception is triggered, a warning triangle appears in the line containing the statement that caused it. If you double-click the warning triangle, the internal name of the runtime error appears.
    <b>Saving Breakpoints</b>
    If you want to leave the Debugger temporarily, you can save your dynamic breakpoints so that they are still active when you return to the Debugger within the same terminal session.
    To save the breakpoints that you have set in the Debugger:
    Choose Breakpoint &#61614; Save.
    The system saves all of the breakpoints that you have set in the current program. These breakpoints will remain active until you either explicitly delete them or log off from the system.
    <u>You can also delete breakpoints that you have saved</u>:
    •     By deleting individual breakpoints from the display and then saving again. In this case, only your selected breakpoints will be deleted.
    •     By choosing Breakpoint &#61614; Delete all. In this case, the system deletes all dynamic breakpoints.
    <b>Managing Dynamic Breakpoints</b>
    The ABAP Debugger provides a convenient user interface for managing breakpoints. To open the breakpoint display, choose Breakpoints, or, from the menu, Goto &#61614; Control debugging &#61614; Breakpoints.
    Functions
    This display mode contains the following functions for breakpoints:
    Breakpoint Display
    The scrollable breakpoint display contains up to 30 dynamic breakpoints. For breakpoints that you set directly, the program name and line number at which the breakpoint occurs are displayed. For special breakpoint forms, the list displays the statements, events, subroutines, and module calls at which the relevant breakpoints are set.
    Counter
    In the breakpoint display, you can specify a counter. When you use a counter, the breakpoint is not activated until it has been reached a specified number of times. For example, if you enter 5 for the counter, the breakpoint is not activated until it is reached for the fifth time. After the breakpoint has been activated, it remains so, and the counter no longer appears in the breakpoint display.
    Deleting Breakpoints
    Position the cursor on the breakpoint that you want to delete, and either double-click the line or choose Breakpoint &#61614; Set/delete. To delete all breakpoints, choose Breakpoint &#61614; Delete all.
    Activating and Deactivating Breakpoints
    Position the cursor on the breakpoint that you want to activate or deactivate and choose Breakpoint &#61614; Activate/deactivate.
    <b>Watchpoints</b>
    Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.
    Use
    You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.
    Features
    •     You can set up to five watchpoints in a program.
    •     You can also specify the conditions on which a watchpoint is to become active.
    •     You can specify logical conditions between up to five conditional watchpoints.
    •     You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in the specified program.
    •     You can change and delete watchpoints.
    <b>Setting Watchpoints</b>
    If you want to interrupt a program when the contents of a field or structure change, use a watchpoint. You can set up to five watchpoints, including watchpoints for strings.
    A watchpoint can be either local or global. Local watchpoints are only valid in the specified program. Global watchpoints are valid in the specified program, and also in all the other programs it calls.
    Procedure
    <u>To set a watchpoint, start the Debugger and proceed as follows:</u>
    1.     Choose Breakpoint &#61614; Create watchpoint or the corresponding pushbutton. The Create Watchpoint dialog box appears.
    2.     Decide whether you want to set a local or global watchpoint.
    3.     Enter the program and the name of the field for which you want to set the watchpoint. In the Program field, the name of the program currently running is always defaulted.
    4.     If you want your watchpoint to be activated each time the contents of the field change, the definition is now complete, and you can return to the Debugger by pressing ENTER .
    5.     To create a conditional watchpoint, that is only activated when a particular situation arises, choose one of the following relational operators.
    Operator     Meaning
    <     Less than
    <=     Less than or equal
    =     Equal
    <>     Not equal
    >=      Greater than or equal
    >      Greater than
    6.     
    7.     You can use the Comparison field option to specify whether the comparison is to be carried out with a value that you specify or with the contents of another field. Depending on your choice from step 6, enter a value or a field for the comparison.
    <b>Result</b>
    The system confirms the watchpoint and adds it to the list in the display. When you finish your debugging session, the watchpoint is automatically deleted unless you have explicitly saved it.
    <b>Specifying Logical Links</b>
    If you have more than one conditional watchpoint, you can specify a logical link between them:
    OR     Only one of the specified conditions must be met
    AND     All of the conditions must be met.
    <u>To create a logical link between watchpoints:</u>
    1.     Choose Goto &#61614; Control debugging &#61614; Watchpoints or the Watchpoints pushbutton to open the watchpoint display.
    2.     Set the Logical operator between watchpoints option.
    The default value is always OR .
    Changing Watchpoints
    1.     Choose Goto &#61614; Control debugging &#61614; Watchpoints or the Watchpoints pushbutton to display the watchpoint list.
    2.     Choose the pencil icon in the line containing the watchpoint you want to change.
    3.     Change the watchpoint attributes in the Create/Change Watchpoint.
    3.     Choose ENTER .
    <b>Deleting Watchpoints</b>
    You cannot delete watchpoints by choosing Breakpoint &#61614; Delete or Breakpoint &#61614; Deactivate/activate. Instead, proceed as follows:
    1.     Choose Goto &#61614; Control debugging &#61614; Watchpoints or the Watchpoints pushbutton to display the watchpoint list.
    2.     Choose the trashcan icon in the line containing the watchpoint you want to delete.
    <b>Memory Monitoring with Watchpoints</b>
    You can use watchpoints to display changes to the references of strings, data and object references, and internal tables. By placing an ampersand (&) in front of the object name, you can display the reference in question in hexadecimal format. With internal tables, you can also display the table header by placing an asterisk (*) at the beginning of the name.
    <b>Reward ifusefull</b>

  • Unable to connect my I-phone 4S via wifi from the Air-port express even though the signal is good and all my other devices (macBook air and speakers) are working properly? Already tried to change the channels on the Airport but still nothing.

    Since I've instaled the Airpor express, everithing connected to it works properly, My wifi network signal is good and I able to browse with my mac air, bu with my I-phone 4S even though the signal apears to be good and on the it shows is connected to my wifi network I can't open any web-site, instead I keep getting the same message: "Cannot Open Page - Safari could not open the page because the server stopped responding.", wich is not true because I'm connected with my lap-top. The sound wifi system works perfectly but reggarding the wifi on my 4S I've tried changing through different chanels on the Airport (I saw people were having the same problem and aparently by changing the channels on the Airport the internet on the phone worked properly, but I'm still stuck with a brand new I-phone unable to opem my pages) I've also tried changing the Radio modes and still nothing.
    Any suggestions?

    Since I've instaled the Airpor express, everithing connected to it works properly, My wifi network signal is good and I able to browse with my mac air, bu with my I-phone 4S even though the signal apears to be good and on the it shows is connected to my wifi network I can't open any web-site, instead I keep getting the same message: "Cannot Open Page - Safari could not open the page because the server stopped responding.", wich is not true because I'm connected with my lap-top. The sound wifi system works perfectly but reggarding the wifi on my 4S I've tried changing through different chanels on the Airport (I saw people were having the same problem and aparently by changing the channels on the Airport the internet on the phone worked properly, but I'm still stuck with a brand new I-phone unable to opem my pages) I've also tried changing the Radio modes and still nothing.
    Any suggestions?

  • I have an iphone 4G-S, I get "NO SIGNAL" when trying to view Netflix while the digital AV cable is connect to my tv an my TV is on. If TV is off, signal is fine and video plays from netflix fine. Any ideas?

    Steps I follow:
    1. turn phone on
    2. ensure signal is strong (att)
    3. launch netflix
    4. select and play video
    5. watch video play for several minutes
    6. plug in digital av adaptor with HDMI cable (not yet connected to television)
    7. ensure video continues to play
    8. connect HDMI cable to television (television not yet powered on)
    9. ensure video continues to play
    10. turn on Television
    Result: video stops, results in "NO SIGNAL" as in no bars
    11. Turn off television signal comes back and video resumes play
    Is Apple or netflix purposefuly blocking the signal?

    I should add that I see the video playing for about 30 seconds, everything looks and plays fine, then I get the "NO SIGNAL" and all att bars go away.
    also, I'm using my phone istead of my laptop becuase I don't have internet service at home, wanted to just use my phone and it's unlimitted data plan to be able to watch netflix.

  • How to show the break totals and NOT the report totals in an SQL report

    APEX 4.0.1
    In an normal SQL report (Not interactive) with a break applied on the first column, how do you just show the break totals and NOT the extra full report totals?
    Next, Is it possible to display only some of the row totals and not for all columns that have the sum option checked against them?
    PaulP

    PaulP wrote:
    APEX 4.0.1
    In an normal SQL report (Not interactive) with a break applied on the first column, how do you just show the break totals and NOT the extra full report totals?Instead of using the APEX break feature, try doing all of this in the query using <tt>GROUPING SETS</tt> or <tt>ROLLUP</tt> to get the break rows, and <tt>GROUPING_ID</tt> in the <tt>HAVING</tt> clause to suppress the unwanted rows.
    Next, Is it possible to display only some of the row totals and not for all columns that have the sum option checked against them?Don't really understand what's meant here?

  • My wife has iCloud on our computer and I want to break out and create my own account. Once I build the account how do I copy the address book from her account into mine?

    my wife has icloud on our computer and I want to break out and create my own icloud account. I've built the account but can't figure out how to COPY our joint address book onto my account so I can then weed out my own addresses. Please help!

    Welcome to the Apple Community.
    When you log out of the joint account, you should be asked if you want to keep the contacts, you do. When you log into your new account you should be asked if you want to merge contacts, you do.
    If you have already signed into your new account and not taken these options, the simplest thing to do might be to add your wife's account back as a secondary account in system preferences > mail, contacts & calendars. In groups in address book you can drag contacts from your wife's contacts onto your contact group to copy them.

  • How to get rid of 8800GT Video Laggin and Stutters

    Hi there I know you must be sick of my complaints of the same issue all the time but ive still not managed to fixed this this is my 4th 8800GT that ive owned since last december
    when the y got released Ive even tried XP and still the same with the latest drivers 175.16 i even tried 169.25 and that does it also In Vista 169.25 worked better but a lag now and then is there some settings that must enabled or is my cpu been bottlenecked by some thing running , the only time I have something running is when I play Fifa08 that program running is Winamp thats it aside from my Logitech Setpoint and NOD32 AV thats all So can some please help me out and Its with most of the games it lags, Give me some thing to try out please.. HELP ME PLEASE!!!!
    My list of 8800GT's ive owned they where all 512mbs
    1) XFX 8800GT (Nvidia Stock Cooler)
    2) MSI 8800GT (Nvidia Stock Cooler)
    3) XFX 8800GT (Zalman Cooler)
    4) MSI 8800GT (Quad Cooling)
    System Specifications:
    Intel QuadCore 9300 2.5ghz
    Kingmax 4GB DDR2 800
    MSI P35 Platinum v1.8
    MSI 8800GT 512mb
    Zalman 750watt PSU
    SBLive Audigy 4
    Windows Vista Ultimate 32bit
    Nvidia Drivers 175.16

    Quote from: Ravi on 06-June-08, 14:43:17
    Hi there
    Firstly I dont get sound lags just video Lags When I play games such as FIFA08 or Kane and Lynch on Vista or XP while playing it jerks and stutters for a few seconds then continues like normal then it does it again and so on this is the first time Ive had this problem and it has to be something I did wrong because other people's 8800GT is working fine with all
    the driver versions Im busy running memtest on my pc at home now as we speak
    That's loading game data on the fly, it's down to your hard drives.

  • I have a 32gb iphone 5 the wifi signal is bad and the time doesnt work can someone help i did everything thats in my hands and its still not working

    I have a 32gb iphone 5 the wifi signal is bad and the time doesnt work can someone help i did everything thats in my hands and its still not working

    Do you experience the same issue on other WiFi networks?
    Do any other iOS devices experience the same issue on your network?
    Make sure you follow all steps provided in the article below:
    iOS: Troubleshooting Wi-Fi networks and connections

  • Report with a break above and labels

    We want to create a Report with a break above and labels. There are examples for each of these, but I do not see an example of both in the same Report. Hopefully this is possible?? What can you tell us?
    Thanks, Wayne

    Thanks for the reply. I have the columns set up just as you have suggested. I even created a new report with form wizard and tried to update those two questionable columns.
    If the columns are null, and I add values, they save. But then when I go back and update the record, but different columns, it nulls out the two I am talking about. I am wondering if a trigger is out there someplace that is causing them to get nulled out.
    Regards,
    Jeff

  • Auto policy updates from DC1 to DC2 work but break user and admin login in DC2.

    Auto policy updates from DC1 to DC2 work but break user and admin login in DC2.
    Is there any solution to this ?

    You will need to update your transformation rules to match the URL/hosts for dc2.

  • I want to break inheritence and create unique permissions in a Project Server 2010 project site list/library.

    Some Project Managers want to restrict permissions on certain lists or libraries in their Project Server 2010 project site. However, when I have done this for them, by breaking inheritence to the parent site and then removing/adding users with unique
    sharepoint permissions, it seems that when the project schedule is published, some of the newly created permissions are lost.
    I have tried creating a SharePoint group at the project site level and then applied it with specific permissions (eg. Contribute) to the list/library and this seems to work better but I haven't been able to confirm yet if this will work in the
    longer term.
    Does anyone know what is the best method to break inheritence and set up unique permissions on a list in a Project Server 2010 project site that will not be lost when the project schedule is published?
    Thanks
    Peter

    Thanks Lynda
    I am aware that I can disengage the entire permissions sychronisation using that setting but that is not what I want to do.  I just want to be able to break the inherited permissions on individual document libraries or lists on specific Project Sites
    so that I can restrict access to nominated people.
    My issue is that when I do this, I find that some of the amended permissions disappear from time to time.  It seems to be related to when the schedule is published.  They
    don't revert to the inherited permissions, just some of the people who I have given direct access to no longer have access.
    Im just trying to find out the best way to manage setting non-automated permissions on a single list or library in a Project Server project sites so the changes stick.
    Peter

  • Iphone Music player skips and stutters with MP3s

    With the upgrade to iOS 5 (and 5.0.1) on my iPhone 3GS (32GB) I began to notice skips and stutters on numerous MP3s about 10 to 30 seconds into the song. I don't remember having any problems prior to iOS5 upgrade.
    The skips and stutters are somewhat reproducible in that, if I hear the skip or stutter, if I go back to the beginning of the song and play the song again, the skip or stutter will happen in approximately the same spot and will be of approximately the same nature (a repeated phrase or a jump or a distortion) but it isn't exactly the same.
    Most of my songs are 256kbps VBR MP3s ripped either by iTunes from my own CDs or purchased from Amazon.
    The facts (1) that the skip/stutter/or distortion is not exactly the same each time (2) the skips and stutters seem localized to the first 10 to 30 seconds of the song, then they play fine afterward, (3) that I don't have problems playing these songs under iTunes on my MacBook pro, and (4) it happens both with iTunes ripped MP3s and Amazon MP3s, would seem to be some form of OS problem rather than coding error. My guess would be some form of buffering issue or OS scheduling issue.
    Has anyone else noticed these problems?

    I experienced the same problem with my Iphone 5 skipping and not playing the music in my library correctly. I called apple and they gave me a solution that worked so far.
    The problem in my case was created by restoring the new phone from icloud. Apparently, if you have a lot of music or data, the music files don't completely download.
    Of course, make sure your music is backed up before starting
    Solution: connect iphone to itunes / select the music tab / uncheck sync music altogether / hit apply or sync (this should remove all music files from your phone) / when completed, re-check the sync entire music library or select your custom playlists-songs you want on your phone / then click apply or sync to put back all music on phone.
    This should solve your problems

  • New Album Art View slow and stutters.

    I have a 128MB video card and 1GB of Ram running about 3.0Ghz
    But I still get a problem when using the new album art browser view on iTunes. It's really slow and stutters. I was wondering if anyone else had this problem or could give me a tip in fixing it.

    I enabled 'Album Views' and the first 5 seconds or so of most songs are garbled (maybe while the image is loading?). I turn off the view album and the garbling goes away. Having the album artwork available is not as important as having songs that don't stutter or are garbled.
      Windows XP Pro  

  • Slow performance, Audio Crackling and Stutters

    I bought my Qosmio X775 7384 just 2 months ago and from the second I took it out of the box it seemed to underperformed, by which I mean it was about 1/2 as fast as my duel core 6gb RAM gateway desktop. I tried to ignore the issue and continued on with my work on my new laptop, using it mainly for music production. Every once in awhile I would get crackling and stutters, this I also tried to ignore but recently when I was in the middle of a performance it completely stuttered out and crashed the computer altogether, which was very embarrassing.
    Since then the crackling and popping seems to happen during every song, either in my software, tunes, youth.... pretty much anything with sound has crackling and popping. My music software freezes and crashes and I am still extremely underwhelmed by its performance.
    So far I have called and talked to support 3 times, the last time begging for a refund. They want to take my computer for repairs, IM not quite ready to give it up yet as I need it for performing. So here is what I have done.
    I reinstalled every windows driver in my devices, I reinstalled every driver from this website and I have done a out of box restore. Nothing has helped.
    I ran latencymon and its telling me that my isc and dpc routines are lasting too long for ndis.sys hdaudbus.sys iastor.sys and  i8042prt.sys and its telling me that at least one of my problems seems to be network related and that it looks like it could be battery related as well.
    Right now I have stripped all unnecessary programs and upgraded my wifi to the euro version of atheros. I believe I have done everything possible to speed up and make my computer stop popping and stuttering and it continues to do so as well as spike in the red of my latency testers.
    Please help!

    It sounds like you've done everything you can, especially considering that you did an out-of-box recovery. I'd agree that it's time to send it for servicing (or live with it, I suppose).
    - Peter

Maybe you are looking for