BW Modelisation: Number of ticket by product, family, ....

Presentation of existing :
In our model, we will have 1 DSO with ticket information: CalDay, Ticket ID and Product
A product is lowest level of hierarchy composed of following nodes :
u2022     Sector
u2022     Module
u2022     Family
We want create a report which display how many tickets are linked with each level node.
Example:
DSO Data:
CalDay | Ticket | 0MATERIAL | Family | Module | Sector
Day 1   | 1       | 581923    | 14     | 1      | 3
Day 1   | 1       | 529940    | 14     | 1      | 3
Day 1   | 1       | 529939    | 88     | 2      | 3
Day 1   | 2       | 529939    | 88     | 2      | 3
Day 1   | 3       | 581923    | 14     | 1      | 3
Day 1   | 3       | 529940    | 14     | 1      | 3
Day 1   | 4       | 529940    | 14     | 1      | 3
Day 2   | 11     | 529940    | 14     | 1      | 3
Reporting example (criteria selection : Calday = Day 1):
Report 1 :
Product   |   Number of tickets
581923   |  2
529940   |  3
529939   |  2
Report 2:
Family   |    Number of tickets
14         |   3
88         |  2
Report 3:
Module   |    Number of tickets
1            |  3
2            |  4
Report 4 :
Sector   |    Number of tickets
3            |  4
Constraints:
u2022     Hierarchy can be changed every day (refresh indicator require)
u2022     High volumetric of Ticket information (Daily full update not possible)
u2022     Ticket information available in DSO will not be loaded into cube (no reporting at ticket level required).
Could you please help me to desing this in BW?
Regards,

Closed

