Is prompted filter not working correctly with calculated items

Hello,
I am working on OBIEE 11.1.1.3 and having problem problem linking 2 analisys with action link
The test case is:
I have 2 attribute columns on a dimension
1. Conto 1 Code
2. Conto 1 Dsc (in RPD i set up the property Descritor ID of -> Conto 1 Code)
3. Conto 2 Code
4. Conto 2 Dsc (in RPD i set up the property Descritor ID of -> Conto 2 Code)
5. Conto Detail
and 1 measure on the fact table
1. Revenue (defined on RPD as simple sum)
On presentation layer i have the analisys:
1.
The First one using as Criteria: Conto 1 Dsc | Conto 2 Dsc | Revenue
The layout is a table with sub-total on Conto 1 Dsc
On Revenue i created an action link to the second analisys containing
2.
Criteria: Conto 1 Dsc | Conto 2 Dsc | Conto Detail | Revenue
Filters: Conto 1 Code (is prompted) | Conto 2 Code (is prompted)
This pair of analisys are working fine.
Then i created a second pair of analisys as:
1.
Criteria: Conto 2 Dsc | Revenue
Using Calculated group \ Items i created a numerous set of sub-totals
On Revenue i created an action link to the second analisys containing
2.
Criteria: Conto 2 Dsc | Conto Detail | Revenue
Filters: Conto 2 Code (is prompted)
This pair of analisys are not working correctly. When i drill from first analisys to second one the Conto 2 Code filter is not used.
Replacing in the second analisys Conto 2 Code (is prompted) with Conto 2 Dsc (is prompted) a filter is being generated on the drill but it's using the Conto 2 Code value and the analisys ends with no results.
Thanks,
Jonni

Try adding Conto 2 code to the first analysis and keep the filter on the second analysis as Conto 2 code is prompted.
-Amith.

