Allign a workarea according to another workarea.IT0008. LGART problem.

Hi all....
I have 2 work areas from two internal tables of type pa0008.
here, wa2 is to be aligned according to wa1.
That is, if lgart and betrg values in wa1 are in the order 0001 x,  0003 y, 0005 z,  SPACE p,  0002 q and
               lgart and betrg values in wa2 are in the order 0005 k, 0002 l,  0001 m,  0003 n, ...then
I have to allign the wa2 values to wa1 values, 0001m, 0003 n,  0005 k,  SPACE , 0002 l.
Is it possible....?
[10 lgarts are enough, not 40]
Any solution, please share.
Regards,
Veeranji Reddy P.

Thanku

Similar Messages

  • Update data according to another table

    <p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">Hi,</font></p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">I would like to update data in a table according to another table.</font></p>
    <p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">Concretely, the data are to be updated if they are different in the other table.</font></p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">Here is a part of my procedure :</font></p>
    <font SIZE="2">
    <p style="margin-top: 0; margin-bottom: 0"></font><font face="Courier New"><font SIZE="2" COLOR="#0000f0">UPDATE</font><font SIZE="2"> </font></font><font SIZE="2" COLOR="#808000"><font face="Courier New">GLMASTER_SAVE</font></p></font>
    <font SIZE="2">
    <p style="margin-top: 0; margin-bottom: 0"></font><font face="Courier New"><font SIZE="2" COLOR="#0000f0">SET</font><font SIZE="2">    </font><font SIZE="2" COLOR="#808000">GLMASTER_SAVE</font><font SIZE="2" COLOR="#0000f0">.</font><font SIZE="2">ACTIVE_STATUS</font><font SIZE="2" COLOR="#0000f0"> =</font><font SIZE="2"> GLMASTER</font><font SIZE="2" COLOR="#0000f0">.</font></font><font SIZE="2"><font face="Courier New">ACTIVE_STATUS</font></p>
    <p style="margin-top: 0; margin-bottom: 0"></font><font face="Courier New"><font SIZE="2" COLOR="#0000f0">WHERE</font><font SIZE="2"> </font><font SIZE="2" COLOR="#808000">     GLMASTER_SAVE</font><font SIZE="2" COLOR="#0000f0">.</font><font SIZE="2">COMPANY</font><font SIZE="2" COLOR="#0000f0"> =</font><font SIZE="2"> GLMASTER</font><font SIZE="2" COLOR="#0000f0">.</font></font><font SIZE="2"><font face="Courier New">COMPANY</font></p>
    <p style="margin-top: 0; margin-bottom: 0"></font><font face="Courier New"><font SIZE="2" COLOR="#0000f0">       AND </font><font SIZE="2" COLOR="#808000">GLMASTER_SAVE</font><font SIZE="2" COLOR="#0000f0">.</font><font SIZE="2">ACCT_UNIT </font><font SIZE="2" COLOR="#0000f0">=</font><font SIZE="2"> GLMASTER</font><font SIZE="2" COLOR="#0000f0">.</font></font><font SIZE="2"><font face="Courier New">ACCT_UNIT</font></p>
    <p style="margin-top: 0; margin-bottom: 0"><font SIZE="2" COLOR="#0000f0" face="Courier New">     </font></font><font face="Courier New"><font SIZE="2" COLOR="#0000f0">  AND </font><font SIZE="2" COLOR="#808000">GLMASTER_SAVE</font><font SIZE="2" COLOR="#0000f0">.</font><font SIZE="2">ACCOUNT</font><font SIZE="2" COLOR="#0000f0"> =</font><font SIZE="2"> GLMASTER</font><font SIZE="2" COLOR="#0000f0">.</font></font><font SIZE="2"><font face="Courier New">ACCOUNT</font></p>
    <p style="margin-top: 0; margin-bottom: 0"><font SIZE="2" COLOR="#0000f0" face="Courier New">     </font></font><font face="Courier New"><font SIZE="2" COLOR="#0000f0">  AND</font><font SIZE="2" COLOR="#808000"> GLMASTER_SAVE</font><font SIZE="2" COLOR="#0000f0">.</font><font SIZE="2">SUB_ACCOUNT</font><font SIZE="2" COLOR="#0000f0"> =</font><font SIZE="2"> GLMASTER</font><font SIZE="2" COLOR="#0000f0">.</font></font><font SIZE="2"><font face="Courier New">SUB_ACCOUNT</font></p>
    <p style="margin-top: 0; margin-bottom: 0"><font SIZE="2" COLOR="#0000f0" face="Courier New">     </font></font><font face="Courier New"><font SIZE="2" COLOR="#0000f0">  AND</font><font SIZE="2" COLOR="#808000"> GLMASTER_SAVE</font><font SIZE="2" COLOR="#0000f0">.</font><font SIZE="2">ACTIVE_STATUS</font><font SIZE="2" COLOR="#0000f0"> <></font><font SIZE="2"> GLMASTER</font><font SIZE="2" COLOR="#0000f0">.</font><font SIZE="2">ACTIVE_STATUS</font></font><font SIZE="2" COLOR="#0000f0"><font face="Courier New">;</font></p></font>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">The data (field </font><font SIZE="2"><font face="Courier New">ACTIVE_STATUS</font><font face="Arial">)</font></font><font face="Arial" size="2"> are to be updated in the table </font><font SIZE="2" COLOR="#808000" face="Courier New">GLMASTER_SAVE</font><font SIZE="2" face="Arial"> if the same field is different in the table </font><font SIZE="2" face="Courier New">GLMASTER</font><font SIZE="2" face="Arial">.</font></p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">Thank you for your help.</font></p>
    <p style="margin-top: 0; margin-bottom: 0"> </p>
    <p style="margin-top: 0; margin-bottom: 0"><i><b>
    <font face="Arial" size="2" color="#008080">Patrick</font></b></i></p>

    UPDATE GLMASTER_SAVE
    SET    GLMASTER_SAVE.ACTIVE_STATUS =
    (SELECT GLMASTER.ACTIVE_STATUS
    FROM GLMASTER
    WHERE      GLMASTER_SAVE.COMPANY = GLMASTER.COMPANY
           AND GLMASTER_SAVE.ACCT_UNIT = GLMASTER.ACCT_UNIT
           AND GLMASTER_SAVE.ACCOUNT = GLMASTER.ACCOUNT
           AND GLMASTER_SAVE.SUB_ACCOUNT = GLMASTER.SUB_ACCOUNT
           AND GLMASTER_SAVE.ACTIVE_STATUS <> GLMASTER.ACTIVE_STATUS)
    WHERE EXISTS
    (select 1 from glmaster
    WHERE      GLMASTER_SAVE.COMPANY = GLMASTER.COMPANY
           AND GLMASTER_SAVE.ACCT_UNIT = GLMASTER.ACCT_UNIT
           AND GLMASTER_SAVE.ACCOUNT = GLMASTER.ACCOUNT
           AND GLMASTER_SAVE.SUB_ACCOUNT = GLMASTER.SUB_ACCOUNT
           AND GLMASTER_SAVE.ACTIVE_STATUS <> GLMASTER.ACTIVE_STATUS);
    Regards
    Dmytro Dekhtyaryuk                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I have problems printing with a HP Officejet 6500 printer directly from my iMac. The printer itself does function well, as I can print from another PC without any problems. Does anyone have a clue?

    I have problems printing with a HP Officejet 6500 printer directly from my iMac. The printer itself does function well, as I can print from another PC without any problems. Does anyone have a clue?

    Hello:
    I must apologize  .  I should have checked here first:
    http://support.apple.com/kb/HT3669#HP
    According to the list, there is no driver for your printer included in OS X 10.7.
    There are a couple of options:
    1.  Contact HP to see if they have a workaround.
    2. If the model of printer is not listed but your printer is a PostScript printer or PCL Laser printer, try the "Generic PostScript" or "PCL Laser printer" drivers.  Generic printer drivers may not let you access all the features of your printer.
    I have not tried #2, but some people have had success.
    Barry

  • HT4623 my husbands iphone4 was dropped and it doesnt work now... according to powermac representative, hardware related problem, what should i do? anybody knows where to bring the unit for repair, because powermac didnt accept it.

    my husbands iphone4 was dropped and it doesnt work now... according to powermac representative, hardware related problem, what should i do? anybody knows where to bring the unit for repair, because powermac didnt accept it.

    Who is powermac? Are they and authorized iPhone sales site?

  • Sort according to another field order

    say there are 2 input and 2 output fields
    The first input field is mapped to the first output field , after grouping similar values together
    e.g:
    input field1          output field1
    a                            a
    d                            a
    e                            d
    c                            d
    d                            c
    e                            e
    a                            e
    Now the 2 nd input field has to be mapped to 2nd output field according to the order in which the 1st field has been mapped.
    We can not use sortByKey here as the first field is not mapped in lexographical nor numerical order.
    How then can we map the 2nd field according to order of first?
    Thanks in advance
    Pratichi

    Hi Pratichi,
    The UDF that you are writting to group similar values together for the input field1.
    try chaging that  UDF with two arguments
    1. inputField1
    2. inputField2
    use the concept of Edit Java section(Declaring Global variable .To Know more about it refer
    http://wiki.sdn.sap.com/wiki/display/stage/UsingEditJavaSectioninMessageMapping)
    Declare a Global variable in the Global Variable section as
    String[] format = new String[30];
    while you are gouping inputField1 ,group inputField2 also and store in the global variable format.
    Write one more UDF to read values from the global variable and map it to OutputFiled2.
    (you can use same java code as you normally use to store and read values from the string array).
    Thanks and Regards,
    Kubra fatima.

  • Sumbit a form according to another field

    Hi all,
    I have a form with a drop list ("Combo Box") of continents, a few check boxes and a submit button.
    I want to submit the form to different e-mail recipients according to the selected continent.
    i.e.
    If I select Europe, I want to submit by e-mail to [email protected]
    and if I select Asia, I want to submit by e-mail to [email protected]
    any ideas how can I do that?
    Thanks in advance

    Use this as the mouse up script for your submit button:
    if (getField("Continent").value == "Europe"){
         this.mailDoc({
         cTo: "[email protected]",
         else {
         this.mailDoc({
         cTo: "[email protected]",
    Replace "Continent" with the name of the combo box in your form.

  • Change colors of entire row according to another

    Just to keep you guys busy:
    I have a crosstab layout and I want to change the color of the entire row according to one column, is that possible??

    Hi Wendy
    This is a simple one to answer because the answer is no. Coloring of individual rows of data is not one of the features that any version of Discoverer currently has. I have a copy of the newest Drake and this also does not allow this I'm afraid.
    Best wishes
    Michael

  • How to constraint one attribute according to another?

    Hi,
    I have an element which has two attribute A and B. A's value can be 'a' or 'b', if the value of 'a', B's value should be 'b1' or 'b2', else, B's value should be 'b3' or 'b4'.
    How to express this contraintion in xsd?
    Thanks, Robin

    This type of validations come under the "rule-based" validation domain. Hence cannot be accomplished with XSD Schema.
    There are two different flavors for an xml schema language:
    -- Grammar based. (e.g. XSD Schema; DTD...)
    -- Rule based. (Schematron)
    A rule-based schema language specifies the relationships that must hold between the elements and attributes in an XML instance document. [as is the case here]
    Schematron is one of the types of rule-based schema languages.
    For more details on types of schema languages: http://www.xfront.com/schematron/Two-types-of-XML-Schema-Language.html
    Schematron Introduction:
    http://www.xml.com/pub/a/2003/11/12/schematron.html
    regards,
    Asheesh Ambardar

  • Condition one process according to another

    Hello,
    I have a page, which fetch a row from tableA, let the user modify it, and then save it to tableB, using Automatic DML process.
    I need to update a column in tableA, only if the Automatic DML process was successful.
    Any way I can condition the second process – updating tableA – by the successful completion of the first process – Automatic DML on tableB?
    Thanks for the help,
    Arie.

    Hi Scott,
    Thanks on your prompt reply. It's actually make sense.
    While on the subject, it could be a useful enhancement to add an exception option to the automatic DML process declaration, which will allow us to enter some code to deal with them.
    Best Regards,
    Arie.

  • Yet Another iPad Wi-Fi Problem

    So, I'm having the famous iPad Wi-Fi issue everyone else is. I've tried everything that people have said, yet YouTube rarely works. Some days, it works perfectly, though a little slow. Other days, like today, it doesn't work at all. What's the problem here?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Another J2SDK1.4 Installation problem on Linux

    I downloaded the latest .bin, and when I do a
    ". [filename.bin]"
    from the shell, the installation starts by showing my the license agreement. At the end when I go to press 'y' to agree to the terms, the install halts by displaying the message invalid checksum. It says that the filesize is wrong, but I have checked it against what the download page say it's should be, and everything is in order. I then thought, well fair enought maybe it is a dodgy download. So I got another version (an older one), and that said the exact same thing. It doesn't matter which version I try and install on the command line, I'm getting the same error message, and the install terminates.
    Just in case it's not clear, I'm not using the rpm install, I'm using the other one. I appreciate any help you can offer.
    advTHANKSance ;)
    Weston.

    Thanx for the swift reply, but I have already considered what you've suggested already. I am trying to install it in my home dir, because I will be the only user on this machine coding in Java. As far as I know, I don't need any special privileges to install software like a jdk in my own account.
    I had posted this problem on another discussion forum quite recently, and another person said that they had similar problems a few months back. But unfortunately they cannot remember how they sorted it out.
    any other suggestions?
    Weston.

  • Firefox 3.6.8 fails to load any page if I open Outlook2003 after starting Firefox. Outlook also fails to send/receive although I am able to load pages in another browser. These problems do not seem to occur if I open Outlook first and then firefox.

    I have used Firefox and outlook for years, but this is a recent problem. I can't recall if it started after the latest Firefox update or not. Firefox seems to work fine until I open Outlook. Then it is impossible to load any pages; the loading icon appears and persists indefinately. The only way to load pages is to shut down and restart my pc. Simply exiting and reopening Firefox does not work.
    Additionally, the send/recieve process in outlook fails. My ISP has checked my line and there is no fault. I have confirmed this, since I am able to access the internet on another browser while Firefox is hanging.
    I have tried disabling add-ons, clearing the cache and checked connection settings (I use system proxy settings), but the problem persists.
    I'd be grateful for any help.

    I have used Firefox and outlook for years, but this is a recent problem. I can't recall if it started after the latest Firefox update or not. Firefox seems to work fine until I open Outlook. Then it is impossible to load any pages; the loading icon appears and persists indefinately. The only way to load pages is to shut down and restart my pc. Simply exiting and reopening Firefox does not work.
    Additionally, the send/recieve process in outlook fails. My ISP has checked my line and there is no fault. I have confirmed this, since I am able to access the internet on another browser while Firefox is hanging.
    I have tried disabling add-ons, clearing the cache and checked connection settings (I use system proxy settings), but the problem persists.
    I'd be grateful for any help.

  • Calling custom form from another custom form giving problem

    Hi
    my requirement is when i am populating value in one form field from LOV ,
    i wrote when-validate-item trgger
    this trigger calls in turn another form for approval
    so i use the following command in trigger
    DECLARE
    -- variable added by deepak on 16-05-2006 starts here
         --to make PROF_description enterable
         L_PROF_TERM_WARNING_AMNT NUMBER;
         L_PROF_TERM_AMNT NUMBER;
         L_PROF_DEPOSIT_PAID NUMBER;
         L_AUTORIZATION VARCHAR2(1);
         --variable added by deepak on 16-05-2006 ends here
         --code added by deepak on 16-05-2006 starts here
         BEGIN      
                        BEGIN
                             SELECT PROF_TERM_WARNING_AMNT ,PROF_TERM_AMNT ,PROF_DEPOSIT_PAID ,AUTORIZATION
                             INTO L_PROF_TERM_WARNING_AMNT,L_PROF_TERM_AMNT,L_PROF_DEPOSIT_PAID,L_AUTORIZATION
                             FROM XXPOS_CUSTOMER_PROFILES_GTB XCP
                             WHERE XCP.PROF_DESCRIPTION = :POSTPAID_DET.PROF_DESCRIPTION;
                        END;
                        BEGIN
                        IF L_AUTORIZATION ='Y' THEN
                             :GLOBAL.auth_user_id := NULL;
                             FND_FUNCTION.EXECUTE( FUNCTION_NAME=>'XXAUTHSC',
    OPEN_FLAG=>'Y',
    SESSION_FLAG=>'NO_SESSION',
    OTHER_PARAMS=>NULL,
    ACTIVATE_FLAG=>'ACTIVATE',
    BROWSER_TARGET=>NULL);
                        IF :GLOBAL.auth_user_id is not null THEN
                             :POSTPAID_DET.PROF_TERM_WARNING_AMNT := L_PROF_TERM_WARNING_AMNT ;
                        :POSTPAID_DET.PROF_TERM_AMNT := L_PROF_TERM_AMNT ;
                        :POSTPAID_DET.PROF_DEPOSIT_PAID := L_PROF_DEPOSIT_PAID ;
                        ELSE
                             RAISE Form_Trigger_Failure;
                        END IF;
                        ELSE
                        :POSTPAID_DET.PROF_TERM_WARNING_AMNT := L_PROF_TERM_WARNING_AMNT ;
                        :POSTPAID_DET.PROF_TERM_AMNT := L_PROF_TERM_AMNT ;
                        :POSTPAID_DET.PROF_DEPOSIT_PAID := L_PROF_DEPOSIT_PAID ;
                        END IF;
                        END;
              END;
    but while running it is giving error:
    it is not popup the desired second window and displaying following error
    Illegalrestricted procedure OPEN_FORM in when-validate-item trigger
    IF anyone has any idea on this, it will bw highly appreciated.
    regards
    deepak

    You can use a timer in your when-validate-item trigger. In the when-timer-expire trigger you can call the procedure open_form

  • Another strange powerpill error - problem with new aria2? [SOLVED]

    Looks like I'm getting another odd powerpill error.  Is this a function of the new aria2 package that got deployed a day or two ago?
    # powerpill -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: The following packages will be downloaded:
    [core]
    glib2 openssh
    [extra]
    alacarte at-spi atk brasero bug-buddy cheese clutter clutter-gtk conky
    consolekit dasher deskbar-applet devicekit-disks devicekit-power eggdbus
    ekiga eog epiphany evince evolution-data-server evolution-exchange
    evolution-webcal file-roller gcalctool gconf gconf-editor gdm gedit glibmm
    gmime gnome-applets gnome-backgrounds gnome-control-center gnome-desktop
    gnome-desktop-sharp gnome-disk-utility gnome-doc-utils gnome-games
    gnome-games-extra-data gnome-icon-theme gnome-keyring gnome-mag gnome-media
    gnome-menus gnome-netstatus gnome-nettool gnome-panel gnome-power-manager
    gnome-python gnome-python-desktop gnome-screensaver gnome-session
    gnome-settings-daemon gnome-system-monitor gnome-terminal gnome-themes
    gnome-utils gnome-vfs gnome2-user-docs gok gtk-engines gtk-sharp-2 gtk-vnc
    gtk2 gtkhtml gtkmm gtksourceview2 gucharmap gvfs hamster-applet kdelibs
    libatasmart libbonobo libbonoboui libgdata libgnome libgnomekbd libgnomeui
    libgphoto2 libgtop libgweather libsigc++2.0 libsoup libsoup-gnome libunique
    libwebkit libwnck libxklavier metacity mousetweaks nautilus opal orca pango
    pangomm polkit polkit-gnome poppler poppler-glib ptlib pygobject pygtk
    pygtksourceview2 seahorse seahorse-plugins sound-juicer tomboy totem
    totem-plparser vinagre vino vte yelp zenity
    [community]
    perl-xyne-arch
    :: Number of Packages: 117
    :: Total Download Size: 298.48 MiB
    :: Total Installed Size: 1015.32 MiB
    :: Proceed with download? [Y/n] y
    /usr/bin/aria2c: unrecognized option '--retry-wait=2'
    Exception: [OptionParser.cc:149] Failed to parse command-line options.
    aria2: Usage: aria2c [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]...
    aria2: Printing options tagged with '#help'.
    aria2: See -h option to know other command-line options(#basic, #advanced, #http, #https, #ftp, #metalink, #bittorrent, #cookie, #hook, #file, #xml-rpc, #experimental, #help, #all).
    aria2: Options:
    aria2: -h, --help[=TAG|KEYWORD] Print usage and exit.
    aria2: The help messages are classified with tags. A tag
    aria2: starts with "#". For example, type "--help=#http"
    aria2: to get the usage for the options tagged with
    aria2: "#http". If non-tag word is given, print the usage
    aria2: for the options whose name includes that word.
    aria2: Possible Values: #basic, #advanced, #http, #https, #ftp, #metalink, #bittorrent, #cookie, #hook, #file, #xml-rpc, #experimental, #help, #all
    aria2: Default: #basic
    aria2: Tags: #basic,#help
    aria2: Refer to man page for more information.
    --> All downloads have finished successfully
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Targets (118): glib2-2.22.2-1 pygobject-2.20.0-1 pygtk-2.16.0-1 gnome-menus-2.28.0.1-1 atk-1.28.0-1
    pango-1.26.0-1 gtk2-2.18.2-1 eggdbus-0.5-1 polkit-0.94-1 gconf-2.28.0-1
    libbonobo-2.24.2-1 gnome-vfs-2.24.2-1 libgnome-2.28.0-1 libbonoboui-2.24.2-1
    gnome-keyring-2.28.0-1 libgnomeui-2.24.2-1 gnome-python-2.28.0-1 libsoup-2.28.0-1
    libsoup-gnome-2.28.0-1 libgweather-2.28.0-1 evolution-data-server-2.28.0-1
    gnome-desktop-2.28.0-1 libwnck-2.28.0-1 gnome-panel-2.28.0-1 alacarte-0.12.4-2
    at-spi-1.28.0-1 gmime-2.4.10-1 totem-plparser-2.28.1-1 libunique-1.1.2-1
    brasero-2.28.1-2 libgtop-2.28.0-1 bug-buddy-2.28.0-1 gnome-icon-theme-2.28.0-1
    cheese-2.28.0.1-1 conky-1.7.2-2 consolekit-0.3.1-1 dasher-4.10.1-2
    gnome-python-desktop-2.28.0-1 deskbar-applet-2.28.0-1 devicekit-power-010-1
    ptlib-2.6.5-1 opal-3.6.6-1 libsigc++2.0-2.2.4.2-1 ekiga-3.2.6-1 eog-2.28.0-1
    libwebkit-1.1.15.1-1 epiphany-2.28.0-1 poppler-0.12.0-1 poppler-glib-0.12.0-1
    evince-2.28.0-1 libgphoto2-2.4.6-3 sg3_utils-1.27-2 libatasmart-0.14-1
    devicekit-disks-007-1 gnome-disk-utility-2.28.0-1 gvfs-1.4.0-1
    evolution-exchange-2.28.0-1 evolution-webcal-2.28.0-1 file-roller-2.28.0-1
    gcalctool-5.28.0-1 gconf-editor-2.28.0-1 libxklavier-4.0-1 polkit-gnome-0.94-1
    gnome-session-2.28.0-1 gdm-2.28.0-1 gtksourceview2-2.8.1-1 pygtksourceview2-2.8.0-1
    gedit-2.28.0-1 glibmm-2.22.1-1 gucharmap-2.28.0-1 libgnomekbd-2.28.0-1
    gnome-applets-2.28.0-1 gnome-backgrounds-2.28.0-1 zenity-2.28.0-1 metacity-2.28.0-2
    gnome-settings-daemon-2.28.0-1 gnome-control-center-2.28.0-1 gtkhtml-3.28.0-2
    vte-0.22.2-1 gnome-desktop-sharp-2.26.0-2 gnome-doc-utils-0.18.0-1 clutter-1.0.4-1
    clutter-gtk-0.10.2-1 gnome-games-2.28.0-1 gnome-games-extra-data-2.28.0-1
    gnome-mag-0.15.9-1 gnome-media-2.28.1-1 gnome-netstatus-2.28.0-1
    gnome-nettool-2.28.0-1 gnome-power-manager-2.28.0-1 gnome-screensaver-2.28.0-1
    pangomm-2.26.0-1 gtkmm-2.18.2-1 gnome-system-monitor-2.28.0-1 gnome-terminal-2.28.0-1
    gtk-engines-2.18.4-1 gnome-themes-2.28.0-1 gnome-utils-2.28.0-1 yelp-2.28.0-1
    gnome2-user-docs-2.28.0-1 gok-2.28.0-1 gtk-sharp-2-2.12.9-1 gtk-vnc-0.3.9-1
    hamster-applet-2.28.0-1 kdelibs-4.3.2-4 mousetweaks-2.28.0-1 nautilus-2.28.0-1
    openssh-5.3p1-1 orca-2.28.0-1 perl-xyne-arch-0.82-2 seahorse-2.28.0-1
    seahorse-plugins-2.28.0-1 sound-juicer-2.28.0-1 tomboy-1.0.0-1 libgdata-0.4.0-1
    totem-2.28.1-1 vinagre-2.28.0.1-1 vino-2.28.0-1
    Total Download Size: 298.48 MB
    Total Installed Size: 1017.04 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    glib2-2.22.2-1-x86_64 2.8M 718.0K/s 00:00:04 [##############################################] 100%
    openssh-5.3p1-1-x86_64 849.0K 399.5K/s 00:00:02 [##############################################] 100%
    :: Retrieving packages from extra...
    pygobject-2.20.0-1-... 551.4K 207.3K/s 00:00:03 [##############################################] 100%
    ^Cygtk-2.16.0-1-x86_64 894.7K 370.1K/s 00:00:04 [################------------------------------] 35%
    Interrupt signal received
    Last edited by graysky (2009-10-12 20:55:38)

    If you're going to use powerpill you should probably subscribe to the following thread:
    http://bbs.archlinux.org/viewtopic.php?id=56583
    Your answer is on the very last page, but in summary the problem is that the --retry-wait option is no longer supported in aria2 which you can see in the code you pasted.
    /usr/bin/aria2c: unrecognized option '--retry-wait=2'
    Xyne has already updated the code so you can either get the code from his site or wait for the mirrors to sync.

  • Another User with HND Problems

    I've just installed my WRT610N router today and used LELA for setup.  When I went to set up HND I installed Network Magic as I found in instructions on the Linksys web site.  I was able to do the initial setup of HND, however, when I went in latter to adjust settings, I received a notice that my subscription expired (I thought it was supposed to be 30 days, not about 30 minutes) and I was asked if I wanted to purchase it.  Since I've only just begun trying to set it up, I wasn't sure if I wanted it yet, although it was the primary driver behind purchasing the new router.  I still thought I should see if it met my needs to protect my kids while on the Internet.  In any event, I did not purchase it at that time and I had to step away for a few hours to do something else.  Upon returning I've tried to continue where I left off, but now I get the message that HND is registered to another account and it won't let me change the settings (at least it no longer asks me to purchase it while I'm still in the trial period).
    I noticed on this forum that some people indicated they used LELA to configure HND so I uninstalled Network Magic and reinstalled LELA, but I cannot see any way to configure or control HND in LELA.  I therefore reinstalled Network Magic and am still getting the same message.  I have looked on the Linksys web site but don't see a link for live chat for support as some users have indicated they used, so I'm not sure what I am doing wrong either in trying to get support or trying to get HND configured.
    This is a very frustrating set up process for a feature that will cost almost $60 to purchase and I'm also concerned that Linksys seems to push purchase of another $50 product (Network Magic Pro) to manage it.  But right now, I'd just like to get HND configured so I can move forward with seeing if it will do what I need it to do.
    Please help!
    Thanks.

    I was able to get a live chat session with Linksys and they had me install the latest version of LELA.  This version of LELA did have the ability to access the HND parental controls, however, now when I log in, it inidcates the license for HND expired on December 26, 2008.  Since I recently purchased the router and installed it on 8/19/2009, I don't understand how the 30 day trial license could expire 8 months before I  got the router.
    A second session with live chat had me reset the router, which did not work (drastic last resort as I indicated to the chat support agent since it would require reconfiguration of the router to work again)  I didn't think it would work as I believed the license information is in some account somewhere.
    Can anyone help as I'd like to start testing HND to see if it will do what I hope it will and right now it does nothing.
    Thanks.

Maybe you are looking for