How to add three columns under a column of Column Structure in BEx Query ??

Hi all,
    I have created a Structure for Taxes (with 10 rows) under Rows and another Structure for Company under Columns and it has 3 columns like Company A, B & C. Now I want to have three columns (Actual, Forecast & Total) under each company A, B & C. It means it will have 9 columns under these 3 companies.
  The ACTUAL should calculated as:
          Version = 100 and
          Months = Plan Begin Month - 1.
  If the Plan Begin Month is 4 (April) then ACTUAL should be calculated for first 3 (4 - 1) months only.
   The FORECAST should calculated as:
          Version = 699 and
          Months = From 4 (April) to 12 (December).
   'Plan Begin Month' will be entered on the selection screen.
   How can I design this query, PLEASE ?
    Thanks in advance.
Regards,
Venkat.

Hi Ravi,
    Thanks for your quick response.
    The ACTUAL should calculated as:
          Version = 100 and
          Months = Plan Begin Month - 1.
          If the Plan Begin Month is 4 (April) then ACTUAL should be calculated for first 3 (4 - 1) months only.
   The FORECAST should calculated as:
          Version = 699 and
          Months = From 4 (April) to 12 (December).
      I am unable to create the Restricted Key Figure with Version.
     How can I design it, PLEASE ?
Thanks,
Venkat.

