Befor aggregation in query and  New functionality in BI7

Hi,
I want to find all the CKFs which is using 'Before aggregation ' property.
Can somebody tell me the meta table used for this. I checked table RSZCALC..
either I dont know which field to use or is of no use to my issue.
Also in BI7 , i know that 'Befor agrregation properety no longer exist. What is the alternative
for this functionality in BI7?
Thanks.

Hello,
look at your table RSZCALC, and the fields :
CALLATE : field = 0 (Before Aggragation)
for BI7 :
AGGRGEN : Aggregation type
AGGREXC : Aggregation Exception
AGGRCHA : Characteristic of reference

Similar Messages

  • Need help on mapping of obsolete and new function module

    Hi Expert,
    We are working on a  upgradation tool in which i have to repace the obsolete function module "HELP_VALUES_GET_WITH_CHECKTAB
    " by "F4IF_FIELD_VALUE_REQUEST
    ". I am not sure about the functionalities of these function modules as i have never used it. Can anyone please help me  by providing some information abt  these FMs. Also i need to do the mapping of parameters of old and new function module. So please provide the details of mapping also. Any pointers on this will be highly appreciated.
    Thanks & Regards,
    P Sharma
    Moderator message : Duplicate post locked.  Continue with [Parameter mapping of FMs|Parameter mapping of FMs;.
    Edited by: Vinod Kumar on Jul 8, 2011 9:40 AM

    Hey Enivass,
    you can ckeck the input field "Account Number" whether it is numeric or Alphabet using *"Conversions ->Fixvalues"*
    Steps:
    1.  Extract first character of input using *" Text -> substring"*  -- start position 0 , char count 1 
    2. In Fix Value table you have to give following values:
    Dafault value : Alphabet
    key----
    value
    0----
    Number
    1----
    Number
    2----
    Number
    9----
    Number
    3.  Write logic IF "number" than  "Arithmatic -> FormatNumber   (0000000000)   -
    // for leading zeros
             ELSE
         concat with extra space        -
    Thanks

  • Hierarchy query and analytical functions

    Hi I have 2 tables which are
    ACCOUNT TBL
    ACCOUNT_ID        PAYING_ACCOUNT_ID           PARENT_ACCOUNT_ID
    4571111               4571111                    4571111  
    4571112               4571112                    4571111
    4571113               4571113                    4571111
    3995313               3995313                    3995313
    3996786               3995313                    3995313
    4008375               3995313                    3995313CUSTOMER_STATUS
    CUSTOMER_ID        CUSTOMER_STATUS
    4571111                Active  
    4571112                Active      
    4571113                Active      
    3995313                Active    
    3996786                Deactive      
    4008375                Active       I need to produce an output like below:
    Level_Label            ACCOUNT_ID       PAYING_ACCOUNT_ID    PARENT_ACCOUNT_ID    MY_TOTAL_PR_A   MY_TOTAL_NPR_A   TOTAL_PR_A   TOTAL_NPR_A     MY_TOTAL_PR_D       MY_TOTAL_NPR_D      TOTAL_PR_D      TOTAL_NPR_D
    3995313                  3995313             3995313              3995313               0            1               0            1                  0                 1                   0               1
          4008375            4008375             3995313              3995313               0            0               0            1                  0                 0                   0               1
          3996786            3996786             3995313              3995313               0            0               0            1                  0                 0                   0               1
    4571111                  4571111             4571111              4571111               2            0               2            0                  0                 0                   0               0
          4571112            4571112             4571112              4571111               0            0               2            0                  0                 0                   0               0
          4571113            4571113             4571113              4571111               0            0               2            0                  0                 0                   0               0This is the logic and rational to fill-up above fields.
    MY_TOTAL_PR_A            Sum of all child accounts of current account that are PR (PAYING_ACCOUNT_ID = ACCOUNT_ID) and in sates considered Active.
                                         The current account is not included in the sum, only child accounts
    MY_TOTAL_NPR_A          Sum of all child accounts of current account that are NPR (PAYING_ACCOUNT_ID != ACCOUNT_ID)  and in sates considered Active.
                                         The current account is not included in the sum, only child accounts
    TOTAL_PR_A                  Sum of all accounts of the structure that are PR and in sates considered Active.
                                         The TOP account is not included in the sum, only TOP account childs
    TOTAL_NPR_A                Sum of all accounts of the structure that are NPR and in sates considered Active.
                                         The TOP account is not included in the sum, only TOP account childs
    MY_TOTAL_PR_D            Sum of all child accounts of current account that are PR and in sates considered Deactive.
                                         The current account is not included in the sum, only child accounts
    MY_TOTAL_NPR_D          Sum of all child accounts of current account that are NPR and in sates considered Deactive.
                                          The current account is not included in the sum, only child accounts
    TOTAL_PR_D                Sum of all accounts of the structure that are PR and in sates considered Deactive.
                                          The TOP account is not included in the sum, only TOP account childs
    TOTAL_NPR_D              Sum of all accounts of the structure that are NPR and in sates considered Deactive.
                                           The TOP account is not included in the sum, only TOP account childsThis is my code, I managed to calculate the MY_TOTAL_XXX filed but failed to calculate TOTAL_XXX. Appreciate any information / comment. Thanks
    WITH     got_descendants          AS
         SELECT     CONNECT_BY_ROOT a.account_id     AS ancestor_id
         ,     a.paying_account_id
      ,  a.account_id
      , a.parent_account_id
         ,     LEVEL                    AS lvl
      , c.customer_status
         FROM     account a inner join customer_status c
      on a.account_id = c.customer_id
         CONNECT BY NOCYCLE     PRIOR a.account_id     = a.parent_account_id
              --AND          account_id          != parent_account_id
    ), DUMMY2 AS
    select g.*  from got_descendants g
    ), DUMMY AS
    SELECT       ancestor_id
    ,       COUNT (CASE WHEN lvl             > 1
                      AND  account_id  = paying_account_id
                And  ancestor_id != account_id
                AND  customer_status = 'A' THEN 1 END)     AS my_total_pr_a
    ,       COUNT (CASE WHEN ancestor_id  = paying_account_id
               AND  customer_status = 'A' THEN 1 END)     AS total_pr_a
    ,       COUNT (CASE WHEN lvl             > 1
                      AND  account_id != paying_account_id
                And  ancestor_id != account_id
                AND  customer_status = 'A' THEN 1 END)     AS my_total_npr_a
    ,       COUNT (CASE WHEN ancestor_id != paying_account_id
               AND  customer_status = 'A'
               And  ancestor_id != parent_account_id THEN 1 END)     AS total_npr_a
    ,       COUNT (CASE WHEN lvl             > 1
                      AND  account_id  = paying_account_id
                And  ancestor_id != account_id
                AND  customer_status = 'D' THEN 1 END)     AS my_total_pr_d
    ,       COUNT (CASE WHEN ancestor_id  = paying_account_id
               AND  customer_status = 'D' THEN 1 END)     AS total_pr_d
    ,       COUNT (CASE WHEN lvl             > 1
                      AND  account_id != paying_account_id
                And  ancestor_id != account_id
                AND  customer_status = 'D' THEN 1 END)     AS my_total_npr_d
    ,       COUNT (CASE WHEN ancestor_id != paying_account_id
               AND  customer_status = 'D' THEN 1 END)     AS total_npr_d
    FROM       DUMMY2
    GROUP BY ancestor_id
    SELECT  lpad(' ', 2*level) || ACCOUNT.ACCOUNT_ID AS LEVEL_LABEL, LEVEL, CONNECT_BY_ISCYCLE "Cycle",
    ACCOUNT.PAYING_ACCOUNT_ID, ACCOUNT.PARENT_ACCOUNT_ID, ACCOUNT.ACCOUNT_ID,
    DUMMY.my_total_pr_a, DUMMY.total_pr_a, DUMMY.my_total_npr_a, DUMMY.total_npr_a,
    DUMMY.my_total_pr_d, DUMMY.total_pr_d, DUMMY.my_total_npr_d, DUMMY.total_npr_d
    from ACCOUNT INNER JOIN DUMMY  ON  ACCOUNT.account_id = DUMMY.ancestor_id
    START WITH ACCOUNT.parent_account_id = ACCOUNT.account_id 
    CONNECT BY NOCYCLE PRIOR ACCOUNT.account_id = ACCOUNT.parent_account_idDDL
    CREATE TABLE ACCOUNT
        "CUSTOMER_ID"       NUMBER(20,0) NOT NULL ENABLE,
        "PAYING_ACCOUNT_ID" NUMBER(20,0),
        "PARENT_ACCOUNT_ID" NUMBER(20,0),
        "ACCOUNT_ID"        NUMBER,
        "COMPANY_ID"        NUMBER
    CREATE TABLE CUSTOMER_STATUS
        "CUSTOMER_ID"     NUMBER(10,0),
        "CUSTOMER_STATUS" VARCHAR2(1 BYTE)
    Insert into ACCOUNT (ACCOUNT_ID,PAYING_ACCOUNT_ID,PARENT_ACCOUNT_ID) values (4571111,4571111,4571111);
    Insert into ACCOUNT (ACCOUNT_ID,PAYING_ACCOUNT_ID,PARENT_ACCOUNT_ID) values (4571112,4571112,4571111);
    Insert into ACCOUNT (ACCOUNT_ID,PAYING_ACCOUNT_ID,PARENT_ACCOUNT_ID) values (4571113,4571113,4571111);
    Insert into ACCOUNT (ACCOUNT_ID,PAYING_ACCOUNT_ID,PARENT_ACCOUNT_ID) values (3996786,3995313,3995313);
    Insert into ACCOUNT (ACCOUNT_ID,PAYING_ACCOUNT_ID,PARENT_ACCOUNT_ID) values (4008375,3995313,3995313);
    Insert into ACCOUNT (ACCOUNT_ID,PAYING_ACCOUNT_ID,PARENT_ACCOUNT_ID) values (3995313,3995313,3995313);
    Insert into CUSTOMER_STATUS (CUSTOMER_ID,CUSTOMER_STATUS) values (3996786,'D');
    Insert into CUSTOMER_STATUS (CUSTOMER_ID,CUSTOMER_STATUS) values (4008375,'A');
    Insert into CUSTOMER_STATUS (CUSTOMER_ID,CUSTOMER_STATUS) values (3995313,'A');
    Insert into CUSTOMER_STATUS (CUSTOMER_ID,CUSTOMER_STATUS) values (4571111,'A');
    Insert into CUSTOMER_STATUS (CUSTOMER_ID,CUSTOMER_STATUS) values (4571112,'A');
    Insert into CUSTOMER_STATUS (CUSTOMER_ID,CUSTOMER_STATUS) values (4571113,'A');

    Hi thanks for your information and explanation..
    To answer your doubt, below explain the rational
    The logic for TOTAL_XXX
    for instance, I've picked only below data to explain the rational
    Account_id            Paying_account             Parent_account        status
    3995313               3995313                    3995313                Active
    3996786               3995313                    3995313                Deactivated
    4008375               3995313                    3995313                Active
    Showing accounts relations, status, PR\NPR, and hierarchy we have
    Account 3995313 (PR, Active)
        - Account 3996786  (NPR, Deactive)
        - Account 4008375  (NPR,   Active)
    TOTAL_PR_ACCOUNTS_A   - Sum of all accounts of the structure that are PR and in sates considered Active.
                            The TOP account is not included in the sum, only TOP account childs
    For account 3995313 the TOTAL_PR_ACCOUNTS_A is 0 (Based on the definiton, to calculate TOTAL_PR_ACCOUNTS_A, we need go throught the entire structure for that
                                                      account. In this case, we have 3995313, 3996786 and 4008375. Now we go the this three account one by one
                                               first is 3995313, this account is a TOP account in the entire structure, so is not included in the sum.
                                               second is 3996786, this account is not a TOP account therefore should be included in the sum, however this account is NPR and Deactive, so is disqualify.
                                                     third is 4008375, this account is not a TOP account and is active account therefore should be included in the sum, however this account is NPR so is disqualify.)
    For account 3996786 the TOTAL_PR_ACCOUNTS_A is 0 ( the definiton is exactly same as the above)
    For account 4008375 the TOTAL_PR_ACCOUNTS_A is 0 ( the definiton is exactly same as the above)
    For account 3995313 the TOTAL_NPR_ACCOUNTS_A is 1 (Based on the definiton, to calculate TOTAL_NPR_ACCOUNTS_A, we need go throught the entire structure for that
                                                      account. In this case, we have 3995313, 3996786 and 4008375. Now we go the this three account one by
                                                      first is 3995313, this account is a TOP account in the entire structure, so is not included in the sum.
                                                      second is 3996786, this account is not a TOP account and is NPR therefore should be included in the sum, however this account is Deactive, so is disqualify. 
                                                      third is 4008375, this account is not a TOP account and is active and NPR account therefore should be included in the sum, so is disqualify.)
    For account 3996786 the TOTAL_PR_ACCOUNTS_A is 1 ( the definiton is exactly same as the above)
    For account 4008375 the TOTAL_PR_ACCOUNTS_A is 1 ( the definiton is exactly same as the above)After execute the code as provided, seems the result was correct but I need more times to verify as I have a milions of records in the DB.
    I tried to modify the code to have better performance , but failed to process, Appreciate any help :)
    WITH    got_descendants        AS
        SELECT    CONNECT_BY_ROOT a.account_id        AS ancestor_id
        ,    CONNECT_BY_ROOT a.parent_account_id    AS parent_account_id    -- *****  NEW  *****
        ,    a.paying_account_id
        ,    a.account_id
        ,    c.customer_status
        ,    LEVEL                    AS lvl
        ,    CONNECT_BY_ISCYCLE            AS cycle
        ,    CASE
                WHEN  CONNECT_BY_ROOT a.account_id
                    = CONNECT_BY_ROOT a.parent_account_id
                THEN  ROWNUM
            END                    AS r_num
          FROM  account a inner join customer_status c
      on a.account_id = c.customer_id
        CONNECT BY NOCYCLE    PRIOR a.account_id    = a.parent_account_id
            AND        a.account_id        != a.parent_account_id
        ORDER SIBLINGS BY    a.account_id    -- Optional
    ,    got_o_num    AS
        SELECT    got_descendants.*
        ,    MIN (r_num) OVER (PARTITION BY  account_id)    AS o_num
        ,    MAX (lvl)   OVER (PARTITION BY  account_id)     AS max_lvl
        FROM    got_descendants
    ),    dummy    AS
        SELECT      ancestor_id
        ,      COUNT ( CASE WHEN lvl            > 1
                               AND  account_id        = paying_account_id
                               AND  ancestor_id       != account_id
                               AND  customer_status     = 'Active'
                       THEN 1
                   END
                )    AS my_total_pr_a
        ,      COUNT (CASE WHEN lvl            > 1
                    AND  account_id != paying_account_id
                          And  ancestor_id != account_id
                          AND  customer_status = 'Active' THEN 1 END)    AS my_total_npr_a
        ,      COUNT (CASE WHEN lvl            > 1
                    AND  account_id  = paying_account_id
                          And  ancestor_id != account_id
                          AND  customer_status = 'Deactive' THEN 1 END)    AS my_total_pr_d
        ,      COUNT (CASE WHEN lvl            > 1
                    AND  account_id != paying_account_id
                          And  ancestor_id != account_id
                          AND  customer_status = 'Deactive' THEN 1 END)    AS my_total_npr_d
    FROM      got_o_num
    GROUP BY  ancestor_id
    --select o_num from dummy
    SELECT      LPAD ( ' '
               , 2 * (MIN (max_lvl) - 1)
               )  || ancestor_id                AS level_label
    ,      MIN (max_lvl)                      AS "Level"
    ,      MIN (cycle)                        AS "Cycle"
    ,      ancestor_id                        AS account_id        -- *****  NEW  *****
    ,      MIN (paying_account_id)                     AS paying_account
    ,      MIN (parent_account_id)                AS parent_account_id    -- *****  NEW  *****
    ,    dummy.my_total_pr_a
    ,    CONNECT_BY_ROOT dummy.my_total_pr_a        AS total_pr_a
    ,    dummy.my_total_npr_a
    ,    CONNECT_BY_ROOT dummy.my_total_npr_a        AS total_npr_a
    ,    dummy.my_total_pr_d
    ,    CONNECT_BY_ROOT dummy.my_total_pr_d        AS total_pr_d
    ,    dummy.my_total_npr_d
    ,    CONNECT_BY_ROOT dummy.my_total_npr_d        AS total_npr_d
    FROM      dummy
    GROUP BY ancestor_id
    ORDER BY  MIN (o_num)

  • How to calculate key figure before aggregation for complex formular?

    Hi, buddies
    <b>Here's the simplified senario</b>:
    I have a cube, in which the characteristics are 'Calendar Day' and 'Hour' (values are 01~24), and the key figures are stored by day and by hour.
    What I need is very simple, a query to display calculated key figures only by Calendar Day. I don't need Hour information.
    So I create a query: column charact is Calendar Day, rows are several calculated key figures.
    <b>Now the problem is that</b>:
    if I don't put 'Hour' as row in the query, I'll get WRONG result. But if I put 'Hour' as row in the query, I'll get CORRECT result, but all the 'Hour' details will display, which should be hided.
    <b>I know the reason is that</b>:
    the calculated key figure that I create should be calucated before aggregation, not after. But since the formular is pretty complex, I can't change the 'Time of Aggregation Calculation' in key figure's property. (It's greyed out.) So I have to put 'Hour' as row in the query to force calcuation 'before aggregation' in query and set the property 'Calculate Result As...' as 'Summary'.
    <b>My question</b> is:
    whether there's any other way to force calcuation 'before aggregation', so I don't have to put 'Hour' in the query.
    If no, is there a simple way to hide the 'Hour' details and only display summary result ON THE QUERY LEVEL? (
    <i>I can hide detail lines by using web template, or maybe using VB in excel. But I can't use either of them. I want to hide the details on the QUERY LEVEL. So I can use the query directly in any other reporting tools, like Visual Composer.</i>)
    Any idea?
    Wei

    Hi, Sudeepta
    Thanks for your reply.
    I did try to set 'No display' for 'Hour'. The result is that the Characteristics 'Hour' doesn't appear on the query result, but the detailed line of key figures still display on the result. It looks like the followings: (I put summaries on the top/right)
    Date  1/1  1/2  Overall result
    KPI1    10        11   22  (sum line)
    KPI2    20        21   41  (sum line)
    KPI1    12        13   25  (detailed line)
    KPI2    13        13   26  (detailed line)
    KPI1    11        12   23  (detailed line)
    KPI2    12        12   24  (detailed line)
    I want to suppress all the detailed lines and leave sum lines on the result.

  • Time of calculation before aggregation is obsolete

    Hi Gurus,
    I have this message when i try to ejecute my query, can anyone help me to resolve this problem, i have the SAP 7.0 EHP 1, and i just have the upgrade from SAP 3.5.
    I have a lot of CKF's in my queries and all of those use BEFORE AGGREGATION option, when i put in the propietries of my CKF the option after aggregation and then i check my query i have a message "time of calculation before aggregation is obsolete", and then when i put the option before aggregation in my CKF i have the message "CALLATE = 0 is not allowed".
    I hope that someone have the same issue and can help me with this.
    note: i'm using the BEX 3.5 and the BW 7.01 because the client wants that.
    tnks
    regards
    Odiseo
    Edited by: Odiseo BW on Oct 18, 2010 7:46 PM

    hmmm... how about checking the differences between 3.X & 7.X???
    before aggregation is no longer possible in 7.X, hence the error messages

  • Enabling Create New Query and Personalize in Check Status

    Hi All,
    We followed below steps Enable Create New Query and Personalize in Check Status
    Go to the role of the user - PFCG - Authorizations - Change authorization data - Cross-application authorization objects - authorizations for Personal Object Work List (POWL) iViews
    Specified the application ID POWL_APPID - SAPSRM_E_CHECKSTATUS
    What should be done to enable define query and personalize for all users.
    We have changed the following settings -
    In activity POWL_CAT - '??' , POWL_LSEL-DISALLOWED - POWL_QUERY - ?? , POWL_RA_AL - ?? , POWL_TABLE - ??.
    With our current settings Create New Query and Personalize in Check Status appear but are disabled (greyed out)
    New Query Button appears but clicking on it produces no output.
    Nikhil
    Edited by: Nikhil Malvankar on Sep 12, 2011 5:57 AM

    You could the following to check if the Query still exists in the database:
    Open SQL Management Studio and connect to the SQL Server hosting the ConfigMgr database
    In SQL Managemnt Studio, Expand Database, Expand CM_YourSiteCode
    Expand tables and find the dbo.Queries table
    Right-click the dbo.Queries table and select Select Top 1000 Rows
    See if you can find your "ghost" Query
    Please note - it IS NOT supported
    to make direct changes to ConfigMgr database so I would properly call PSS on this one before you start getting creative.

  • Passing of old and new trigger details to a generic function or procedure

    Hi all.
    I have a requirement to pass all the new and old column information from a database trigger ( for the purposes of this discussion, it will be a before row, insert, update and delete trigger) to a procedure/function ( either is fine).
    My first thought was to create a separate routine for each table I wish to implement this in, which has a new and old input parameter for every column, however I realised I needed a solution where the called routine needs to be generic (because we'll let other developers call the same routine and we dont want them to have to create their own version for their table).
    This presents a problem as every table I wish to implement this on could have a completely different amount of columns (and dataypes). The called routine will operate under a pragma autnonmous_transaction (as it will be performing commits) so I need to pass all the fields across in one go.
    Another idea I had was to create an type object with (potentially) 300 generic fields that I assign the values to and pass that as a parameter, however I could never know before hand what datatypes are needed, CLOBS, DATE, VARCHAR, etc...
    Does anyone have any ideas on how I can accomplish this with a generic routine?
    Regards,
    Greg.

    Greg wrote:
    I hadn't heard of the ANYDATA type, I'll have a lookThe Data Cartridge Developer's Guide has all the details - http://docs.oracle.com/cd/E11882_01/appdev.112/e10765/toc.htm
    Here's a link that has some simple examples just for ANYDATA - http://orafaq.com/node/1853
    TOOLKIT ALERT - Here is a classic link you will want to keep - How to pipeline a function with a dynamic number of columns?
    I asked in another thread if they could create a locked TOOLKIT thread (like report abuse here - a global one for mods only) to put these nuggets in one place.
    see ascheffer's responses where he shows how to create a pipelined function that call return a result set with a different (dnynamic) number of columns for different calls! It uses functionality in the
    ANYTYPE - metadata
    ANYDATA - data with metadata
    ANYRESULTSET - A resultset where every column is of type ANYDATA - meaning whatever you define it to be.
    Rough overview - The cartridge exposes some interface functions (3-5 are typically needed) that you implement in a procedure. See scheffer post for his procedure:
      static function ODCITableDescribe( rtype out anytype, p_parm in varchar2, p_rows_req in number := 2 )
      return number,
      static function ODCITablePrepare( sctx out NColPipe, ti in sys.ODCITabFuncInfo, p_parm in varchar2, p_rows_req in number := 2 )
      return number,
      static function ODCITableStart( sctx in out NColPipe, p_parm in varchar2, p_rows_req in number := 2 )
      return number,
      member function ODCITableFetch( self in out NColPipe, nrows in number, outset out anydataset )
      return number,
      member function ODCITableClose( self in NColPipe )The TableDescribe does just what it's name says.
    Oracle calls these functions to get the metadata about your custom types, to describe and return result sets.
    Are you familiar with VARIANTs that are used in COM programming? A variant is a 16 byte object (record) type. 2 bytes contain the 'type' of the variant (int, char, etc) and other bytes contain data of that 'type'. It is a generic container that can hold any type of data.
    The ANYTYPE, ANYDATA and ANYRESULTSET are roughly analogous to that.

  • Diff between Calculated key figure and new formula 6extra functions why

    Hi Friends
                  In BEx query designer we have Restricted key figure & Calculated key figure. In the case of Ristricted Key figure And new selection the difference is Global and local.
    But if we come to Calculated Key figure and New Formula the difference is same global and local. But in New formula we have 6 extra function. My question is does is there any certain reason for this or SAP AG not be able to develop those functions
    Thganks & Regards
    Bramhanand

    Hi Surendra thank you for your reply.
    But i am not asking difference between calculated key figure and New formula.
    What i am asking is in the case of Restricted Key figure And new selection the difference is Global and local.
    But in Calculated Key figure and New Formula the difference is same global and local and in New formula we have 6 extra function. My question is does is there any certain reason for this.Why not SAP AG is not included the new formula functions in Calculated key figure.
    Thanks & Regards
    Bramhanand

  • There are way too many photos on my internal hard drive. I have older libraries, and newer libraires in iPhoto and Aperture 2.  What is the best way to find and reduce the number of duplicate photos/libraries  before upgrading to Aperture 3?

    There are way too many photos on my internal hard drive. I have older libraries, and newer libraires in iPhoto and Aperture 2.  What is the best way to find and reduce the number of duplicate photos/libraries  before upgrading to Aperture 3?

    Sharon-
    Good idea.
    Back up first.
    I would probably wait for the merge function of the latest version before merging. Be sure to verify every merge.
    Merge Libraries, then from within Aperture move images to referenced on external hard drives.
    HTH
    -Allen

  • Function Module to Execute BEx Query and Save as work book.

    Hi
    I have a requirement for executing the Query after the data is loaded into the cube and save as Workbook and emailing to the user. Is there any Function module to Execute the Query and saving as Work book? . Please suggest me the way how to approach the problem.
    Thanks for your help in advance.

    Hi,
    It is possible to execute the Query and send the result as workbook vial email to the user.
    For that use should use Information Broadcaster.
    Steps:
    1. Goto information broadcaster.
    2. Choose object type as "Query"
    3.Click create new setting.
    4. Give description and choose distribution type as "Broadcast E-mail"
    5.Choose output format "XML(MS Excel)
    6.In recipient tab Give valid e-mail addres which you want to send.
    7.Save it. and give technical name
    8.Click schedule.
    9.choose "Execution with Data Change in the InfoProvider " correspondig infoprovider will be shown (check the check box)
    10. that's it. whenever data loaded in your infocube, it will be automatically executed and send to user mail.
    <removed> if u want more information let me know.
    Regards,
    Senthil Kumar.P

  • Editing new function ID and disabling function ID and risk ID

    Can some one let me know the procedure to mark some function ID,risk ID disabled and edit some of the function ID.
    also want to edit rule set
    Regards,
    shr

    Hi,
    Do you want to customize the Ruleset from Global Ruleset? Please follow the below steps
    1. If you want change the Risk priority (low -> high or High -> medium) based on the client requirements. First filter the all risks id with corresponding Business process.
    For Exp: Finance business owners want to change risk priorities and create the New Function ids, new Risk ids. Then first go the Rule architect--> Risks->search->give all required fields (Ruleset and business process etc) then you can get the all finance risk ids with function combinations. Then you can disable some risk ids and create risk ids & Functions as well as.
    If we want to create Risk ids, first you need to define the conflict Functions with Actions.
    For exp: F027* Needs to be created.
                   The above Risk id is combination of two functions like FI09 & FI08. The two functions ids contained list of conflict actions. So that before create the Risk id, you need to create function with conflict actions and finally update changes in the rule set.
    If you do any changes in RAR Ruleset, you need to run the Full batch Risk analysis gain against the ABAP system for the accurate.
    Regards,
    Arjuna.

  • No power after turning off and plugging into a new functioning outlet.

    No power after turning off and plugging into a new functioning outlet

    Perhaps corruption of the Energy Saver settings...
    Reset the PRAM cannot hurt.
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    Excerpt from http://support.apple.com/kb/ht1379

  • HT4098 I have a subscription to The Telegraph which I purchased before changing my email and apple ID.  How can I get iTunes to transfer this purchase and put it under my new apple ID?

    have a subscription to The Telegraph which I purchased before changing my email and apple ID.  How can I get iTunes to change it to current ID

    Did you create a NEW Apple ID or did you change the email address for your OLD Apple ID? This will affect how you update apps in the future.
    Anyway, go to Settings/iTunes&App Stores, log out, then log in with the new ID.

  • HT2518 How do you reset the password on a migrated user account? Mac wants the old password putting in before we can set a new password and the old password won't work.  How do we get around this?

    Used Migraton Assist to transfer data from old Dell PC onto new Macbook Pro.  Data has come across but cannota access the User Account from the Dell.  It is displayed on the desktop of the Mac but is requesting and new password.  Before we can reset the password we have to put in the old password.  We have put in the old password but it doesn't work and therefore we can't reset the password and get into the User Account. 
    How do we get around this problem so that we can access the User Account.
    Although the data has transferred we cannot see our contacts transferred from Outlook into Mail.  We are wondering if they are contained within our User Account, but can't find out until we can access the it?
    Help wold be much appreciated.
    Pensos

    Hello:
    Hopefully this will help you:
    http://support.apple.com/kb/PH4117
    Barry

  • HT4527 My ipod died and my computer is old, so I bought a new one of each. I want to transfer my music from my old computer to the new one before I set up the new Ipod. how do I do this?

    My ipod died and my computer is old, so I bought a new one of each. I want to transfer my music from my old computer to the new one before I set up the new Ipod. how do I do this?

    Go back to the article you asked this question from and pick the option which is the best in your situation.
    (93470)

Maybe you are looking for

  • Unable to edit boilerplate text in layout

    After a recent dev 1.6.1 upgrade, I am unable to edit boilerplate text in the layout editor- my OS - solaris 2.8 reports version : 2.5.7.17.0 DB version : 7.3.4.4.0 It works with Solaris 7. Your help is appreciated.

  • Error while opening Excel file sent through attachment in email in sap

    Hi All, I have implemented sending email with excel attachment in SAP. Email is sent successfully with attachment but when i tried to open it i get first error dialog like " file is not in recognizable format" but after that if i click ok then file g

  • Is there anyway to create a template that has automatic page numbering

    We have a template that we have to create, each page on the template has to have a page number.  We do a lot of edits and the pages change for example the page may start out as page 1 and after editing it is page 10.  Are there any codes I could use

  • IMessage and Facetime Not Activiating!

    I have bought a new iPhone 4s a couple of weeks ago; Facetime and iMessageworked for a couple of days then stopped. I've been trying to activate them fordays but I can't. I've read tens of posts in here and on other discussion boards and I havetried

  • Oracle Database Sizing

    I'm looking for a source of information regardind Oracle database sizing. Does anyone can help me? Thank you. null