MDX Filter on PROPERTIES

I have a MDX query I am executing against BW3.0 and I would like to filter the results based on a PROPERTY and not just a member.  For example, I would like to include the Property 20CITY in the WHERE clause rather than the SHIP_TO Member itself:
SELECT NON EMPTY [0SHIP_TO].Members PROPERTIES
[0SHIP_TO].[20SHIP_TO], [0SHIP_TO].[50SHIP_TO], [0SHIP_TO].[20CITY] ON ROWS
FROM $XXXX WHERE {[0SHIP_TO].[0000100000]}
Please let me know if how I can filter the results by specific PROPERTIES either on the Axis or in the WHERE clause.
Thank You,
Steve

Hi,
try use Exists Function:
EXISTS(FILTER(),AnotherDimenisionMemberSet,"MeasureGroupName")
Best regards.

Similar Messages

  • How to enable "SelectAll " in MultiSelect MDX filter in Performance Point Services 2010

    Hi,
    I have multi select MDX filter in Performance Point Services 2010. I need all the values of the filter to be selected by default. i.e when the page is loaded for the first time, all the values in the multi select filter should be selected.
    Is there any property enabled for this? Any other solution can be achieved?
    Kindly help.
    Regards,
    Mani

    At least I haven't managed to alter the display value. It uses the member name directly.
    The only thing that comes to mind is creating a user hierarchy, so that countries and states can be shown as a tree in the filter.

  • MDX filter multiple attributes with OR

    The question is simple. I need a full list of Product (EnglishProductName, EnglishDescription, Class, Color,...) whose EnglishProductName like '%bike' OR EnglishDescription like '%bike%'. The "bike" has to be a parameter. How can I use
    MDX to query AdventureWork? I tried using Having, it worked but slow.
     SELECT NON EMPTY { } ON COLUMNS
    , [DimProduct].[EnglishDescription].[EnglishDescription].ALLMEMBERS*[DimProduct].[EnglishProductName].[EnglishProductName].ALLMEMBERS
    HAVING Instr([DimProduct].[EnglishDescription].currentmember.Properties( 'Member_Caption' ), "bike" )  > 0 OR
     Instr([DimProduct].[EnglishProductName].currentmember.Properties( 'Member_Caption' ), "bike" )  > 0
    on rows
    FROM [Model]
    Any help will be appreciated.

    This was beautiful. The key point was how to use the SET in Filter. I rewrote my real query, it's like this:
    SELECT{ }
    ONCOLUMNS,
    [Recipient].[DataSource].[DataSource].
    ALLMEMBERS
    * [Recipient].[RecipientName].[RecipientName].
    ALLMEMBERS
    * [Recipient].[RecipientCreationDate].[RecipientCreationDate].
    ALLMEMBERS
    ONROWS
    FROM(
    SELECT(
    filter(
    ([Recipient].[RecipientName].[RecipientName].
    ALLMEMBERS* [Recipient].[RecipientAlternateName].[RecipientAlternateName].ALLMEMBERS)
    ,Instr( [Recipient].[RecipientAlternateName].
    CURRENTMEMBER.Properties(
    'Member_Caption'),
    "Roger")  >
    0 or
    Instr([Recipient].[RecipientAlternateName].
    CURRENTMEMBER.Properties(
    'Member_Caption'),
    "roger")  >
    0
    ONcolumns
    FROM
    [EAS Report Model]
    It really worked. It took 1 minute and 18 seconds. The entity volume is 3 million. Is there any way can speedup little bit?
    Thanks a bunch, Sorna, you are awesome.

  • SSRS MDX Query Dimension Properties Missing

    I have been stumped on this for a few days thought I'd throw this out here. I've read every related article in the forum regarding MDX Queries and Dimension Properties in SSRS Report Developer and haven't found a case exactly like this with a solution that
    works.
    Environment is SQL 2012 SP1 Cum update 5
    I am doing a rather generic query out of MS Project Servers OLAP cube and I can't get the dimension properties to show up in the flattened output for my dataset. See below.
    SELECT
    NON EMPTY { [Measures].[FTE est] } ON COLUMNS,
    NON EMPTY {
    [Value_Stream_Project].[Value_Stream_Project].ALLMEMBERS *
    [Project Status_Project].[Project Status_Project].ALLMEMBERS *
    DESCENDANTS([Project List].[Project List Level 02].ALLMEMBERS)*
    DESCENDANTS([ProjectManager_Project].[ProjectManager_Project Level 02].ALLMEMBERS) *
    [Planner_Project].[Planner_Project].ALLMEMBERS *
    [Time].[Month].ALLMEMBERS
    DIMENSION PROPERTIES
    MEMBER_CAPTION,
    MEMBER_UNIQUE_NAME,
    PARENT_UNIQUE_NAME,
    LEVEL_NUMBER ,
    [Project List].[Project List Level 02].[Start Date],
    [Project List].[Project List Level 02].[Finish Date]
    ON ROWS
    FROM (
    SELECT ( STRTOMEMBER(@FromTime, CONSTRAINED) : STRTOMEMBER(@ToTime, CONSTRAINED) ) ON COLUMNS
    FROM (
    SELECT ( STRTOSET(@RBSResource, CONSTRAINED) ) ON COLUMNS
    FROM (
    SELECT ( STRTOSET(@ProjectStatusProject, CONSTRAINED) ) ON COLUMNS
    FROM (
    SELECT ( STRTOSET(@ValueStreamProject, CONSTRAINED) ) ON COLUMNS
    FROM [MSP_Portfolio_Analyzer]))))
    My issue is the [Project List Level 02] dimension Properties  (below) are not showing up in the Query designer output, aren't being generated as fields in the dataset and can't be referenced as a property in an expression (i.e. Fields!Project_List("Start
    Date") )
    [Project List].[Project List Level 02].[Start Date],
    [Project List].[Project List Level 02].[Finish Date]
    The odd part is if I change the above two rows in my query to this :
    [Project List].[Start Date],
    [Project List].[Finish Date]
    The Query designer shows the properties in the output but leads to  2 other issues,
    1) I have to modify the generated Dataset field values to remove the [Project list Level 02] in the Level unique name like this
    Before<?xml version="1.0" encoding="utf-8"?><Field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="MemberProperty" PropertyName="Project List - Start Date" LevelUniqueName="[Project List].[Project List Level 02]" />
    After
    <?xml version="1.0" encoding="utf-8"?><Field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="MemberProperty" PropertyName="Project List - Start Date" LevelUniqueName="[Project List]" />
    2) I have to restrict my cross join to only the current level (Level 02) or it expands the results to the parent hierarchy of the Project List dimension and skews my measure summaries.
    I've tested the query in SSMS directly and the properties are showing up just fine for those dimensions using the original syntax.
    Any help would be appreciated.

    Hi there,
    Which data source provider are you using?  Are the connection strings used in SSMS the same as SSRS? Doing a profiler trace against Analysis Services might point to differences in how the connection is made or query is parsed.
    This may help.
    http://www.sqlchick.com/entries/2011/10/23/pros-cons-of-using-the-ole-db-provider-for-ssas-100-when-rep.html
    Did you try using With clause to make a friendly name for the member properties?
    http://melick-rajee.blogspot.ca/2012/04/how-to-get-member-properties-in-mdx.html
    cheers,
    Andrew
    Andrew Sears, T4G Limited, http://www.performancepointing.com

  • Struggling with MDX Filter Expression for Previous Month in SSRS

    I am trying to query only data from the previous month. 
    I looked at my Month member and the it looks like so... [Date].[Calendar].[Month].&[2015-04-01T00:00:00]
    Here is my filter expression:
    StrToMember ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" ).lag(1)
    I am not getting any errors, I am just getting getting "No rows found" - however there is certainly data in last month. I even tried removing the lag() function thinking that might be causing it, but there are still no errors, just no rows returned.
    Here is the complete query:
     SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, NON EMPTY { ([Date].[Calendar].[Date].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ( StrToMember ("[Date].[Calendar].[Month].&[" +
    format(now(),"yyyy-MM") +  "-01T00:00:00]" ) ) ON COLUMNS FROM [Data Warehouse]) 

    Hi S,
    I can't tell exactly what your issue is, but I can give you a couple of tips to help diagnose it.
    Try the following queries. They aren't fixes, just simplifications of your query to help you diagnose where the issue is.
    --This query will let you what your string function is returning with what you want.
    With member measures.x as "[Date].[Calendar].[Month].&["
    + format(now(),"yyyy-MM") +  "-01T00:00:00]" 
    member measures.y as [Date].[Calendar].currentmember.uniquename
    select {measures.x,measures.y} on 0
    [Date].[Calendar].[Month].&[2015-04-01T00:00:00] on 1
     from [data warehouse]
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember ("[Date].[Calendar].[Month].&["
    + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    --This query will give you the date with lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, [Date].[Calendar].[Month].&[2015-04-23T00:00:00].lag(1)  on rows FROM [Data Warehouse]) 
    --This query will give you the date with lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" ).lag(1)  on rows FROM [Data Warehouse]) 
    --This query will show you the member without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, NON EMPTY
    { ([Date].[Calendar].[Date].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ( StrToMember ("[Date].[Calendar].[Month].&[2015-04-01T00:00:00]" ) ) ON COLUMNS FROM [Data Warehouse]) 
    --This query will show you the member without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, NON EMPTY
    { ([Date].[Calendar].[Date].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ( StrToMember ("[Date].[Calendar].[Month].&[2015-04-01T00:00:00]" ) ) ON COLUMNS FROM [Data Warehouse]) 
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember
    ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember
    ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    --This query will give you the date without lag
    SELECT NON EMPTY { [Measures].[Completes] } ON COLUMNS, StrToMember
    ("[Date].[Calendar].[Month].&[" + format(now(),"yyyy-MM") +  "-01T00:00:00]" )  on rows FROM [Data Warehouse]) 
    Richard

  • MDX Filter Expression

    Hi,
    I am trying to get a filter expression to work.  I am trying to create a filter that will choose the current year.  This will be part of a filter condition that will be a YTD filter.  I am trying to get the year part working first.  Here is what I have so far.  I get this database error:
    A database error occured. The database error text is: Failed to execute MDX query. Reason: Invalid MDX command with ). (WIS 10901)
    Here is the MDS statement:
    <FILTER EXPRESSION="FormatNumber(Year(CurrentDate());'####')">
    <CONDITION OPERATORCONDITION="Equal">
    <CONSTANT CAPTION="1"></CONSTANT>
    </CONDITION></FILTER>
    Thank you for your help,
    Aaron

    I figured out the issue.  I cannot use formatnumber() Year() and getdate() in MDX.  I am using BO over SAP BW.  
    What I was trying to do is create a filter to automatically calculate the current month and year for a YTD filter.  I found out that the MDX YTD() function can be used but the function does not know the current date, so you have to use a prompt to have the user enter the current date.  If there is another way I am up for suggestions.
    Thank you
    Aaron

  • MDX Filter with date range

    Hi,
    my requirement is to create a calculated member to calculate Total unique customers who has sales > 0 within the date range.
    Below mdx works normally with single date
    DistinctCount(FILTER([Customer_Sales].[Outlet ID].[Outlet ID].members,
    ([Measures].[distribution],
    [Date].[CalendarWeek].CurrentMember
    )=1))
    I'm looking for something like below with date range,
    DistinctCount(FILTER([Customer_Sales].[Outlet ID].[Outlet ID].members,
    ([Measures].[distribution],
    WTD([Date].[CalendarWeek].CurrentMember
    ))=1))
    Above MDX fails with the error: String of numeric expression expected, Tuple set expression was used.
    Appreciate your immediate response.
    Thanks in advance

    Hi Chandima,
    Thanks for the response.
    I tried your code, it works but the results are not correct.  As per manual calculations, there are 28 unique customers who has positive sales on Week to date (2014-11-03), but result shows only 19.
    For the first day of week (2014-11-01), there are 9 unique customers, which is correct. But for the following days it is not giving correct result.
    Further, performance of this approach is very poor
    Thanks,

  • MDX filter function doesn't work properly

    hi, 
    the filter that I'm using in my query is not working properly and i don't see what i'm missing, i tried to convert to double with CDbl function, but i got the same result. 
    the query : 
    SELECT NON EMPTY 
         [Measures].[Montant - Fact Ventes]
        ,[Measures].[QQT - Fact Ventes]
    } ON COLUMNS,
    NON EMPTY 
        ([Dim Date].[Year].&[2014],[Dim Date].[MonthOfYear].&[7],[Dim Date].[Date].[Date])
        FILTER
         [DIM FA Clients].[FaCuNumberX].members,
         CDbl([Measures].[QQT - Fact Ventes])=0
    } ON ROWS
    FROM [CubeAll]
    the result : 
    thank you!

    Hi Merouane,
    I think your filter is working correctly, just not the way you expect.
    The filter is filtering Clients that have a non zero Ventes, THEN it is multiplying it by the dates.  So, as long as the client has some ventes, it will be included.  To only show rows with a non zero ventes try something like
    SELECT NON EMPTY 
         [Measures].[Montant - Fact Ventes]
        ,[Measures].[QQT - Fact Ventes]
    } ON COLUMNS,
    NON EMPTY 
     FILTER(
       {[Dim Date].[Year].&[2014]}
         *{[Dim Date].[MonthOfYear].&[7]}
          *{[Dim Date].[Date].[Date]}
        * {[DIM
    FA Clients].[FaCuNumberX].members},
         CDbl([Measures].[QQT - Fact Ventes])=0
     ON ROWS
    FROM [CubeAll]
    Richard

  • MDX - Filter members using AND operator in Query designer or otherwise

    Hi,
    I have the following table:
    ID
    Column A 
    1
    ValA
    1
    ValA
    1
    Special
    2
    ValA
    3
    ValA
    I need to return only IDs which has a Special value in Column A. So the output would be:
    ID
    Column A 
    1
    ValA
    1
    ValA
    1
    Special
    I thought that one way would be to use the MDX operator but there is very little documentation on it. I am a real beginner of MDX.
    Thanks in Advance.

    Hi RiddlerInPlay,
    After testing the issue in my environment, we can add a group grouped on ID, then use an expression to control the row visibility to achieve your requirement. For more details, please see:
    In the Row Groups pane, right-click the Details1 group to add a group grouped by ID field.
    Delete the first column with “Delete columns only” option.
    Right-click the details row to open the Row Visibility dialog box.
    Use the expression below in the “Show or hide based on an expression” text box:
    =iif(Fields!Column_A.Value="Special",false,true)
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • PerformancePoint: MDX Filter Question

    I have a PerformancePoint member selection filter (multi-select) using a hierarchy
    The Hierarchy is:
               Studio -> Property -> Title
    When the user selects a Property, I want to return its Studio with it. If the user selects a 'Title' I want to return both the Property and the Studio with it.
    Here is what I have tried so far, and it has not worked for me. I have verified that the ordinal is correct (Studio = 1, Property = 2, Title = 3)
    I'm sure it won't be this simple, but here is what I have tried:
    CASE <<SourceValue>>.Ordinal
    WHEN <<SourceValue>>.Ordinal = 1 THEN <<SourceValue>>
    WHEN <<SourceValue>>.Ordinal = 2 THEN <<SourceValue>>.Ascendants + ";" + <<SourceValue>>
    WHEN <<SourceValue>>.Ordinal = 3 THEN <<SourceValue>>.Ascendants + ";" + <<SourceValue>>
    END
    The problem I see with this is that <<SourceValue>> could contain different members at different ordinals? Aghh..
    Any suggestions? I need some help.
    Thank you in advance for any advice/help
    -cp

    I figured it out:
    IIF(<<SourceValue>>.Level.Ordinal = 1, <<SourceValue>>,
               IIF(<<SourceValue>>.Level.Ordinal = 2, Ancestors(<<SourceValue>>,0) + Ancestors(<<SourceValue>>,1),
                IIF(<<SourceValue>>.Level.Ordinal = 3, Ancestors(<<SourceValue>>,0) + Ancestors(<<SourceValue>>,1) + Ancestors(<<SourceValue>>,2),"")))

  • MDX get member properties

    Context: SSAS 2005.
    How to get a property of a member? Is it member.property? I have seen member.properties() . When to use member.property and when to use member.properties()? I thought they are interchangeable then found they are not. E.g. Q1 and Q2 return the same result.
    Q3 works but Q4 won't compile. Can someone explain this?
    Q1:
    with member [measures].parentname as
    [Product].[Product Categories].CurrentMember.Parent.PROPERTIES("name")
    select 
    [measures].parentname  on 0,
    [Product].[Product Categories].[SubCategory].members on 1
    from [Adventure Works]
    Q2:
    with member [measures].parentname as
    [Product].[Product Categories].CurrentMember.Parent.name
    select 
    [measures].parentname  on 0,
    [Product].[Product Categories].[SubCategory].members on 1
    from [Adventure Works]
    Q3: 
    with member [measures].parentKey as
    [Product].[Product Categories].CurrentMember.Parent.PROPERTIES("KEY")
    select 
    [measures].parentKey  on 0,
    [Product].[Product Categories].[SubCategory].members on 1
    from [Adventure Works]
    Q4:
    with member [measures].parentKey as
    [Product].[Product Categories].CurrentMember.Parent.KEY
    select 
    [measures].parentKey  on 0,
    [Product].[Product Categories].[SubCategory].members on 1
    from [Adventure Works]

    I'm not 100% clear on the difference, as I recall properties() returns a string and .property can return another datatype.. this is just from memory.  Why don't you try MEMBER_KEY for q4... did you look at the list of member properties?
    -Ken

  • Unable to filter people search results by managed properties

    I am in a strange situation. If I do not specify any filters, my people search works fine. However, if I filter it by a managed property, it does not return any results.
    How can I verify the search crawl is crawling these properties?
    Any pointers?

    Hi,
    According to your description, my understanding is that when you filter managed properties in People search results, then it doesn't return any results.
    Something needs to clarify. Does all the properties not return results or some specific properties ?
    If just some properties not return results, then I suggest you can check if you have set indexed for these properties and if there are valid data in the properties.
    If all the properties can't be filtered, I suggest you can check if there are something wrong in the ULS logs and check if you have set up People search correctly.
    More information:
    How to: Set up People Search in SharePoint 2013
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Query on MDX used in EVEXP

    Hi All,
    I am using MDX for filtering values in EXEXP formula. In EVEXP formula's last field of Filter, I am giving the following MDX:
    -->  ENTITY .currentmember.properties("Dropdown") ="Y"
    I am getting the filtered values of Dropdown property having values Y. But I want to have members having property value of Y as well as N. What MDX sshould I write for the same?

    Hi,
    You can use
    ENTITY.currentmember.properties("Dropdown") ="Y" and ENTITY.currentmember.properties("Dropdown") ="N"
    Hope this helps.

  • How to use OMB to change filter conditions in OWB maps

    Hi,
    I want to know how we can use OMB to change filter conditions in an OWB map.
    As per my scenario i have a filter operator FLTR_1 in my maps and i have to change its filter condition from
    INOUTGRP1.ID IN (1,2)
    AND
    INOUTGRP1.VALUE > CONST_0_MAX_VAL
    to
    INOUTGRP1.ID IN (1,2)
    AND
    INOUTGRP1.VALUE > CONST_6_MAX_VAL
    Just for everybody's information we are migrating from OWB 9.2 to OWB 10.2 and we have called procedures in constants and used their values in filter conditions.OWB 10.2 generates the values for constants in a different way than OWB 9.2 thats why this change is required.I wish to automate the act of changing constant names so we can save time in changing the maps.
    Thx

    Carsten,
    I created a map in OWB 10.2 and ran the following command
    The filter operator name in this map is FILTER
    Carsten Herbe wrote:
    OMBALTER MAPPING 'TEST_MAP' MODIFY OPEARTOR 'FILTER' SET PROPERTIES (FILTER_CONDITION) VALUES ('INOUTGRP1.ID IN (1,2) AND INOUTGRP1.VALUE > CONST_6_MAX_VAL ')
    I got this error:
    OMB02933: Error getting child object of type OPEARTOR with name FILTER: MMM1034:
    Property OPEARTOR does not exist.
    Could you pls help on this.
    Thx

  • Dynamic filter on time characteristics on OLAP SAP BEX query based universe

    Dear all,
    I'm currently working on the integration between SAP NetWeaver BI 7.0 and SAP BusinessObjects XI 3.1 FP 1.5 via integration kit.
    I've built an OLAP universe on the top of a BW query based on a multiprovider that contains 10 infocubes.
    Everything works fine but I need to create a filter in the OLAP universe that allows to restrict data by current date (e.g. using TIME characteristic of Infocube such as 0CALDAY or 0CALMONTH). From that filter we could start creating other conditions to compare data to different time periods.
    I've already tried to use a SAP exit variable in  a BW query but this kind of object would restrict query data only by current date and for example it would be impossible to browse data by previous years (to bypass this problem we could use restricted key figures with different offsets but we have too many key figures in the query and the number of restrictions
    would rise exponentially). 
    In a relational DataBase we can do that using a "where condition" based on 'CURRENTDATE' (SQL DB2 syntax).
    Now, we need to apply the same logic but translated in MDX syntax. 
    Is it possible to enter a dynamic filter in the OLAP universe or just fixed or promt values ?
    Any advise?
    Thanks in advance.
    Best Regards.
    M.

    Hi Ingo,
    1) My question is: "How can I have to manage variable in BEX queries and in the UNIVERSE in order to obtain the maximum flexibility to create reports with measures on actual day (for example) without asking the user to promt a value ?"
    I want to use an unique BEX query to define an unique UNIVERSE. On this UNIVERSE I want to create many reports (actual day, previous day, and so on).
    If I restrict 0CALDAY with an EXIT variable then shall I be able to create a different restrictions on the same Universe based on 0CALDAY ?
    2) Another question is:
    Is it possible to insert an XML / MDX filter on the OLAP Universe with dynamic derivation of the system date ?
    For example:
    Instead of this:
    <FILTER KEY="[0FISCYEAR].[LEVEL01].[NAME]">
        <CONDITION OPERATORCONDITION="Equal">
            <CONSTANT CAPTION="Z12008"></CONSTANT>
        </CONDITION>
    </FILTER>
    Is it possible to insert a tag with a dynamic function to derive the system date ?
    Thanks in advance.
    Best Regards.