Similar Messages

  • Time Ticket for Production Order

    Hi All...
    I was entered Time Ticket for Production Order. Am I enter Time Ticket for Production Order with same confirmaton number?? Please help....
    Best Regard,
    Dwi

    Hi,
    Your question is not clear,Pls clarify
    If you are talking about CO1V
    then you dont need to take this much pain you click on "Other view" then you can see order field here you can enter the Order no rather than searching for confirmation nos
    Revert if you have further query
    Regards,
    SVP
    Edited by: SVP on May 9, 2008 11:03 AM

  • IPC Pricing routine for Product Family Margin in Quotation is not working

    Hi,
    I am working on the IPC Pricing Routine to calculate Item's Product Family Margin in the Quotation. 
    Process followed:
    Step 1:  Created a Group condition ZPFM for Product Family Margin and assigned to the pricing procedure. 
    Step 2:  Created a Value Routine to determine ZPFM's Condition Rate and Condition Value.
    Logic: 
              1.  Collect (Sum Of)  the Cost (ZSVC) and the Subtotal 3 of the items which are in same Material Group.
               2.  Assign the ZPFM Condition Value = Sum of Subtotal 3 - Cost.
    Issue:  The condition value for ZPFM is calculating correct for all line items except the last item.  I am getting some junk value always to the last item. If I delete the last time, again next last item is giving wrong value.  The calculation value in the routine debugging log (SM53) is showing correct value.  However, assigning the wrong value.  No other routines have been assigned to this condition type in the pricing procedure. 
    Routine Code:
    package stanley.pricing.userexits.val;
    import java.math.BigDecimal;
    import com.sap.spe.pricing.customizing.PricingCustomizingConstants;
    import com.sap.spe.pricing.transactiondata.PricingTransactiondataConstants;
    import com.sap.spe.pricing.transactiondata.userexit.IPricingConditionUserExit;
    import com.sap.spe.pricing.transactiondata.userexit.IPricingItemUserExit;
    import com.sap.spe.base.logging.UserexitLogger;
    import com.sap.spe.pricing.transactiondata.userexit.ValueFormulaAdapter;
    //import com.sap.spe.pricing.transactiondata.userexit.IPricingCondition;
    public class Z_CondValueRoutine730 extends  ValueFormulaAdapter{
       private static UserexitLogger uelogger =
              new UserexitLogger(Z_CondValueRoutine730.class);
      public BigDecimal overwriteConditionValue(IPricingItemUserExit pricingItem,
             IPricingConditionUserExit pricingCondition) {
      // Variable Declarations.
      BigDecimal conditionValueZCVC=PricingTransactiondataConstants.ZERO;
      BigDecimal conditionValueZCVCAccrual=PricingTransactiondataConstants.ZERO;
      BigDecimal subTotal3=PricingTransactiondataConstants.ZERO;
      BigDecimal subTotal3Accrual=PricingTransactiondataConstants.ZERO;
      if(pricingCondition.getConditionTypeName().equalsIgnoreCase("ZPFM")){
                IPricingItemUserExit[] prItems;
                prItems = pricingItem.getUserExitDocument().getUserExitItems();
                String materialGroup = pricingItem.getAttributeValue("MATL_GRP");
                uelogger.writeLogDebug("  Material Group  :"+materialGroup);
                for (int i=0;i<prItems.length;i++){
                     String materialGroup1 = prItems[i].getAttributeValue("MATL_GRP");
                     if (materialGroup1.equalsIgnoreCase(materialGroup)){
                          subTotal3 = prItems[i].getSubtotal(PricingCustomizingConstants.ConditionSubtotal.SUBTOTAL_3).getValue();
                          subTotal3Accrual = subTotal3Accrual.add(subTotal3);
                          IPricingConditionUserExit[] conditionsForCumulation = prItems[i].getUserExitConditions();
                          for (int j = 0; j < conditionsForCumulation.length; j++) {
                               if(conditionsForCumulation[j].getConditionTypeName()==null) {
                                   continue;
                               else if ( conditionsForCumulation[j].getConditionTypeName().equalsIgnoreCase("ZCVC")){
                                    conditionValueZCVC = conditionsForCumulation[j].getConditionValue().getValue();
                                    conditionValueZCVCAccrual = conditionValueZCVCAccrual.add(conditionValueZCVC);
                BigDecimal conditionValueZPFM=PricingTransactiondataConstants.ZERO;
                conditionValueZPFM = subTotal3Accrual.subtract(conditionValueZCVCAccrual);
               BigDecimal conditionRateZPFM=PricingTransactiondataConstants.ZERO;
               conditionRateZPFM = conditionValueZPFM.multiply(new BigDecimal ("100"));
              conditionRateZPFM = conditionRateZPFM.divide(subTotal3Accrual,7,BigDecimal.ROUND_FLOOR);
             uelogger.writeLogDebug(subTotal3Accrual+"-"+conditionValueZCVCAccrual+" = "+conditionValueZPFM);
             uelogger.writeLogDebug("Condition Rate  :"+conditionRateZPFM);
           pricingCondition.setConditionRateValue(conditionRateZPFM.setScale(2,BigDecimal.ROUND_HALF_UP));
           pricingCondition.setConditionValue(conditionValueZPFM.setScale(2,BigDecimal.ROUND_HALF_UP));
              return null;
           return null;

    Hi,
    I think you should change xkwert variable instead of komv-kwert.
    Standard routines does the same.
    Aslo check in SPRO settings that routine is attached and
    getting triggered by putting break-point.
    Regards,
    Vishal

  • How do I go about getting the product serial number to register my product as well as install my product.  I bought it with a product box.  On the software disc sleeve, there is a series of numbers pasted at the bottom of the sleeves but this is not valid

    How do I go about getting the product serial number to register my product as well as install my product.  I bought it with a product box.  On the software disc sleeve, there is a series of numbers pasted at the bottom of the sleeves but this is not valid.  When I tried to type this in for registration, it does register as this numbers also contain letters in it.  Apparently the registration boxes accept numbers only.  What do I do with a useless product for which I have paid good money for it?????

    This is the simple solution which was offered to me when I tried to get the serial code on line.
    The box and disc sleeve do not contain a series with 24 numbers which I presume is the product code to install.
    I tried to redeem the registration code by following what they recommended, but inevitably it gets to the page that showed the registration boxes that need 24 serial numbers and I got stuck again.
    This product is so different what my previous experiences of other software products where I just enter the serial number straight from the disc sleeve and then I got registered and go on to use the software.
    I is really frustrating, spending the last two hours trying to get my product going....

  • I purchased Adobe Acrobat XI Pro - Student and Teacher Edition but cannot activate it even after it has deactivated and replaced my old Acrobat 8. How do I get a serial number and activate the product?

    I purchased Adobe Acrobat XI Pro - Student and Teacher Edition but cannot activate it even after it has deactivated and replaced my old Acrobat 8. How do I get a serial number and activate the product?

    I have the same  problem. Have paid. Messages say I have downloaded it but the file is inaccessible apparently download is somewhere on my hard disk. How do I find it?? Is there not help at an Adobe phone service. If so what is the number to call??
    Roger Broughton

  • Report based on Serial Number generated in the Production Order

    Hi,
    I wish to generate a Customized report, which shall include the total consumption based on Sales Order/Line Item/Serial Number/Production Order matching the Serial Number generated in the Production Order where in we can get the required data.
    Need your help and suggestions in creating this report..
    Thanks in advance..
    Ashok Vardhan
    Edited by: Ashok T Vardhan on Jan 19, 2012 11:38 AM

    Hello Tman,
    This is a slightly tricky question. The reason being, the report options like the report path etc, are set before you see the serial number prompt when you run your UUT. There might be other ways of getting around this, but a quick solution would be modifying the process model.
    I modified the PreUUT callback to set the report options. I passed the reportOptions as a parameter to this sequence. In the PreUUT sequence, I set the following fields:
    Parameters.ReportOptions.GeneratePath=False
    Parameters.ReportOptions.ReportFilePath= "c:\\"+ Locals.SerialNumber +"\\report.xml"
    I hope this would give you an idea.
    SijinK

  • Safari 6.0.5 will not work with ticket master in spain - trying to buy tickets for Sagrada Familia

    Trying to buy tickets for Sagrada Familia in Barcelona with ticketmaster - cannot get it to work - using safari 6.0.5 and 10.7 Lion. Will not complete task - cannot even get to the part where I am asked for payment type. Stalls and /or gives error message

    Carolyn Samit wrote:
    Go to ~/Library/Safari
    Move the WebpageIcons.db file to the Trash.
    Quit and relaunch Safari.
    It may take several days for the webapge icons to re populate.
    Hi Carolyn,
    I haven't had any problems with Safari crashing or performing poorly. Safari has always run very well for me. My only problem is this one with the web page icons. I understand your suggestion per trashing the existing Webpageicons.db file (versus replacing it with an archived backup).
    When you say that it "...may take several days for the webpage icons to re-populate...", do you mean that the icons will re-populate automatically?... or rather that they'll repopulate as I visit the individual websites. I ask because I have hundreds of bookmarks and I don't want to have to visit each site to reestablish its web page icon in my bookmarks. I went through this once before on a Safari update and literally spent hours visiting site after site to reestablish the webpage icons. Can you please clarify?
    Thanks for your help! 

  • Table Name and Column name for Product Family Field under the Product Famil

    Hi,
    Please help me finding the table name and the column name for the 'Product Family' field and the 'Item' field under the Product families form. The navigation to this form is as follows:
    Material Planner Responsibility -> Setup -> Product Family
    Please help.
    Thanks,
    KM

    2 months ago, you asked a very similar question... and Markus gave you a good answer. His 2-months old answer still applies here.
    I recommend that you read it a again at Table name for backorder qty on sales order.
    When you have read his answer, please close both threads.

  • Just purchased an upgrade from CS5.5 to CS6 : "valid serial number but no eligible product has been detected"... Any ideas?

    Hi,
    just purchased finally the upgrade for CS6 from CS5.5 Design Premium. I have a BIG problem. When I run the installation file, I put the serial for the upgrade => OK, then I have this message : "valid serial number but no eligible product has been detected", and asks me to put a serial of my actual version. I choose "Design Premium CS 5.5" with the good serial number and then I have this message : "the serial number did not match with a eligible product. Please enter an other serial"... Any ideas???
    Thank you and sorry for my bad english.

    Yes, I was sure about this, but their offices are closed now, so I tryed to see if somebody have an idea Thank you for your reply.

  • I have had to reinstall my Adobe creative suite 6 Standard but when I key in the serial number it asked for the serial number of a qualifying product?

    I have had to reinstall my Adobe creative suite 6 Standard but when I key in the serial number it asked for the serial number of a qualifying product?

    It's asking you or prompting you to input the old serial number of the version that you used to upgrade to your new version.

  • As good will gesture, we can help you with the upgrade for PSE 13. We would request you to place the order for Adobe Photoshop Elements 13 as an upgrade and then we will provide you the full version serial number for the same product against the new upgra

    I RECIVED AN EMAIL FROM ADOBE AS  :  As good will gesture, we can help you with the upgrade for PSE 13. We would request you to place the order for Adobe Photoshop Elements 13 as an upgrade and then we will provide you the full version serial number for the same product against the new upgrade order"  IS THIS UPGRADE FREE AND WHAT SHOULD I DO, HOW CAN I HAVE THIS UPGRADE?

    Compare with on-line stores. The full version is often cheaper than Adobe's upgrade price.
    See this example from Amazon, but check pricing in your own region.
    http://www.amazon.com/gp/product/B00N4OLCRO/ref=s9_simh_gw_p65_d4_i2?pf_rd_m=ATVPDKIKX0DER &pf_rd_s=desktop-1&pf_rd_r=0F1GED9546928YP3PHC0&pf_rd_t=36701&pf_rd_p=1970559082&pf_rd_i=d esktop

  • I bought a Nikon Camera and I then got a Adobe Photoshop Lightroom 4 as a special offer and special package. There is no seriel number on it, just product code on the back of the box. I can take a screenshoot and send it to you by email and perhaps you ca

    I bought a Nikon Camera and I then got a Adobe Photoshop Lightroom 4 as a special offer and special package. There is no seriel number on it, just product code on the back of the box. I can take a screenshoot and send it to you by email and perhaps you can help me to solve this. How do I get in contact with a human being from Adobe in Sweden to help me sort this out?

    Find your serial number quickly

  • HT201412 my iphone using cant buy anything from itune store and they said i have trouble from the product (Our records indicate that this product has been replaced. Please provide the serial number for your replacement product to find the support and warr

    Our records indicate that this product has been replaced. Please provide the serial number for your replacement product to find the support and warranty coverage information. For more information, please ( this is the trouble they tell us )
    can't buy anything application on appstore, i bought this iphone from my friend , and this iphone actived ( 2012-11-05)
    IMEI: ****
    <Edited By Host>

    Instead of posting your IMEI in a public forum, contact iTunes Customer Support.
    FYI, they do not want/need your IMEI number.

  • Our records indicate that this product has been replaced. Please provide the serial number for your replacement product to find the support and warranty coverage information. For more information, please contact us.

    Hi,
    i have purchased iphone 4s 16GB in india yesterday and when i m checking warranty status of my phone from https://selfsolve.apple.com/agreementWarrantyDynamic.do
    i got responce
    Our records indicate that this product has been replaced. Please provide the serial number for your replacement product to find the support and warranty coverage information. For more information, please contact us.
    Please help

    hi
    if it is from gray market is there any harm on that please let me know
    my phone is working fine and even when i connected to itunes it got registered with my id,

  • Our records indicate that this product has been replaced. Please provide the serial number for your replacement product to find the support and warranty coverage information. For more information, please contact us." how does this possible..???

    I have a horrible time with my new Iphone-4, No SIM card found issues and while i tried to contact customer care with device serial number getting a messgae of "Our records indicate that this product has been replaced. Please provide the serial number for your replacement product to find the support and warranty coverage information. For more information, please contact us."
    What step should i take next.

    Where did you get the phone?
    That phone was replaced by Apple or an AASP and was not returned to Apple as it should have been, or it was stolen from Apple or somewhere in the supply chain.
    You can not get support from Apple for that phone.
    Return it to wherever you got it and get your money back.

Maybe you are looking for

  • Apple TV no longer boots

    I have the latest Apple TV its worked fine for months then.....  When I switched it on the TV showed a picture suggesting that it needed to be plugged into to iTunes via a USB cable.  Interesting in that I have never connected th Apple TV directly to

  • Importing Photos from iPhoto

    When I click on a photo from my iPhoto library the image may or may not display in the viewer window. All my images in iPhoto are jpegs. Recently I purchased a D80 Nikon SLR and have been importing my images into iPhoto. Today I attempted to make a s

  • PO Response approval Work item is not executing from approver inbox.

    Hi, PO Response approval Work item is not executing from approver inbox. After click the approve button system is not showing any error and also work item is not clearing from user inbox. When we checked the status of the work item in SWI1 Transactio

  • Safari will not shut down

    My safari will not shut down. I tried to restart my computer, but since safari will not shut down, neither can the computer. I was using a web-based IEP (teacher program) software that required opening a PDF in Safari when it stopped working. Any hel

  • Finally made the 800 club!! To app spree or not to app spree...

    So I've been waiting for my NFCU payoff to post after my credit card debt was consolidated onto a low interest personal loan. I've been saving up the CreditCheckTotal $1 trial until I noticed the balance was paid so I didn't have to wait for myFico t