Similar Messages

  • How to add a default value in a site column for every item in a document library

    HI
    i created a content type with some site columns ,
    and included in a Document library.
    Process ( content type)
    -ProcessNo
    -ProcessName
    after that i uploaded 100 Documents but not  added value in a site column process name.
    now  how i add a default value in a site column for every document in a document library 
    adil

    HI
    i get below error when i change the script 
    PS C:\scripts> C:\Scripts\updatedefaultvalue.ps1
    Cannot index into a null array.
    At C:\Scripts\updatedefaultvalue.ps1:8 char:7
    + IF($i[ <<<< "Title"] -eq $null)
        + CategoryInfo          : InvalidOperation: (Title:String) [], RuntimeExce
       ption
        + FullyQualifiedErrorId : NullArray
    $web = Get-SPWeb http://tspmcwfe:89/
    $list = $web.Lists["test"]
    $item = $list.Items | Where { $_["Name"] -eq "Emc" }
    foreach($i in $items)
    IF($i["Title"] -eq $null)
             $i["Title"] = "test"
           $i.Update()
    adil
    Why are you piping a where in the items? Do you only want to add the "test" to ones matching
    a name?
    If you have ISE installed on your server I recommend you put your code in there and debug it. 
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

  • How to add three views in MM01

    How to add three custom views in MM01 based on material type.
    Regards,
    Malla

    hi,
    This will solve your problem.
    [https://forums.sdn.sap.com/click.jspa?searchID=19403068&messageID=5708251]

  • How to add docentry with some num.?can you solve below query   Declare @a as Numeric SET @a=14900000; SELECT (@a+($[@MAINTDCHEAD.DocEntry])as 'series no'

    how to add docentry with some num.?
    can you solve below query
    Declare @a as Numeric
    SET @a=14900000;
    SELECT (@a+($[@MAINTDCHEAD.DocEntry])as 'series no'

    Hi,
    Yes possible.
    Try this:
    Declare @a as INT
    SET @a=14900000;
    SELECT (@a+($[ORDR.DocEntry]))
    Thanks & Regards,
    Nagarajan

  • How to add a "custom" link to a report column

    I have a "Tasks" report that is based on a view. the view is a union of 2 tables: "Project tasks" and "Non-project tasks", each one of them has its own form to enter the data.
    I need to add a link from my report to to either form of the mentioned tables. So, if the task is project related, it should go to the "Projects Task" form, but if the task is no related to projects, the link should point to the second form.
    How can I accomplish that in Apex 4.0 ?
    Thanks

    The view has a column for project name, if it was a non-project task, the column is defaulted to "Non-Project"Add another column to the report query (or to the view if it's a Wizard report), based on that column:
    case project_name
      when 'Non-Project' then '201' /* Page ID of non-project task form */
      else '202' /* Page ID of project task form */
    end form_page
    ...Then add a link to the required report column as described above by Alan, setting the target Page attribute to <tt>#FORM_PAGE#</tt>, the Name attribute of the task ID parameter to <tt>P#FORM_PAGE#_TASK_ID</tt> (the form pages will need to take task ID parameters following this naming convention), and the Value attribute to the task ID column from the view.

  • How to add time informatio​n to the first column of spreadshee​t file?

    hi all.
    how to add time information to the first column of spreadsheet file?illustrated in the figure below。
    Solved!
    Go to Solution.

    You need to take the time data and convert it to double.  But Excel data is based on days since 1/1/1900 while LabVIEW data is based on seconds since 1/1/1904.
    Take a look at this thread for an example I posted on how to make the conversion.
    One other possibility is to convert your numeric data to a string, and build on an array of time that is also a string version of the timestamp.  Then write your 2-D string array to the Write to Spreadsheet file.

  • How to add 'profit center'  under documents of dynamic selections in FBL5N

    Dear Friends,
    In fbl1n (vendor line item display) if i choose dynamic selection ..left side of the window consists of fields....under document ...'profit center' is there....
    In fbl5n(customer line item display) for the same ,profit center is not there.....!!!
    How to add 'profit center' into the available list in FBL5N
    Regards,
    Madhu..!!!

    Hi,
    Do Ctrl + f8 (Change layout).  In it u have profit center for FBL5n
    Pls. assign points, if useful
    Regards,
    Sridevi

  • How to add three values together?

    Hi,
    I'm working on a program which is supposed to be able to add three numbers together like this: (notice that the program asks for three numbers. these three numbers are the ones to be added up, see below)
    Enter number one:
    *5*
    Enter number two:
    *10*
    Enter number three:
    *15*
    What i want the program to do is to add these three numbers together and print THE SUM (30) not the three numbers. This is how the code which I use to print out the values looks now:
    System.out.println("the sum of the numbers is" + (num1) + (num2[i]) + (num3[i]) + "hours");
    What the programs does is that instead of printing the sum (30), it prints: 51015 (thus, the typed numbers, side by side...).
    What can i do to make the program print the sum of the three numbers and not the three numbers itself. Thanks in advance..
    Edited by: mikk3l on Sep 16, 2007 6:03 AM

    thx for the tip, still doesn't work though. This is how it looks:
    First part, declaring variables:_
    String aname;
             int i = 0;
             String[] name;
             name=new String[3];
             String[] aa;
                  aa= new String[3];
                  String[] ab;
                  ab=new String [3];
                  String [] ac;
                  ac=new String[3]; and here is the second part where the program is supposed to print the sum of aa, ab and ac:
    System.out.println(aname + " has totally " + ((aa)+(ab[i])+(ac[i])) + " hours");
    Please let me know if there's any other part of the code you need.*

  • How to add a link under quick launch using custom actions?

    http://msdn.microsoft.com/en-us/library/office/bb802730(v=office.15).aspx
    Custom actions allow us to create feature to add a link under site settings, site actions menu and even central admin.
     Is there any way we can extend this feature to allow links being added under quick launch? I tried providing location Microsft.SharePoint.Navigation but that had no effect

    hi
    you don't need to use custom actions in order to add links to the quick launch menu. It allows to add links programmatically to the menu items collections directly, see e.g.
    Adding Links to Quick Launch. From this link check the following example which adds an item under the Lists heading in Quick Launch.:
    using System;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Navigation;
    namespace ConsoleApp
    class Program
    static void Main(string[] args)
    using (SPSite site = new SPSite("http://localhost"))
    using (SPWeb web = site.OpenWeb())
    // Get the Links list or create it if it does not exist.
    SPList list = web.Lists.TryGetList("Links");
    if (list == null || list.BaseTemplate != SPListTemplateType.Links)
    // Create the list.
    Guid listId = web.Lists.Add("Links", "Interesting hyperlinks", SPListTemplateType.Links);
    list = web.Lists.GetList(listId, false);
    // Check for an existing link to the list.
    SPNavigationNode listNode = web.Navigation.GetNodeByUrl(list.DefaultViewUrl);
    // No link, so create one.
    if (listNode == null)
    // Create the node.
    listNode = new SPNavigationNode(list.Title, list.DefaultViewUrl);
    // Add it to Quick Launch.
    listNode = web.Navigation.AddToQuickLaunch(listNode, SPQuickLaunchHeading.Lists);
    Console.Write("\nPress ENTER to continue....");
    Console.ReadLine();
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • How to add three buttons to a Dialog Page?

    Hi,
    I have a requirement where in i need to add three buttons yes , no, cancel on the dialog page.
    But in the examples specified in OAF guide it has only two buttons.
    I m in urgent requirement of this.
    Could anyone help me in this regards?
    Thanks,
    Mandar

    It is not a supported feature. Check the constructor of OADialogPage and it supports a max of only 2 button urls.
    OADialogPage(byte messageType, OAException descriptionMessage, OAException instructionMessage, String okButtonUrl, String noButtonUrl)
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to add three signals in multisim to make a resultant

    Hello,
    I want to add three signals say of 1)60hz 2V 2)3hz 20mv 4)DC of 4V to get a resultant.
    Can someone help me with this.
    Thanks in Advance.

    Connect voltage sources in series.
    Lynn

  • How to add Multiple XML Tags for a single column for an RDF

    Hi Gurus,
    I have Requirement in the Oracle D2k Report from which we are generating the xml tags.
    My Requirement is in a table i have 2 columns say A and B.
    i am able to generate three xml tags separately using the report builder by clicking on the column name and in the xml setting giving the xml tag.
    eg: table Acount contains 2 columns A and B with respective data
    A B
    QT 1
    QTS 0
    QTR 2
    i am able to general xml tags like this
    <ACount>
    <AStatus>QT</AStatus>
    <HeadCount>1</HeadCount>
    </ACount>
    <ACount>
    <AStatus>QTS</AStatus>
    <HeadCount>0</HeadCount>
    </ACount>
    my requiremnt for the xml tags is
    <ACount>
    <AStatusQT>1</AStatusQT>
    <AStatusQTS>0</AStatusQTS>
    </ACount>
    kindly help me out how to achieve this requirment in the rdf file mulitple xml tags.
    all your input are most valuable to me, thanks in advance
    Edited by: 909577 on Apr 9, 2012 3:10 PM

    I'm sorry for being so dense, but I'm not quite following, although what I've tried makes me think if I can follow you, it will work :)
    To answer your initial questions, you are correct with both your assumptions:
    1) detailType is the parameter that specificies YTD/Weekly, this is a "report defined" parameter that I am using to determine which Row Group to display (either YTD or Weekly)
    2) SchoolDaysActiveWeek is the parameter that is being set to either true or false -- this is a field in the cube that states whether that record is for the current week or not
    So in following your instructions, well that's the problem I'm not quite following :)
    1) When you say Delete the SchoolDaysActiveWeek parameter from the report only, do you mean to mark the parameter as Hidden?  If so, I've done this.
    2) I'm not quite sure where to use the statement you provided me.  You said to put it in the dataset, but I don't know which dataset.  I assume you mean the "main" dataset (as opposed to the hidden dataset that gets generated when you mark a field
    as a parameter).  If this is the case, the only place I could see that would allow you to use such a statement is in the Filter section of the properties.  I tried this, and it did not generate any errors, but it also kept my report groups from displaying
    -- it just showed a blank report, so I think it probably wasn't bringing back any rows to populate them with.
    I also tried going into the Expression section for the SchoolDaysActiveWeek parameter in the second screenshot and placing the statement there.  When I did this and ran the report, I would get the following error:
    The 'SchoolDaysActiveWeek' parameter is missing a value
    So what am I missing!? 
    Also, thanks for taking the time to respond!!

  • To know how to add the elements present in the particular column

    I have created the ALV report with two columns namely vbeln and ntgew.In that i want to add the values of ntgew column.plz provide the query to do that.
    Edited by: Philip Eller on Jun 18, 2008 9:12 AM

    hi vivek,
    You posted the question in wrong forum.
    There is a forum seperately for ABAP.
    Jeyakanthan

  • How to add a profile under 802.1x in the Network Preferences ?

    Mountain Lion doesn't have a + button in the tab to add a profile ?
    How should I go about adding the same ?
    Thanks

    There is no out of the box configuration available to add columns to NPD action items.   As always we welcome enhancement requests. 
    Thanks
    Kelly

  • How to add a link under "you can also" in UWL

    Hi Experts,
      There is an UWL inbox in portal.  some tasks are receiving from FI (Financials) under "Subject".  If I select the task, it is displaying some details about that task with approve, reject,..... buttons. and in the right side, under "you can also:", View history link is there by default.  If i want to add/display a new link under this, where can i make the changes?
    If i see this in backend, that link is displaying.  whereas in portal, that link is not appearing.
    so where i have to configure that link in portal?
    pls send ur replies very urgent issue.  i read documents. but i did not find solution for this
    regards,
    Vila.

    Hi,
    Can you help me? How did you resolve this? I also have the same requirement.

