Apply Property Error

I have a .jpg file that includes location information, which I want to remove.
I right-click on the file icon, choose Properties, then click on "Remove Properties and Personal Information".
I get a pop-up which lets me chose which properties to remove, or to make a copy of the file with all detail properties removed. When I click on "OK", I get an error window titled Apply Property Error, and the contents show the photo and file name
details with this error message: An error occurred when writing the property 'Altitude' to the file 'IMG_0006.JPG'.
This doesn't only produce an error on 'Altitude', but also any other field I chose.
I'm running Windows Home Premium SP1
Dave S.

(Um, the link provided above is for a different scenario. The workaround provided is to edit the files in Notepad. Unfortunately this is not possible with images.)
Removing GPS Data from images seems to be a problem for Windows 7 but apparently it has been fixed in Windows 8.1.
Microsoft have a free program you can download here
http://www.microsoft.com/en-us/download/details.aspx?id=13518
It is for Vista but seems to work on Win 7. It will clear latitude and longitude but not altitude.
Otherwise you are left with third party software eg
http://digitalconfidence.com/downloads.html
(not very granular control - Good for batch processing)
http://www.sno.phy.queensu.ca/~phil/exiftool/
(control is very granular but it is a command line tool. Good for batch processing)
http://www.snapfiles.com/get/photome.html
(great exif viewer, granular but slower. Only allows resetting of lats and longs to zero.)
In addition, popular photo editing programs such as Photoshop will also remove exif metadata. 

