A Nice Weekend to everybody

 

I hope you're not expecting us to have a nice weekend for you. People on this forum are far too busy to go around having nice weekends for those who can't be bothered to at least make an effort to have a nice weekend themselves and then post more specific questions about their weekend.

Similar Messages

  • Reset Feature state or its Beans

    Hello.
    I have 3 features, one for ordering meals, one that shows the user the meals he ordered for the next few days and one that shows the past orders and the overall costs.
    Now if I order one new meal, how can I have the other flow "reset", so that the REST service is accessed again and shows the now newly added orders in the "future orders" flow?
    A use case would be:
    "what have i ordered for tomorrow" checks what he as ordered in flow 1
    "no meat , i want meat!" goes to flow 2 and orders a nice steak
    "lets see if that was successful" goes back to flow 1
    now here is the problem. the state of flow 1 is saved from before, and it still shows the old data. Sure i could just create a method that deletes the old list of meals and then refills it again with another REST call, but it would be nicer to just have the flow restart from anew, then I don't need to code any code that is already there.
    Greetings and a nice weekend to everybody.
    Pascal

    Hey. I ran into the same problem again, however now it seems to be more general.
    On page 21 of the participant guide it says "way to refresh a feature" : and then tells me to implement the activate() method in the featureLifeCycleListener class.
    Then when I call AdfmfContainerUtilities.resetFeature("feature1"); nothing happens. If you double click the iphones bottom button, something happens, however it navigates back to the custom springboard page. I put together a simple example app to show what i am talking about.
    Where to send it? its a 450kb zip file. I don't want to throw it up on rapidshare or anything.
    Have a good weekend everybody!
    Pascal

  • Having a few issues with several programs (tor / mpd / ccm..)

    Hey everybody,
    I'll arrange this post in 3 parts since I have 3 different kinds of "major" problems or questions .
    1st ( tor - privoxy - polipo - iptables )
    I somehow found this article in your wiki and therefore tried to get tor and privoxy up and running on my desktop machine, as this didn't work as I hoped it would I searched farther in the wiki and installed and configured (as far as I've thought of) polipo and iptables.
    Now I've put all 4 of them in my rc.conf, but somehow some of my http connections don't seem to work in chromium while iptables is running (https works fine though [e.g. archwiki works, youtube doesn't]).
    I did everything as suggested in the polipo wiki entry, meaning I changed my /etc/iptables/iptables.rules to
    *nat
    :PREROUTING ACCEPT [0:0]
    :POSTROUTING ACCEPT [0:0]
    :OUTPUT ACCEPT [0:0]
    -A OUTPUT -p tcp --dport 80 -m owner --uid-owner polipo -j ACCEPT
    -A OUTPUT -p tcp --dport 80 -j REDIRECT --to-ports 8123
    COMMIT
    and removed all proxy settings from my browser - meaning all corresponding flags in the startcommand. I also added "forward / localhost:8123" to the privoxy config and changed the polipo configuration according to the wiki in order to work with tor (the socksParentProxy, socksProxyType part).
    now the next problem - that might probably be related to the first - is that my privoxy doesn't load in daemon mode anymore.
    I think it's since I've installed polipo that privoxy began to refuse starting together with the other daemons
    [usR@machine ~]$ privoxy
    Apr 23 00:20:56.459 b75086c0 Fatal error: can't check configuration file '/home/usR/config': No such file or directory
    this is the output I get when I try to start privoxy in normal user mode from the terminal, when I try starting the daemon manually (/etc/rc.d/privoxy start) it says
    touch: cannot touch `/var/log/privoxy/logfile': Permission denied
    chgrp: cannot access `/var/log/privoxy/logfile': Permission denied
    chmod: cannot access `/var/log/privoxy/logfile': Permission denied
    touch: cannot touch `/var/log/privoxy/jarfile': Permission denied
    chgrp: cannot access `/var/log/privoxy/jarfile': Permission denied
    chmod: cannot access `/var/log/privoxy/jarfile': Permission denied
    Apr 23 00:22:34.490 b76396c0 Fatal error: Cannot setgid(): Insufficient permissions.
    [/var/log/privoxy belongs to privoxy:adm]
    when I do the same in sudo mode it just fails without displaying an error message..
    I added this code to the /etc/rc.d/privoxy executable but I still get this owner conflict error and I have no idea what might be causing it.
    if [ ! -d /var/log/privoxy ]
    then
    mkdir /var/log/privoxy
    touch /var/log/privoxy/errorfile
    touch /var/log/privoxy/logfile
    chown -R privoxy:adm /var/log/privoxy
    fi
    If the order of the daemons in rc.conf is of any real importance here a copy of my setup
    ( @polipo @privoxy @syslog-ng !set-hw-addr !iptables @network netfs hddtemp @crond hal dbus @alsa @slim @tor )
    2nd ( mpd & mpc )
    I'm just wondering if there's a way to output the position of a track in the current playlist combined with a search. since mpc search <type> <query> only prints out full file path and name, but not the position in the playlist so that you could play it with mpc play. I thought of a method to print out the whole list with mpc playlist and pipe this output into a listing program, than grep out the song I'm looking for all that in a little bash script, to replace mpc search.
    Is there an integrated mpc search function that works the way I imageine it and my idea therefore redundant, or if not, is it realizable the way I picture it; does such a listing program exist?
    3rd ( cairo-compmgr )
    Since I'm already posting here I thought I'd mention my older problem which I  still couldn't solve.
    1st) I need to start cairo-compmgr(-git) in sudo mode to be able to edit any settings or activate the gui in any way. how do I automatically start the program on startup in sudo mode? I tried editing ~/.fluxbox/startup & ~/.fluxbox/init, even tried adding it in /etc/rc.d/ and /etc/rc.conf in order to start it as a daemon (lol, noob) but none of that worked properly obviously Any ideas? I don't want to start it manually and "waste" a terminal window for that every time I boot.
    2nd) I can change opacity (transparency) in both versions only per hotkey, and when I do so the settings don't get saved, they even get reset to normal opacity as soon as another window gets selected. does anybody know if there's a config file or any way to save opacity settings for certain windows & programs, so that they automatically get loaded when cairo starts and stay applied until it gets closed?
    [or generally: how do I configure the Plugins? ]
    the last "problem" which occurs only with cairo-compmgr-git:
    When I rightclick the ccm icon in the task bar and disable the composite desktop, the whole program kills itself oO
    In the old version the option "Composite desktop"'s box just got un-checked and I could easily restart ccm by rightclicking the logo again and re-enabling the "Composite desktop" option.
    Any clues on that by any chance?
    I'm using Fluxbox by the way, if that's of any importance for any of the problems. hope I didn't forget any important information if so please remind me
    Would be thankful for any kind of help
    have a nice weekend
    deF
    //edit:
    concernig the tor / privoxy problem, I managed getting all the daemons to start up at bootup again, my iptables situation remains the same though.
    I went through all the config files again and played around with chown and chmod a little and for now the system is stable, everytime I reboot all the daemons start without any problems.
    but when i start chromium with --proxy-server=localhost:8118 now, I get the following error message
    The following error occurred while trying to access http://torcheck.xenobite.eu/index.php?:
    504 Connect to torcheck.xenobite.eu:80 failed: SOCKS error: network unreachable
    Generated Sat, 23 Apr 2011 04:49:08 CEST by Polipo on archzor.localdomain:8118.
    notably with all programs running now, tor, polipo, privoxy (and by now dansguardian as well)..
    I'm tired so I'll go asleep now, maybe I'll find something tomorrow in the logfiles or whatever, so far:
    every kind of help is still very appreciated
    ²
    /var/log/polipo/polipo.log
    Disabling disk cache: No such file or directory
    Couldn't bind: Address already in use
    Couldn't establish listening socket: Address already in use
    Couldn't bind: Address already in use
    Last edited by deF291 (2011-04-23 03:13:48)

    okay I've finally been able to get tor and all the other programs to work according to my plan the only thing that's still making problems is that iptables doesn't work as I want it to, when I start chromium without proxy settings privoxy doesn't seem to forward the information to polipo.. do I need to add another rule to iptables.rules in order for the program to know it has to reroute the information again or how can I get this to work? and is there any way to run rtorrent with proxy support?
    anyway, problem 2 and 3 are still to be solved.
    and does anybody know where i can get a good dansguardian blacklist that was not designed for 6 year old children and for which I don't need to subscribe? I'm still getting these partypoker popups -.-
    //e: with iptables it's the same thing as described in the first post. https works, http doesnt. I get the output "Invalid header received from client." on http sites. still no idea why though.. (and the https-version of torcheck.xenubite says i'm tor unprotected while starting the browser with iptables)
    Last edited by deF291 (2011-04-23 16:16:31)

  • Problem when calling more than 1 Javascript function

    Hello everybody,
    I am trying to disable fields based on the value in a Select List. There is a table in which values are stored to tell if a field should be disabled for the selected value. I have created an Application Process and a JavaScript function for each field.
    The problem is that only the first function is executed, and the second not.
    I have tried the following:
    onchange="Disable_Dagen(this);Disable_Kg(pThis);"and I have put them together in a parent JavaScript function
    function Disable_Fields(pThis){
    Disable_Kg(pThis);
    Disable_Dagen(pThis);
    }In either case only the first works, so when I change the order then the other one is executed properly.
    Can anyone give me a clue on how to solve this?
    My complete JavaScript definition in the header is as follows:
    (the code in html_DisableOnValue is taken from the example site from Carl Beckstrom)
    <script language="JavaScript" type="text/javascript">
    <!--
    function html_DisableOnValue(pThis,pValue,pThat){
         var lTest;
      if(pThis.nodeName == 'SELECT'){
                   lTest = html_SelectValue(pThis) == pValue;
         }else{
                   lTest = $x(pThis).value == pValue;
         if(pThat){
               for (var i=2;i <= arguments.length; i++){
                          html_disableItem(arguments,lTest)
         return;
    function Disable_Dagen(pThis){
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=AP_RETURN_DISABLE_VAL_DGN',0);
    get.add('AI_AFW_CODE',pThis.value);
    gReturn = get.get();
    get = null;
    //alert('Return waarde is '+ gReturn );
    html_DisableOnValue(pThis,gReturn,'P43_AANTAL_DAGEN');
    function Disable_Kg(pThis){
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=AP_RETURN_DISABLE_VAL_KG',0);
    get.add('AI_AFW_CODE',pThis.value);
    gReturn = get.get();
    get = null;
    //alert('Return waarde is '+ gReturn );
    html_DisableOnValue(pThis,gReturn,'P43_AANTAL_KG');
    function Disable_Fields(pThis){
    Disable_Kg(pThis);
    Disable_Dagen(pThis);
    //-->
    </script>
    In this case the Form Element property is set toonchange="Disable_Fields(this)"
    Thanks, Wouter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Roel,
    Thanks again for your response.
    There is a lot more to Firebug then I had seen before. Now I have turned on the Console and the Script. Initially I saw the following in the Console:
    C is undefined
    $x_disableItem(undefined, true)apex_3_1.js (regel 1)
    html_DisableOnValue(select#P43_AFWIJKING_CODE, "101", "P43_AANTAL_DAGEN")f?p=104:...2606::::: (regel 38)
    Disable_Dagen(select#P43_AFWIJKING_CODE)f?p=104:...2606::::: (regel 51)
    onchange(change )f?p=104:...FPQ%3D%3D (regel 2)
    [Break on this error] var gDebug=true;var gkeyPressTime;var gL...Options;html_SelectValue=$f_SelectValue;When I removed the comments before the 2 Alerts, I only got one alert when I tested it.
    Then I replaced the function call to html_DisableOnValue to $f_DisableOnValue as you suggested, and that did the trick. Now it Works!
    I still don't know why the html_DisableOnValue function doesn't work. I just copied it from the demo site of Carl Beckstrom. Anyway my problem is solved.
    Have a nice weekend, Wouter

  • Goods Receive(GR)  triggers a Purchase Order (PO)resending

    Nice weekend everybody,
    This is quite strange problem, usually, after saving POs will be sent out to our vendor, however, recently when we do GR, the PO will be sent out again, meanwhile, overdelivery tolerance limit has been changed to 10%.
    Any idea with this ?
    Thank you so much for your time

    Thanks everyone,
    Sorry for the late response, I finally got the solution for this issue.This mainly about R/3 configure setting.
    There is a   'Field relevant to printout changes ' in the system setting  that  defines the field change  which will affect the purchase document print .You can find it  in the route below :
    'Customizing' (SPRO) --> Materials Management --> Purchasing --> Messages --> Field relevant to printout changes.
    We did a test in our M box (test box), If we unticked the first tick "P " which means Purchase Order for  the Overdelivery tolerance limit  (UEBTO) , then When we did the GR and checked related the PO the second message was red ( not sending out) because there is a message" No print-relevant  changes...". So far this issue has been solved, thanks again.
    Best regards,
    Xiaoan

  • Win 7 client with machine and user auth stuck in 802.1x_REQD

    Hi everybody
    we have a WLC 5508 with 7.2.110.0 and an ACS 5.3 and do the following:
    - Win 7 client gets a GPO object with the wlan configuration for "Machine and User authentication" with PEAP
    - On ACS 5.3 I configured correctly the authentication and authorization for first machine authentication and then user authentication ("Was machine authenticated = true)
    - First when machine authentication happens, the client is configured into a quarantine VLAN, where it is only allowed to communicate with the domain controllers
    - When the user authenication happens, the client is moved into the productive client vlan with no restrictions.
    Everything works fine, except that after the user loggs in, it takes about 3 minutes until the client answers the EAP Identity Request and loggs in, see attached screenshot or the screenshot below:
    In the client status on WLC i can see that the client is stuck in the 802.1x_REQD state for these 3 minutes, until suddenly it authenticates (but then very often, about 5 times - see screenshot).
    We tried the following to find the problem spot. but we were not able to locate the problem:
    - Configure the machine and user authentication into the same vlan all the time
    - ONLY user authentication on the client
    - Played with the Win 7 settings (timers, and so on)
    - When we manually configured the WLAN profile on the Win 7 client and saved it, the Win 7 client connected to the SSID without any problems and without any delay (about 5 seconds after the save)
    Did someone ever had the same issue?
    Thanks a lot and best regards
    Dominic

    Hi Amjad
    very good point on this, thanks a lot. In this case, I did not even think about the client firmware side, thought that I should be the WLC or the client settings, but not the driver. We will give a shot on this next week, maybe this will help us to solve the problem.
    It is normal to have the clietn in 802.1x_REQD if it is not yet authenticated and that is the expected state to be at in your situation untlil the client fully authenticates.
    Absolutely correct that the client is associated and in the 802.1x_REQD state as long as the authenticator did not get the EAP identity Response, but that the client takes such a long time to answer is not normal ;-)
    - What is the supplicant that is used on the windows machines? default WLAN supplicant? or you use some commercial supplicants?
    WZC.
    - what is the result when testing with user auth only?
    The same, it takes such a long time.
    - what ist he result when testing with machine auth only?
    Machine authentication works as expected, fast and as soon as the client is booted, the client gets authenticated.
    Regards and have a nice weekend
    Dominic

  • Abap transport release issue

    hello,
    i have a scenario where in my project, the crm development is happening. and for a single object there are about 4 people are working and there is a single transport request with 4 different tasks. Now that each folks are working individually and completing there task.. Now the developer1 completed his task and what to test it in quality but on release of the transport it started giving implication due to other TR tasks.
    Now we are unable to figure out how to resolove this activity where we can resolve this issue. also that there is yet another crm component the other 4 guys are working on..
    please let me know how to resolve this issue?
    best regards,
    kandaraj

    Hi Kandaraj,
    welcome to the club.
    We had this trouble for years. Then they started to use SAP Solution manager, everybody got training courses on how to use and we can not create transport requests or transport them without creating a minimum of 3 Solution manager processes with a dozen or so steps and workflow and partner assignment and assignment of testers, developers, process administrators with approvals, releases, and and and guess what we got?
    We have some 800% more of administrative overhead including full-time quaility managers.
    And nothing is better than it was before:
    We still face the task of unavoidable communication with people. I really hate all those developers, consultants and users.
    Why can't the system do the job?
    Have a nice weekend, live goes on.
    Clemens

  • HELP!!! An asynchronous read operation is already in progress on the StandardOutput stream

    Hi everyone,
    I'm trying to use C# to control a command line application background, which can be downloaded here:
    http://www.ti.com/litv/zip/spmc015b
    This is an app for motor voltage control, when I enter the app, like "b.exe -c 1", the console seems a kind of blocking model. Every command in this app begins with "#" symbol. See pics below:
    What I'm trying to do is, use StandardInput.WriteLine("stat vout"); to measure the voltage. This will send a "stat vout" command to the console background and ideally return a voltage value. In this pic, it return some help hints. Duing all this time,
    it still in the blocking mode.
    I want to get the return message with StandardOutput.ReadLine(); but failed. If ReadToEnd() then my program is freezed because this app never return to standard console, which is blocking.
    When I tried BeginOutputReadLine(); OutputDataReceived event can truly obtain the message return from the console, like in the pics of "stat [vout|vbus|fault". But it limited in my single thread program.
    My current situation is that, I use System.Timers.Timers in WinForms and every second will send a  "stat vout2" command to read the voltage, and hopefully get the return value.
    However, the System.Timers.Timers is asynchronous, so when I called BeginOutputReadLine() in this Timers thread, it prompted "An async read operation has already been started on the stream." In the meantime, as I've demonstrated above, I cannot use synchronous
    methods like ReadLine() to get the value.
    So what should I do now? I truly need to run this command line app in multi-threading mode.
    Thanks so much and wish everybody has a nice weekend.

    public class SystemClock
        TimingController Timing = new TimingController();
        private Timer TimerSystemClock;
        public SystemClock()
            TimerSystemClock = new Timer();
            TimerSystemClock.Interval = 1000;
            TimerSystemClock.AutoReset = true;
            TimerSystemClock.Elapsed += new ElapsedEventHandler(TimerSystemClock_Elapsed);
            TimerSystemClock.Enabled = false;
            Timing.ClockInstance = this;
        public void Start()
            TimerSystemClock.Enabled = true;
        void TimerSystemClock_Elapsed(object sender, ElapsedEventArgs e)
            Timing.Measuring();
    public class TimingController
        // Get singleton of Measurement Class
        Measurement Measure = Measurement.GetInstance();       
        public SystemClock ClockInstance
            get { return Clock; }
            set { Clock = value; }
        private void Measuring()
            CurrentVoltage = Measure.GetVoltage();
            CurrentCurrent = Measure.GetCurrent();
    public sealed class Measurement
        // Singleton
        public static readonly Measurement instance = new Measurement();
        public static Measurement GetInstance()
            return instance;
        private Process ProcMeasuring = new Process();
        double measureValue
        bool isOutputObtained;
        private Measurement()
            ProcMeasuring.StartInfo.FileName = "b.exe";
            ProcMeasuring.StartInfo.Arguments = "-c 1";
            ProcMeasuring.StartInfo.WorkingDirectory = Directory.GetCurrentDirectory();
            ProcMeasuring.StartInfo.UseShellExecute = false;
            ProcMeasuring.StartInfo.RedirectStandardInput = true;
            ProcMeasuring.StartInfo.RedirectStandardOutput = true;
            ProcMeasuring.StartInfo.RedirectStandardError = true;
            ProcMeasuring.StartInfo.CreateNoWindow = true;
            ProcMeasuring.OutputDataReceived += new DataReceivedEventHandler(MeasurementOutputHandler);
        public double GetVoltage(Machine machine)
            isOutputObtained = false;
            ProcMeasuring.StandardInput.WriteLine("stat vout2");
            ProcMeasuring.BeginOutputReadLine();
            while (!isOutputObtained)
                isOutputObtained = true;
            return measureValue;
        public double GetCurrent(Machine machine)
            isOutputObtained = false;
            ProcMeasuring.StandardInput.WriteLine("stat cur");
            ProcMeasuring.BeginOutputReadLine();
            while (!isOutputObtained)
                isOutputObtained = true;
            return measureValue;
        private void MeasurementOutputHandler(object sendingProcess, DataReceivedEventArgs outLine)
            if (!String.IsNullOrEmpty(outLine.Data) && (outLine.Data != "# "))
                measureCurrentValue = Convert.ToDouble(outLine.Data);
                isOutputObtained = true;
                ProcMeasuring.CancelOutputRead();
    }

  • New Macbook pro suddently can not watch any online video or movie

    I just bought a new 13" Macbook pro 4 days ago, the first day everything work well (include watching online movie or video), yesterday, I suddenly found I can not watch online movie or video anymore, the symptom is: I can open any website with online video, but the video area is BLACK, i tried many different website, they are all the same, can not watch any online video.
    then I call apple phone support, i was told press Commandoption+PR, after that, it works again. but today the same problem happened again!!! I know I can still use the same way to fix the problem. but I do really want to know, what's the reason? is my NEW Mac has problem? is the problem big or not? should i return or exchange it? I hope someone could help me and answer my questions.
    Anyway, right now i am very disappointed and frustrate, don't know what to do, I am a student, buy a mac is not a little money for me!
    Thanks for everybody! sorry for my poor english!
    Message was edited by: watch video problem

    Hi, I fixed the problem now, it because i unchecked the box" enable plug-ins", that's why! thank you very much for your reply!
    Have a nice weekend!

  • Skype 7.3.0.101 new version

    hello everybody, i just would like to know where i can see the changelog to know the improvements and changements of this version. thanks a lot and have a nice weekend. 

    Most importantly, does it fix the issue of images not appearing in chat messages??

  • Skype 6.22.64.106

    hello and good morning everybody.  i enter in the official site of skype and download the new version 6.22.64.106. i would like to know if somebody can tell me what are the improvements in this new version. thanks a lot for your help and have a excellent weekend. greetings. 
    Solved!
    Go to Solution.

    thank you very much for the information amigo ruwim and have a nice weekend. greetings. 

  • HDV guide for idiots....and me! Basic questions, I need your help!

    Hello,
    in my hand, I'm holding my first HDV tape. I've never edited HDV before, and before I continue and make all kinds of silly mistakes that make me loose even more sleep, I thought I'd post some questions on this forum:
    But first things first:
    I am working on a QuadG5, 4.5GB RAM, fibre-channel RAID, FCP 5.0.4, OS10.4.5, Blackmagic Multibridge Extreme, Sony HDV-Deck HVR-M10E, and I live in PAL land.
    Thanks to Chris Jarvis' answer in a different post, I managed to set my deck properly, so that I can now capture HDV to FCP without a problem. So if you read this, Chris, thanks a bunch! However, I was wondering if it is possible to capture the footage to a different codec. So, here we go....
    1) For example, could I downconvert it to DV and capture it via Firewire?
    2) Could I capture HDV via component to my Multibridge as uncompressed 8bit material? I will have to mix this footage with footage captured from BetaSP etc., so wouldn't it make sense to convert it during capture already, thereby avoiding rendering later on?
    3) Is it possible to monitor HDV on an SD monitor? When I use my Blackmagic video out and set it to 8bit/10bit, anything really, I only get an image when I pause play. Am I right to assume that I would need an HD monitor to properly monitor what I am doing?
    4) I dimly remember people having trouble getting HDV stuff to DVD. Have others experienced that, too? Would I, once again, be better off capturing the whole shebang uncompressed from the start?
    Hm, that's all for the time being. I hope some of you can give me some answers, I'd really appreciate it a lot. And if I annoyed you because I was asking the same questions that everybody tends to ask about HDV, please forgive me, I did look through several posts on this forum, but thought it'd be nice to gather all the answers here.
    Yup.
    Cheers and thanks,
    Colin
    PowerMac G5 2.5GHz DP and PowerMac G4 500MHz DP    

    Hi Jerry,
    and thanks for your reply. Yes, in the end it will go out on a SD DVD. I did down-convert the footage to DV, since I got more DV stuff over the last couple of days. I'm glad about my decision, because I did a couple of test edits in HDV, and while it looks great, I must admit that it is a bit of a pain to work with. And not being able to monitor what I'm doing just doesn't do it for me.
    Thanks once more and have a nice weekend,
    Colin

  • Itunes is currently unavailable on appletv

    I'm seeing multiple users having this issue right now, and i've tired every troubleshooting option i can find over the last week, but the problem persists.  has anyone seen where Apple has acknowledged this outage or offered any solutions?

    Hello everybody, it's me again.
    I just tried it again in Switzerland on my APT. I can access the trailers of iTunes movies (no wonder, they want to sell the stuff to us.....) but I cannot access my music in iTunes Match. Also here in Switzerland the problem exists since about one week.
    Is there anybody at Apple looking into this?
    I am very happy with my iMac, 2 x MacBook pro, Mac Mini and 2 x ATV, but at a certain stage of time I am really losing patience.
    The only thing that calms me down a bit is to read that I am not the only one with this problem - I started to think it's my fault......
    Wishing all of you a nice weekend and,
    Best personal regards from Switzerland, Marco

  • Skype 7.0.0.102 !!!

    hello and good afternoon everybody. there is a new version of Skype 7.0.0.102 and i would like to know, if is possible, what are the improvements in this version. thanks a lot and have a nice weekend.
    greetings.  
    Solved!
    Go to Solution.

    I'm really suffering from new tablet style of UI of Skype for desktops.
    I cannot use it all. I was pretty happy with 6.21 UI, but do not see any option to take it back. There is no settings to use "Classic UI style". I believe Microsoft values clients users of Skype in the same way as it values users of other products. I continue using of Skype broadly, I regularly pay for Skype services, but I'm really tired to do downgrade Skype client to 6.21 version any time when Windows insist on new version. Even using do not update automatically settings in Skype does not allow to stick with current version. Sometimes like today I'm very unpleasantly surprised with latest version installed with unacceptable and frankly speaking awful UI.
    I know that Microsoft is very big corporation with many and many products and versions. I suppose that Skype has low score between other products. But most of Skype users are users of many other commercial products of Microsoft. So I hope management of Microsoft may appreciate users of Skype also and hear our voice asking for option "Classic UI style" like 6.21 in current and next versions of Skype. Obviously desktops and tablets need different UI. Please remember Skype desktop users, mostly professionals and pay attention to our voice. Between other settings we need an option "Classic UI style" like 6.21 in current and next versions of Skype. I do not want to seek for Skype alternatives, I was happy with Skype until tablet style of UI became so intrusive.

  • Package dependency - recompile

    Hi everybody,
    I've got the following situation in a productive environment here:
    - a package A with a procedure P1
    - a package B with a procedure P2
    If anybody knows about a possibility to recompile package A without making package B invalid - please give me a hint.
    tia and have a nice weekend,
    rk

    --HELLO
    --THIS MIGHT HELP YOU.
    =========================================================
    -- Compile all invalid objects in database
    -- and produce report of objects compiled/
    -- still requiring compilation
    -- C Heroux
    -- ported for 8.X
    set serveroutput on
    declare
    cursor compiler is
    select
    object_type,
    object_name
    from
    user_objects where status= 'INVALID'
    order by
    decode(object_type, 'VIEW', 1, 'PROCEDURE', 2, 'FUNCTION', 3,
    'PACKAGE', 4, 'PACKAGE BODY', 5, 'TRIGGER', 6);
    cursor end_compile is
    select
    object_name
    from
    user_objects
    where
    status= 'INVALID';
    lv_object_name      user_objects.object_name%type;
    lv_object_type      user_objects.object_type%type;
    c_stat          integer;
    c_handle          integer;
    b_ct               integer;
    e_ct               integer;
    type object_table is table of varchar2(60) index by binary_integer;
    object_array          object_table;
    success_with_comp_error exception;
    PRAGMA EXCEPTION_INIT(success_with_comp_error, -24344);
    begin
    dbms_output.enable(1000000);
    b_ct := 0;
    e_ct := 0;
    open compiler;
    LOOP
    fetch compiler into lv_object_type, lv_object_name;
    exit when compiler%notfound;
    b_ct := b_ct + 1;
    c_handle := dbms_sql.open_cursor;
    BEGIN
    IF lv_object_type = 'PACKAGE' THEN
    dbms_sql.parse(c_handle, 'alter package '||lv_object_name||
    ' compile specification', dbms_sql.native);
    dbms_output.put_line('Compiling package spec '||lv_object_name);
    ELSIF lv_object_type = 'PACKAGE BODY' THEN
    dbms_sql.parse(c_handle, 'alter package '||
    lv_object_name||' compile body', dbms_sql.native);
    dbms_output.put_line('Compiling package body '||lv_object_name);
    ELSE
    dbms_sql.parse(c_handle, 'alter '||lv_object_type||
    ' '||lv_object_name||' compile', dbms_sql.native);
    dbms_output.put_line('Compiling '||lower(lv_object_type)||' '
    ||lv_object_name);
    END IF;
    c_stat := dbms_sql.execute(c_handle);
    EXCEPTION
    WHEN SUCCESS_WITH_COMP_ERROR THEN
    -- Trap and ignore ORA-24344: success with compilation error
    -- This only happens on ORACLE 8
    null;
    WHEN OTHERS THEN
    null;
    END;
    dbms_sql.close_cursor(c_handle);
    END LOOP;
    close compiler;
    open end_compile;
    loop
    fetch end_compile into lv_object_name;
    exit when end_compile%notfound;
    e_ct := e_ct + 1;
    object_array(e_ct) := lv_object_name;
    end loop;
    close end_compile;
    dbms_output.put_line('Compiled '||b_ct||' objects.');
    if e_ct > 0 then
    dbms_output.put_line(e_ct||' objects still require compilation. Rerun and/or review source code for:');
    end if;
    if e_ct > 0 then
    for i in 1 .. e_ct
    loop
    dbms_output.put_line(' - '||object_array(i));
    end loop;
    end if;
    end;
    =======================================================
    CHEERS

Maybe you are looking for