Maybe you are looking for

  • I need to totally format my macbook pro 13" mid 2009, can i use my friend's macbook pro 13's dvds?

    my macbook pro 13 is originally shipped with mac os x 10.5.7, now with 10.6.8, but i dont have the dvds with me, i also dont want any of the information on it, can i use my friend's macbook pro 13's dvds? what can i do? My macbook pro 13" dvds have t

  • Can we achieve SSO in the SAP Portal without a third party tool

    Can we achieve SSO in the SAP Portal without a third party such as Netegrity?

  • Need to add part number in MRR database

    Hello All, Need to add next part number: 256827 (PARTICION 1.4512+2B) as SAP Source in database Database name is Tenneco MRR 2.0 on TALAKDB1 Supplier is Tenneco Edenkoben (vendor number is 1234 and it's internal) Receiveing plant is ABC.. How to solv

  • IDisk Sync Errors

    Since installing Snow Leopard, I have two types of iDisk Sync Errors: 1) It says a file was modified on Mobile Me and also modified on My Computer. This is simply untrue. I never use Mobile Me. 2) It says the file cannot be synced because it is "in u

  • Email notification after changing SC fields

    Hi! I have a problem with SC e-mail notification. When approver make changes in shopping cart fields mail should go to Requestor. If approver is making a change in Quantity or currency then e-mail notification is going to Requestor  but if he is maki