Similar Messages

  • Error when applying Property Filter

    Hi,
    I implemented a property filter for read name QMSPropertyFilter.
    Now I applied it to a repository uhl_qmd.
    When I open a navigation iview for this repository, I get the following exception:
    #1.5#C000AC140113000700000000003B4B1E0004016DD9146C60#1127471211900#com.sapportals.wcm.repository.runtime.CmFilterHandler#irj#com.sapportals.wcm.repository.runtime.CmFilterHandler.handleRuntimeException(837)#System#0#####Client_Thread_27##0#0#Error##Plain###Exception while applying filters: null: java.lang.NullPointerException
         at com.sapportals.wcm.repository.service.personalnote.PersonalNoteCountPropertyFilterManager.getFilterForRead(PersonalNoteCountPropertyFilterManager.java:57)
         at com.sapportals.wcm.repository.runtime.CmFilterHandler.applyPropertyFilter(CmFilterHandler.java:592)
         at com.sapportals.wcm.repository.runtime.CmFilterHandler.applyPropertyReadFilter(CmFilterHandler.java:201)
         at com.sapportals.wcm.repository.ResourceImpl.applyPropertyReadFilter(ResourceImpl.java:2790)
         at com.sapportals.wcm.repository.ResourceImpl.getProperties(ResourceImpl.java:1022)
         at com.sapportals.wcm.repository.CollectionImpl.getChildren(CollectionImpl.java:319)
         at com.sapportals.wcm.service.resourcelistfilter.cm.ResourceListFilter.getChildren(ResourceListFilter.java:417)
         at com.sapportals.wcm.rendering.collection.AbstractRendererStatus.initialfilter(AbstractRendererStatus.java:307)
         at com.sapportals.wcm.rendering.collection.AbstractRendererStatus.initializeSelectionList(AbstractRendererStatus.java:277)
    Can anyone help me with this case? We are using EP6.0 SP2.
    Best Regards
    Helge

    Sorry Dirk,
    I was wrong. After booting the portal I get the nullpointer exception again.
    My coding is adapted from the KM examples, so I added the properties I want to change to the property map.
    What do you mean with: "...specify the properties ... IPropertyFilter.getPropertyNameList() method."?
    In our case this looks like this:
    public IPropertyNameList getPropertyNameList() throws WcmException {
              return null;
    Is there any reliable example as I took this from SDN???
    Thank for you help!
    Helge

  • Problem using string to store evt.target.data and apply property filters

    I have about 9 buttons on my stage and I want to write code for the rollover and rollout effects, I only want to write the code once so I am trying to pass the button info into a string via evt.target.data and it pass the info properly into my string variable but when I try to set my filter to that variable, setting my movieclip instance name to that variable, I get 2 errors:
    1119: Access of possibly undefined property filters through a reference with static type String.
    Warning: 1072: Migration issue: String is not a dynamic class.  Instances cannot have members added to them dynamically.
    My code is:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    var thumbArray:Array=new Array();
    var movieClipLoader:Loader;
    var movieClipsStage:Array=new Array(mc0,mc1,mc2,mc3,mc4,mc5,mc6,mc7,mc8);
    toolTip_mc.alpha=0;
    var lumRd:Number=.2127;
    var lumGr:Number=.7152;
    var lumBl:Number=.0722;
    //grayscale
    var grayscale:ColorMatrixFilter = new ColorMatrixFilter([lumRd, lumGr, lumBl, 0, 0,
    lumRd, lumGr, lumBl, 0, 0,
    lumRd, lumGr, lumBl, 0, 0,
    0, 0, 0, 1, 0]);
    //drop shadow
    var ds:DropShadowFilter = new DropShadowFilter();
    ds.distance=5;
    ds.blurX=10;
    ds.blurY=10;
    ds.alpha=.7;
    //varialbe to store movieclips based on rollover
    var whichThumb:String;
    var myXMLInfo:XML;
    var thumbList:XMLList;
    var toolNameList:XMLList;
    var myXMLLoader:URLLoader=new URLLoader  ;
    myXMLLoader.load(new URLRequest("stars.xml"));
    myXMLLoader.addEventListener(Event.COMPLETE, loadComplete);
    function loadComplete(evt:Event):void {
    myXMLLoader.removeEventListener(Event.COMPLETE, loadComplete);
    myXMLInfo=XML(evt.target.data);
    thumbList= new XMLList();
    toolNameList=myXMLInfo.star.@toolname;
    thumbList=myXMLInfo.star.@thumbimage;
    for (var n:int=0; n<movieClipsStage.length; n++) {
    movieClipLoader=new Loader();
    movieClipLoader.load(new URLRequest(thumbList[n]));
    movieClipsStage[n].addChild(movieClipLoader);
    mc0.filters=mc1.filters=mc2.filters=mc3.filters=mc4.filters=mc5.filters=mc6.filters=mc7.fi lters=mc8.filters=[ds,grayscale];
    mc0_bu.addEventListener(MouseEvent.ROLL_OVER, thumbRollEffect);
    function thumbRollEffect(evt:MouseEvent):void {
    whichThumb = evt.target.name;
    whichThumb.filters=[ds];
    Thank you for your help!

    kglad, thanks for helping.
    basically, i am a newbie and i'm not clear on your answer . if evt.currentTarget is better, I would like to use the best method, so thanks. i'm trying to get my head around what's going on here in the code. i get that actionscript is storing a "reference" to the object but I don't get why I can't put that reference (which is the name of the movieclip on the stage I wish to apply filters to, i.e. mc0) into a string variable (whichThumb) and then use that string variable to apply the filter (whichThumb.filters=[ds];)
    on one hand, i'm getting error that says "possibly undefined property filters thru a ref with string" which I don't get because the filters are defined outside of the function and are called intially in the load function with no problem. and on the other hand, i am getting another error saying there is a "migraiton issue" with my string not being a dynamic class. do i need to make the var whichThumb another type other than string? if so, what type. maybe that will also solve the "undefined property" issue as well.
    still learning, Thanks for help!

  • While applying 4440000, "Error calling FNDLOAD function" Occurs.

    While applying the patch 4440000, the following error occured.
    ***********************************************************************************************Loading data using FNDLOAD function.
    FNDLOAD APPS/***** 0 Y UPLOAD @FND:patch/115/import/aflvmlu.lct @PER:patch/115/import/US/perzzlookup01823.ldt -
    Connecting to APPS......Connected successfully.
    Calling FNDLOAD function.
    Returned from FNDLOAD function.
    Log file:
    Error calling FNDLOAD function.
    Also, no log file for FNDLOAD generated.
    Referred the metalink note 441783.1. But unable to understand the solution. Can anyone please explain or other workaround if any?
    S. Sundar

    Dear Taylor,
    Thanks a lot. You are too excellent.
    After doing as follows, the problem is resolved.
    F:\oracle\product>ln -s 10.2.0 10_2.0
    F:\oracle\product>dir 10*
    Volume in drive F is New Volume
    Volume Serial Number is 08B6-ACF4
    Directory of F:\oracle\product
    12/16/2007 10:56 AM <DIR> 10.2.0
    04/01/2008 08:10 AM <JUNCTION> 10_2.0
    0 File(s) 0 bytes
    2 Dir(s) 10,004,815,872 bytes free
    F:\oracle\product>
    Thanks again.
    S. Sundar

  • Missing required input property error in insert attachment

    Hi,
    Im getting this following error some times not all times when i tring to insert attachment files to campaign object
    <ErrorMessage>Missing required input property &quot;Handle&quot;(SBL-ODS-00242)</ErrorMessage>
    please give some solution
    Thanks,
    Sathis Kumar P

    Do you have the XML request that you are sending?

  • BPF reviewer property error

    Hi all,
    I got this following error when I tried to create a BPF "A reviewer property should be set on the drive dimension" and it's preventing me from going to the next step.
    How do I set a reviewer property set?
    Thanking you in advance.
    Mtshama (South Africa)

    Hi,
        You have to define a reviewer property for your dimension of type 'E'. You can have a look to the Entity dimension on ApShell to see the definition and the population of owner and reviewer property.
    Regards,
    Mihaela

  • Setting executeInBackground = true on iOS Cannot create property error

    I'm using Flash Builder 4.7, created a Flex Mobile project.
    When my application deactivates, it needs to send a single POSt HTTP request to my server. It takes a few milliseconds to send, and on Android it works just fine. However, on iOS, since the app is suspended, the request is not sent until I activate the app again.
    I've looked online and tried this solution:
    adding the line
        NativeApplication.nativeApplication.executeInBackground = true;
    In the home view, or just before sending the request, raises an exception:
    ReferenceError: Error #1056: Cannot create property executeInBackground on flash.desktop.NativeApplication.
              at views::BnpSampleHomeView$cinit()
              at global$init()
              at BnpSample()[C:\eclipse\projects\BnpSample\src\BnpSample.mxml:3]
              at _BnpSample_mx_managers_SystemManager/create()[_BnpSample_mx_managers_SystemManager.as:51]
              at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()[E:\dev\4.y\frameworks\ projects\framework\src\mx\managers\systemClasses\ChildManager.as:311]
              at mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\4.y\frameworks\projects\fram ework\src\mx\managers\SystemManager.as:3057]
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()[E:\dev\4.y\frameworks\projects\framework\src\mx\managers\SystemManager.as:2843]
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()[E:\dev\4.y\frameworks\projects\framework\src\mx\managers\SystemManager.as:2723]
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at mx.preloaders::Preloader/timerHandler()[E:\dev\4.y\frameworks\projects\framework\src\mx\p reloaders\Preloader.as:542]
              at flash.utils::Timer/_timerDispatch()
              at flash.utils::Timer/tick()
    Help is apprecaited

    Some parts of this topic may be of help:
    http://forums.adobe.com/message/4359474

  • Accessing LOV available via methods throws No Such Property error

    I am using select <af:selectOneChoice> compoent (Same issue with other components too) with LOV from Model Driven data available in the following structure
    Model(created as Data Control) -> findPD1(String s1, String s2) -> PD1(object of class PD1) -> findPD2(String s3) -> PD2(object of class PD2) -> List<String> itemValue
    Where itemValue has get and set method.
    While running I get the following error
    JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-29000. Error message parameters are {0=groovy.lang.MissingPropertyException, 1=No such property: element for class: java.lang.String}
    Where as, the same works if we move the itemValue under Model like
    Model(created as Data Control) -> List<String> itemValue
    I am using JDeveloper version 11.1.2.3 the same works fine with 11.1.1.2 is this a regression?
    find some code from source below
    From Page def
    +<list IterBinding="testValueIterator" ListOperMode="navigation" ListIter="testValueIterator" id="testValue"+
    DTSupportsMRU="true" SelectItemValueMode="ListObject">
    +<AttrNames>+
    +<Item Value="element"/>+
    +</AttrNames>+
    +</list>+
    +<accessorIterator MasterBinding="findComponentIterator" Binds="testValue" RangeSize="25" DataControl="StorageModel"+
    BeanClass="java.lang.String" id="testValueIterator"/>
    From JSFF page
    +<af:selectOneChoice value="#{bindings.testValue.inputValue}" label="#{bindings.testValue.label}"+
    +required="#{bindings.testValue.hints.mandatory}"+
    +shortDesc="#{bindings.testValue.hints.tooltip}" id="soc2">+
    +<f:selectItems value="#{bindings.testValue.items}" id="si2"/>+
    +</af:selectOneChoice>+
    Please help me to fix this issue
    Thanks,
    Sabareesh

    Hi Frank,
    Thanks for your help.
    Here I am using the LOV using Data Control binding so #{bindings.testValue.items} itself gives the Collection of 'SelectItem'
    After some analysis I reduced the problem description.
    Created below two classes in model project
    public class MyData  {
        private ClassOne co;
        public MyData() {
            super();
            co = new ClassOne();
            List<String> pp = new ArrayList<String>();
            pp.add("Item1");
            pp.add("Item2");
            pp.add("Item3");
            co.setPp(pp);
        public ClassOne findCO() {
            return co;
        public void setCo(ClassOne co) {
            this.co = co;
        public ClassOne getCo() {
            return co;
    public class ClassOne {
        private List<String> pp;
        public ClassOne() {
            super();
        public void setPp(List<String> pp) {
            this.pp = pp;
        public List<String> getPp() {         
            return pp;
    }Created the Data Control from the Class MyData ( Right click MyData class select Create Data Control -> click OK)
    Drag and drop findCO() --> pp in a jsf page (in view project) --> Run --> we are getting below Exception
    oracle.jbo.JboException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-29000. Error message parameters are {0=groovy.lang.MissingPropertyException, 1=No such property: element for class: java.lang.String}
    but if we remove getCo() and setCo() methods from MyData.java then it works perfectly fine
    Also this problem didn't occur on 11.1.1.6 R1 but occurs on 11.1.2.3 R2.
    Not able to understand this strange behavior, please help.
    Hope this is an regression issue and need to raise the bug. Please confirm.
    Is there any other workaround other than removing getCo() and setCo() methods?
    Thanks,
    Sabareesh.

  • APEX 4 - Edit Application Properties - Apply Changes - Error

    This has seemed to have started after upgrading to Apex 4. We also updated to 4.0.1, and are still having the problem. With any application, if we attempt to apply changes to the application definition it fails...
    Home>Application Builder>Application 104>Shared Components>Edit Application, Defintiion tab. Make a change, then click 'Apply Changes' The browser returns a 404 error. In fact, we don't have to make a change to the values displayed. Just attempting to apply the existing values fails.
    This is the error we receive in the ohs.log...
    [2010-08-31T19:48:35.2479-05:00] [OHS] [ERROR:32] [OHS-9999] [mod_context.c] [host_id: hostname] [host_addr: xxx.xxx.xxx.xxx] [tid: 19] [user: username] [ecid: 004ZmWEhjJ35yW8C3jMMOz0001Lr0004y3] [rid: 0] [VirtualHost: main] MODPLSQL-00261: mod_plsql: /pls/apex/wwv_flow.accept HTTP-404 Failed to execute target procedure ORA-00604: error occurred at recursive SQL level 1\nORA-06502: PL/SQL: numeric or value error: character string buffer too small\nORA-06512: at line 10\nORA-06550: line 35, column 3:\nPLS-00306: wrong number or types of arguments in call to 'ACCEPT'\nORA-06550: line 35, column 3:\nPL/SQL: Statement ignored\n, referer: http://hostname:xxxx/pls/apex/f?p=4000:4001:3485056460649030::NO::FB_FLOW_ID:104
    We're unable to find any cause for the error. Any help would be appreciated.
    Thanks!

    Yes, we still have the logs. No errors from the install or patch to 4.0.1. All packages, procedures, functions are valid.
    And, I just found the problem. We had an 'after servererror on database' trigger enabled without the proper field checks. Disabled the trigger, problem solved.
    Thanks for the help!

  • Adding dim property -  Error processing (Invalid column name)

    BPC 5.1 SP3
    I'm trying to add FormulaH1 and FormulaH2 properties to a user-defined dim containing two hierarchies. Properties are added and processed without any issues. However, when I subsequently try to process the member sheet, which has two new columns ("FormulaH1" and "FormulaH2"), I receive this error:
      - Error occurs during UpdateRemainData. Invalid column name 'formula13'.
    Column 13 in the member sheet contains the new "FormulaH2" property. (Column 12 has the "FormulaH1" property).
    Any ideas what might be causing this error? I do see the new columns added to the mbr table. I've tried changing the property lengths and "In App" settings---get the same error when processing the member sheet.
    Are there issues with added Formula properties to a user-def dim? Or, is there something else going on here?

    Answered my own question....
    I only need to add one property called "Formula". BPC will then add the H1 and H2 "property" columns in the member sheet.

  • Applying Filter Error

    Hi
    when I set a filter for month(am extracting month name from date using the MonthName function), and, run the request , am getting an error
    "The specified criteria didn't result in any data. This is often caused by applying filters that are too restrictive or that contain incorrect values. Please check your Request Filters and try again. The filters currently being applied are shown below."
    MONTHNAME(Encounter Date) is equal to Apr
    There is data available and when I remove the filter , everything works as intended.
    Can someone help me with this!!. Am using Oracle BI 10 1 3 2 on MS SQL Server.
    Thanks,
    Ram

    Hi
    If you are doing this way that will work but I think ther is one option MONTHNAME you can use it but in query field instant of using "is equal to/is in " use "contains" that will work.Actually "is equal to/is in " is used for integer or number and "contains" is used for String and this month name is Day
    Thanks
    Siddhartha P

  • VI Metric.Dat​aSize Property Error 1000 during execution

    OK, maybe this will be an easy one for someone.  Today I'm attempting to detect an apparent memory leak in a Windows executable on 8.6.1 that, despite my best efforts, is still causing the painfully ambiguous "Not enough memory to complete this operation" dialog to appear.
    This is within an executable, so I thought the best way to tackle this would be to read the "Metric.DataSize" property off of suspect VIs during execution.  I'm getting error 1000, which leads me to believe that I can't read the property while the VI in question is running.  Is there some way around this?  Is there an easier way that I've forgotten?
    I saw a rather old post of a similar nature relating to 7.1, but the recommendation was to use the memory monitor example.  I took a look at that example's code, but they're calling the same property without error handling.
    Thanks a lot,
    Jim

    Hello Marti,
    First of all, thanks for getting back to me.  I did manage to track down the memory leak -- more on that soon enough -- but here are some answers to your questions:
    First, I'd recommend trying to tackle this issue in the original VI.  When you run the VI, do you get the same error?
    If you're asking whether I see the error in the development environment, I haven't, unfortunately.  However, I haven't run the VI for any extended period of time, either.  Also, I don't know if I was clear on this: it's not really an error message in the traditional sense of a code and description.  It's just a plain dialog that appears to be thrown by the runtime engine.
     If not, can you monitor LabVIEW's usage in the Windows Task Manager, and see if it creeps up continuously?
     I hadn't resorted to trying that just yet because I was hoping there was an easier (and more specific) way.  The dialog I had seen was the plain one that the runtime engine seemed to have launched, so I figured it was a pretty safe bet that it was a memory leak.  I could confirm this with task manager, though, if it's helpful.
    If it does not, then you may not have a memory leak but be performing operations or copying large data arrays inadvertently. What is your VI doing?  Are you ensuring to close all references at the end of your code?
    In this case it's a "web viewer" application that receives data from a parent VI via a notifier and displays it for connected browsers.  I'm also scanning some status strings and parsing out relevant information.  I know it's within the web viewer VI because the parent VI hasn't changed and has run for weeks without any issue.  (I only recently added the web viewer)  I am downright paranoid about memory!   I close every reference every time and even use the "in place" structure every time I can.
    Does the VI run for a bit or error out with the memory issue immediately?
    It takes a while; usually an hour or two.
    Please investigate into the original VI so we can continue troubleshooting.  If this is isolated to the executable, it will be a little tougher to debug.  Additionally, if you don't have the original VI, you will need to get it either way so that we can investigate the source of this issue.
    Okay, as I said earlier, I think I've figured it out.  I have a VI that writes to a string indicator by reference.  I had a circular buffer for messages (it used the in place structure, too!) and I was updating the string indicator with the buffer contents.  I'm almost certain that the circular buffer works properly because I've used it before without any issue.  However, I think it had something to do with the manner in which I was updating that string by reference over and over again.  I know, it sounds crazy because I've updated indicators by reference continuously before and had never had an issue.  It's possible that I was also using my circular buffer in a different way than I was before.  I could explain what I did differently to fix the issue, but it would be a couple more paragraphs. (I will if you want!)  For the record, I was definitely closing the reference every time, too.  In any case, I think the issue is solved, but if you're interested in additional information I'll try my best.
    By the way, here's my circular buffer VI.
    Again, Marti, thanks very much for your assistance.
    Regards,
    Jim
    Attachments:
    Circular Buffer (Strings).vi ‏14 KB

  • Archivelog failed to apply "Checksum error"

    Hello,
    I am getting this error on my Data gaurd DRP database after applying some archive logs and then i receive this error.
    All arch files are on server but it doesn't seem to like one as all the previous have been applied
    Mon Jan 19 12:42:26 2009
    Media Recovery Log F:\ORACLE\ARCH\SESPRD\LOG_SESPRD_1_06153.ARC
    Checksum error in F:\ORACLE\ARCH\SESPRD\LOG_SESPRD_1_06153.ARC
    Attempting refetch
    Media Recovery Waiting for thread 1 seq# 6153
    Fetching gap sequence for thread 1, gap sequence 6153-6153
    Mon Jan 19 14:16:43 2009
    Failed to request gap sequence. Thread #: 1, gap sequence: 6153-6153
    All FAL server has been attempted.
    Mon Jan 19 14:21:22 2009
    alter database register logfile 'F:\oracle\Arch\SESPRD\LOG_SESPRD_1_06153.ARC'
    Mon Jan 19 14:21:22 2009
    There are 1 logfiles specified.
    ALTER DATABASE REGISTER [PHYSICAL] LOGFILE
    Register archivelog F:\ORACLE\ARCH\SESPRD\LOG_SESPRD_1_06153.ARC already exists
    ORA-16089 signalled during: alter database register logfile 'F:\oracle\Arch\SE...
    Any ideas why it's finding it applied when it isn't?

    Hi..
    From metalink
    >
    Error:     ORA-16089 (ORA-16089)
    Text:     archive log has already been registered
    Cause:     An attempt was made to register an archive log that already has a
         corresponding thread# and sequence# entry in the standby database
         control file. Duplicate information is not permitted.
    Action:     Use the V$ARCHIVED_LOG fixed view to verify the archive log
         information.
    >
    Paste the output of the below query on standby --
    select sequence#,applied from v$archived_log where sequence#=6153;
    HTH
    Anand

  • Cursor List Property - error 1077

    Hello
    I'm trying to programatically create cursors in the Waveform Graph. I want to have as many cursors as plots in the graph. See the attached VI. And now the weird thing: when I decrement number of plots, everything is OK - plots are shown, cursors are created. But when I increment them - I get "Error 1077 - Invalid property value." from the Cursor List Property Node.
    So the typical question: is it me or LabVIEW doing it wrong?
    Attachments:
    CursorList.vi ‏29 KB

    Thanks to your reply, TiTou, I've came with another workaround - if you put wait (for example 10 ms) into the sequence struct on my VI's front panel, it works. And this lead me tothe best solution yet - update graph using Value property:
    This leads to interesting conclusion regarding updating controls using terminal or property node. It seems that update through terminal is the quickest method, but it doesnt work immediately - the graph didn't know about the data update right after the cable reached the terminal! When you use Value property node, you can be sure that everything is updated when the flow leave the node.
    Any comments from NI about this?
    Attachments:
    cursors.png ‏39 KB

  • Applying SPAM error

    Hi Guys,
    Really need someone help on this, I try to apply the ABAP Support pack but got this error :
      Import phase 'DISASSEMBLE' (28.11.2007, 13:44:30)                                         
      Disassemble OCS package SAPKA70009                                                        
        Create data file
    PMBIPSMS01\sapmnt\trans\data\RA70009.SAP                             
      Unknown OCS file format 'ii' in OCS Package SAPKA70009; SPAM/SAINT Update required        
      Error during disassembling the EPS parcel of OCS Package SAPKA70009: 'PATCH_FILE_ERROR'   
      Interrupt the import due to an error situation (28.11.2007, 13:44:38)                     
      Display detailed informations concerning the error in phase 'DISASSEMBLE'                 
      Abort the import due to an error situation (28.11.2007, 13:44:46)                         
    What is it means? I've tried dloading the new one but it still the same..pls points will be given.
    TQ.

    Hi there,
    'DISASSEMBLE'  Error usually comes when your source file is corrupted. It may happen that antivirus s/w might corrupt the file.
    Please try to use any third party s/w while you perform download alternatively you can also try to download it on another computer and then use it.
    Hope it helps.
    Cheers
    Deepanshu

Maybe you are looking for