Dimensions field data ordering

I have a datetime value and using same field i have created calculated field for year, month and quarter. I have created dimensions to display data in years,quarters,months wise.
1. My problem is months are coming in alphanumeric order order(Aug--dec-->). i want to sort this in months order.
2. On x-axis datetime stamp is coming . i want to remove this. (pls see the link for figure )
http://img814.imageshack.us/img814/5122/bamissue.png
pls give your inputs.
Edited by: user10383617 on Aug 15, 2012 3:59 AM

Hi Udayan,
Haven't heard from you in a while.  This is my understanding, but to really get the scoop, you will need to check with an AE or SE. 
The product is for use with Oil/Natural Gas Well fields.  The data is captured and fed to ECC for allocation of product and, I believe, royalties. 
Regards,
Mike

Similar Messages

  • Reference Object to Refresh Work Order Field Data

    Dear Gurus,
    In IW21/IW22 the reference object will populate the Responsibilities section of the Notification tab, and fields on the Location Data tab.  When the reference object is changed, those same fields will update or refresh.  The reference object will also populate field data in a work order if the work order is created from the notification, however, work order fields will not refresh if the reference object on the notification is changed.  Nor will work order fields change if the reference object is changed directly within the work order.
    Can anyone explain why fields will refresh in IW21/IW22 when the reference object is changed, but similar fields in the work order will not refresh when the reference object is changed in IW31/IW32?

    Hi Lisa,
    When you execute IW31/IW32 transaction, in back ground standard SAP programs are called to perform order related task.
    When transaction IW21 / IW22 is executed and order is created or changed at that point also standard SAP programs are called to perform order related task.
    But program called by IW31/IW32 are different then that will called with IW21/IW22 and thus refresh dont happen if u change reference object in notification once after order is created.
    You need to manually change in work order.

  • Key Fields, Data Fields, Key Figures and Characteristis, Dimesions & Key Fi

    Hi All,
    Can any one please describe more about the below terms and with the Example....
    Like when we identify which one is Key filelds and Data fileds, how to distingush creating new dimesions (Is it based on user reporting) Key figures in Dimestions...
    DSO/ODS:  Key fields, Data Fields
    InfoCube: Dimensions, Key Figures
    Infoobjects: Key figures, Characteritics
    Regards,
    Prem

    Hi,
    Search through SDN for more information on these concepts,
    Re: ods data fields or key fields?
    Re: Key Fields and Data Fields in ODS
    defining Key -field and data fields
    Regards,
    Mani

  • Unable to save lookup field data in SharePoint 2013 online list

    Dear Support,
    I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created orderservice.asmx.cs web service and write a code for save record on SharePoint
    2013 online list as I mentioned below and calling on App1.js file.
    But I am unable to save lookup field value as mentioned below code
    Customer is a lookup field I want to save data in SharePoint 2013 online list( Order)where I had successfully
    inserted text field  data (Title &
    Special_x0020_Instruction).
    i am getting error as mentioned below
    500 Internal Server Error {"Message":"Invalid web service call, missing value for parameter: \u0027Title1\u0027.","StackTrace":"   at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary`2
    parameters)\r\n   at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary`2 parameters)\r\n   at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData,
    IDictionary`2 rawParams)\r\n   at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}
    Please let me know the code how to insert lookup field value (Customer)
    in SharePoint online list.
    OrderService.asmx.cs
    Public
    int InsertOrder (Order
    orderRecord)
                pwd.MakeReadOnly();
                clientContext.Credentials =
    new
    SharePointOnlineCredentials (myUserName, pwd);
    try
                  Web
    oWeb = clientContext.Web;
    ListCollection lists = oWeb.Lists;
    List oOrderlist = clientContext.Web.Lists.GetByTitle("Order");
                    clientContext.Load<ListCollection>(lists);
                    clientContext.Load<List>(oOrderlist);
                    ListItemCreationInformation
    itemCreateInfo = new                 ListItemCreationInformation();
    ListItem oListItem = oOrderlist.AddItem(itemCreateInfo);
                    oListItem["Title"]
    = Title;                        listItem["Special_x0020_Instruction"]
    = orderRecord.Instruction;
                        listItem ["Customer"]
    = orderRecord.CustomerId;
                        listItem.Update();
                        clientContext.ExecuteQuery();
    return 1;
    catch
    return -1;
    App1.JS
    $("#Save").click(function
    debugger;
    var OrderProfile = $('#orderprofile').val();
    var CustomerId = $('#exCustomerlist').jqxComboBox('getItem',
    $('#exCustomerlist').val());
    //var Instruction = $('#instruction').val();
            alert(OrderProfile);
            alert(CustomerId);
    var obj = {
    'Title': OrderProfile,
    'Customer': CustomerId }
            $.ajax({
                url:
    "OrderService.asmx/InsertOrder",
                type:
    "POST",
                dataType:
    "json",
                data: JSON.stringify(obj),
                contentType:
    "application/json; charset=utf-8",
                beforeSend:
    function (XMLHttpRequest) {
    //Specifying this header ensures that the results will be returned as JSON.
                    XMLHttpRequest.setRequestHeader("Accept",
    "application/json");
                success:
    function (response) {
                    $(".errMsg ul").remove();
    var myObject = response.d;
                    alert(myObject);
                error:
    function (response) {
                    alert(response.status +
    ' ' + response.statusText +
    ' ' + response.responseText);
    Regards,
    Akhilesh

    Hi Alex Brassington,
    Thanks for your reply.
    I am having the Site Administrator Permission of the public site.
    I am having the permission of Company Administrator of that site but still unable to find
    Device Channel on Site Setting. still I gave the user full control from Site Permission but nothing is happening.
    What should I do next?

  • How can we protect the  ztable non key fields data in sm30 display.

    Hi experts,
         I have created tablemaintenence generator for one z table, in sm30 user has access to enter the data.
    in that maintenence i have to protect the non key field values data  like once the user saves his data.than in the edit mode it has to show the nonkey fields data  but  dont access to edit some nonkey fields... please help

    Hi
    U need to change the screen flow generated by maintenance view generator: here go to Enviroments->Modifications->Screen; doubleclick on your screen and the system take you to screen painter.
    Here go to screen flow and in PBO add new module in order to protect the field for the old records: u can use the statament LOOP AT SCREEN./ENDLOOP to do it.
    LOOP AT SCREEN.
       IF .....
         SCREEN-INPUT = 0.
         MODIFY SCREEN.
       ENDIF.
    ENDLOOP.
    Max

  • How to add a new field in order.jsp

    Hey,
    I want to add a new field in order.jsp. How to store that data into backend?

    If you are adding a header field then you will extend the header structure in CRM and do the same with Item structures for Item fields. You will use EEWB or similar technique in the CRM backend to extend the header or item.
    These extended fields in the backed are available in customer_h or _i structures in the order object that can be read and modified in the Header BAdI or Item BAdi.
    If you think that this message is cryptic or not enough, then you should search for Extension Guide in this forum and read the document.

  • Service po created with reference to preq , in po some fields data was miss

    i was created preq with item type D and account assignment category = network  , uploading point data and recipient data.
    after that i was created po with reference to that preq , in that  po uploading field , recipient field data was missing , how to get that data in service po

    Hi,
    In service documents and blanket PO's the "goods recipient" can not       
    be used. Please read the information from the note 118008:
    The system does not display the goods recipient and unloading point        
    fields in the account assignment block for a service line even though      
    they are set as input fields in Customizing.                               
    You cannot display fields 'Unloading Point' and/or 'Goods Recipient' in       
    the R/3 system. The reason for this is that every account assignment          
    object for each service specification can have several unloading points       
    and/or goods recipients.                                                      
    In particular, only one cumulation for each account assignment object is      
    possible and useful at purchase order item level.                             
    As of Release 4.0, user fields are available in external services     
    management.                                                           
    You can name these user fields, for example, 'Unloading Point' and    
    'Goods Recipient'.                                                    
    A user field belongs to the service line and is purely informative.   
    Regards,
    Edit

  • How to find all intersections of children of currency dimensions and currentmembers of all other dimensions where data exists

    Hi all, I have a requirement where I need to find all intersections of children of currency dimensions and currentmembers of all other dimension wherever data exists for them.
    Its a ASO cube with and version is 11.1.2.2.
    If I try to write the formula in a the below way to test, I get an error that 'Currenttuple can only be used with a named set'. But when I try to create a named set with the 'WITH' keyword, it not able to recognize the 'WITH' keyword. I think I am missing something obvious and this may not be the correct way to achieve this. Please help.
    1st try with just Currenttuple - error 'Currenttuple can only be used with a named set'
    iif(
      (isgeneration([Time].currentmember,4)),
      CASE
      WHEN NOT ISEMPTY(
    Crossjoin([Currency].Children,
    {([Time].currentmember,[Org].currentmember,
    [S Org].currentmember,[C Code].currentmember,
    ).Currenttuple
      THEN  Missing
      ELSE Missing
    END, Missing)
    2nd try to create a named set with 'WITH' keyword - syntax error at WITH
    /*with set [NewSet] as                                      
    'Crossjoin([TC].Children,
    {([Fiscal].currentmember,[Organization].currentmember,
    [Sales Org].currentmember,[Company Code].currentmember,
    [Measures].currentmember,
    [Product].currentmember,
    [Channel].currentmember,
    [Order Reason].currentmember,
    [Country].currentmember,
    [Billing Type].currentmember,
    [Business Area].currentmember,
    [Sales District].currentmember,
    [Data Source].currentmember,
    [View N/A]
    iif(
      (isgeneration([Fiscal].currentmember,4)),
      Filter([NewSet], NOT IsEmpty([NewSet].CurrentTuple))
    , Missing)

    Hi Tim,
    Thanks for you reply and sorry for my delayed response. Actually there is one more requirement in this, which makes it a bit complicated. There are another set of members in the Measure dim called FXDirrate and FXIndrate. The logic is :
    1. If data exists for the combination of a Currency.children, FXDirrate and current member of all other dims
    then convert the value for Currency.children by diving by FXDirrate
    2. If data exists for the combination of a Currency.children, FXIndrate and current member of all other dims
    then convert the value for Currency.children by multiplying by FXIndrate
    3. Then value of the calculated members will be sum(all FXDirrate converted + all FXIndrate)
    Currency does roll up but as the data for its children can either be in Dirrate or Indrate and the sum needs to be taken after the conversion, there I am not able to proceed as I am not able to check the existence of data in individual children of currency as Isempty isn't working on a set . Thanks a lot for your help.

  • Dimensions/Fields Displayed on Drill through screen

    Is there a way to display additional dimensions/fields on the drill through screen in which you are not loading into the target system?
    To elaborate, suppose I have an import file which I have the following fields: entity, account, dept, affiliate, and amount. My target system metadata has a house for all of those fields except dept because we do not load dept. So I go ahead and I set up my import format to capture all the fields except dept which I do not pull in because I wont load it. I load my data and now I drill through from my target system (click on $1000) and FDM launches and I click on the initial screen which shows the $1000 and it opens up the two lines that made up the $1000. On that screen however, I will only see the dimensions/fields that I loaded: Entity, Account, Account Description, Amount. I will not see Dept because I did not bring it in as I am not loading it. I know I can include Dept in the Import Format as an Attribute and click on the amount to show attributes but is there a way to have it on the initial screen? In other words, I want to bring in the field however I do not want to load it to the target system so it will display on the drill through screen?
    Deepest apologies if I am doing a poor job articulating the question.

    Hello,
    Unfortunately there is no way to change the design that you see during Drillback.
    The dimensions that are displayed are controlled by the dimensions that are loaded into the target system. Since the target system does not know of these dimensions it is not displayed during drillback.
    Thank you,

  • Date order in SSRS report

    Hi All;
    I am using below formula for date order in SSRS
    =Format( Fields!scheduledstartValue.Value,
    "MM yyyy")
    Date comes in teh order as below
    for teh year 2014 order is right but 2015 should be at the last
    Any much appreciated
    Thanks
    Pradnya07

    Thats because Format causes values to return as string type
    Use sort expression as 
    =Fields!scheduledstartValue.Value
    And use the format expression only for the display
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Copy Z field data from SO to Purchase Requestion

    Hi
    I am facing one problem
    I have created one Z-field in Sales Order and have created the same field in Purchase Requestion also.
    Now how i want to transfer Z-field data from SO to PR.
    What is the procedure and configuration i have to do OR what is the process in copy control for copying Z-field data from SO to Purchase Requestion.
    Pls confirm.
    Regards
    Vicky

    Hi
    Thanks for the reply
    I know there is no standrad procedure but how i can tranfer Z field data from Sales Order to Purchase Requestion.
    Pl help me
    Regards
    Vicky

  • Z field dat to be transfer from SO to Purchase Requestion

    Hi
    I am faing one problem
    I have created 1 Z field in Sales Order and the have created the same field in Purchase Requestion.
    Now how i can transfer Z field data from SO to PR. What is the procedure and configuration i have to do.
    Pls confirm.
    Regards
    Vicky

    Hi Pls reply which user Exit , i should apply for transfering Z filed data from SO to PR.
    This is 3rd party process and we have added a Z field but we need to transfering data from SO to PR.
    Which User Exit will use to perform this process

  • In VA01 Item detail screen tab Account assignment field  Internal order ???

    Dear Experts,
    In T.code VA01
    item level data tab Account assignment there is field internal order , here if i created internal order that internal order should come automatically into that field
    e.g. i have one article / material for that i created one internal order where i put all expenses through T.code FB50 and i want to add sales revenue for that while creation of sale order i am putting internal order manually in T.code VA01
    so my question is  the same task can be possible automatically or not
    i have two thoughts
    1) either that internal order should assign to article or material master data or
    2) status profile has some link with internal order type (so by default link with internal order ) and there is provision in T.code VOV8 and VOV7 we can add status profile .
    Question
    IS IT POSSIBLE INTERNAL ORDER SHOULD COME AUTOMATICALLY IN SALES ORDER ITEM DATA ACCOUNT ASSIGNMENT TAB AS PER ARTICLE / MATERIAL
    PLEASE GUIDE

    Hi Ravi,
    it is due to profit centre accounting / costing is active, it is better to get it clearified from a FICO consultant
    regards,
    Santosh

  • Setting up default Date Order

    Hello,
    We are trying to set date order(YMD,MDY or DMY) on date control. Customize (YMD,MDY) option is not suitable in this situation beacuse it needs individual upadate at each date control.
    So we tried to set it a base level so that one change reflects everywhere on all existing reports and new reports(new date controls added in future) created with this date order by default.
    We tried File>Options>Fields>Date>Customize
    It is not overriding the date field deafult settings on report.
    We also tried to use com.crystaldecisions.sdk.occa.report.definitionsdk. FieldObject to set dateformat/order on the reports. It did not worked out.
    Could you please help me with setting date control order at base level so taht it reflected everywhere else.
    Thanks,
    Arun

    Hi Arun,  
    Crystal get's it's default date formatting from the Window's Regional settings, same as Excel.  You can overwrite individual objects but you can't really change the default for the reports themselves. 
    The closet I've come to addressing this is to have your application check the user's Regional Settings and changing them.  The the reports will format the dates properly, unless someone has formatted the dates differently in the report. 
    This can cause issues if another program requires to display dates differently. 
    If you can identify a date field or formula, you can have your application loop through each field/formula, verify the type and conditionally format the object with the order  you want. 
    Good luck,
    Brian

  • Status field into order response

    hello gurus,
    We are creating a sales order with XI and get orderresponse. The order response Idoc contains all the data from a sales order except the fields Order status. In the screen VA03 --> Header Info --> Status we can see the delivery status fields, but it is not present in ORDRSP IDoc. The technical detail to the corresponding field data is VBSTT-LFSTA_BEZ. We just want to include this field in the order response IDoc or any other field for that matter. How can we achieve that.
    Please help
    FK

    Hi,
    Try one of user-exits to fill the Idoc with specified value during the outbound processing. For your case EXIT_SAPLVEDC_002 should be the best.
    Regards,
    Radek

Maybe you are looking for

  • How do I acess a private message?

    I clicked the URL in the email message in the inbox, but a notice came up that I was not authorised to read it.  I  don't understand why I can't access it.   

  • Min-Max Planning Generating Purchase Requisitions

    We have been using min-max planning for a while and scheduling the min-max planning report (planning level: organization) to run every evening to generate a purchase requisition. Of late we have some items that are showing a reorder quantity but not

  • Intalling a slide show that can be edited by contribute users

    I have developed a standardized template for a number of non profit organizations so that they can use contribute to update their websites without changing the template. Is there a way I could develop a slide show in dreamweaver and upload it so that

  • Why does black/white print with magenta hue?

    When I print black/white greyscale in Adobe Reader or Acrobat, some documents print with ghost text that appears in a light magenta.  This ghost text is staggered to the bottom right of the black text.  I'm printing from Mac OS X 10.8.4, Adobe Reader

  • Can't see app names in folders

    Hi, I've recently upgraded my z to lollipop and it's been great ever since, but I've noticed some minor bugs. First of all i can't see app names when they're organized in folders, maybe i'm missing some settings but i think it's a bug. Secondly i fin