MDX question Named set

Hai,
This is my named set fomula in the cube (as 2008r2):
subset
(filter(descendants(period.period.year,1),VBA!Val(period.period.properties("id_"))<=VBA!Val(([period_now].item(0)).properties("id_"))),0)
This shows>> Per1,Per2,Per3 etc.
But now I want to show it like: Per3,per2,Per1 etc. How can I do that in the formula?
Tnx for the information.

Hi MYMY ,
I would recommend to use the 'order' function (desc or asc depend on you per orde) .
http://technet.microsoft.com/en-us/library/ms144767.aspx
Regards, David .

Similar Messages

  • Alternative to a Named Sets in Microsoft Cube for Analysis Edition for OLAP

    SAP has told me via there support system that they do not support Named Sets in Microsoft Analysis cubes and I need to be able to create specific time parameters to ease reporting requirements.  We are migrating off ProClarity and onto Analysis Edition for OLAP and need to be able to create these specific time dimensions.  I don't want to use custom groups as this would be hardcoding the values for the dates.  Is there any alternative to have these dates available in the Analysis application?  Any help would be greatly appreciated. 
    Please note that the Business Layer on the Webi side supports named sets and I have already implemented this for scheduled reports. Below is the MDX Name Set query for the Previous month based on our time dimension.
    ---- [Previous Month] ----
    Intersect ([Time].[Time Fiscal Year].[Month].Members, LastPeriods (1, Tail(Filter([Time].[Time Fiscal Year].[Month].Members, NOT IsEmpty(([Time].[Time Fiscal Year].CurrentMember, [Measures].DefaultMember))), 1).item(0).Lag(1)))
    Our Current Version:
    SAP Business Objects BI Platform 4.1 Support Pack 2 Patch 2

    When connecting to SSAS in a cluster, you do not specify an instance name.  In your case, you would use the name of the SSAS IP address to connect.
    See:
    http://msdn.microsoft.com/en-us/library/dn141153.aspx
    For servers deployed in a failover cluster, connect using the network name of the SSAS cluster. This name is specified during SQL Server setup, as
    SQL Server Network Name. Note that if you installed SSAS as a named instance onto a Windows Server Failover Cluster (WSFC), you never add the instance name on the connection. This practice is unique to SSAS; in contrast, a named
    instance of a clustered relational database engine does include the instance name. For example, if you installed both SSAS and the database engine as named instance (Contoso-Accounting) with a SQL Server Network Name of SQL-CLU, you would connect to SSAS using
    "SQL-CLU" and to the database engine as "SQL-CLU\Contoso-Accounting". See
    How to Cluster SQL Server Analysis Services for more information and examples.

  • Named set in cube doesn't appear in Universe

    I have several named sets in my cube that do not show up in the universe.  How can I get them to show up in the universe?  They contain a value for Yesterday which I need to use as a filter.  Is there a better way to create a filter for "yesterday"?

    Thank you for the info. 
    Can you help with the problem of creating a "yesterday" (or other date) filter?  I saw the thread "MDX syntax for current year in a Pre-defined condition"  in which you suggest using
    <EXPRESSION>
    IIF([Time Accounting].[Accounting Year.].CurrentMember.Properties("Name") = [Time Accounting].[Accounting Year.].CurrentMember.Properties("Current Year"), 1, 0)
    </EXPRESSION>
    to get the current year.  Could you elaborate on how to do that?  Do you put the expression in the filter like this?
    <FILTER KEY="[Date].[Date]">
        <CONDITION OPERATORCONDITION="Equal">
           <CONSTANT CAPTION=<EXPRESSION>
            IIF([Date].[Date].CurrentMember.Properties("Name") = [Date].[Fiscal Hierarchy].CurrentMember.Properties("Yesterday"), 1, 0)
          </EXPRESSION>/>
        </CONDITION>
    </FILTER>
    Please give me more details on l how to do this.  I'm new to the Business Objects OLAP Universe and more of a report developer than a programmer.

  • Pivot table named sets

    Hi,
    I'm not sure if its a proper forum for my question but owing to the fact that the data I use come from PowerPivot I decided to post it here.
    I've been trying to use a named set feature to set columns for my data so it'd show: budget, actual, diff. In order to achieve this I've put accounts item to row fields, company, fiscal year and month in the report filter fields and a measure item
    (has two values: budget or actual) in the column field - twice. I've set the second one to display as difference (base field: measure, base item: budget). The table looked just fine but wanted to get rid of the empty column next to budget column. I thought
    I could use named sets for this. To do this I selected Create set based on column items and in the New set window I removed the second measurement for budget. After accepting the changes the table looked just as I wanted (budget, actual, diff in columns).
    Unfortunately, when I wanted to change the company in the report filter a message appeared saying that "the current session is not valid any longer due to structural changes in the data base" (translation from Polish to English). Refreshing the table
    causes all values to disappear. Am I doing something wrong here?
    My PowerPivot add-in version is 11.0.2100.60 and Excel 14.0.6112.5000.
    Kind regards
    -- Igor M.

    Did you ever manage to resolve this?

  • SSAS - Named Set Grand Total

    Hi,
    I have a Calculation which I need to compute on fly. Index is the measure which will be product of Base Measure A and B divided by Sum(Measure A of
    selected Dimensions as shown in grey). I created Named set (Descendants) but had some difficulty in getting Total Measure A categorized based on selection.
    Please help me with calculated measure MDX script for the same for below output. Also the calculation script should work if just Product and Year are alone selected.
    Thanks in advance,
    Paddy

    Hi,
    check this link
    Conditional formtting in Grand total
    You can achive that by playing with XML in advanced tab.
    Regards,
    Sandeeep

  • Named Sets or calclated member

    Hi friends
    Need help regarding the MDX .I do have one Mapping table M1 with measure values.
    A0   A1   A2   M1     M2
    1    2      3    100    960
    2    3      4    140    680
    1    4      7    520    660
    2    5      9    550    630
    and one dimension table d1 having 20 records.
    with columns as
    id value         mapping column
    1   Red            A0
    2   orange        A0
    3   green        A0
    4   blue        A0
    So when the Dimension table is joined with Fact/Mapping table i want my Output in cube as as :
    OutPut:
    In rows as Red  (A0)   and column M1(Measure) as 620. (Sum of 520+100)
    Logic will work as follows in Fact Map Table.
    If i go for filters(in Microsoft excel) in Mapping Table. While Selecting the A0 and filter Value as 1
    The below data is displayed :
    Red        A0   A1   A2   M1     M2
            1    2      3    100    960
            1    4      7    520    660
    A0 (1 value or Other) is basically an ID .which is logically Build with RED (Dimension ID).Same as A0(2 Value) is with Orange.
    Same way if any other filter is selected. it should work with same way(Filtering the data in Mapping table and then Sum of measures)
    Please help . I neeed to build this logic for Fact tables.
    Should i go for NAMED Sets or calculated member for the Fact logic(Filter)
            

    Hi Rakesh ,
    As I understand, you can't create a dynamic relationship between the fact table and the dimension table .
    What we can do is to use calculated members/scopes to define how each measure will be calculated, or you can create 1 generic dimension that will be the base for 3 role-playing  (like generic Date dim and creationDate dim, deleteDatedim ..) and a mapping
    column dimension, which will be used to select mapping column value, so you can use LinkMember functionality to 'jump' between the dims . 
    Relations between each role-playing dimension will be regular .
    Regards, David .

  • Sort data from a Named Set - SSAS

    Hi All,
    I am trying to create a Named Set called as "Last 13 Weeks", mdx code looks like below:
    EXCEPT({EXCEPT({Tail([Time].[Week].members,14)}, 
    {[Time].[Week].[All]})},{Tail([Time].[Week].members,1)})
    I have a Dim_Date dimension which consists of data from 2013 till 2015 year.Columns like Date,week,month,year. The above Named set is created as week filter, which will show last 13 weeks excludes from current week. Looks like below.
    Row Labels
    Count
    2015-01-18
    1392
    2015-01-25
    1400
    2015-02-01
    1433
    2015-02-08
    1449
    2015-02-15
    1457
    2015-02-22
    1456
    2015-03-01
    1456
    2015-03-08
    1456
    2015-03-15
    1471
    2015-03-22
    1477
    2015-03-29
    1484
    2015-04-05
    1497
    2015-04-12
    1504
    Now, weeks are displaying in ascending order. I would like to sort them in descending order, means last week should be displayed at top level and rest are followed in descending order.
    Please help me how I can achieve this solution in Named Set ?
    Any replies will be appreciate. Thanks.
    Maruthi... http://www.msbimaru.blogspot.com/

    Hi Maruthi,
    According to your description, you want to get the data of last 13 week and sort them in descending order. Right?
    In MDX, for sorting the records, we can use Order() function to achieve it, in this scenario, we can order the members based on the member name. Please refer to query below:
    select [Measures].[Internet Sales Amount] on 0,
    ORDER(TAIL([Date].[Calendar Weeks].[Calendar Week].members,13),
    [Date].[Calendar Weeks].currentmember.member_name,desc) on 1
    from
    [Adventure Works]
    Also you can use the ORDER() function for your set expression:
    Order(
    EXCEPT({EXCEPT({Tail([Time].[Week].members,14)},
    {[Time].[Week].[All]})},{Tail([Time].[Week].members,1)}),
    [Time].currentmember.member_name,
    desc
    Reference:
    Order (MDX)
    Best Regards,
    Simon Hou
    TechNet Community Support

  • I have some questions regarding setting up a software RAID 0 on a Mac Pro

    I have some questions regarding setting up a software RAID 0 on a Mac pro (early 2009).
    These questions might seem stupid to many of you, but, as my last, in fact my one and only, computer before the Mac Pro was a IICX/4/80 running System 7.5, I am a complete novice regarding this particular matter.
    A few days ago I installed a WD3000HLFS VelociRaptor 300GB in bay 1, and moved the original 640GB HD to bay 2. I now have 2 bootable internal drives, and currently I am using the VR300 as my startup disk. Instead of cloning from the original drive, I have reinstalled the Mac OS, and all my applications & software onto the VR300. Everything is backed up onto a WD SE II 2TB external drive, using Time Machine. The original 640GB has an eDrive partition, which was created some time ago using TechTool Pro 5.
    The system will be used primarily for photo editing, digital imaging, and to produce colour prints up to A2 size. Some of the image files, from scanned imports of film negatives & transparencies, will be 40MB or larger. Next year I hope to buy a high resolution full frame digital SLR, which will also generate large files.
    Currently I am using Apple's bundled iPhoto, Aperture 2, Photoshop Elements 8, Silverfast Ai, ColorMunki Photo, EZcolor and other applications/software. I will also be using Photoshop CS5, when it becomes available, and I will probably change over to Lightroom 3, which is currently in Beta, because I have had problems with Aperture, which, until recent upgrades (HD, RAM & graphics card) to my system, would not even load images for print. All I had was a blank preview page, and a constant, frozen "loading" message - the symbol underneath remained static, instead of revolving!
    It is now possible to print images from within Aperture 2, but I am not happy with the colour fidelity, whereas it is possible to produce excellent, natural colour prints using its "minnow" sibling, iPhoto!
    My intention is to buy another 3 VR300s to form a 4 drive Raid 0 array for optimum performance, and to store the original 640GB drive as an emergency bootable back-up. I would have ordered the additional VR300s already, but for the fact that there appears to have been a run on them, and currently they are out of stock at all, but the more expensive, UK resellers.
    I should be most grateful to receive advice regarding the following questions:
    QUESTION 1:
    I have had a look at the RAID setting up facility in Disk Utility and it states: "To create a RAID set, drag disks or partitions into the list below".
    If I install another 3 VR300s, can I drag all 4 of them into the "list below" box, without any risk of losing everything I have already installed on the existing VR300?
    Or would I have to reinstall the OS, applications and software again?
    I mention this, because one of the applications, Personal accountz, has a label on its CD wallet stating that the Licence Key can only be used once, and I have already used it when I installed it on the existing VR300.
    QUESTION 2:
    I understand that the failure of just one drive will result in all the data in a Raid 0 array being lost.
    Does this mean that I would not be able to boot up from the 4 drive array in that scenario?
    Even so, it would be worth the risk to gain the optimum performance provide by Raid 0 over the other RAID setup options, and, in addition to the SE II, I will probably back up all my image files onto a portable drive as an additional precaution.
    QUESTION 3:
    Is it possible to create an eDrive partition, using TechTool Pro 5, on the VR300 in bay !?
    Or would this not be of any use anyway, in the event of a single drive failure?
    QUESTION 4:
    Would there be a significant increase in performance using a 4 x VR300 drive RAID 0 array, compared to only 2 or 3 drives?
    QUESTION 5:
    If I used a 3 x VR300 RAID 0 array, and installed either a cloned VR300 or the original 640GB HD in bay 4, and I left the Startup Disk in System Preferences unlocked, would the system boot up automatically from the 4th. drive in the event of a single drive failure in the 3 drive RAID 0 array which had been selected for startup?
    Apologies if these seem stupid questions, but I am trying to determine the best option without foregoing optimum performance.

    Well said.
    Steps to set up RAID
    Setting up a RAID array in Mac OS X is part of the installation process. This procedure assumes that you have already installed Mac OS 10.1 and the hard drive subsystem (two hard drives and a PCI controller card, for example) that RAID will be implemented on. Follow these steps:
    1. Open Disk Utility (/Applications/Utilities).
    2. When the disks appear in the pane on the left, select the disks you wish to be in the array and drag them to the disk panel.
    3. Choose Stripe or Mirror from the RAID Scheme pop-up menu.
    4. Name the RAID set.
    5. Choose a volume format. The size of the array will be automatically determined based on what you selected.
    6. Click Create.
    Recovering from a hard drive failure on a mirrored array
    1. Open Disk Utility in (/Applications/Utilities).
    2. Click the RAID tab. If an issue has occurred, a dialog box will appear that describes it.
    3. If an issue with the disk is indicated, click Rebuild.
    4. If Rebuild does not work, shut down the computer and replace the damaged hard disk.
    5. Repeat steps 1 and 2.
    6. Drag the icon of the new disk on top of that of the removed disk.
    7. Click Rebuild.
    http://support.apple.com/kb/HT2559
    Drive A + B = VOLUME ONE
    Drive C + D = VOLUME TWO
    What you put on those volumes is of course up to you and easy to do.
    A system really only needs to be backed up "as needed" like before you add or update or install anything.
    /Users can be backed up hourly, daily, weekly schedule
    Media files as needed.
    Things that hurt performance:
    Page outs
    Spotlight - disable this for boot drive and 'scratch'
    SCRATCH: Temporary space; erased between projects and steps.
    http://en.wikipedia.org/wiki/StandardRAIDlevels
    (normally I'd link to Wikipedia but I can't load right now)
    Disk drives are the slowest component, so tackling that has always made sense. Easy way to make a difference. More RAM only if it will be of value and used. Same with more/faster processors, or graphic card.
    To help understand and configure your 2009 Nehalem Mac Pro:
    http://arstechnica.com/apple/reviews/2009/04/266ghz-8-core-mac-pro-review.ars/1
    http://macperformanceguide.com/
    http://www.macgurus.com/guides/storageaccelguide.php
    http://www.macintouch.com/readerreports/harddrives/index.html
    http://macperformanceguide.com/OptimizingPhotoshop-Configuration.html
    http://kb2.adobe.com/cps/404/kb404440.html

  • I see there is no way to change the security questions i set up when I first purchased my ipod touch. Software takes you in circles with no help

    I see there is no way to change the security questions i set up when I first purchased my ipod touch. All the answers I get do not work. Can't by another device until I get around this issue.

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • Using named set in calculated measure is not working

    Hi Techies,
    I need an urgent solution. Here is my problem,
    I have a product dimension which has some "n" no of products. I need to create a measure with few members from the product dimension. (e.g. Sales for laptop & mobile explicitly, out of other electronic gadgets)
    I have created a static named set for some n number of products and a calculated measure in which I have included this named set as below,
    CREATE SET CURRENTCUBE.[Compact]
     AS {[Dim Prod].[Gadget].&[Laptop],[Dim Prod].[Gadget].&[Mobile]} ;        
    CREATE MEMBER CURRENTCUBE.[Measures].[Compact Sales]
     AS ([Compact],[Measures].[Sales]), 
    VISIBLE = 1   ; 
    but when I browse the cube the above measure is returning Null value. When I change the named set to dynamic, the measure is showing value but no filters(laptop & mobile) seems to be applied for that measure unless I add that named set explicitly in
    the filter area.
    I need a solution where I don't want to use any filters but the measure should work as expected.
    Please help me with this, it is very urgent.
    Thanks in advance,
    Latheesh
    latheesh

    hi Latheesh ,
    I'm not sure why do you need to create a new measure .. There is a problem to aggregate a set in a calculated member . I will suggest a new member on your
    Gadget dimension :
    CREATE SET CURRENTCUBE.[Others_Set]
     AS {[Product].[Product Categories].[Category].&[4],[Product].[Product Categories].[Category].&[1]} ;        
    CREATE MEMBER CURRENTCUBE.[Product].[Category].[Others]
     AS Aggregate([Others_Set]), 
    VISIBLE = 1   ; 
    select [Product].[Category].AllMembers on 1
    , [Measures].[Internet Sales Amount] on 0
    From [Adventure Works]
    Regards, David .

  • TS3297 I don't remember the security questions I set...!

    I don't remember the answers to the security questions I set for my apple store account.
    I ned to know who to restore them or change them because I can't buy nothing from my iPad

    Click here for information. If you can't get the answers emailed to you for some reason, contact the iTunes Store staff via the link in that article.
    (75530)

  • Named Set doesn't show aggregated values in excel while browsing

    Hi All,
    I have create a named to show Top 20 Clients Alphabetical. When I browse the named set, it is not showing aggregated values in the below.You can see in the image.
    Named Set Expression: 
    FILTER(
         Order
    ([Client].[Client].members,[Measures].[ACCOUNT RANK],BASC),
                  [Measures].[ACCOUNT RANK] > 0
                  AND [Measures].[ACCOUNT RANK] < 21)
    After reading blogs, I found I have to add ALLMEMBERS function inorder to show aggregated values in excel while browsing.
    http://prologika.com/CS/blogs/blog/archive/2009/01/27/named-set-subtotals-in-excel.aspx
    I implemented and some of them working fine but this is not working. Not sure what's happening.
    Modified Named Set Expression:
    FILTER(
         Order
    ([Client].[Client].allmembers,[Measures].[ACCOUNT RANK],BASC),
                  [Measures].[ACCOUNT RANK] > 0
                  AND [Measures].[ACCOUNT RANK] < 21)
    Please let me know, what else I can do to fix this issue. Thanks in advance and appreciate for reply.
    Maruthi...

    Hi Maruthi you just need a simple change in the Query .
    You need to include the All level and try using TopCount() function instead of the sequential FILTER/ORDER
    Try this,
    {TopCount
    [client].[client].allMembers
     ,20
    ,[Measures].[AccountRank]
    ),[client].ALL};
    Venkata Koppula

  • How to create server named sets in Essbase 9.3.1

    Hi there,
    I'm writing software against Essbase 9.3.1 Analytic Services right now and am trying to find out whether or not Essbase supports server named sets (not the session/query-scoped named sets that are created from CREATE SET or WITH respectively). I am able to execute the MDSCHEMA_SETS request against my Essbase server with the following response:
    <?xml version="1.0"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:DiscoverResponse xmlns:m="urn:schemas-microsoft-com:xml-analysis"><m:return xsi:type="xsd:string" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><root xmlns="urn:schemas-microsoft-com:xml-analysis:rowset" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><xsd:schema xmlns="urn:schemas-microsoft-com:xml-analysis:rowset" targetNamespace="urn:schemas-microsoft-com:xml-analysis:rowset" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sql="urn:schemas-microsoft-com:xml-sql" elementFormDefault="qualified"><xsd:element name="root"><xsd:complexType><xsd:sequence minOccurs="0" maxOccurs="unbounded"><xsd:element name="row" type="row"/></xsd:sequence></xsd:complexType></xsd:element><xsd:complexType name="row"><xsd:sequence maxOccurs="unbounded" minOccurs="0"><xsd:element name="CATALOG_NAME" type="xsd:string" sql:field="CATALOG_NAME"/>
    <xsd:element name="CUBE_NAME" type="xsd:string" sql:field="CUBE_NAME"/>
    <xsd:element name="SET_NAME" type="xsd:string" sql:field="SET_NAME"/>
    <xsd:element name="SCOPE" type="xsd:int" sql:field="SCOPE"/>
    <xsd:element name="DESCRIPTION" type="xsd:string" sql:field="DESCRIPTION" minOccurs="0"/>
    <xsd:element name="EXPRESSION" type="xsd:string" sql:field="EXPRESSION" minOccurs="0"/>
    <xsd:element name="DIMENSIONS" type="xsd:string" sql:field="DIMENSIONS" minOccurs="0"/>
    <xsd:element name="SET_CAPTION" type="xsd:string" sql:field="SET_CAPTION" minOccurs="0"/>
    <xsd:element name="SET_DISPLAY_FOLDER" type="xsd:string" sql:field="SET_DISPLAY_FOLDER" minOccurs="0"/>
    </xsd:sequence></xsd:complexType></xsd:schema>
    </root></m:return></m:DiscoverResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
    Anyone know how to create/access this? If so, what tool (essmsh.exe, Administration Services?) is needed to do this?
    Thanks,
    J

    Yes you need to create one DSN connection and you have to use DSN name and login details at the time of building/loading of the outline.
    Create DSN
    Goto Administrative tools -> DataSources (ODBC) and add the DSN name and specify the Server name of SQL and login details and database.
    goto data prep editor and click on File Menu and Click on Open SQL option Next window opens.
    There you have to enter the details of the DSN connection and SQL query to build/load.
    Thanks,
    Prathap

  • Question about Setting Window Title/the use of AVWindowSetTitle()

    Hi everyone,
    I have a question about setting the title of the window in which the Acrobat viewer normally opens a PDF file.  The documentation states that AVWindowSetTitle() cannot be used in this case.  However, using it has worked with versions of Acrobat/Reader up until and including version 8.
    Everything breaks down starting with Acrobat 9.
    According to the documentation I am supposed to do the following: "To set the title of a window in which the Acrobat viewer opens a PDF file, you must replace AVDocOpenFromASFileWithParams() and pass the window title in tempTitle."
    Unfortunately, there are 2 problems I have with this approach:
         I do need to be able to change the document title on document Save, not only on document Open
         I do not know what AVDocOpenFromASFileWithParams() implementation has to look like if I have to replace it using HFTReplaceEntry().
    Is there a sample customized implementation of AVDocOpenFromASFileWithParams() somewhere that I could take a look at?
    Is there a way to change a document Title inside Acrobat/Reader window after a Save operation?
    Thanks a million,
      Lana2010K

         I am sorry.  I don't know how you tested this and came to conclusion that this works correctly in Acrobat X.
         I just tested our Acrobat plug-in with a trial version of Acrobat X and this did not work.
         When we open a file in Acrobat (doing it ourselves in the plug-in by adding another specialized open) we set the window title to something different from the default file name.  Then if a file gets edited and saved (File->Save), the window title gets reset to the file name. In the PDDocDidSave callback we call AVWindowSetTitle() to set it back to a more descriptive window title we need.  This has worked up until and including Acrobat 8, but does not work in either version 9.0 or 10.0.
         Also, I just modified the plug-in code to always change the Window Title of every document (even if opened through native File->Open) on document Save.  It does not work.
         Please help,
              Lana2010K

  • Question about setting cookies and custom authentication

    I have a question about setting cookies.
    I have two different 'projects' in HTMLDB - we will call them App1 and App2.
    I also have two different connection configurations setup in the DADs.conf file. - we will call them Connect1 and Connect2.
    App1 is setup to use database authentication (no user is specified in the DAD) and uses Connect1. Once the user successfully logs in, we set a username cookie (this is a persistent connection).
    We created a custom authenticatoin scheme for App2 - this scheme checks for the username cookie (set by App1). We would like for App2 to use Connect2 (HTMLDB_PUBLIC_USER is the default user specified and it uses connection pooling).
    Is it possible to set a cookie from App1, Connect1 for App2, Connect2 - then redirect to App2 and pick up that cookie?
    Here is an example of what we are trying to accomplish:
    A user loggs into App1, we set a cookie, and the user is redirected to App2. If the cookie exists, we allow them access to the home page in App2, if no cookie, we redirect back to a 'Login Failed' page in App1. We don't want App2 to use the same database connection as App1 though, we need App2 to use connection pooling.
    Is this possible? OR...Is there a better way to accomplish what we want to do?
    This is an enhancement to an existing app. Our requirements are to use Database Authentication (setup where pass expires after 60 days or so, cannot reuse last 3 passwords, etc.) - which is already setup and being used by other applications in our organization. All of our users have accounts in the database. We don't want users to have a new username/pass - and we don't want to manage a separate group for HTMLDB apps.
    The existing application uses HTMLDB's built in authentication - which uses database username/pass, and it uses connection pooling, but we cannot handle the pass expire stuff in it, unless there's something we're not seeing or understanding - at least that's how our DBA explained it to us.
    Any help with this will be appreciated so much. I can send you the code we have if needed.
    Thanks!

    Same problem here.  I have so many problems with this remote app.  Is there an iTunes API? I would like to write my own remote app that actually works.

Maybe you are looking for

  • Where can i find a complete itunes tutorial

    I've see that basic one - that is really a marketing piece.  I want a more detailed guide to what I'm looking at on the various views, especially for downloading and managing podcasts.  Thanks.

  • Vga problem

    compaq6910p is not supporting graphic driver(ATI-2300) in win 8

  • Mass Change to sales orders

    Dear All, If i have alot of sales orders and i want to carry out new pricing to all of them is there away to carry out mass change to them or i have to change them Individually, thanks in advance.

  • BI authorization on hierarchy- 2 different hierarchies on InfoProvider

    Hello, Im working with the new Authorization concept (Tcode rsecadmin). Trying to create an Authorization for 2 different InfoObjects (with hierarchies) , on the same InfoCube. I've created 3 Authorization object in Tcode rsecadmin:     1. The first

  • Adobe Air and maintaining session state

    OK, here's a short run down. I'm working on an Air app per client  request. It's a tight time frame so I'm going the HTML/JavaScript route  since that is what I know. I've only been digging into this for a couple  of days, read a handful of tutes and