zoukankan      html  css  js  c++  java
  • SAP BW: Replacement Path Variables

    How to use Replacement Path Variables to perform Date Calculations

    A Step-by-Step guide

    Have you ever wanted to perform calculations using dates defined as characteristics but have never worked out how it can be done? Replacement Path Variables are the key.

    Using Replacement Path in your Text and Formula variables, replace values held in a characteristic. The Characteristic value variables are replaced by the results of a query at run-time.

    The steps detailed below show a technique to enable a BEx query user to determine the number of days between two dates.

    Scenario:
    The group HR administrator wants a detailed line item report that lists all employee absences in a given period. The report is to show the employee number, the absence start date, together with the end date of the absence and show the number of calendar days the employee was absent.

    The good thing about using this technique is that no redesign work is needed from your technical BW team, no ABAP is involved and best of all, it quick and easy.

    Solution:
    For this example I created an ODS object called Absence that holds basic employee information along with individual absence record data.

    Follow the steps below:

    1. Open the BEx Query Designer and create a new report on your chosen InfoProvider.
    2. Drag the Employee, Valid from and Valid to characteristics into the Rows section of the screen. If needed, apply data selection restrictions to the characteristics as shown in Figure 1.
    3. Right click on the Key Figures structure and select New Formula (Figure 1).

       Figure 1
    4. In the new formula window right click on Formula Variable and choose New Variable Figure 2 ).

       Figure 2
    5. The Variables Wizard will launch and will require you to specify the variable details. 
      ( Click the NEXT button if the Introduction screen appears )
    6. Enter the variable details on the General Information as shown in Figure 3 
      Enter the Variable Name , Description and select Replacement Path in the Processing by field. 
      Click the Next Button.

       Figure 3
    7. In the Characteristic screen (Figure 4) select the date characteristic that represents the first date to use in the calculation (From Date).
      Click the Next Button.

       Figure 4
    8. In the Replacement Path screen (Figure 5) select Key in the Replace Variable with field. Leave all the other options as they are (The offset values will be set automatically).
      Click the Next Button.

       Figure 5
    9. In the Currencies and Units screen (Figure 6) select Date as the Dimension ID.
      Click the Next button.

       Figure 6
    10. The Save Variable screen (Figure 7) displays a summary of the new variable.
      Click on the Finish button to save the variable.

       Figure 7
    11. Repeat steps 4 to 11 to create a second variable for the second date to be used in the calculation. In the example shown, the characteristic 0DATETO is used to create the variable ABSEND (Absence End Date).

    Define the Calculation

    We can now use our two new replacement variables to define our new calculated key figure that generates the number of absence days for each record.

    1. You will now be back at the New Formula screen (Figure 8). Drag and drop the two new variables into the formula section of the screen and insert the subtract sign (“-“) between the two.
    2. Give the new formula a description and click the formula syntax check button  to ensure the formula is valid.

       Figure 8
    3. The new calculated key figure will now show in the columns section of the BEx query designer (Figure 9).

      Figure 9
    4. Save the query and execute it.

    In the example shown the Number of Calendar Days Absent is calculated correctly. See the table of results below.

    EmployeeValid FromValid ToNumber of Calendar 
    Days Absent
    50000001 17/04/2004 21/04/2004 4
    50000002 16/07/2004 29/09/2004 13
    50000003 07/01/2004 09/02/2004 33
    50000004 04/08/2004 05/08/2004 1

  • 相关阅读:
    我不想安于当前的限度,以达到所谓的幸福,回顾下2020年的我
    CentOS 7 搭建 TinyProxy 代理 &&python 脚本访问
    使用国内源来安装pytorch速度很快
    opencv-python的格式转换 RGB与BGR互转
    自签SSL证书以及https的双向认证 实现nginx双向代理
    springboot使用 @EnableScheduling、@Scheduled开启定时任务
    微信下载对账单
    SpringBoot 中定时执行注解(@Scheduled、@EnableScheduling)
    使用idea合并 dev分支合并到test分支
    .Net Core + Entity Framework 调用Oracle 存储过程
  • 原文地址:https://www.cnblogs.com/hanmos/p/3442674.html
Copyright © 2011-2022 走看看