6985 (Conditions of use not satisfied)

While trying to upload/install the JavaCard applet, I get the error:
cm>  /term "winscard:4|ActivCard ActivCard USB Reader V3 0"
--Opening terminal
/card -a a000000003000000 -c com.ibm.jc.CardManagerresetCard with timeout: 0 (ms)
--Waiting for card...
ATR=3B F8 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34    ;.....1.EJCOPv24
    31 B7                                              1.
IOCTL().
ATR:
         T = 1                  
=> 00 A4 04 00 08 A0 00 00 00 03 00 00 00 00          ..............
(43870 usec)
<= 6F 65 84 08 A0 00 00 00 03 00 00 00 A5 59 9F 65    oe...........Y.e
    01 FF 9F 6E 06 47 91 00 78 34 00 73 4A 06 07 2A    ...n.G..x4.sJ..*
    86 48 86 FC 6B 01 60 0C 06 0A 2A 86 48 86 FC 6B    .H..k.`...*.H..k
    02 02 01 01 63 09 06 07 2A 86 48 86 FC 6B 03 64    ....c...*.H..k.d
    0B 06 09 2A 86 48 86 FC 6B 04 02 15 65 0B 06 09    ...*.H..k...e...
    2B 85 10 86 48 64 02 01 03 66 0C 06 0A 2B 06 01    +...Hd...f...+..
    04 01 2A 02 6E 01 02 90 00                         ..*.n....
Status: No Error
cm>  set-key 255/1/DES-ECB/404142434445464748494a4b4c4d4e4f 255/2/DES-ECB/404142434445464748494a4b4c4d4e4f 255/3/DES-ECB/404142434445464748494a4b4c4d4e4f
cm>  init-update 255
=> 80 50 00 00 08 5E 82 48 0F D7 13 4C C1 00          .P...^.H...L..
(48629 usec)
<= 00 00 11 67 00 63 24 95 63 35 FF 02 00 AA 10 5B    ...g.c$.c5.....[
    D3 4B FE 45 E8 06 CC 5F 8D E9 F7 8F 90 00          .K.E..._......
Status: No Error
cm>  ext-auth plain
=> 84 82 00 00 10 9C 18 8E AA D4 BE 2C 0E 75 4E DF    ...........,.uN.
    48 0D B3 BA 65                                     H...e
(48233 usec)
<= 90 00                                              ..
Status: No Error
cm>  delete -r 6961736563636170706c65742e70616b
=> 80 E4 00 80 12 4F 10 69 61 73 65 63 63 61 70 70    .....O.iaseccapp
    6C 65 74 2E 70 61 6B 00                            let.pak.
(192529 usec)
<= 69 85                                              i.
Status: Conditions of use not satisfied
jcshell: Error code: 6985 (Conditions of use not satisfied)
jcshell: Wrong response APDU: 6985
Ignoring expected error
cm>  delete -r 6961736563636170692e70616b
=> 80 E4 00 80 0F 4F 0D 69 61 73 65 63 63 61 70 69    .....O.iaseccapi
    2E 70 61 6B 00                                     .pak.
(21937 usec)
<= 69 85                                              i.
Status: Conditions of use not satisfied
jcshell: Error code: 6985 (Conditions of use not satisfied)
jcshell: Wrong response APDU: 6985
Ignoring expected error
cm>  upload -c -d -b 250 "C:\WORKSPACE\IASECCApplet1.0\bin\hr\akd\iasecc\api\javacard\api.cap"
=> 80 E6 02 00 1A 0D 69 61 73 65 63 63 61 70 69 2E    ......iaseccapi.
    70 61 6B 08 A0 00 00 00 03 00 00 00 00 00 00 00    pak.............
(23343 usec)
<= 69 85                                              i.
Status: Conditions of use not satisfied
jcshell: Error code: 6985 (Conditions of use not satisfied)
jcshell: Wrong response APDU: 6985
Unexpected error; aborting execution

Not knowing how this happened, I just made a new copy of my "default" JCOP-Folder with the settings! created the same programm, now it runs, what a relief!
/select |test
=> 00 A4 04 00 0A 74 75 77 69 65 6E 69 6E 73 6F 00    .....test.
(5380 usec)
<= 90 00                                              ..
Status: No Error
here is the usual respond to selecting applets.

Similar Messages

  • JCOP Tools Problem Error code: 6985 (Conditions of use not satisfied)

    I have a problem with the JCOP tools. I am developing a very simple applet which does nothing at all. It is a "hello world" type applet so that I can get something working. It compiles ok, however as soon as I try to run it under the emulator I get an error.
    Status: Conditions of use not satisfied jcshell: Error code: 6985 (Conditions of use not satisfied) jcshell: Wrong response APDU: 6985
    This always happens when the jcshell issues the install command.
    The install command is:
    install -i 1234567890 -t -l -d -m -p -s -b -e -q C9#(1234567890) 1234567890 1234567890
    I must be doing something very basic incorrectly. I have tried searching the forums and internet and I haven't found anything. Any help would be appreciated.
    The code is this:
    package pt.microfil.test;
    import javacard.framework.*;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.framework.APDU;
    public class testcard extends Applet {
         final static byte CLASS = (byte) 0x80; // Class of the APDU commands
         final static byte INS_READ = (byte) 0x02; // instruction for the READ APDU command
         // this is the text string which will send back from the ICC to the IFD
         final static byte[] text = {(byte) 'e', (byte) 't', (byte) 's', (byte) ' ',
         (byte) 'g', (byte) 'e', (byte) 'h', (byte) 't', (byte) 's', (byte) ' ',
         (byte) 'd', (byte) 'e', (byte) 's', (byte) ' ',
         (byte) 'G', (byte) 'l', (byte) 'u', (byte) 'm', (byte) 'p'};
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // GP-compliant JavaCard applet registration
              //new testcard().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
              new testcard().register();
         public static void install() {
              new testcard().register();
         public void process(APDU apdu) {
              byte[] cmd_apdu = apdu.getBuffer(); // the cmd_apdu variable is used because of performance reasons
              if (cmd_apdu[ISO7816.OFFSET_CLA] == CLASS) {  // it is the rigth class
              switch(cmd_apdu[ISO7816.OFFSET_INS]) {      // check the instruction byte
              case INS_READ: // it is a READ instruction
              // check if P1=P2=0
              if ((cmd_apdu[ISO7816.OFFSET_P1] != 0) || (cmd_apdu[ISO7816.OFFSET_P2] != 0)) {
              ISOException.throwIt(ISO7816.SW_WRONG_P1P2);
              } // if
              // check if P3=length of the text field
              short le = (short)(cmd_apdu[ISO7816.OFFSET_LC] & 0x00FF); // calculate Le (expected length)
              short len_text = (short)text.length; // the len_text variable is used because of performance reasons
              if (le != len_text) {
              ISOException.throwIt((short)(ISO7816.SW_CORRECT_LENGTH_00 + len_text)); // give the expected length back to the IFD
              } // if
              apdu.setOutgoing(); // set transmission to outgoing data
              apdu.setOutgoingLength((short)len_text); // set the number of bytes to send to the IFD
              apdu.sendBytesLong(text, (short)0, (short)len_text);
              break;
              default : // the instruction in the command apdu is not supported
              ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
              } // switch
              } // if
              else {         // the class in the command apdu is not supported
              ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
    }

    i also found this error and i change the package name and applet id.it is not changing.now i got same error.
    cm>  install -i 6d796170702e617070  -q C9#() 6d797061636b616765 6d796170702e617070
    jcshell: Error code: 6985 (Conditions of use not satisfied)
    jcshell: Wrong response APDU: 6985
    Unexpected error; aborting execution
    how can i solve the problem??

  • Try to change 'Card Status' but reponse is"Conditions of use not satisfied"

    Dear
    I tried to change card status from "INITIALIZED" to "SECURED" after putting 3 keys.
    However it says "Conditions of use not satisfied"
    APDU that I sent is below
    => 80 F0 80 0F 07 A0 00 00 00 03 00 00 ............
    (30 msec)
    <= 69 85 i.
    Status: Conditions of use not satisfied
    I have 2 questions.
    1) Do you know why?
    2) Do you know what is the "Initial Key of JCOP Cards"
    Is it 404142434445464748494a4b4c4d4e4f ?
    Any help would be greatly appreciated.

    Ok well in playing around with my code, I had narrowed the problem down to a cipher object that I was using for signing (even though I was explicitly setting it to null when the applet was uninstalled). I store the key that I pass into the init call in an array - I changed this array from static to non static and that has made the problem go away. However I am not sure why. Does anyone have any thoughts on this?
    Edited by: Swati Patel on 07-Sep-2011 00:40

  • Condition of use not satisfied

    Hi.
    configuration
    Reader/Writer : GemPC Twin (USB)
    Tool : GemXplore Admin
    Card : Gemplus card
    Cardlet : Helloworld, JavaPulse (from java.sun site)
    I can load "HelloWorld" applet by changing to "HelloWorld.jar" from "HelloWorld.cap"
    I'm still not able to understand why I should change ".cap" to ".jar".
    But, anyway loading of "HelloWorld" on Gem+ card was done.
    The problem is that I can't load "JavaPulse" applet on gem+ card by what I've done for "HelloWorld".
    The Compiling, converting, changing to ".jar" from ".cap" was done in same way such as "HelloWorld"
    The error message is "69 85" (condition of use not satisfied)
    For some detail understanding,
    the steps (SELECT, INITIALIZE UPDATE, EXTERNAL AUTHENTICATE, INSTALL FOR LOAD) are done well but the "LOAD" step is failed at all.
    I hope you to have a good idea for resolving this problem. Thanx.
    Jade.

    I solved the problem recently. As I assumed there were dependencies between the packages.
    Package A (containing the applet) instantiated an object from package C. Package A also uses classes of package B.
    So all packages coudn't be deleted.
    But how do i solve this dependencies for uninstall? Is the uninstall() method the best practise for this kind of problem or is there another way to clear references?
    I tried the uninstall() method some time ago and set the object fom package A which handles all other classes from B and C to null but it didn't work.

  • Using records that satisfy and do not satisfy join condition

    Hi,
    My requirement is to use the records which satisfy and do not satisfy the join conditions in ODI.
    Can any one explain how to achieve this?
    Thanks in advance.
    Regards,
    SRK

    Hi Katukota,
    Thanks for the suggestion. When i tried to implement the same with an OUTER JOIN to capture the records that satisfied and not satisfied the join condition, the SQL statement is not getting created properly and as given below
    "from DEPT [empty] EMP where     (1=1) And (DEPT.DEPTNO=EMP.DEPT(+))"
    THere is no ',' operator between the two tables in the FROM Clause. When it is corrected in the ODI operator, the task is executed successfully.
    Can you please suggest the way forward to avoid this error?
    Thanks in advance.
    Regards,
    SRK
    Edited by: user6416145 on 04-May-2009 14:13

  • After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Trying to verify my app using codesign, but it fails with "does not satisfy its designated Requirement"

    Hello,
    When attempting to verify my ios app using codesign it fails:
    macmini:MyApp admin$ codesign -vvvv Payload/MyApp.app
    Payload/MyApp.app: valid on disk
    Payload/MyApp.app: does not satisfy its designated Requirement
    I tried to diagnose it, so I ran this command that as far as I know shows what the requirements are:
    macmini:MyApp admin$ codesign -d -r- Payload/MyApp.app Executable=/Volumes/Share/Temp/appstore/MyApp.3.12.2.0/Payload/MyApp.app/MyApp designated => identifier "com.bla1.bla2" and certificate root = H"40characterstring"
    But I'm not sure how to proceed now. The identifier looks correct and not sure what to do with that 40 character string for the certificate root. Any ideas?
    Thanks in advance!

    Hi candn14 and welcome to the forums!
    Since internet connection is working fine on the laptop computer when plugged directly into the modem, you just need to configure your router settings.
    Are you using a DSL or Cable connection? Please see the links below on how to configure your router with your internet provider (ISP).
    Setting-Up a Router with Cable Internet Service
     Setting-Up a Router with DSL Internet Service
    Once you are finished doing so and your laptop is able to connect to the internet when connected to the modem > router > laptop, then you are now ready to configure the wireless settings of the router for you to be able to connect wirelessly.
    Here are the steps:
    Setting-Up the Wireless Settings on a Router
    And please secure your network w/ a password.
    Setting-Up Wireless Security on a Linksys Router
    Please feel free to ask any questions again if you encounter any problems. Hope this helps.

  • How to use not less than or equal to in condition

    I written a querry based on the below condition in sql querry
    b.key <= a.key
    Based on this it will return records.
    I need remaining records that not satisfy the above condition.
    That means not less than or equal to records...

    937506 wrote:
    I written a querry based on the below condition in sql querry
    b.key <= a.key
    Based on this it will return records.
    I need remaining records that not satisfy the above condition.
    That means not less than or equal to records...you mean
    b.key > a.key?

  • Can I use NOT IN for 2 conditions

    My first SQL Query was written as so,
    INSERT [rscalc].[Processing_Log] (Source_nm, Log_Type,[Message],Log_dt)
    SELECT '[rscalc].[usp_Validate_Generation_Map]', @Log_Type_Id, 'Source Not Found =>' + tp.Source, GETUTCDATE()
    FROM [etag].[Tag_Processed] tp
    WHERE tp.Source NOT IN 
    (SELECT bamap.Name FROM [rscalc].[BA_Area_Source_Sink_Map] bamap
    INNER JOIN [rscalc].[VER_Generation_Map] ON Area_Source_Sink_Id = bamap.Id
    INNER JOIN [etag].[Endpoint_Type_Map] emap ON emap.Id = bamap.Endpoint_Type_Id
    WHERE emap.Endpoint_Type = 'Source' or emap.Endpoint_Type = 'Source/Sink')
    I now need to include 2 conditions,
    tp.Source NOT IN and tp.Source_CA NOT IN, I came up with something along the lines of below, but I don't think this is correct?
    INSERT [rscalc].[Processing_Log] (Source_nm, Log_Type,[Message],Log_dt)
    SELECT '[rscalc].[usp_Validate_Generation_Map]', @Log_Type_Id, 'Source:' + tp.Source + ',Source_CA:' +                              
                            tp.Source_CA + '=>Not Found', GETUTCDATE()
    FROM [etag].[Tag_Processed] tp, [rscalc].[BA_Area_Source_Sink_Map] bamap
    INNER JOIN [rscalc].[BA_Areas] bareas ON bamap.BA_Area_Id = bareas.Id
    INNER JOIN [rscalc].[VER_Generation_Map] ON Area_Source_Sink_Id = bamap.Id
    INNER JOIN [etag].[Endpoint_Type_Map] emap ON emap.Id = bamap.Endpoint_Type_Id
    WHERE  
    emap.Endpoint_Type = 'Source' or 
    emap.Endpoint_Type = 'Source/Sink' AND
    tp.Source <> bamap.Name AND
    tp.Source_CA <> bareas.ETAG_source_nm
    Greg Hanson

    >> I now need to include 2 conditions,
    tp.Source NOT IN and tp.Source_CA NOT IN, I came up with something along the lines of below, but I don't think this is correct?
    Sometimes the best option is to try it :-)
    In this case the syntax is correct but we have no way to check in practice, unless you post the DDL+DML (queries to create the relevant tables and insert some sample data). In any case those not the same queries. You changed the logic of the query
    and not just add 2 conditions. Most likely the execution plan will show you differance solution.
    Can you please post DDL+DML?
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • Security status not satisfied.- very urgent - please help me out

    hi,
    I am using Java card (JCOP v2.241) and eclipse. Few days back I have implemented Caesar cipher and now I have installed another applet for DES... I did not do init update or key ..
    Now it is showing me security condition not satisfied.69 82
    Aborting execution error.
    I did for three times ....the same thing happened...I have searched this forums but I could not get a clear answer.... I donot have any idea abt external authentication..
    Now this shows that I cannot access the card. Is it blocked ....
    How to unlock it.. Please help me out.. How to delete the applets..
    when we use DES to implement should we use any init -update?? .I am using JCOP sample engineering card can I configure it to any other
    Any suggestions and replies highly appreciated
    Thanks
    CM.

    1. Where should I run this code. what will it show when I run this. It enumerates all installed applets and packages, currently installed in the JCOP emulator running on TCP port 8050.
    2. When I compiled it javac cardinfo.java I got 28 errors. I too. I corrected the code (see my post in the thread "Code Sample: cardinfo for JCOP41V22 Card").
    my first error says import com.ibm.jc.*; doesnot exist. should I add this package if so how can I ...You need to add the JCOP-library "offcard.jar" to the project classpath.
    Jan

  • Error: failed to prepare transaction (could not satisfy dependencies)

    Hi,
    I was going to install a winff package (a GUI front end to ffmpeg for converting between video formats), but when I ran yaourt -S winff and tried to install it refused because it isn't for the x86_64 architecture. So I decided to edit the PKGBUILD and perhaps try to force it anyway, but then I saw that the PKGBUILD is actually getting the precompiled RPM package and as I checked, while there was no precompiled 64bit version of the RPM there was one for a deb version that is offered on winff site.
    Since deb's are just archives I ended up, after a few tries, with this PKGBUILD which uses ar and tar commands to get to the binaries inside of the amd64 deb:
    # Contributor: yugrotavele <[email protected]>
    # Modified by libervisco for x86_64
    pkgname=winff-amd64
    pkgver=0.42
    pkgrel=1
    pkgdesc="GUI for ffmpeg"
    url="http://www.winff.org"
    license=('GPL')
    depends=('ffmpeg gtk gdk-pixbuf')
    makedepends=('')
    source=('http://winff.googlecode.com/files/winff-0.42-amd64.deb')
    arch=('x86_64')
    md5sums=('1febf5fd19fa76bdc1da06d3e6c4d3b8')
    build() {
    ar vx winff-0.42-amd64.deb
    tar xvzf data.tar.gz
    install -Dm755 $startdir/src/usr/bin/winff $startdir/pkg/usr/bin/winff
    install -Dm755 $startdir/src/usr/share/winff/presets.xml $startdir/pkg/usr/share/winff/presets.xml
    install -Dm755 $startdir/src/usr/share/winff/winff.png $startdir/pkg/usr/share/winff/winff.png
    So what I basically do is run yaourt -S winff and when it asks whether I want to edit it, I edit it and replace the original PKGBUILD content with above.
    It successfully runs the build() commands, finds and installs the dependencies, but when it's time to install the actual new winff package is throws up this:
    loading package data...
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: winff: requires ffmpeg gtk gdk-pixbuf
    I don't get it. It installed all the dependencies (and I even checked whether winff works in one of the earlier tries when I manually installed gdk-pixbuf when the binary asked for it). What does it want now?
    Here is the whole process:
    [daniel@memeport ~]$ yaourt -S winff
    ==> Downloading winff PKGBUILD from AUR...
    Comment by: yugrotavele on 20080518 [04:36:56]
    A nice GUI frontend for ffmpeg.
    First Submitted: Sun, 18 May 2008 04:28:31 +0000
    Last Updated: Mon, 30 Jun 2008 04:23:08 +0000
    winff 0.42-1 (Unsupported): GUI for ffmpeg
    ==> winff dependencies:
    - ffmpeg (already installed)
    - rpmextract (already installed)
    ==> Edit the PKGBUILD (recommended) ? [Y/n] ("A" to abort)
    ==> ----------------------------------------------
    ==>y
    Please add $EDITOR to your environment variables
    for example:
    ==> Edit PKGBUILD with: (replace gvim with your favorite editor)
    ==> Edit ./PKGBUILD with: gedit
    ==> winff dependencies:
    - ffmpeg (already installed)
    - gtk (already installed)
    - gdk-pixbuf (package found)
    ==> Continue the building of 'winff'? [Y/n]
    ==> ----------------------------------------------
    ==>y
    ==> Building and installing package
    ==> Making package: winff 0.42-1 (Tue Jul 1 21:34:12 CEST 2008)
    ==> Checking Runtime Dependencies...
    ==> Installing missing dependencies...
    resolving dependencies...
    looking for inter-conflicts...
    Targets: gdk-pixbuf-0.22.0-4
    Total Download Size: 0.00 MB
    Total Installed Size: 0.70 MB
    Proceed with installation? [Y/n]
    checking package integrity...
    (1/1) checking for file conflicts [############################################################] 100%
    (1/1) installing gdk-pixbuf [############################################################] 100%
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Downloading winff-0.42-amd64.deb...
    --2008-07-01 21:34:13-- http://winff.googlecode.com/files/winff-0.42-amd64.deb
    Resolving winff.googlecode.com... 64.233.187.82
    Connecting to winff.googlecode.com|64.233.187.82|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 1383594 (1.3M) [application/x-archive application/x-debian-package]
    Saving to: `winff-0.42-amd64.deb'
    100%[=============================================================================>] 1,383,594 191K/s in 7.4s
    2008-07-01 21:34:21 (183 KB/s) - `winff-0.42-amd64.deb' saved [1383594/1383594]
    ==> Validating source files with md5sums...
    winff-0.42-amd64.deb ... Passed
    ==> Extracting Sources...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    x - debian-binary
    x - control.tar.gz
    x - data.tar.gz
    ./usr/
    ./usr/bin/
    ./usr/bin/winff
    ./usr/share/
    ./usr/share/doc/
    ./usr/share/doc/winff/
    ./usr/share/doc/winff/copyright
    ./usr/share/doc/winff/winff.pdf
    ./usr/share/doc/winff/README.txt
    ./usr/share/doc/winff/README-Icons.txt
    ./usr/share/doc/winff/README-Presets.txt
    ./usr/share/doc/winff/changelog
    ./usr/share/applications/
    ./usr/share/applications/winff.desktop
    ./usr/share/winff/
    ./usr/share/winff/winff.png
    ./usr/share/winff/presets.xml
    ./usr/share/winff/languages/
    ./usr/share/winff/languages/winff.es.po
    ./usr/share/winff/languages/winff.nl.po
    ./usr/share/winff/languages/winff.fr.po
    ./usr/share/winff/languages/winff.pb.po
    ./usr/share/winff/languages/winff.tr.po
    ./usr/share/winff/languages/winff.de.po
    ./usr/share/winff/languages/winff.zh.po
    ./usr/share/winff/languages/winff.it.po
    ./usr/share/winff/languages/winff.pt.po
    ./usr/share/winff/languages/winff.pl.po
    ./usr/share/winff/languages/winff.bg.po
    ./usr/share/winff/languages/winff.po
    ==> Tidying install...
    -> Removing info/doc files...
    -> Compressing man pages...
    -> Stripping debugging symbols from binaries and libraries...
    ==> Creating package...
    -> Generating .PKGINFO file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: winff (Tue Jul 1 21:34:22 CEST 2008)
    ==> Continue installing 'winff'? [Y/n]
    ==> [v]iew package contents [c]heck package with namcap
    ==> ----------------------------------------------
    ==>y
    loading package data...
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: winff: requires ffmpeg gtk gdk-pixbuf
    ==> WARNING: Your package is saved in /tmp/winff-0.42-1-x86_64.pkg.tar.gz
    I tried doing it without changing the package name to winff-amd64, but same thing happens. What's going on?

    Ahh man, and that's it! It works.
    I'm just wondering now how can I contribute this PKGBUILD to AUR, but I can read that in the wiki too.
    Thanks!

  • Header condition type value not displayed in sales order output

    Hi gurus,
    I have observed a strange issue regarding a header condition in a sales order.
    we have a set up like following:
    1. If the Header condition XXXX is used in sales Order then this value should be printed on sales order output.
    2. If the Header condition mentioned in above point is not maintained in sales order it should print the total price of all line items.
    Though i have maintained the header condition value in Sales Order Header its not displayed in SO output.
    That is , I have a sales order and it has one HEADER condition type entered with 3500 USD.
    In fact this value is used for some business purpose and is being printed on the sales order output for a specific output type.
    But where as in a sales order this header condition value is not getting printed on the output though I am using same data as of the sales order which is having the header condition value printed on its output.
    According to business,we must have the header condition value printed on  sales Order output.
    Please suggest how to proceed.
    Thanks in advance.

    Not sure if you are using costom smartform to print invoice, if yes then ask developer to debug and find the root cause and fix it.
    You might need to give him condition when it shuld be printed and when not.
    You can take reference of another output type for which it is printing

  • Adobe 7 is not compatible with Vista, If you are not satisfied with that answer...

    Unfortunately for what I do for a living I can't use a mac, cannot WAIT till they do become compatible or I just switch professions!
    I have adobe 7Pro because I MUST create PDF documents for my business, however when my laptop crashed for the 3rd time in less than a year and I was NOT about to pay HP $400 to reboot it, instead I had fun and smashed it (like in Office Space) and went out and bought a new Sony Vaio.  This laptop is nice and all however now ALL new computers come with Gates newest form of a rip off, VISTA, which had so many issues they release a new update for it every day and professional companies wouldn't touch it, so they FORCED it on us small business owners and personal computer users, such CRAP! (If you notice all large corporations use XP, there is no Vista for large corps, there's a reason for that...
    The people that do NOT have the $ to keep upgrading and paying for FIX ITS online from some unknown who has figured a work around are forced to use this crap!!!  I'm BEYOND anoyed... ANYWHO I am installing my adobe 7pro and every time I open it I get asked to "ACTIVATE AGAIN" so I call in to get a NEW Activation code and a minute later it does it AGAIN... SOOO, I get Tech support and the IDIOT in India literally READS to me the following statements: 
    "Adobe 7 is not compatible with Vista" 
    I tell him, that's a lie because my friend uses it on vista.
    He proceeds to READ to me "If you are not satisfied with that answer, then acrobat no longer supports Adobe 7". WTF?!?!? If I am not SATISFIED with that answer!??! aparantly he was NOT supposed to read THAT part!!! Laughing I proceed to tell him to piss off and hang up on him because I am SOOO tired of all these damn AMERICAN companies outsourcing their customer service to some 3rd world country where they pay these people $5 a week and have them just read from a ******* script for your problems, that is NOT technical support, that's BULL CRAP!  I know 4 yr olds that read english better!!!
    I am sick and tired of it... I might just take advantage of the 14 day return policy and go to Apple and buy a mac next week and change my profession sooner than I had planned JUST TO AVOID USING THIS CRAP!!! ADOBE YOU SUCK!!! Microsoft SUCKS!!!
    If you run into this problem do what I am doing, go to Apple and buy a mac, we need to stand up against all this and pay attention to the COMMERCIALS that are VERY TRUE and drop Microsoft, IBM, anything Gates related and stop using their products!!!

    Thanks Mike!
    I'm just so frustrated, its bad enough my other laptop wasn't even 2 yrs old
    yet and I've spent $800 to have it fixed twice already, this 3rd time I was
    DONE... so I moved onto Sony, but this Vista just is making my life a living
    hell, I just spent a fortune on the laptop, and now I have to buy Adobe 9
    when my adobe 7 isn't even 2 yrs old... ugh... its just very frustrating and
    nerve racking and is costing more than I make in a week in this business
    (real estate processing)... I should sell Microsoft for a living, I'd be a
    millionaire!
    My husband's Mac has been through hell and back physically, is 5 yrs old and
    we've never had to take it in for any upgrades or issues, its SO easy to
    use... why can't Microsoft be the same?!?!
    Thanks for your input and for being understanding of my frustration, I bet
    you see those often! LOL

  • Condition value is not displaying in sales order

    Hi Friends,
    when i am creating sales order, condition type(JEXP,JECP,JA1X..) is displaying in cond.type column and percentage(14%,2%,1%) is displaying in amount column and
    the condition value is not displaying in cond. value column in conitions tab of  sales order.
    In analysis it is showing as condition record found...
    please help me...
    with regards

    Hi,
    can it be that you have a problem with units of measure? Often, if there is no value in Condition value, the problem is in the master data of material. Did you use standard schema? If you not, have you tried it with standard schema? What is your value under "per" and "UoM"?
    Regards Thomas

  • Expense condition type does not transfer to CO-PA

    Dear guru,
    My client would like to post expense (ex. promotion expense) via sales order, then SD consultant create condition type and assign expense G/L to this condition type and I assign this condition type to value field via tcode KE4I. When we create sales order and use this condition type, value of this condition type is not transfered to the value field. I set cost element with category '1'. I know standard is not support for this situation. Please kindly to suggest me for solve the problem 'How do expense value of condition type from sales order will be transfered to CO-PA', example user exit or others.
    Thanks in advance.
    Regards,
    Nattakarn.

    Hi
    Changing the cost element category to 12 can be done only at the begining of the fiscal year as follows
    But if promotional expenses is already created as a cost element with say category 1, now if you want too change it you might get an error KS134 Field change CElem Category is not possible (transaction data already exists)
    Hence use TCode KA02, Edit->Analysis Period, Click other analysis period provide from begining of fiscal year to 12/31/9999.
    You might have to create a new GL Account cost element if you want to go ahead with the changes in middle of the fiscal year
    Regards,
    Suraj

Maybe you are looking for