Unable to read blob attributes in the Asset Filter

Hi,
I am unable to read a blob attribute in the Asset Filter using the following code.
The String attributes work fine.
Can I get some examples for reading blob attributes in the filter?
I am using Webcenter Sites 11gr1
public void filterAsset(IFilterEnvironment env, String filterIdentifier, FTValList filterArguments, IFilterableAssetInstance instance) throws AssetException
String inputattr = getAttrID(env, filterArguments, ARG_CUSTOM[0]);
IListBasic ilistbasic = instance.getAttribute(inputattr);
ilistbasic.getValue("value") // throws No such field exception.. works fine for string attribues
Thanks,
Raj

Hi
In DTP, Filter there is option to write routine. The last button.
Here u can write the below code :
Select <fields> from table into itab.
Read itab into wa_itab where <condition>.
If sy_subrc = 0.
     l_t_range-FIELDNAME = ' '. <give ur field name in source>
      l_t_range-sign = 'I'.
      l_t_range-option = 'EQ'.
      l_t_range-low = wa_itab-field.
    APPEND L_T_RANGE.
endif.

Similar Messages

  • Unable to read beyond end of the stream

    I am coding a Training log for a college project and I am getting this error: 
    An unhandled exception of type 'System.IO.EndOfStreamException' occurred in Microsoft.VisualBasic.dll
    Additional information: Unable to read beyond the end of the stream.
    I have no idea where I have went wrong, could anybody please help and explain how what I have done wrong here is my code for the error:
     Private Sub drpRunner_SelectedIndexChanged(sender As Object, e As EventArgs) Handles drpRunner.SelectedIndexChanged
            FileOpen(2, "Training.dat", OpenMode.Random)
            Dim Runner As RunnerRecord
            Dim Value As Integer
            Value = drpRunner.SelectedIndex + 1
            FileGet(2, Runner, Value) 'This is where I get the error
            If drpType.SelectedItem = "Swimming" Then
                txtMilesInput.Text = Runner.MetresSwam
                txtTimeInput.Text = Runner.TimeSwam
                txtSpeedInput.Text = Runner.SpeedSwam
                txtCaloriesInput.Text = Runner.CaloriesSwam
                txtWeightInput.Text = Runner.WeightSwam
            ElseIf drpType.SelectedItem = "Running" Then
                txtMilesInput.Text = Runner.MilesRan
                txtTimeInput.Text = Runner.TimeRan
                txtSpeedInput.Text = Runner.SpeedRan
                txtCaloriesInput.Text = Runner.CaloriesRan
                txtWeightInput.Text = Runner.WeightRan
            ElseIf drpType.SelectedItem = "Cycling" Then
                txtMilesInput.Text = Runner.MilesCycle
                txtTimeInput.Text = Runner.TimeCycle
                txtSpeedInput.Text = Runner.SpeedCycle
                txtCaloriesInput.Text = Runner.CaloriesCycle
                txtWeightInput.Text = Runner.WeightCycle
            Else : MsgBox("Please select your type of training")
            End If
            FileClose(2)
        End Sub
    End Class

    The Training.dat file is empty, if that is what you mean it needs to be to start off with because in my program you need to enter the training information and save it, here is the code to save and it is all used on the same form:
     Private Sub btnSave_Click(sender As Object, e As EventArgs) Handles btnSave.Click
            Dim RR As RunnerRecord
            FileOpen(2, "Training.dat", OpenMode.Random)
            If drpType.SelectedItem = "Running" Then
                RR.MilesRan = txtMilesInput.Text
                RR.TimeRan = txtTimeInput.Text
                RR.SpeedRan = txtSpeedInput.Text
                RR.CaloriesRan = txtCaloriesInput.Text
                RR.WeightRan = txtWeightInput.Text
            ElseIf drpType.SelectedItem = "Swimming" Then
                RR.MetresSwam = txtMilesInput.Text
                RR.TimeSwam = txtTimeInput.Text
                RR.SpeedSwam = txtSpeedInput.Text
                RR.CaloriesSwam = txtCaloriesInput.Text
                RR.WeightSwam = txtWeightInput.Text
            ElseIf drpType.SelectedItem = "Cycling" Then
                RR.MilesCycle = txtMilesInput.Text
                RR.TimeCycle = txtTimeInput.Text
                RR.SpeedCycle = txtSpeedInput.Text
                RR.CaloriesCycle = txtCaloriesInput.Text
                RR.WeightCycle = txtWeightInput.Text
            End If
            Dim RecordNumber As Integer
            RecordNumber = drpRunner.SelectedIndex + 1
            FilePut(2, RR, RecordNumber)
            FileClose(2)
            MsgBox("Your information has been successfully saved")
        End Sub
    P.S I don't know why I saved the Structure as a different name from the last I just decided to leave it as it is since it was quicker

  • Unable to read BLOB column

    Hi,
    I want to read data in text format from the BLOB column
    XML_col is the column with BLOB datatype in TEST table.
    select BLOB2VARCHAR(XML_col) from TEST;
    I created BLOB2VARCHAR function to convert from BLOB to Varchar.
    CREATE OR REPLACE FUNCTION TEST_fnc (html IN BLOB)
    RETURN VARCHAR2
    IS
    tmpvar NUMBER;
    tmpchr VARCHAR2 (4000);
    BEGIN
    tmpchr := UTL_RAW.cast_to_varchar2 (DBMS_LOB.SUBSTR (html, 4000, 1));
    tmpchr := SUBSTR (tmpchr, 1, 4000);
    RETURN tmpchr;
    EXCEPTION
    WHEN OTHERS
    THEN
    RETURN NULL;
    END blob2varchar;
    I am getting output as ’
    Which i guess is wrong.

    Hi,
    This will print your output character by character
    Try this and let me know
    DECLARE
       v_read_bytes  BINARY_INTEGER;
       v_pos         INTEGER;
       v_blob_len    INTEGER;
       v_buffer      RAW(200);
       v_file_data   fnd_lobs.file_data%TYPE;
    BEGIN
             SELECT file_data
               INTO v_file_data
               FROM fnd_lobs
              WHERE file_id = 121708;
             v_blob_len    := DBMS_LOB.getLength (v_file_data);
             v_pos         := 0;
             v_read_bytes  := 1;
             WHILE v_pos <= v_blob_len
             LOOP
                v_pos         := v_pos +  1;
                DBMS_LOB.read (v_file_data, v_read_bytes, v_pos, v_buffer);
                DBMS_OUTPUT.PUt_line(utl_raw.cast_to_varchar2(v_buffer));
             END LOOP;
    END;

  • Unable to read usb memory stick + "the disk you inserted was not readable by this computer"

    Hi Everyone,
      Today I was tryign to use a brand new memory stick 8GB-Samsung PNY on my Mac Book Pro. (Mac OSX 10.7.5)
      1. I do not see this drive in the Finder.
       2. Diskutil could detect the drive.
       3. I was trying to put ubuntu image file on the drive from the terminal uitility and I have this error message in a dialog box:
          "the disk you inserted was not readable by this computer"
    4. Clicking on initialize helps me realise that the drive is detected. But I do not have a clue on how to proceed from here. I am new to Mac and its file system formats.
    The same issue happened with my 500GB external Western Digital Hard Drive. I was reading on forums that WD got some issues with Apple is trying to resolve. I expected to not have this road-block with another brand but it happened with my memory stick. Now I was forming an impression that something should be done to external storage devices inorder for me to use them Mac OSX.
    Kindly enlighten me and help overcome this issue.
    Thank You

    Thank You OGELTHORPE.
    I erased the memory stick and formatted to "Mac OS Extended(Journaled)".
    I attempted once again to use the "sudo dd" command from termial trying to copy the Ubuntu image file to the memory stick.
    The operation termainates with the same message
          "the disk you inserted was not readable by this computer"
    The termainal message says some bytes got transffered in so many seconds. It looks like this operation is being terminated in the middle.
    Have any suggestions and work arounds?

  • XSL-FO unable to read special characters from the XML file

    Team,
    please help on issue, when trying to read the text from XML file (Special characters like bullet). It is displaying as Question mark(?) in output in place of bullet..please proved any soultion.

    The "?" signals a character set mismatch issue - http://www.oracle.com/technetwork/database/globalization/nls-lang-099431.html - between client and database software

  • Unable to read stack element of the CoD2 script engine in C

    Hi,
    I am trying to get extensions for Call of Duty 2 binary working for Arch Linux. I am running x86-64 arch (3.11.2-1-ARCH) and CoD2 is 32bit. That is why i am using the multilib. It gets preloaded with LD_PRELOAD.
    But on Arch it doesn't read the stack element of the CoD2 script engine:
    // My COD_VERSION is COD2_1_3
    int getStack()
    #if COD_VERSION == COD2_1_2
    return 0x83D7A10; // diff to 1.3: 1080
    #elif COD_VERSION == COD2_1_3
    return 0x83D8A90;
    #elif COD_VERSION == COD1_1_5
    return 0x0830AE88;
    #elif COD_VERSION == COD4_1_7
    return 0x08c055b0;
    #else
    #warning int getStack() return NULL;
    return NULL;
    #endif
    int stackGetParamInt(int param, int *value)
    //printf("stackGetParamInt() start...");
    aStackElement *scriptStack = *(aStackElement**)getStack();
    aStackElement *arg = scriptStack - param;
    printf("scriptengine> test value=%.8x scriptStack=%.8x arg=%.8x\n", value, scriptStack, arg);
    if (arg->type != STACK_INT)
    return 0;
    *value = (int)arg->offsetData;
    //printf("... end\n");
    return 1;
    It prints: scriptengine> test value=ff805778 scriptStack=00000000 arg=00000000
    Source: https://github.com/kungfooman/libcod/
    My thread on the support forum for these extensions for CoD2: http://killtube.org/showthread.php?1583 … Arch-Linux

    Hi,
    I am trying to get extensions for Call of Duty 2 binary working for Arch Linux. I am running x86-64 arch (3.11.2-1-ARCH) and CoD2 is 32bit. That is why i am using the multilib. It gets preloaded with LD_PRELOAD.
    But on Arch it doesn't read the stack element of the CoD2 script engine:
    // My COD_VERSION is COD2_1_3
    int getStack()
    #if COD_VERSION == COD2_1_2
    return 0x83D7A10; // diff to 1.3: 1080
    #elif COD_VERSION == COD2_1_3
    return 0x83D8A90;
    #elif COD_VERSION == COD1_1_5
    return 0x0830AE88;
    #elif COD_VERSION == COD4_1_7
    return 0x08c055b0;
    #else
    #warning int getStack() return NULL;
    return NULL;
    #endif
    int stackGetParamInt(int param, int *value)
    //printf("stackGetParamInt() start...");
    aStackElement *scriptStack = *(aStackElement**)getStack();
    aStackElement *arg = scriptStack - param;
    printf("scriptengine> test value=%.8x scriptStack=%.8x arg=%.8x\n", value, scriptStack, arg);
    if (arg->type != STACK_INT)
    return 0;
    *value = (int)arg->offsetData;
    //printf("... end\n");
    return 1;
    It prints: scriptengine> test value=ff805778 scriptStack=00000000 arg=00000000
    Source: https://github.com/kungfooman/libcod/
    My thread on the support forum for these extensions for CoD2: http://killtube.org/showthread.php?1583 … Arch-Linux

  • Why am i unable to read pdf files on the internet???

    can anyone help me please??

    [email protected] wrote:
    I have Adobe Reader 10.0.
    Try updating to 10.1.7 or 11.0.3.
    [email protected] wrote:
    I click to get the pdf version and it opens a new tab and I get a blank page.
    Can you try to save it to your local disk instead, and open it from there?
    If that doesn't help, tell us more about your operating system & browser.

  • Unable to read data to Navigtional Attributes

    Hi,
    unable to read navigation attributes from a BI cube when loading transactional data from BI to BPC.
    Please suggest the inputs,
    Regards,
    Sathwik

    Hi Sathwik,
    How do you refer to those Navigational Attributes in your transformation file and what error message you are getting? Why do you want to make BW Nav Attr BPC cube charcteristics?
    I'd think that a better idea would be to keep them as Propeties of a BPC Dimension and load just BW cube Characteristics.
    Regards,
    Gersh

  • Unable to read PDF attachments past 1st page in iOS4

    I have upgraded to iOS4
    Now I am unable to read PDF attachments past the 1st page.
    I have received a number of suggestions (like resetting the phone) but to no avail.
    Anybody else with the same problem?

    Thanks for the valiant attempt!
    I uninstalled Stanza and hard reset the iPhone (Home+Sleep until the Apple appears)
    I tested a couple of new messages with fresh PDF attachments, and the problem
    did not go away.
    At this point I may have to consider some sort of software corruption with my iOS4
    Regards

  • Unable to read attribute of type TABLE

    Hello IDM Gurus,
    I was having some trouble reading data in the source tab from a temporary table created in a FROM AD Pass; specifically I am unable to read from an attrribute of type TABLE, which is being used for the memberOf attribute when reading members of a group from AD. I don't get any errors in the FROM Pass, nor do I get any errors when trying to read all other data from the temporary table; I'm able to read all data except the memberOf attribute of type TABLE; I've tried different variations of SELECT statements as well as different possible values in the destination tab but it still hasn't resulted in valid memberOf values from the temporary table.
    I thought this would be a lot simpler than it's turned out to be; I would appreciate any help I could get on this issue.
    Thanks a lot in advance!
    Best regards,
    Sandeep

    Hi Achim,
    Thank you for your quick response! I was actually able to spend a bit of time on the table itself and after experimenting a bit I managed to work out a query to correlate the memberOf values with the appropriate keys from the two separate tables in the same pass.
    Thanks again for your suggestions!
    Best regards,
    Sandeep

  • Unable to read the source URL error for cffeed

    Hi,
    I am using the cffeed to read from my twitter RSS feed but I get this error:
    Unable to read the source URL.
    Status Code: 400. Try adding or changing UserAgent attribute in the CFFeed tag
    My code is:
    <cfset feedurl="http://twitter.com/statuses/user_timeline/somenumbers.atom" />
    <cffeed 
    source="#feedurl#"
    properties="feedmeta"     
    query="feeditems1" overwrite="true" />
    It works but suddenly it stops and it takes time about 15 minutes or more  to work again.
    Can any body help me with this?
    Thanks,
    Mandana

    One thing which I did not mentioned is I want to have 6 pages rss feed together and I made it like this:
    <cffeed 
        source="#feedurl1#"
        properties="feedmeta"
        query="feeditems1" overwrite="true"
        useragent="Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; AskTbBLPV5/5.11.3.15590)" />
       <cffeed
        source="#feedurl2#"
        properties="feedmeta"
        query="feeditems2" overwrite="true"
        useragent="Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; AskTbBLPV5/5.11.3.15590)"/>
    I did it for 6 pages, each one with one cffeed and then:
    <cfquery name="feeditemstotal" dbtype="query">
        select * from feeditems1
        union
        select * from feeditems2
        union
        select * from feeditems3
        union
        select * from feeditems4
        union
        select * from feeditems5
        union
        select * from feeditems6
      </cfquery>

  • Locating Individual Assets/Attributes in the tree? Possible?

    Hi all,
    Is it possible to find assets/attributes in the tree in either Admin or Content Provider views? For example, if I have a flex family and I've created X number of attributes like (h1title, body, metakeyword, etc) and I want to see them all in one place is there any way to without doing a search?
    The search is fine but I'd prefer to use the tree to see everything I've already created. Thanks in advanced!
    Edited by: 954038 on Aug 28, 2012 10:24 AM

    This is my latest attempt, but it still doesnt work, it just makes the icon for the last item in the jtree.
    I cant figure out what im doing wrong here, any ideas?
    class CustomIconRenderer  extends JLabel implements TreeCellRenderer {
        String[] fileArray;
        CustomIconRenderer(String[] fileArray){
            this.fileArray = fileArray;
        public Component getTreeCellRendererComponent(JTree tree,
                Object value, boolean sel, boolean expanded, boolean leaf,
                int row, boolean hasFocus) {
            DefaultMutableTreeNode node = (DefaultMutableTreeNode) value;
            Object obj = node.getUserObject();
            String nodeName = obj.toString();
            setText(nodeName);  // set the text
            int i = 0;
            while (i < fileArray.length){
              if (nodeName.endsWith(fileArray)){
    Icon icon = new ImageIcon(getClass().getResource("images\\actors\\"+ nodeName));
    setIcon(icon);
    else{
    setIcon(null);
    i++;
    return this;

  • B2B RosettaNet Rcpt Ack and Excp throws error "Unable to read the preamble"

    Hello All,
    We have configured a 2 way PIP Config and we are able to succesfully transfer the paload to the TP.
    But when receiving the Ackowledgement and Exception, we are getting error "B2B-51705 Unable to read the preamble"
    Can anyone help me on this
    Thanks,
    Sunil

    Hi Anuj,
    Just want to confirm one more thing
    Below given the xsd used for Exception and Acknowledgement
    Can you please confirm the format of the same
    AcknowledgeMent
    ===========
    <?xml version = "1.0" encoding = "UTF-8"?>
    <!-- -->
    <!-- Copyright (c) 2000 BEA -->
    <!-- All rights reserved -->
    <!-- -->
    <!-- THIS IS UNPUBLISHED PROPRIETARY -->
    <!-- SOURCE CODE OF BEA Systems Inc. -->
    <!-- The copyright notice above does not -->
    <!-- evidence any actual or intended -->
    <!-- publication of such source code. -->
    <xsd:schema xmlns:xsd = "http://www.w3.org/2001/XMLSchema">
    <xsd:annotation>
         <xsd:documentation>
    RosettaNet XML Message Schema
    AcknowledgmentOfReceipt_MS_V02_00.dtd
    This document has been prepared by Edifecs (http://www.edifecs.com/)
    based On the Business Collaboration Framework from requirements
    in conformance with the RosettaNet methodology.
         </xsd:documentation>
    </xsd:annotation>
         <xsd:element name = "ReceiptAcknowledgment">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element ref = "NonRepudiationInformation" minOccurs = "0"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name = "NonRepudiationInformation">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element ref = "OriginalMessageDigest"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name = "OriginalMessageDigest" type = "xsd:string"/>
    </xsd:schema>
    Exception
    =====
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!--W3C Schema generated by XMLSpy v2011 rel. 3 sp1 (http://www.altova.com)-->
    <!--Please add namespace attributes, a targetNamespace attribute and import elements according to your requirements-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
         <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
         <xs:element name="Exception">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="ExceptionDescription"/>
                        <xs:element ref="GlobalExceptionTypeCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="ExceptionDescription">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="errorClassification"/>
                        <xs:element ref="errorDescription"/>
                        <xs:element ref="offendingMessageComponent" minOccurs="0"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="errorClassification">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="GlobalMessageExceptionCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="GlobalMessageExceptionCode">
              <xs:complexType mixed="true"/>
         </xs:element>
         <xs:element name="errorDescription">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="FreeFormText"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="FreeFormText">
              <xs:complexType mixed="true">
                   <xs:attribute ref="xml:lang"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="offendingMessageComponent">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="GlobalMessageComponentCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="GlobalMessageComponentCode">
              <xs:complexType mixed="true"/>
         </xs:element>
         <xs:element name="GlobalExceptionTypeCode">
              <xs:complexType mixed="true"/>
         </xs:element>
    </xs:schema>
    Pleace correct me if I am wrong in these xsd's
    Thanks,
    Sunil

  • Scanner Warning 027 unable to read the sequence ....

    we have zen 7 sp1 etc...
    some of the workstation inventory logf have the following error :
    Scanner Warning 027 unable to read the sequence number from the workstation object
    i have deleted the edir object, and wait for recreating and new scan.... but the error exist still.
    any ideas to resolve the issue?

    a part from the log ,
    here is a bad workstation
    [4/23/08 08:29:40.253] ZENInv - Selector: Selector Yielding for ms0
    [4/23/08 08:29:40.253] ZENInv - Selector: Processing 000B5D9B682A_1208327423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Getting SelectorXMLAgent Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Acquired SelectorXMLAgent Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Getting SynchServiceSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Acquired SynchServiceSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Getting ConverterSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Acquired ConverterSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Opened Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking Length of STR
    [4/23/08 08:29:40.254] ZENInv - Selector: HASH of FileName000B5D9B682A_1208327423000_6.STRIS=1218633 352
    [4/23/08 08:29:40.254] ZENInv - Selector: HASH INSIDE FileName000B5D9B682A_1208327423000_6.STRIS=1218633 352
    [4/23/08 08:29:40.254] ZENInv - Selector: End of File=[EOF]
    [4/23/08 08:29:40.254] ZENInv - Selector: Valid EOF Found
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking Bitmap of STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking SectionOffsets of STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Checking Identification of STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing for [Identification]
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing workStationDN
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing treeName
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting numMACAddress
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing macAddresses
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing typeOfScan
    [4/23/08 08:29:40.255] ZENInv - Selector: typeOfScan=DELTA
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting scanTime
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting sequenceNumber
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing serverName
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting StrFileVersion
    [4/23/08 08:29:40.255] ZENInv - Selector: Checking StrFileVersion
    [4/23/08 08:29:40.255] ZENInv - Selector: ZFD STR Version is=1650
    [4/23/08 08:29:40.255] ZENInv - Selector: MIDAS ZFD STR VERSION1650
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing strFileSystemType
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing strFileSystemIdentifier
    [4/23/08 08:29:40.255] ZENInv - Selector: Entering isInventoryScannerValid()
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Updating WSDN To SynchService HashTable
    [4/23/08 08:29:40.255] ZENInv - Selector: SynchTable Exists
    [4/23/08 08:29:40.255] ZENInv - Selector: Entry Already Present.Will not update SynchTable
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Reading NDS ScanNumber
    [4/23/08 08:29:40.270] ZENInv - Selector: NDS ScanNumber Read 5
    [4/23/08 08:29:40.270] ZENInv - Selector: NDS attrModificationTime Read 1208760260000
    [4/23/08 08:29:40.270] ZENInv - Selector: Type of Scan:DELTA
    [4/23/08 08:29:40.270] ZENInv - Selector: Transfering to DBDir.
    [4/23/08 08:29:40.270] ZENInv - Selector: Getting SelectorStorerDestination Lock for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: SelectorStorerDestination Lock Acquired for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Hence Transferring : daten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832742 3000_6.STR File to daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Renaming the file daten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832742 3000_6.STRTo daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Unlocked SelectorStorerDestination for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Modifying Attribute seqNo with 6
    [4/23/08 08:29:40.270] ZENInv - Selector: Entering forceFullScanFlag Loop
    [4/23/08 08:29:40.287] ZENInv - Selector: Time Taken to Process Delta Scan : 34
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked SelectorXMLAgent Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked ConverterSelector Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked SynchServiceSelector Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Selector Will Now Serialize SynchTable - End of Listing
    [4/23/08 08:29:40.287] ZENInv - Selector: Serializing hashTable Todaten:\ZENworks\Inv\ScanDir\stable\STABLE.SER
    [4/23/08 08:29:40.289] ZENInv - Selector: Selector finished Serializing the table
    [4/23/08 08:29:41.043] ZENInv - Storer: Loading Storer test properties file
    [4/23/08 08:29:41.044] ZENInv - Storer: Storer: started storing 000B5D9B682A_1208327423000_6.STR (3878 bytes)
    [4/23/08 08:29:41.053] ZENInv - Storer: dn: CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org tree: org-tree
    [4/23/08 08:29:41.053] ZENInv - Storer: tree: org-treewsdn: CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=orgtime: 1208931926000
    [4/23/08 08:29:41.053] ZENInv - Storer: Initial WS statusrecord is found
    [4/23/08 08:29:41.053] ZENInv - Storer: got the status log
    [4/23/08 08:29:41.077] ZENInv - Storer: Could not process 000B5D9B682A_1208327423000_6.STR due to
    com.novell.zenworks.desktop.inventory.storer.DataA bsentException: Data Instance Not Found!!Class:Zenworks.ZenDesktopMonitor Operation:Delete Offset:e14 linkoffset:ffffffffffffffff oid:-1
    [DeviceID=DesktopMonitor2 Description=Plug und Play-Monitor ManufactureDate=2002 ModelID=SNY08B0 ViewableSize=19.7 NominalSize=21.0 ]
    at com.novell.zenworks.desktop.inventory.storer.Objec tInstance.setOID(ObjectInstance.java:339)
    at com.novell.zenworks.desktop.inventory.storer.Parse .processOtherSection(Parse.java:1913)
    at com.novell.zenworks.desktop.inventory.storer.Parse .parse(Parse.java:4038)
    at com.novell.zenworks.desktop.inventory.storer.MainT hread.run(MainThread.java:976)
    [4/23/08 08:29:41.080] ZENInv - Storer: Scantype set to -1
    [4/23/08 08:29:41.081] ZENInv - Storer: addWSErrorMessage
    [4/23/08 08:29:41.097] ZENInv - Status Reporting: Number of records to add are: 0 for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Number of modified records are: 1 for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Modifying record for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Record with time stamp 1208931926000 is found
    [4/23/08 08:29:41.164] ZENInv - Storer: cleanUp:Full Scan will be initiated on CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.164] ZENInv - Storer: Unlocking daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    is there a mechanism, to get the local zenworks logfile up to the server, so i didnt need to have access to the workstation manual?
    it looks like, that there are no information in the str file from the workstation, but i didnt have a local logfile yet... :-((
    helge

  • Unable to find key figure attribute in the cube

    Hi all of you,
    I am struggling while working on this "Display Attribute". Please read this and help me out.
    I want to create attributes and then load data into a cube.
    I had created an InfoArea IA_ATTRIBUTES.
    Under this IA_ATTRIBUTES I created an InfoObject Catalog IOC_DISPATTR.
    Under IOC_DISPATTR I created an InfoObject ZCUSTNUMB which is my primary key.
    After defining the ZCUSTNUMB I clicked on the Attributes tab and entered the other attributes like ZCUSTNAME, ZCUSTADDR, ZCUSTREGI, ZCUSTLOCA, and ZPRICE. All of these attributes except ZPRICE are characteristics WHILE ZPRICE is a keyfigure.
    I've also made sure that the Attributes only check box is not checked for all the characteristics.
    I then activated the InfoObject ZCUSTNUMB and came back.
    Now I created a cube DISP_ATTR. I clicked on the InfoObject Catalog button and selected the above mentioned catalog IOC_DISPATTR and transferred the IOs from the template into the structure.
    Now when I transfer IOs in this way all the IOs both characteristics and key figures should come into the structure of the cube isnt't. But only characteristics have come and the keyfigure ZPRICE hasn't come.
    Moreover when I hit on the key figures tab and hit on the find button and find ZPRICE I am getting a message saying "No (further) object found". So when I hit on the create button and create a key figure ZPRICE I am getting a message saying "InfoObject ZPRICE already exists as Key Figure (please rename)".
    However when I double click on ZCUSTNUMB which is the primary key, the screen "Display characteristic ZCUSTNUMB: Detail" opens. In this screen I find all the attributes in the attributes tab that I had defined while defining attributes including ZPRICE.
    So what I don't understand is when all the characteristics IOs are visible under the characteristics tab then why am I unable to find the key figure ZPRICE under Key figures tab when I created it while defining attributes. Can anyone please explain me this situation and tell me how should I find the key figure ZPRICE so that I can go ahead and create the cube.
    Lastly I want to know what are the differences between InfoObjects and Attributes. Is an attribute also an IO?
    Please explain.
    I would appropriately rewards your answers.
    Thank you.
    TR.

    Hi Oscar Romero,
    Thanks a lot for your reply. As per your suggestion I created another IOC FOR key figures called IOC_ATTR_KF. In this IOC I had included the key figure ZPRICE and activated the IOC.
    Now I have created a cube again ATTR_DISP. On the right corner where we find 5 buttons I clicked on the InfoObject Catalog button. The screen "Select InfoObject Catalog" opened displaying the IOC_ATTR_KF that I had created earlier. When I double clicked on the IOC_ATTR_KF I got the msg asking "Do you want to transfer the IOs from the template into the structure?" I clicked on Yes. But I don't find any key figures either in the Structure pane or in the Template pane. Both the panes are empty.
    I also clicked on the All InfoObjects button and searched for ZPRICE but again I am getting the message "No "further) object found". However when I try to create ZPRICE I am getting the message ZPRICE already exists.
    Please explain me why this is happening like this?

Maybe you are looking for

  • Lightroom 2.5 very slow

    After upgrade to 2.5, LR seems very sluggish. Below is the data from Help/System Info. Any suggestions? I'm not sure why Virtual Memory Used is so high. Is this a setting I need to change somewhere? Thanks for any suggestions. Lightroom version: 2.5

  • Parallel Hash Join always swapping to TEMP

    Hi, I've experienced some strange behaviour on Oracle 9.2.0.5 recently: simple query hash joining two tables - smaller with 16k records/1 mb of size and bigger with 2.5m records/1.5 gb of size is swapping to TEMP when launched in parallel mode (4 set

  • Can't seem to get rid of Spinning Beach Ball in Mail

    As someone else put it... it seems that Yosemite is Apple's VISTA.  Mail is fast becoming my most annoying App because clicking on almost any email seems to send the signal for the Spinning Beach Ball to appear.  Looking at activity monitor, it says

  • RedHat Enterprise Cluster and Cisco IGMP Snooping/Querying

    Has anyone else had any experience with IGMP Snooping/Querying and RedHat Enterprise Cluster? We have been experiencing a large amount of problems with this functionality. We are running IGMP Querying in our environment and we recently set up a secon

  • How to set up the digital signature for xi server

    dear all, these days i need to implement a interface using the digital signature technology to enable it's security transition. we are going to use the digest sign with partner. Could anyone of you tell me the detailed steps concerning the seting up