Maybe you are looking for

  • Dreamweaver 8 issues with Photoshop CS (8)?

    I hate to start a new thread about this, but I can't find anything anywhere to help me out. So, I have a website that displays the pages of a magazine and people can flip through using arrow buttons, etc. I use one of Photoshop CS's Web Gallery forma

  • Identifying black and white versus greyscale in PDF

    Is there a way to identify from within a scanned PDF document (ie, something like a document property) that it was scanned as greyscale, black and white, or color?  My company is using Acrobat 7.0.  We have a requirement, for a variety of reasons, th

  • Js link - Display group count list SharePoint 2013

      I have a list column name "category" with values like Completed, Not Completed, Started. I want to group list items based on category.  I want to format it without showing all the list items so that it should look like:     Completed : 45     Not C

  • Cannot discovery sun 7410 with opscenter 12,

    opscenter 12 cannot discovery sun 7410... (version 2010.08.17.4.2,1-1.37) under version 11v3 this asset was discovered and managed right away. find assets butt does discovery the asset, but trying to manage it yields the following output. any ideas?

  • CIN Excise Trnasaction Type

    Hi, Off late ,I observed a new Excise Transaction Type :GRTR -Goods Reciept Transfer Order.Any idea, whether this is available in a new CIN module release ? Also how do you check the Support Package for CIN module in a system?