How to suspend only when Laptop is with Battery on systemd

Hi again , I was capable to make sleep hooks for systemd to lock screen when suspend/hibernate and for wicd to reconect wifi in same way, but i cant figure out is how to make systemd only suspend when is on battery. Because if I edit /etc/systemd/logind.conf to handle the Lid events always suspend wheterever is on battery or AC, before I was using acpi to handle this, to make clear here is my handler.sh
#!/bin/sh
# Default acpi script that takes an entry for all actions
#minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq`
#maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq`
#setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
set $*
case "$1" in
button/power)
#echo "PowerButton pressed!">/dev/tty5
case "$2" in
PBTN|PWRF) logger "PowerButton pressed: $2";;
*) logger "ACPI action undefined: $2" ;;
esac
button/sleep)
case "$2" in
SLPB) echo -n mem >/sys/power/state ;;
*) logger "ACPI action undefined: $2" ;;
esac
ac_adapter)
case "$2" in
AC|ACAD|ADP0)
case "$4" in
00000000)
#echo -n $minspeed >$setspeed
#/etc/laptop-mode/laptop-mode start
00000001)
#echo -n $maxspeed >$setspeed
#/etc/laptop-mode/laptop-mode stop
esac
*) logger "ACPI action undefined: $2";;
esac
battery)
case "$2" in
BAT0)
case "$4" in
00000000) #echo "offline" >/dev/tty5
00000001) #echo "online" >/dev/tty5
esac
CPU0)
*) logger "ACPI action undefined: $2" ;;
esac
button/lid)
case "$3" in
close)
#echo "LID closed!">/dev/tty5
STATE=$(cat /proc/sys/vm/dirty_writeback_centisecs)
if [[ $STATE == 60000 ]]
then
#/usr/sbin/pm-suspend
systemctl suspend
fi
open)
#echo "LID opened!">/dev/tty5
esac
logger "ACPI group/action undefined: $1 / $2"
esac
In my laptop dirty_writeback_centisecs= 60000 when is on battery if AC is 500. I read this post where one user make a udev rule to know if system is on AC or battery but I cant how to figure out to use in some way like i was using with acpi.
I was thinking in some sleep hook like this (i will use pseudo code):
#!/bin/sh
if [ $1 == 'pre' ] ; then
STATE=$(cat /proc/sys/vm/dirty_writeback_centisecs)
if [[ $STATE == 60000 ]]
then
systemctl suspend
elif
break suspend (this is i dont know how to implement)
fi
fi
I hope I was clear enough, feel fre to ask any questions. And sorry for my bad english

lahwaacz wrote:You can't do this with systemd AFAIK. What's wrong with acpid? It works, right?
Yes it works but if systemd can handle this eventes It would be good to get rid off of acpid because following this post I was capable of getting rid pm-utils .
Guess I'll have to keep using acpi until systemd can handle these events. Thanks.