Similar Messages

  • Why is my Microsoft Word document not working correctly with Pages

    I have created a new CV (Resume) in Microsoft Word on my work computer, it is using the latest version of Office. When I attempted to open the document in Pages on my home Mac, the formatting was slightly incorrect, but the main issue is it is missing two pages! The exact same document when opened in Word has three pages but in Pages, it only has one! I have had nothing but problems with Pages since I bought it! Can someone please help me get Pages to work correctly with my documents that are created in Word! Than you.

    Pages does not allow a single cell in a table to span more than a page and there may be other problems that you also have not told us about.
    Redo your CV using the excellent Pages templates, Word's templates are Uuuugly!
    Being text based, with good typographical layout, those Pages templates should translate accurately back and forth from Pages to Word.
    Frankly CVs don't require anything fancy. You could do an excellent, well laid out and very attractive CV in TextEdit which is no slouch in the word processing department.
    Peter
    PS Start off by saving your Word CV to .rtf or .txt which will strip off most of the bad formatting. Then reopen it in Pages or drag in the snippets of text into a Pages CV template's placeholders to automatically format the text nicely.

  • LR 2.1 & 2.0 ~ DRAG & DROP not working correctly with  photos when moving, applying keywords

    Today this issue started, originally in 2.0, updated to 2.1 and issue continues.
    Issue: DRAG & DROP feature with mouse (or pad on laptop) will select multiple photos, (with CTRL & SHIFT key as typical with Windows machines)but when I try to move them to a different folder, or drop them onto a keyword, it will not work.
    Specifically, I select two photos to move to a different folder, the selection work, but when I try to "grab" the selected photos, Lightroom defaults to One Photo, and it will not grab it to move it. However, I can "right click" on the intended folder and can select "move selected photos to folder" and that works. This issue also applys to assigning keywords, and I would assume other similiar actions. I should note, that I can "rotate", assign "labels", "stars", and Keywords from Keyword sets, it just happens with the "Drag & Drop" feature.
    Help
    The feature works correctly in other Windows programs, so I'm sure it's related to Lightroom and not the mouse.
    I have a Windows Vista machine, 3GB RAM 160GB HD, ~ 75% free space, AMD Turion X2 Dual Core 70 Processor. Everything has worked fine up until this morning.
    Prior to upgrading to 2.1, I optimized my Catalogue. Everything seems to work fine except this feature.
    Help

    Drag by the actual image area of the thumbnail, not the surrounding 'fake slide' cell.
    That's a feature of Lightroom's grid view. Clicking on image area of thumbnail keeps the multiple selection and makes the image clicked the primary select. Clicking on the outer thumbnail area deselects all but the active image.

  • System Events not working correctly with Acrobat Professional

    Hey Guys, I have a script that I have written that automatically enables security settings on a PDF through Acrobat Professional. Because of Acrobats poor scriptability I am forced into doing much though System Events.
    This is not a major problem... however when activating some settings in the security settings, often warning Alert dialog boxes appear when you tell System Events to enable particular settings. These Alerts do not have a title... The only way I have been able to get the script to deal with them is with the following code:
    if title of front window is "" then
        tell front window
            click button "OK"
        end tell
    end if
    I guess this is an ok solution... bit hard to identify windows when they don't have titles...
    BUT this is not my main problem. The main problem is that the script gets to one of these alert dialog boxes and just sits there... It sits there for like 10 seconds and then it performs the "click button "OK"" command.
    This is a problem as there are like 3 of these instances and it really adds up. Can anybody help me... I am using Acrobat Professional 8.2.0 and the entire code is:
    tell application "System Events"
        try
            tell process "Acrobat"
                -- Enable security settings
                click menu item "Properties..." of menu "File" of menu bar item "File" of menu bar 1
                tell window "Document Properties"
                    tell tab group 1
                        click radio button "Security"
                        tell group "Document Security"
                            click pop up button 1
                            click menu item 2 of menu 1 of pop up button 1
                        end tell
                    end tell
                end tell
                tell window "Password Security - Settings"
                    click pop up button 1
                    click menu item 4 of menu 1 of pop up button 1
                    tell group "Permissions"
                        click checkbox "Restrict editing and printing of the document. A password will be required in order to change these permission settings."
                        click text field 1
                        keystroke pdfPassword
                        click pop up button 1
                        click menu item 2 of menu 1 of pop up button 1
                        click pop up button 2
                        click menu item 4 of menu 1 of pop up button 2
                    end tell
                    click button "OK"
                end tell
                if title of front window is "" then
                    tell front window
                        click checkbox 1
                        click button "OK"
                    end tell
                end if
                tell window "Adobe Acrobat - Confirm Permissions Password"
                    click text field 1
                    keystroke pdfPassword
                    click button "OK"
                end tell
                if title of front window is "" then
                    tell front window
                        click checkbox 1
                        click button "OK"
                    end tell
                end if
                tell window "Document Properties"
                    click button "OK"
                end tell
    end tell
        on error
            display alert "System Events was unable to Enable Commenting. This may be because Acrobat has modified its menu system. Please contact your system administrator."
        end try
    end tell
    A delay does not work... its like as soon as I click the "OK" button it stalls for 10 seconds or does not know that is meant to continue... because I did this:
    tell window "Password Security - Settings"
        click button "OK"
    end tell
    beep
    In this situation it still takes like 10 seconds for the beep to occur after the click button "OK" command.

    Hey Guys, I have a script that I have written that automatically enables security settings on a PDF through Acrobat Professional. Because of Acrobats poor scriptability I am forced into doing much though System Events.
    This is not a major problem... however when activating some settings in the security settings, often warning Alert dialog boxes appear when you tell System Events to enable particular settings. These Alerts do not have a title... The only way I have been able to get the script to deal with them is with the following code:
    if title of front window is "" then
        tell front window
            click button "OK"
        end tell
    end if
    I guess this is an ok solution... bit hard to identify windows when they don't have titles...
    BUT this is not my main problem. The main problem is that the script gets to one of these alert dialog boxes and just sits there... It sits there for like 10 seconds and then it performs the "click button "OK"" command.
    This is a problem as there are like 3 of these instances and it really adds up. Can anybody help me... I am using Acrobat Professional 8.2.0 and the entire code is:
    tell application "System Events"
        try
            tell process "Acrobat"
                -- Enable security settings
                click menu item "Properties..." of menu "File" of menu bar item "File" of menu bar 1
                tell window "Document Properties"
                    tell tab group 1
                        click radio button "Security"
                        tell group "Document Security"
                            click pop up button 1
                            click menu item 2 of menu 1 of pop up button 1
                        end tell
                    end tell
                end tell
                tell window "Password Security - Settings"
                    click pop up button 1
                    click menu item 4 of menu 1 of pop up button 1
                    tell group "Permissions"
                        click checkbox "Restrict editing and printing of the document. A password will be required in order to change these permission settings."
                        click text field 1
                        keystroke pdfPassword
                        click pop up button 1
                        click menu item 2 of menu 1 of pop up button 1
                        click pop up button 2
                        click menu item 4 of menu 1 of pop up button 2
                    end tell
                    click button "OK"
                end tell
                if title of front window is "" then
                    tell front window
                        click checkbox 1
                        click button "OK"
                    end tell
                end if
                tell window "Adobe Acrobat - Confirm Permissions Password"
                    click text field 1
                    keystroke pdfPassword
                    click button "OK"
                end tell
                if title of front window is "" then
                    tell front window
                        click checkbox 1
                        click button "OK"
                    end tell
                end if
                tell window "Document Properties"
                    click button "OK"
                end tell
    end tell
        on error
            display alert "System Events was unable to Enable Commenting. This may be because Acrobat has modified its menu system. Please contact your system administrator."
        end try
    end tell
    A delay does not work... its like as soon as I click the "OK" button it stalls for 10 seconds or does not know that is meant to continue... because I did this:
    tell window "Password Security - Settings"
        click button "OK"
    end tell
    beep
    In this situation it still takes like 10 seconds for the beep to occur after the click button "OK" command.

  • Bapi_document_create2 does not work correctly with attached file.

    Hi all.
    I hava a problem with bapi. I programmed below.
            ls_docdata-documenttype = 'BBS'.
            ls_docdata-description  = 'JJW test'.
            ls_file-documenttype = 'BBS'.
            ls_file-ORIGINALTYPE = 1.
            ls_file-storagecategory = 'ZSTW_KPRO'.
            ls_file-wsapplication = 'TXT'.
            ls_file-docfile = entity_filename.
            append ls_file to lt_files.
            CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
              EXPORTING
                documentdata       = ls_docdata
                PF_FTP_DEST = 'SAPFTP'
                PF_HTTP_DEST = 'SAPHTTP'
              IMPORTING
                documenttype               =      lv_documenttype
                documentnumber           =     lv_documentnumber
                documentpart                =     lv_documentpart
                documentversion           =     lv_documentversion
                return                           =     ls_return
              tables
                documentfiles     = lt_files.
            call function 'BAPI_TRANSACTION_COMMIT'.
    If I don't attach the file, DIR is created but if attach some files, it does not work. What should I do??
    regards.

    Hi,
    You can use the below to attach the file from BSP to SAP. But it doesnt use the BAPI - 'BAPI_DOCUMENT_CREATE2'. It works perfectly for me. Let me know if you have any questions.
    Note: This code put the file into SAP Directory "/userapps/master_data/" as well as it upload the file into Transaction WTY since i am using Business object:BUS2222. You may need to modify the Business object if you ahve the one, otherwise you can just put it into SAP DIR.
    FUNCTION ZATTACH_CREATE.
    *"*"Update function module:
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(FILE) TYPE  SAPB-SAPFILES
    *"     VALUE(STR_FILE_CONTENT) TYPE  XSTRING
    *"     VALUE(OBJECT_KEY) TYPE  BAPIBDS01-OBJKEY
      DATA: LOGICAL_SYSTEM TYPE BAPIBDS01-LOG_SYSTEM,
            CLASSNAME TYPE  BAPIBDS01-CLASSNAME,
            CLASSTYPE TYPE  BAPIBDS01-CLASSTYPE.
      DATA:  IT_FILES TYPE TABLE OF  BAPIFILES,
            IT_SIGNATURE TYPE TABLE OF  BAPISIGNAT,
       FILES TYPE  BAPIFILES,
      SIGNATURE TYPE   BAPISIGNAT.
      DATA: I_TOADD TYPE TOADD,
            FILENAME_ALL TYPE SAPB-SAPFILES,
            FILE_PATH TYPE SAPB-SAPFILES,
            FILE_PATH_MEMORY(250) TYPE C,  " path für SAP memory
            FILE_PATH_LENGTH TYPE I,       " length of the file_path
           FILE_CONTENT_LENGTH TYPE I,       " length of the file_CONTENT
           FILE_NAME TYPE SAPB-SAPFILES,
            FILE_EXTENSION TYPE TOADD-DOC_TYPE.     " file-extension.
      DATA: I_FILE_CONTENT TYPE TABLE OF BAPICONTEN.
      DATA: WA_FILE_CONTENT TYPE  BAPICONTEN,
       STRING_CONTENT TYPE STRING,
       STRING_CONTENT1 TYPE STRING.
      DATA:
       I_FILES TYPE TABLE OF BAPIFILES ,
            I_SIGNATURE TYPE TABLE OF BAPISIGNAT ,
            I_COMPONENTS TYPE TABLE OF BAPICOMPON ,
           COMPONENTS TYPE BAPICOMPON ,
            I_PROPERTIES TYPE TABLE OF SDOKPROPTY ,
            I_PROPERTIES2 TYPE TABLE OF BAPIPROPER ,
            I_PROPERTIES_DEL TYPE TABLE OF BAPIDPROPT ,
           MIMETYPE TYPE TOADD-MIMETYPE,
      COMPID TYPE BAPICOMPON-COMP_ID,  " compid for popup
            COMPID_FLAG(1) TYPE C,           " compid can't be changed
            MODIFY_FLAG(1) TYPE C,           " document is modified
            ATTRI_FLAG(1) TYPE C,            " attri can't be changed
            TITLE_FLAG(1) TYPE C,            " titel of the popup
            CANCEL_FLAG(1) TYPE C,           " cancel button Yes/No
            BUTTON_TEXT(10) TYPE C,
            INFO_TEXT(100) TYPE C,
      VERSION_NR TYPE BDN_CON-DOC_VER_NO,     " version_nr for popup
            VERSION_LANGU2 TYPE T002T-SPTXT, " language field in POPUP
            VERSION_LANGU TYPE BDN_CON-LANGU," SPRAS language field
            TITLE_TEXT(100) TYPE C,          " title of the popup
            DESCRIPTION TYPE BDN_CON-DESCRIPT.      " descr. for popup
    *FILENAME_ALL = fileUpload_event->file_name.
    * Transfering into SAP File server.
      FILE_CONTENT_LENGTH = XSTRLEN( STR_FILE_CONTENT ).
      FILENAME_ALL = FILE .
      STRING_CONTENT = STR_FILE_CONTENT.
      DATA: OUT_LINES TYPE TABLE OF XSTRING.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER                = STR_FILE_CONTENT
    *   APPEND_TO_TABLE       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          BINARY_TAB            = I_FILE_CONTENT.
      DELETE DATASET '/userapps/master_data/claim1.txt'.
      OPEN DATASET '/userapps/master_data/claim1.txt' FOR APPENDING
        IN TEXT MODE ENCODING DEFAULT.
    *  LOOP AT I_FILE_CONTENT INTO WA_FILE_CONTENT.
    *    TRANSFER STR_FILE_CONTENT TO '/userapps/master_data/claim1.txt'.
      TRANSFER STRING_CONTENT TO '/userapps/master_data/claim1.txt'.
    *  ENDLOOP.
      CLOSE DATASET '/userapps/master_data/claim1.txt'.
      OPEN DATASET '/userapps/master_data/claim1.txt' FOR INPUT
           IN TEXT MODE ENCODING DEFAULT.
      READ DATASET '/userapps/master_data/claim1.txt'  into STRING_CONTENT1.
    * -- split filename                                                 -- *
        DATA: LENGTH TYPE I.
      DATA: PATH2(1200).  " LIKE sapb-sapfiles.
      DATA: L_FILE(1200),
            L_DIR(1200),
            L_DELIMITER        TYPE C,
            L_OFFSET           TYPE I,
            L_BYTES            TYPE I,
            L_DELIMITER_OFFSET TYPE I,
            L_DELIMITER_BYTES  TYPE I,
            L_CHAR             TYPE C,
            L_PREVIOUS_CHAR    TYPE C,
            L_LAST_CHAR        TYPE C.
      PATH2 = FILENAME_ALL.
      LENGTH = STRLEN( PATH2 ).
      L_OFFSET = 0.
      WHILE L_OFFSET < LENGTH.
        L_LAST_CHAR = L_CHAR. "remember last character
        L_BYTES = CHARLEN( PATH2+L_OFFSET ).
        L_CHAR = PATH2+L_OFFSET(L_BYTES). "get current character
        IF L_CHAR = '/' OR L_CHAR = '' OR L_CHAR = ':'.
          IF L_DELIMITER IS INITIAL OR L_DELIMITER = ':'.
            "Typically we deal with absolute paths, so the first
            "delimiter is best. This allows for UNIX paths with
            "'' in the directory or file name
            L_DELIMITER = L_CHAR.
          ENDIF.
          IF L_CHAR = L_DELIMITER.
            L_DELIMITER_OFFSET = L_OFFSET.
            L_DELIMITER_BYTES = L_BYTES.
            "remember character in front of delimiter:
            L_PREVIOUS_CHAR = L_LAST_CHAR.
          ENDIF.
        ENDIF.
        L_OFFSET = L_OFFSET + L_BYTES.
      ENDWHILE.
      IF NOT L_DELIMITER IS INITIAL.
        L_OFFSET = L_DELIMITER_OFFSET + L_DELIMITER_BYTES.
        L_FILE = PATH2+L_OFFSET.
        IF L_PREVIOUS_CHAR = ':' OR L_DELIMITER = ':'.
          "path ends with or after drive identifer, include the delimiter
          L_DIR = PATH2(L_OFFSET).
        ELSEIF NOT L_DELIMITER_OFFSET IS INITIAL.
          "do not include a trailing delimiter for compatibility reasons
          L_DIR = PATH2(L_DELIMITER_OFFSET).
        ELSE.
          CLEAR L_DIR.
        ENDIF.
      ELSE.
        L_DIR = SPACE.
        L_FILE = PATH2.
      ENDIF.
      FILE_PATH = L_DIR.
      FILE_NAME = L_FILE.
    * -- set new file_path to SAP memory                                -- *
      FILE_PATH_LENGTH = STRLEN( FILE_PATH ).
      IF FILE_PATH <> SPACE AND FILE_PATH_LENGTH < 250.
        FILE_PATH_MEMORY = FILE_PATH.
        SET PARAMETER ID 'OAP' FIELD FILE_PATH_MEMORY.
      ELSE.
        FILE_PATH_MEMORY = SPACE.
        SET PARAMETER ID 'OAP' FIELD FILE_PATH_MEMORY.
      ENDIF.
    * -- data declaration ------------------------------------------------ *
      DATA:
            SINGLE_C TYPE C.
      CLEAR: SINGLE_C.
      LENGTH = STRLEN( FILE_NAME ).
      IF LENGTH > 0.
        WHILE LENGTH > 0.
          SINGLE_C = FILE_NAME+LENGTH(1).
          IF SINGLE_C CO '.'.
            LENGTH = LENGTH + 1.
            EXIT.
          ELSE.
            LENGTH = LENGTH - 1.
          ENDIF.
        ENDWHILE.
        IF LENGTH > 0.
          FILE_EXTENSION = FILE_NAME+LENGTH.
        ELSE.
          FILE_EXTENSION = SPACE.
        ENDIF.
      ELSE.
        FILE_EXTENSION = SPACE.
      ENDIF.
      IF FILE_EXTENSION <> SPACE.
        SET LOCALE LANGUAGE SY-LANGU.
        TRANSLATE FILE_EXTENSION TO UPPER CASE.              "#EC TRANSLANG
        SET LOCALE LANGUAGE SPACE.
      ENDIF.
    * TR001++
      DATA: I_TOADV TYPE TABLE OF TOADV.
      DATA: WA_TOADV TYPE TOADV.
      DATA: OBJECT TYPE SAEOBJART.
      SELECT * FROM TOADV INTO CORRESPONDING FIELDS OF TABLE
              I_TOADV WHERE STANDARD = 'X'.
      DELETE I_TOADV WHERE AR_OBJECT CS 'BDS' OR AR_OBJECT CS 'ZSEST'.
      READ TABLE I_TOADV INTO WA_TOADV WITH KEY DOC_TYPE = FILE_EXTENSION.
    * -- get name and description for the document                      -- *
      CLEAR: COMPID,
             DESCRIPTION,
             VERSION_NR,
             MODIFY_FLAG,
             COMPID_FLAG,
             ATTRI_FLAG,
             TITLE_FLAG.
      COMPID_FLAG    = ' '.              " -> compid can't be changed
      MODIFY_FLAG    = 'S'.              " -> popup in save modus
      ATTRI_FLAG     = 'X'.              " -> attri's can be changed
      COMPID         = FILE_NAME.
      VERSION_NR     = '00000001'.
      VERSION_LANGU2 = SY-LANGU.
      TITLE_FLAG     = '1'.              " -> BDN
    * -- get the mimetype of the docuclass                              -- *
    *PERFORM MIMETYPE_GET(OAALL) USING FILE_EXTENSION
    *                            CHANGING I_TOADD.
      DATA: I_DOCUMENTCLASS TYPE TOADD-DOC_TYPE.
      MOVE FILE_EXTENSION TO I_DOCUMENTCLASS.
      SET LOCALE LANGUAGE SY-LANGU.
      TRANSLATE I_DOCUMENTCLASS TO UPPER CASE.               "#EC TRANSLANG
      SET LOCALE LANGUAGE SPACE.
      SELECT SINGLE * FROM TOADD INTO I_TOADD WHERE
                                 DOC_TYPE EQ I_DOCUMENTCLASS.
      IF SY-SUBRC NE 0.                    " nothing found -> default!
        I_TOADD-DOC_TYPE = I_DOCUMENTCLASS.
        I_TOADD-MIMETYPE = 'application/x-docType'.             "#EC NOTEXT
      ENDIF.
      MOVE I_TOADD-MIMETYPE TO MIMETYPE.
    * -- fill file and signature structure                              -- *
      CLEAR: I_FILES, I_SIGNATURE.
      REFRESH : I_FILES, I_SIGNATURE.
      DESCRIPTION = FILE_NAME.
      FILES-DOC_COUNT = 1.
      FILES-DIRECTORY = FILE_PATH.
      FILES-FILENAME  = FILE_NAME.
      FILES-MIMETYPE  = MIMETYPE.
      APPEND FILES TO I_FILES.
    * -- fill components and signature structure                        -- *
      COMPONENTS-DOC_COUNT  = 1.
      COMPONENTS-COMP_COUNT = 1.
      COMPONENTS-MIMETYPE   = MIMETYPE.
      COMPONENTS-COMP_ID         = FILE_NAME.
      APPEND COMPONENTS TO I_COMPONENTS.
      SIGNATURE-DOC_COUNT  = 1.
      SIGNATURE-PROP_NAME  = 'BDS_DOCUMENTCLASS'.
      SIGNATURE-PROP_VALUE = FILE_EXTENSION.
      APPEND SIGNATURE TO I_SIGNATURE.
      SIGNATURE-PROP_NAME = 'BDS_CONTREP'.
    *IF BDS_DOCTYPE_LIST-CONTREP = SPACE.
      SIGNATURE-PROP_VALUE = ' '.                               "#EC NOTEXT
    *ELSE.
    *  I_SIGNATURE-PROP_VALUE = BDS_DOCTYPE_LIST-CONTREP.
    *ENDIF.
      APPEND SIGNATURE TO I_SIGNATURE.
      SIGNATURE-PROP_NAME  = 'BDS_DOCUMENTTYPE'.
      SIGNATURE-PROP_VALUE = WA_TOADV-AR_OBJECT. "'ZSRVCXLS'."TR001+
      APPEND SIGNATURE TO I_SIGNATURE.
      SIGNATURE-PROP_NAME  = 'DESCRIPTION'.
      SIGNATURE-PROP_VALUE = DESCRIPTION.
      APPEND SIGNATURE TO I_SIGNATURE.
      SIGNATURE-PROP_NAME  = 'LANGUAGE'.
      SIGNATURE-PROP_VALUE = VERSION_LANGU.
      APPEND SIGNATURE TO I_SIGNATURE.
      CALL FUNCTION 'BDS_BUSINESSDOCUMENT_CREA_TAB'
        EXPORTING
    *   LOGICAL_SYSTEM        =
          CLASSNAME             = 'BUS2222' "classname_select
          CLASSTYPE             = 'BO'" classtype_select
        CLIENT                = SY-MANDT
          OBJECT_KEY            = OBJECT_KEY
        BINARY_FLAG           = 'X'
    * IMPORTING
    *   OBJECT_KEY            =
        TABLES
          SIGNATURE             = I_SIGNATURE
          COMPONENTS            = I_COMPONENTS
        CONTENT               = I_FILE_CONTENT
    *   ASCII_CONTENT         =
    * EXCEPTIONS
    *   NOTHING_FOUND         = 1
    *   PARAMETER_ERROR       = 2
    *   NOT_ALLOWED           = 3
    *   ERROR_KPRO            = 4
    *   INTERNAL_ERROR        = 5
    *   NOT_AUTHORIZED        = 6
    *   OTHERS                = 7
      COMMIT WORK AND WAIT.
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFUNCTION.
    Message was edited by:
            Raja T

  • Bluetooth does not work correctly with Siemens Tek Connect headphone device

    I hopefully tried the new bluetooth support in OS 3.0, but it does not work with my Siemens Tek Connect headphone device. It syncs as expected, but no sound is heard. I can choose the Tek Connect in the music app and other programs, my headphone (actually my two hearing aids, which are connected wireless with ear to ear communications (e2e) via the Tek Connect necklace device) signals the connection to me (a beep), but nothing is heard. Codec problem?
    Andreas

    I own Phonak hearing aids with their Bluetooth-capable iCom device which allows my aids to be used as a phone headset and also supports the A2DP stereo bluetooth profile. My iPod Touch 2Gen 32GB is able to play to my hearing aids properly.
    One thing I noticed is that the iPod does not allow you to control the volume when using Bluetooth. It expects the headphones to be able to control the volume. Have you used your hearing aids as Bluetooth headphones on any other device? Maybe the device isn't programmed properly to set the volume while in headphones mode. I know my audiologist had to program the volume on each mode separately on my device.
    My MacBook Pro is able to play music over Bluetooth to my hearing aids fine. But I have never gotten Windows to work properly sending audio to my hearing aids. Do you have a Mac with Bluetooth? Try to get that working to see if it's your hearing aid device that's causing the trouble or not.

  • Percentage Values are not displayed correctly when Calculated Item feature

    I have developed an OBIEE answer with multiple pivot tables. Each of the Pivot Tables contains a mix of $ Amount and Percenatge columns. I have to display the totals as the last row of each Pivot Table. For reasons I am yet to figure out, some of the totals were not working. Hence, I used the "Calculated Item" feature with sum(*) as the formula to get the Totals. This is giving me the correct results for $ Amount columns but not for the % columns.
    The system seems to be summing up the row-level percentages to arrive at the total percentage, which is not the expected bhavior.
    Sample data:
    Products| Dist. FG| VPE %| Mfg. FG| Mfg. FG VPE %
    Product1| $58| 1% | $1 | 100%
    Product2| $45| (0%) | $36 | 24%
    Product3| $22| 0% | $12 | (40%)
    Product4| $1 | (0%) | $9 | 0%
    Product5| $41 | 2% | $15 | 15%
    Total | $166 | 3% | *$73* | *100%*
    Total - Calculate Item (sum(*))
    Total Mfg. FG - Correct
    Total Mfg FG VPE% - Incorrect (Expected value is ~ 9 %)

    Thanks for the response, Andre.
    As I mentioned, The default total row is not producing the correct results for reasons I am yet to figure out.
    We are using OBIEE 10g (10.3.4)
    Percentages work well with default total, but here we need the same result through the calculated item.

  • AddFilter for an AND filter not working properly with my XML

    I am following the examples from the Multiple Filters Sample pages to build a page that will filter some data based upon grade levels.
    http://indianawea.org/resources/outreachtest.asp
    This page is calling the XML file located here:
    http://indianawea.org/datasets/resourcesXML.asp
    You will notice some weird things right away if you do a simple filter for K-3 Grade Levels. It will find some of the K-3 but not all of them. In addition, when I add another filter (7-8) it doesnt seem to be additive at all but doing an OR filter. The K3 and 7-8 together should only have two results (World Monitoring Day and Survival Guide).
    I wonder if it has to do with my XML file struture.The grade levels are stored in a comma delimited string in the database and I pull them out, put them in an array and then loop through the array, creating XML markers for them. This was patterned after the donut example on the Spry page. I am not sure I am doing that correctly because the tags have the same names.
    Any help on this is greatly appreciated. And yes, I am working on this on Easter afternoon!
    Jon

    Thanks for the response Gramps.
    http://indianawea.org/datasets/resourcesXML.asp
    That is my XML. I have added IDs to the keywordBreakout and gradeLevelBreakout
    Looking at this code by Adobe, my XML seems to be in form now with theirs.
    http://labs.adobe.com/technologies/spry/data/donuts.xml
    In that example they are using there filter to search all toppings if I see that correct, and they have multiple topping nodes with ids. I am trying the same thing. Even with the ID's I am not getting accurate filters.
    I have a data field in the database that contains the gradeLevels. It is called gradeLevels in the XML. I thought I would need to parse that out and put them in their own nodes, each grade level at a time, so that the filter can accurate find one when checked. Same for keywords. I could leave them in there comma demlinited list and do a contains instead of an = search with the SPRY filter but I feel that wouldnt be as accurate in case there are keywords that are close in names. I guess I am stumped as to what my next move might be. I'd love some more help gramps!
    Jon
    NOTE: Even trying this to the gradeLevel node not broken out yields poor results
    function ffK3(ds, row, index){ return (row.gradeLevel.match("K-3")) ? row : null; }. It is like it is ignoring certain nodes. The Water Source Book's gradeLevels don't come up in any filter.

  • Color Management Not Working Correctly with 2 Displays

    At work I am using two calibrated monitors connected to a Mac Pro. One of the monitors is a hardware calibrated wide-gamut NEC Spectraview, the other one is a software calibrated Apple Cinema Display.
    It seems like Adobe products only ever display correct colors for the one monitor that happens to be the main monitor. When “Displays have separate Spaces” is off in the system preferences, it is the monitor that has the menu bar. When that setting is on, it is the monitor that was active while the application launched.
    The main monitor always seems to display proper colors, while the secondary monitor shows exaggerated colors. It seems to me, like the applications only ever read the profile for the main monitor.
    I have noticed this behavior with Bridge and After Effects. I am not entirely sure about Photoshop, since I only ever use it on the wide gamut monitor, but it seems like it does NOT have the issue. I do not use any other Adobe applications.
    I had noticed this behavior back in Snow Leopard while using CS5 and CS6, but I never said anything, because I was using an outdated system. I was now moved to a new Mac with the most current version of Mavericks and the most current Creative Cloud versions of these apps and it seems like the issue remains.

    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform for bug reports

  • Cintiq tablet will not work correctly with windows

    I am using photoshop CS6 on a 64 bit windows system and my Cintiq 12 will not function with the pressure sensitivity. any suggestions to correct this?

    Hi. You’ve posted your question in a forum that is for beginners trying to learn the basics of Photoshop.  I'm moving your question to the Photoshop General Discussion forum for specialized attention to your situation.

  • AEBS Does NOT WORK correctly with non-11n wireless devices

    Well i don't know what they missed in their testing, unless they assumed everyone was going to run out and replace all their macs with 802.11n versions...
    So heres the deal, my wired connection (ethernet to LAN port) is blazing fast, which it should be since I have cable internet access. My Powerbook on the other hand is constantly slowing down and speeding up. One minute it's browsing just fine, and the next minute it slows to such a crawl that the HTTP request times out. I've reset it, changed configs, nada, zip, zilch. There is something wrong with this new base station and it doesn't appear to be playing nice with 802.11g...yeah, I'm frustrated. Waited weeks for this and just spent hours trying to fix it when I should be playing with my new Mac Pro instead of monkeying around with the da@# AEBS.
    Anyone figure this out, or are we going to be awaiting some firmware update?

    I disagree, because basically Apple advertised that you could run both G and N devices at the same time on the new Extreme base station. While they said that running both on the same network would degrade the N performance, they never stated that overall performance would be WORSE than running a pure G network on the old base station.
    All that said, I'm not running a mixed network; all I have are G capable devices, which according to Apple should run just fine, and should experience the same performance as they did on the previous Extreme base station. Well that has not been my experience, nor the experience of many others.
    The most consistent performance I received was B level, and typically it didn't even hit the speeds of B level and could be measured in comparison to dial-up speeds. I have since gone completely ethernet to avoid the problem for now. Really, the whole reason I upgraded was not for the N speed, but for the ability to have both a printer and a network available hard drive attached to the base station.
    I also want to add that I have uncovered another problem with the new Airport software: the Airport Disk extension. I was having another issue that appeared to be bad RAM. After weeks of troubleshooting, I finally determined that Apple's own Airport Disk extension was the source of the numerous kernel panics I had been experiencing on my brand new Mac Pro.
    Long story short: The new Extreme base station was not ready, and they rushed it, I suspect in order to meet some financial deadline (quarter revenue, etc.). There are multiple bugs still yet to be worked out, including this new panic bug I have found.
    Mac Pro Mac OS X (10.4.9)

  • SCXI 1001, SCXI-1102 and SCXI-1303 not working correctly with DAQmx

    I have recently upgraded from Labview 6.5 to Labview 8.2 and now my SCXI 1001 with a SCXI 1102 and SCXI 1303 terminal block no longer reads the correct voltage.  Using the old version of labview thermocouple measurements are correct at 0.5mV; however using the new version of labview and DAQmx the thermocouples are reading 5V.  Everything is installed correctly as it still works with the older version of Labview, is there something that needs to be reset or change so that teh SCXI will function properly with DAQmx?

    Hello ilabtech,
    From my understanding you are using an SCXI 1001 chassis with an SCXI 1102 and 1303 terminal block to perform thermocouple measurements.  You are upgrading to LabVIEW 8.2 and DAQmx.  I am assuming you were using LabVIEW 6.1 since there isn’t a LabVIEW 6.5.  You mentioned that are able to get a correct reading of 0.5 mV with LabVIEW 6.1 but you see a rail of 5V with LabVIEW 8.2 and DAQmx. 
    My first suggestion is that you ensure that the SCXI is set at the appropriate range and for the correct thermocouple type.  You can also configure these settings in MAX as detailed on page 27 of the SCXI 1102 User Manual and Specifications Guide. 
    My second suggestion is for you to start off using an example program to see if you see the same error.  When you are in a LabVIEW 8.2 VI you can go to Help>>Find Examples to open the NI Example Finder.  You then choose Hardware Input and Output>>DAQmx>>Analog Measurements>>Temperature>> Cont. Acq Thermocouple Samples-Int CLK.vi.   This example program is supported by your hardware and is a good resource to use to troubleshoot.
    If these suggestions aren't helpful please answer the following questions in your reply.
    1.        I would like to know what range you have set the SCXI 1102 to read. 
    2.       What version of DAQmx are you using?  You can find the version my opening Measurement and Automation explorer (MAX), expanding the “Software “and clicking on NI-DAQmx.
    3.       What operating system are you using?
    4.  Does your Traditional DAQ program work in LabVIEW 8.2?
    Regards,
    Ima
    Applications Engineer
    National Instruments
    LabVIEW Introduction Course - Six Hours
    Getting Started with NI-DAQmx

  • Wind Filter not working correctly - CS5

    Hello,
    Maybe because its Friday, but for some reason my Wind Filter is not creating the "tracers" or "trails" that I am used to seeing.
    My goal is to create a motion effect on white text.  The "tails" are not growing in length when I duplicate the filter over & over like it should.  What am I doing wrong?!?
    Example:
    This is the text after applying the filter once.
    Here is an example after the 3rd time of applying the Wind Filter.
    As you can see, the streaks are remaining within the text. It's not creating the trailing streaks that I need.
    Probably something obvious I am missing, but I cannot find a solution to this anywhere.
    Thank you!
    -CM

    Light pixels are blown into dark. See thread: Having trouble with the wind tool.

  • Resume not working correctly with MSDN downloads

    Hi
    Windows 8.1 on Surface Pro 2, IE 11.
    I have been trying for days to download an ISO, just over 4GB, from MSDN. My internet connection is iffy and I have been obliged many times (including once when I had reached 99%) to resume the download. Every time I resume, the start percentage drops
    by a considerable margin, though not (which might be more explicable) to 0.
    I am still trying, and have wasted at least 50GB of my broadband allocation.
    This happens both when I press Pause myself and when the internet connection drops.
    Any idea why this is happening? It is absolutely infuriating.
    I have loads of free disk space.
    Thanks
    Mandy

    Hi, via the Download button within MSDN Subscriptions (is there any other way?)
    I did install FTM but it did not activate. I guess it is not supported by IE11. I tried tweaking the agent to IE9 as suggested in another post, FTM still did not activate.
    Direct Download and ordinary download gave identical results.
    The download I want (SQL Server 2008 R2 Standard) doesn't seem to have Akamai download support.
    I've also tried from Firefox, with no better luck.
    I will try consulting MSDN, as you suggest.
    Many thanks
    Mandy

  • Windows Vista not working correctly with Leopard 10.5

    I just updated my MacBook Pro 17" by installing Leopard 10.5xx (erased and installed), then used BootCamp to partition disk and install Windows Vista. In Windows, my volume control is on, but no sound. I just got the error, "This problem was caused by a compatibility issue between Intel 82801GBM (ICH7-M) LPC Interface Controller - 27B9 and Windows Vista. Intel 82801GBM (ICH7-M) LPC Interface Controller - 27B9 was created by Intel Corporation and is distributed by Apple Inc.."
    I am having problems with drivers, and as I'm a new user to Mac/Windows, so I don't even know how to identify which drivers (on Leopard installation disk)I need. In Windows Device Manager I have something called "Human Interface" that needs a driver . . . but my computer can't find it on my Mac or on the disk.
    I purchased extended AppleCare warranty, but don't know how to use it, and my 90 days is up so I can't call. Is this warranty strictly for hardware? I don't understand how to get the support/how to information I need; I'm a Windows user and find Apple's support confusing and indirect.
    HELP!!!

    sorry, can't help, but you're definitely in the wrong forum. this is about mac os SERVER (not client) and your problem is related to either the hwardware you use or bootcamp.
    br,
    günther

Maybe you are looking for