Similar Messages

  • How to restore my ipad?My ipad say on screen CONNECT TO ITUNE.How can i do when i connect with computer.It is need itune new version.Can you sent me.I will be waiting your answer.Please help me sir.

    How to restore my ipad?My ipad say on screen CONNECT TO ITUNE.How can i do when i connect with computer.It is need itune new version.Can you sent me.I will be waiting your answer.Please help me sir.

    Check for Updates.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%208/78d42b19fa42e8d83b5 5a65e1333373f_zpsf58bbe10.jpg

  • Hub Resetting only when Laptop connected

    Hi,
    I would be grateful for any pointers or advice on how to solve or track down the following problem.
    I have a BT Business Hub which is connected by cable to a desktop PC and by wireless to two laptops.
    ( The laptops are only very occasionally used at the same time as the desktop, which is my main machine
    and is used virtually all day)
    Up until recently all three computers could be connected to the Internet without any issues, but
    recently when one of the laptops is in use ( and it's always the same laptop ), my business Hub
    resets itself and the connection is lost before being re-establised.
    Odd as it sounds, this only happens occasionally, but as far as I can work out, only when the
    troublesome laptop ( which is otherwise operating fine) is in use and connected to the Internet.
    I could be going off on the wrong track, but would the laptop in question be capable of sending data
    to the hub which would cause the hub to reset? And if so, what can I do to detect the problem?
    Apologies for the vagueness of this query, as I am slightly confused as to what might be going on.
    Thanks
    DL

    See if anything here helps, especially the speed or encryption settings.
    Wireless Help
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How do i sing out from hotmail/ how to open camera when i chat with messenger

    how to i sing out from hotmail????????... it says coudn't sign out because web brower cookie........
    how to open camera when i chat using messenger?????????

    Thanks for your help - I am frustrated that I can't figure this out. I am not getting any error messages but here is what happes. I plug in the IPAD and it shows up in the left hand colum in itunes but it does not sync to ITUNES. When I click on the IPAD, it shows me the tabs but that nothing is actually on the IPAD hard drive. When I click on transfer files manually, the "apply" button does not work. When I turn off the transfer files, the apply button still does not work. So next, I tried the music button, and it does ask whether to "apply" but when I click on apply, nothing happens. Under the music tab, it only shows music that I purchased from ITUNES but not all the music that I purchased on CD and transfered to ITUNES.

  • How to get only vendor id start with number.

    Can someone help me how I can only pull vendors that have their id start with number. thanks
    SELECT DISTINCT v.refvendor_id, v.vendorname, v.vendorshortname,
                    v.obsolete_dt, v.corporationtype, v.incorporationstate,
                    v.website, v.irsnum, a.address_id, a.addresstype,
                    g.vncde2 ssn, g.vndt1 inactive, a.addressline1,
                    a.addressline2, a.city, a.state, a.zipcode, a.country,
                    a.telephonenum, a.faxnum, a.email, a.createdby
               FROM refvendor v, refvendoraddress a, refvendor_gf g
              WHERE v.refvendor_id = a.refvendor_id
                AND v.refvendor_id = g.refvendor_id(+)
              vendor Id
    E1043
    0123155
    A1568
    12654
    desired out put
    vendor id
    0123155
    12654

    Hi,
    user13258760 wrote:
    thank you for the reply. what if i want to pull vendors their vendor id is only number. for example
    vendor id
    1ABC12
    123456
    123C22
    59865
    I just want only to see
    vendor id
    59865TRANSLATE can remove all the numbers.
    If there's anything left after you do, then it wasn't all numbers.
    AND     TRANSLATE ( NVL (vendor_id, '?')
                , 'x0123456789'
                , 'x'
                )     IS NULL

  • VB11 Material Determination - How to substitute only when ATP fails?

    I created a material determination rule with VB11 (A is replaced by B).
    However, my intention was to has A replaced by B only when ATP fails in SO....
    Now I have A replaced every time....
    I tried to create two lines: A=>A, A=>B as alternative, but A is always replaced by A now...
    Did I miss anything?
    Thank you!

    Its possible to do this. Please do as below.
    Ex: xyz is the main item and abc is the substitution item which needs to be activated only when xyz qty is less)
    1. Under VB11 maintain the following records:
        For Reason : Z003 (ATP Check)
    Material Entered  is XYZ and Substitution Materials are XYZ and ABC.
        Basically Material XYZ substitutes XYZ and if the qty is less it substitutes ABC.
    2. Substitute Reason Settings are as under (SPRO):
    Reasn Z003
    Description Availability check
    Entry
    Warn
    AvCh dep. X
    Strategy
    Outcome B
    Category
    This will work wonderfully...
    Hope this helps...

  • My Iphone 4 battery will not charge, only when I no level battery

    Hey, like the title.
    My Iphone 4 will not charge, only when the battery is totally dead.

    Hello, DrSmith_01. 
    Thank you for visiting Apple Support Communities.
    I would make sure you are using an Apple branded cable with your iPhone.  If you are, the troubleshooting steps in the article below may help.
    iPhone and iPod touch: Charging the battery
    http://support.apple.com/kb/HT1476
    Cheers,
    Jason H.

  • Why do I get a boot drive not found error only when laptop lid has been closed?

    I've got a HP Mini 210 P/Number: VX818EA with Windows 7 Starter.
    It works fine when turning on after shutdown, but when I've put it to sleep by closing the lid it won't 'wake up', and I get a blank screen. On restarting the computer I get a 'boot drive not found' error, (3F0) which can be resolved by following the steps on this page: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01443463&tmp_task=solveCategory&lc=en&dlc=en&cc...
    I've run disk check etc as suggested on that link, no errors are found, but nothing seems to resolve the problem more than temporarily. Seems odd that this only happens if I close the lid (sleep mode with the lid up is fine, doesn't crash the computer).
    Can anyone advise?
    Thanks

    Hello,
     Very strange, can you go to BIOS and reset the setting " By Default " ?. How did you check the disk ?
    This is an unusual probleme Hp Mini 210 . And notice me after your reset the bios settings.

  • How long should my nc8430 laptop run with a new 14.4 volt 4400mah battery

    Hi I have replaced my laptop battery with a new 14.4 volt 4400mha . with a full charge and power settings at minimal how long should it run I am getting just under 2hours is this normal with intel centrino my previous battery was getting more than three hours.
    thanks

    I run a 7440 mha battery on an nc4400 and on high performance with no power savings, I get about 2 hours out of it.
    So, I would say for yours, that's about right.
    Maybe your old battery had a higher capacity. 
    Did someone help you? Pay it forward. Help someone else.
    NC4400, TC4400 Win 7 Ultimate, xp pro, both dual boot
    a bunch of thinkpads

  • How to fill up my laptop screen with Firefox horizontally as it currently has a 3" margin on the left and right sides?tly has a

    I just purchased a 17.3" screened-laptop using MS Outlook and Explorer 9 Browser. I cannot use Firefox as my default Browser because I cannot get Firefox to fill up my screen.When I open up Firefox, it maintains a large 3" margin on the left and right sides which does not exist when I open up Explorer 9. Increasing the font size only increases the text size vertically but does nothing to decrease the margin size horizontally.

    You can use this extension to set a default font size and page zoom on web pages:
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/

  • How to set units when creating paths with a script?

    I'm trying to update a script that used to work in Photoshop CS4 but which seems to completely ignore the units I'm using in Cloud.  The script below should create a path layer with two lines that form an X across the entire document. 
    To test, I'm creating a new page that's 8.5 x 11 inches and 300 DPI.  I then run the script.  However, the the shape that is produced is huge and most of it is offscreen.  What am I doing wrong?
    function Point(x, y)
              this.x = x;
              this.y = y;
    function addVertexCorner(lineArray, x, y)
              var p0Info = new PathPointInfo();
              lineArray.push(p0Info);
              p0Info.kind = PointKind.CORNERPOINT;
              p0Info.anchor = new Array(x, y);
              p0Info.leftDirection = p0Info.anchor;
              p0Info.rightDirection = p0Info.anchor;
    function appendLine(p0, p1, lineSubPathArray)
              var lineArray = new Array();
              addVertexCorner(lineArray, p0.x, p0.y);
              addVertexCorner(lineArray, p1.x, p1.y);
              var pathInfo = new SubPathInfo();
              lineSubPathArray.push(pathInfo);
              pathInfo.operation = ShapeOperation.SHAPEADD;
              pathInfo.closed = false;
              pathInfo.entireSubPath = lineArray;
    function createPathLayer(title, subPathArray)
              var docRef = app.activeDocument;
              var originalUnit = app.preferences.rulerUnits;
              app.preferences.rulerUnits = Units.PIXELS;
              var myPathItem = docRef.pathItems.add(title, subPathArray);
              app.preferences.rulerUnits = originalUnit;
    var docRef = app.activeDocument;
    var imgWidth = docRef.width.as("px");
    var imgHeight = docRef.height.as("px");
    var p00 = new Point(0, 0);
    var p10 = new Point(imgWidth, 0);
    var p01 = new Point(0, imgHeight);
    var p11 = new Point(imgWidth, imgHeight);
    var lineSubPathArray = new Array();
    appendLine(p00, p11, lineSubPathArray);
    appendLine(p01, p10, lineSubPathArray);
    createPathLayer("Big X", lineSubPathArray);

    I did, andd while that did help to center the image on the page, now all my measurements are coming out about 4 times too small.  I'm also worried that changing the resolution might cause the image to lose some data due to resizing.
    What exactly does changing the resolution do?  Why does this center things?  How can I calculate points so that they exactly touch the edge of the document?

  • How to get connection when mixing cmp with bmp

    Hello,
    I have a CMP-based system in which I need to have a method in a
    stateless session bean to use BMP. In order for that method to
    participate in a larger transaction, I need to make sure that I grab
    the database connection that is used by that transaction. How would I
    do that?
    For simple BMP, I would get my connection like this
    InitialContext ctx = new InitialContext();
    DataSource ds = (javax.sql.DataSource)ctx.lookup("java:/someDataSource");
    java.sql.Connection conn = ds.getConnection();
    But in this case, how can I be sure that the connection I got is the
    one that is used by the current transaction? Or does it happen
    auto-magically?
    I have pored thru the API and can't seem to find a way to get a
    Connection from a javax.ejb.SessionContext, which I do have a handle
    to.
    Thanks in advance,
    Chishun Kwong

    [email protected] (Chishun Kwong) wrote in message news:<[email protected]>...
    Hello,
    I have a CMP-based system in which I need to have a method in a
    stateless session bean to use BMP. In order for that method to
    participate in a larger transaction, I need to make sure that I grab
    the database connection that is used by that transaction. How would I
    do that?
    For simple BMP, I would get my connection like this
    InitialContext ctx = new InitialContext();
    DataSource ds = (javax.sql.DataSource)ctx.lookup("java:/someDataSource");
    java.sql.Connection conn = ds.getConnection();
    But in this case, how can I be sure that the connection I got is the
    one that is used by the current transaction? Or does it happen
    auto-magically?
    I have pored thru the API and can't seem to find a way to get a
    Connection from a javax.ejb.SessionContext, which I do have a handle
    to.
    Thanks in advance,
    Chishun KwongI realize after posting this message that this is actually kind of a
    dumb question. This has nothing to do with mixing BMP and CMP, even in
    pure BMP, you have to wonder if the connection you get is the one used
    by the current transaction (if there is one already), and of course it
    is the container's responsibility to make sure.
    CSK

  • Audio only when using iPad with Safari: can I view live streaming video via Safari?

    I only get audio on streaming broadcasts when I click on the AirPlay Icon in the progress bar? Can anyone help me get the video to display as well?

    Websites have to have content in compatible format AND also need to allow video streaming - if both conditions are not met then Airplay will often give sound only.
    If iPad 2 try turning on full mirroring (Home button twice, swipe all way to right, Airplay and set Mirroring slider to on).
    AC

  • How to run something when laptop lid is closed?

    Hi,
    I'm running Arch on my EEEpc 1000h. I'd like to run certain commands when I close the lid. Can this be done?
    Thanks in advance.

    Check the aur for acpi-eee and acpi-eeepc-generic. Install one of them and configure it to do a specific task when the lid is closed.

  • Panding Approval error...this error is coming only when i logon with admin

    Hi,
    I am getting the following error when I want to see the approvals pending for a user.
    Error:
    ERROR,19 Apr 2012 03:58:25,973,[XELLERATE.WEBAPP],Class/Method: tcActionBase/execute encounter some problems: {1}
    java.lang.NullPointerException
    at com.thortech.xl.webclient.actions.ApprovalsAction.populateTableData(Unknown Source)
    at com.thortech.xl.webclient.actions.ApprovalsAction.viewPendingApprovals(Unknown Source)
    at com.thortech.xl.webclient.actions.ApprovalsAction.createNewSearchForApprovalTasksAssignedToUser(Unknown Source) at sun.reflect.GeneratedMethodAccessor1293.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:270)
    at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1198)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:434)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:43)
    at com.tfs.oim.webapp.ForwardingLoginFilter.doFilter(ForwardingLoginFilter.java:54)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:43)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ERROR,19 Apr 2012 03:58:25,974,[XELLERATE.WEBAPP],Class/Method: tcAction/execute encounter some problems: java.lang.NullPointerException
    javax.servlet.ServletException: java.lang.NullPointerException
    at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.tfs.oim.webapp.ForwardingLoginFilter.doFilter(ForwardingLoginFilter.java:53)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.NullPointerException
    at com.thortech.xl.webclient.actions.ApprovalsAction.populateTableData(Unknown Source)
    at com.thortech.xl.webclient.actions.ApprovalsAction.viewPendingApprovals(Unknown Source)
    at com.thortech.xl.webclient.actions.ApprovalsAction.createNewSearchForApprovalTasksAssignedToUser(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1293.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:270)
    at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
    at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1198)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:434)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:43)
    at com.tfs.oim.webapp.ForwardingLoginFilter.doFilter(ForwardingLoginFilter.java:54)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:43)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    ... 1 more
    WARN,19 Apr 2012 03:58:25,976,[org.apache.struts.action.RequestProcessor],Unhandled Exception thrown: class javax.servlet.ServletException
    <Apr 19, 2012 3:58:25 AM PDT> <Error> <HTTP> <BEA-101017> <[weblogic.servlet.internal.WebAppServletContext@1e6b49f - appName: 'Xellerate', name: '/xlWebApp', context-path: '/xlWebApp', spec-version: 'null'] Root cause of ServletException.
    java.lang.NullPointerException
    at com.thortech.xl.webclient.actions.ApprovalsAction.populateTableData(Unknown Source)
    at com.thortech.xl.webclient.actions.ApprovalsAction.viewPendingApprovals(Unknown Source)
    at com.thortech.xl.webclient.actions.ApprovalsAction.createNewSearchForApprovalTasksAssignedToUser(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1293.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Truncated. see log file for complete stacktrace
    >
    welcome to sec1
    Can anyone please help me in resolving the issue?
    Its very critical please help me out

    Hello Oddsbodkin,
    It looks like the creator of Netflix Desktop has a site for the project here:
    https://answers.launchpad.net/netflix-desktop/
    I would try posting your question there and see if anyone else has encountered this error and has a solution.
    Cheers, Patrick

Maybe you are looking for

  • Gapless works in Itunes but not Ipod

    Hi guys I'm trying to get gapless working on my new Ipod (80 gig version) - it's fully up to date with the latest firmware, and the gapless works in Itunes but doesn't work on the Ipod. There is still a small gap between songs (though it's MUCH bette

  • Print driver/color profile problems after 2.0 update

    Since I updated to the latest version of aperture 2 I have had problems with printing on my canon 5200R printer. The coloring is way off, as if aperture does not seem to recognize the canon print drivers or color profiles. I have read about printing

  • EFT for tablets

    Hello, Can anyone tell me with the EFT is for a tablet? Do they consider it the same amount as a smartphone? Thanks

  • Error in Runtiem Workbench

    Hi, I have completed the Configuraion tasks for JDBC->XI->RFC scenario. Activated all components and there was no error. Now, In Runtime Workbench, i am unable to see my Adapters in active mode. (They are disabled...) Runtime Workbench--> Component M

  • IN_SYNC status mobile

    Hi, i need to solve a situation. I've some SyncBo's in IN_SYNC status in my mobile device. I solve the problems in the server, but when i synchronized the SyncBo's in IN_SYNC doesn't changed. I found a class in the API that is a observer that run bef