Mass Allocate function and Entity Dimension. Special treatment?

Hello all,
We're having an issue with mass allocate and the entity dimension, but we are not sure if that is the expected behavior or we have another sort of problem.
We are trying to use the mass allocate function in a Planning web form, using proportional spread. Have tested it across several dimensions (both custom and default) and in all of them it works the way we expect to: It increases existing values in proportion to the target values.
However, when it spreads form superior to inferior levels in entity dimension, it is another story. It spreads evenly across all the members, doesn't care if target has missing or has a value. I have tried looking at the code it generates, but I'm not able to spot why it behaves like this. I have read the documentation but do not find any reference to this.
Is this a expected behavior or do we have a problem with some property on entity dimension?
Needless to say, it is the first time we try to use mass allocate.
We are using planning 11.1.1.3
Thanks in advance for you help.

blibliblablablbblibididiblabidudubliblabidub

Similar Messages

  • Workforce Planning: Relation between Employee and Entity dimension

    Hi,
    I was looking at the Workforce Planning module and the hierarchy/forms/rules that come built with it. One of the major points I noted was that the forms showed data for all employees (with a suppress missing data condition applied) so only those employees showed up against a particular entity for whom there was data.
    I was just curious if accidentally a user enters any data for a particular employee against an incorrect location (maybe using the excel add-in), this will show the associated costs for that employee for the wrong entity.
    Is there any way that I can create a relationship against these two dimensions which can restrict employees to a particular entity member?
    Regards,
    Shehzad

    Hi
    Kindly ref to the below tables
    MCAFVGV : Versions: Order Procedure
    CAUFV: View "Order Headers PP/CO"
    Regards
    S.Senthil

  • Create users and assigning them security on the Entity dimension

    Hi All,
    I’m working with Hyperion ESSBASE 11.1.1.3 and Hyperion Planning 11.1.1.3 and I have a problem related to create new users (without admin permissions) and assigning them security on the Entity dimension.
    When I access with these users to a Dataform in Planning appears these message:
    “Security and/or filtering has resulted in a required dimension not being represented on this data form”
    I have followed these steps:
    - I have created new users (Native Directory) and provision them against essbase and the planning application in Shared Services.
    - I have expanded the essbase server > security > refresh security from shared services > all users.
    - I have assigned security roles in all members of Entity dimension in Planning.
    - I have refreshed database and security filters in Planning.
    Please help
    Thanks a lot in advance

    Hi,
    You will have to apply security to all the standard dimensions and not just entity, so that will be account, entity, scenario and version.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Currency and Groups Dimensions in Legal Consolidation, BPC 7.5

    Dear BPC Experts:
              I am using BPC 7.5 NW SP03, and building Legal Consolidation now. According to the SAP Library,http://help.sap.com/saphelp_bpc75_nw/helpdata/en/bpc_nw_index.htm, it says in 7.5, the currency and groups dimension are required and should hold currency members and consolidation members seperately. I have couple of questions about this design.
    1. Are GROUPS and CURRENCY dimensions both included in Legal Consolidation Application at the same time?
    2. How to move data in currency diemnsion into corresponding members in GROUPS dimension?
        For example: THe GROUPS member, CG1(its currency is USD). How to let data in currency USD move to CG1.
    3. In Legal Consolidation data package, should I modify the prompt dimension from CURRENCY_DIM into GROUP_Dim?? cause 7.5 has CURRENCY dim in its package setting at default. However, the consolidation package is based on GROUP perspectives.
        Does anyone give me any idea in it? I really appreciate your help.
    Best Regards,
    Fred Cheng

    Hi Collet,
    Thanks for such a quick response. Based on your answer,
    The group-type dimension is used for storing the group component of legal consolidation. The group-type dimension represents the relationship of entities for a given consolidation result. This group is consolidated in a single currency, so there is no need to have another dimension. As of Planning and Consolidation 7.5, you can continue to use the currency-type dimension for this purpose, or you can split it into a group-type dimension (type G) and use a pure currency-type dimension (type R) to allow reporting in multiple group currencies.
    If at all I go by that will that be sufficient to have only Group Dimension and ignore RptCurrency field in BPC 7.5?
    As of now I am having my Group Dimension looks like this.
    Member ID          EVDESCRIPTION        GROUP_CURRENCY        PARENT_GROUP      ENTITY
    G_CG1                XXXX                          USD                                                                 E_CG1
    G_CG2                XXX                            USD                                   G_CG1                   E_CG2
    G_CG3                XXXX                          USD                                   G_CG2                   E_CG3
    So now do I need to enter any RptCurrency Members under Group Member ID column to have RptCurrency ignored once for all. By the way our RptCurrency and Group Currency is USD only.
    Please advise as right now we are not able to have Currency Conversion Functioning properly. I mean when I executed FXTRANSLGF, I am able to my DM status as Successful but saying 0 Submitted   0 Success   0 Fail
    I am unable to crack this. I tired playing Groups and RptCurrency but same result. Successful but no records. We have maintained all Exchange Rates corrctly.

  • Subtract from Parent in Entity dimension

    Hi all
    I am currently implementing SAP BPC project to replace Hyperion Enterprise. There is an option in Hyperion Enterprise in Entity dimension where you can specify an entity (child or parent node) to be subtracted from its parent rather than the natural way of adding in SAP BPC. I know in SAP BPC, the natural way the hierarchy works is that all the base level nodes are added to its parent level which in turn are added to its parent level and so on and so forth.
    I was wondering if there is a way to accommodate "Subtract from parent" functionality of Hyperion Enterprise in SAP BPC. One way I can think of is to write a script logic to multiply the numbers submitted to that entity by -1 which will make sure that we are subtracting this entity while rolling up.
    Does anyone know of a better way?
    Please let me know.
    Thanks,
    Ameya Kulkarni

    Exactly as Tim says, there's a member property you can add (called UNARYOPERATOR, must use that name, inApp, length 1) that takes a value of one of the following:
    +    (this adds up the member to its parent -- same as if you didn't add this property)
    -     (subtracts this member from its siblings, in computing the parent)
    *     (multiplies it)
    /     (divides it)
    ~    (ignores this member)
    I've never used multiply or divide. The tilde is helpful for skipping the NBV accounts from the fixed assets on the balance sheet, where you can't double-count the original book less accum depreciation, AND the NBV. But every chart of accounts has all those accounts in there.
    This property should probably work in any dimension with a hierarchy. Or almost any -- I'd be surprised if Time would be able to multiply October times November??? But anyway for simple stuff, it should work.
    Or you can use a member formula on the parent, which would be
    OtherChild1 + OtherChild2 - SpecialChosenChild
    A script logic approach will also work, but it means a lot of extra calculations and data, which you should avoid if possible. I think to get the results you want, you'd follow Tim's approach, except the logic needs to post a factor of -2 (not -1) to the shadow member, to get a net result of a negative impact on the parent. A factor of -1 would give a net result of zero.
    Hopefully the unaryoperator or formulaH1 will work.

  • Allocation across both years and period dimension

    Hi all:
    We have a client who needs to run an allocation across both period and year dimension. This allocation would have to dynamically identify which is the current period->year
    So If the allocation is on according to the following shape
    Month 1 = 20%
    Month 2 = 10%
    Month 3 =10%
    Month 4 = 20%
    Month 5 = 40 %
    So if an account has $1000 and it is flagged as allocation. The current Period is Nov and Current Year is 08 , it will be allocated like this:
    Nov -> 08 = 200
    Dec -> 08 = 100
    Jan -> 09 =100
    Feb -> 09 = 200
    Mar -> 09 = 400
    The question is how do you write the script as such that it will dynamicly identify the period its in and allocate across all those periods and years dimension?

    Sorry. I think I needed to explain the problem a little better:
    My client is attempting to do Sum of The year Digit to allocated investments from the current month to nth months into the future depending on terms of agreement.
    I looked at the @SYD function, but I see 2 problems associated with it that the allocation is slightly different.
    I looked at the @mdallocate function, it allocates based on an existing shape for the existing periods. E.g. allocate the budget numbers based on the shape of the actual numbers.
    Basically my problem is how do you recreate the function of @SYD (Where you can define the number of periods into the future) using the @Mdallocate function?
    Cheers in advance!!
    William

  • UWL: Mass Approval functionality is not shown

    Hi Gurus,
    I have done the required config to call my ABAP webdynpro leave approval screen when a workitem is clicked in UWL and its working fine.
    Now I want to have a mass approval functionality for the leave approval screen. I have added the below Item types and Views in UWL.STANDARD.XML file and uploaded it to the system with high priority and then refreshed cache. When I login to the system and access the UWL, the MASS Approval functionality is not show. Do I have to do any other steps apart from this. Please let me know how to resolve the issue.
    =======================================================================
    @@@<ItemType name="uwl.task.webflow.TS90000001.ABC" connector="WebFlowConnector" defaultView="myReqApproveViewABC" defaultAction="launchWebDynPro"
    executionMode="default">
          <ItemTypeCriteria systemId="ABC" externalType="TS90000001" connector="WebFlowConnector"/>
          <Actions>
            <Action name="ApproveRequest" groupAction="yes" handler="FunctionModuleActionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="IV_WI_ID" value="${item.externalId}"/>
                <Property name="IV_APPROVE" value="X"/>
                <Property name="FunctionModule" value="Z_GELVFM_APPROVAL_SAVE"/>
              </Properties>
              <Descriptions default="Approve Request"/>
            </Action>
            <Action name="RejectRequest" groupAction="yes" handler="FunctionModuleActionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="IV_WI_ID" value="${item.externalId}"/>
                <Property name="IV_REJECT" value="X"/>
                <Property name="FunctionModule" value="Z_GELVFM_APPROVAL_SAVE"/>
              </Properties>
              <Descriptions default="Reject Request"/>
            </Action>
            <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes"
    launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
              <Properties>
                <Property name="WebDynproApplication" value="ZGELVWDA001_APP"/>
                <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
                <Property name="DynamicParameter" value="wi_id=${item.externalId}"/>
                <Property name="openInNewWindow" value="yes"/>
                <Property name="WebDynproNamespace" value="SAP" />
                <Property name="display_order_priority" value="5"/>
              </Properties>
              <Descriptions default=""/>
            </Action>
          </Actions>
        </ItemType>
    ===================================================================================================
    @@@<View name="myReqApproveViewABC" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.TS90000001.ABC" columnOrder="subject,
    detailIcon, createdDate, dueDate, Approve, Reject" sortby="createdDate" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no"
    queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="60" dueDateSevere="0" dueDateWarning="0"
    emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom">
          <Descriptions default="Leave Request">
            <ShortDescriptions>
              <Description Language="en" Description="Mass Approval"/>
            </ShortDescriptions>
          </Descriptions>
          <DisplayAttributes>
            <DisplayAttribute name="Approve" type="radiobutton" width="" sortable="no" format="default" actionRef="ApproveRequest" hAlign="CENTER"
    vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Approve"/>
            </DisplayAttribute>
            <DisplayAttribute name="Reject" type="radiobutton" width="" sortable="no" format="default" actionRef="RejectRequest" hAlign="CENTER"
    vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Reject"/>
            </DisplayAttribute>
          </DisplayAttributes>
          <Actions>
            <Action reference="submitUserDecisions"/>
            <Action reference="refresh"/>
          </Actions>
        </View>
    ===========================================================================
    Regards,
    H.K.Hayath Basha,

    Hi,
    The code is not attached
    ***=============================================================================================================================
    ***<ItemType name="uwl.task.webflow.TS90000001.ABC" connector="WebFlowConnector" defaultView="myReqApproveViewABC" defaultAction="launchWebDynPro"
    executionMode="default">
         <ItemTypeCriteria systemId="ABC" externalType="TS90000001" connector="WebFlowConnector"/>
         <Actions>
           <Action name="ApproveRequest" groupAction="yes" handler="FunctionModuleActionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
             <Properties>
               <Property name="IV_WI_ID" value="${item.externalId}"/>
               <Property name="IV_APPROVE" value="X"/>
               <Property name="FunctionModule" value="Z_GELVFM_APPROVAL_SAVE"/>
             </Properties>
             <Descriptions default="Approve Request"/>
           </Action>
           <Action name="RejectRequest" groupAction="yes" handler="FunctionModuleActionHandler" returnToDetailViewAllowed="no" launchInNewWindow="no">
             <Properties>
               <Property name="IV_WI_ID" value="${item.externalId}"/>
               <Property name="IV_REJECT" value="X"/>
               <Property name="FunctionModule" value="Z_GELVFM_APPROVAL_SAVE"/>
             </Properties>
             <Descriptions default="Reject Request"/>
           </Action>
           <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes"
    launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
             <Properties>
               <Property name="WebDynproApplication" value="ZGELVWDA001_APP"/>
               <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
               <Property name="DynamicParameter" value="wi_id=${item.externalId}"/>
               <Property name="openInNewWindow" value="yes"/>
               <Property name="WebDynproNamespace" value="SAP" />
               <Property name="display_order_priority" value="5"/>
             </Properties>
             <Descriptions default=""/>
           </Action>
         </Actions>
       </ItemType>
    =======================================
    <View name="myReqApproveViewABC" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.TS90000001.ABC" columnOrder="subject,
    detailIcon, createdDate, dueDate, Approve, Reject" sortby="createdDate" tableDesign="STANDARD" visibleRowCount="10" headerVisible="no"
    queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="60" dueDateSevere="0" dueDateWarning="0"
    emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom">
        <Descriptions default="Leave Request">
          <ShortDescriptions>
             <Description Language="en" Description="Mass Approval"/>
           </ShortDescriptions>
         </Descriptions>
         <DisplayAttributes>
           <DisplayAttribute name="Approve" type="radiobutton" width="" sortable="no" format="default" actionRef="ApproveRequest" hAlign="CENTER"
    vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes">
             <Descriptions default="Approve"/>
           </DisplayAttribute>
           <DisplayAttribute name="Reject" type="radiobutton" width="" sortable="no" format="default" actionRef="RejectRequest" hAlign="CENTER"
    vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes">
             <Descriptions default="Reject"/>
           </DisplayAttribute>
         </DisplayAttributes>
         <Actions>
           <Action reference="submitUserDecisions"/>
           <Action reference="refresh"/>
         </Actions>
       </View>
    =======================================
    Regards,
    H.K.Hayath Basha.

  • Windows says "device is not functioning" and "Windows does not recognize"

    I lost my USB dock connector cable for my ipod. I just went out today and bought a brand new "Cygnett GrooveLink Strech Retractable USB Cable for iPod". I was pumped when I came home to finally be able to add music to my ipod again, but alas when I plug the iPod in, Windows pops up saying that the device is not functional and that Windows does not recognize it. I tried everything from rebooting the iPod to re-downloading iTunes and iPod updater. After searching this site for the past few hours, I figured I'd try and possibly find some real answers here. Please Help!!

    Hey everyone,
    I had the same problems all of you are having. I
    just got a 5th generation video ipod. For a few
    days, my computer a) wouldn't recognize it; b) froze
    up when I connected it; c) mistook it for a mass
    storage device ("drive E"). I bought a USB 2.0
    notebook card which didn't work either and actually
    seemed to make the problem worse because when I
    connected the iPod to it my computer froze up.
    I was very confused because my new iPod worked on my
    brother's computer--which is much older than mine but
    still recognized the iPod and connected to it.
    Then I noticed that my brother's computer is running
    an older version of the ipod software. I used his
    disk to install "Ipod Updater 2005-06-26" rather than
    the new version of the software on the Apple Web
    site. Then I plugged my iPod into a USB 1.1 port.
    To my surprise, my computer finally recognized the
    iPod and is now loading music onto it. I cannot
    believe this worked. I wonder if the latest version
    of the software is faulty in some way.
    Try it! I hope it will work for you too. You will
    need an older version of the iPod updater software,
    so borrow it from a friend with an older ipod.
    I am having this problem also...It will work fine on the 1.1 but when i plug it into the 2.0 it has trouble recognizing it...

  • Error while processing ENTITY dimension

    Hi Experts,
    I am on BPC 7.5NW version.
    I have 6 hierarchies defined for ENTITY dimension.
    I have created the structure in an excel and now I am coping it into Entity dimension for each column one by one.  
    I copied ID, Description and PARENTH1 in ENTITY dimension and processed it.  It worked fine.
    When I copied PARENTH2 from excel to ENTITY dimension and tried to process it, it gave me following errors -
    Base member 'INDIAREG' cannot be the parent of 'UBCITY' in PARENTH1
    Base member 'BURUKWS' cannot be the parent of 'MUKSA' in PARENTH1
    Could you please let me know how to resolve the issue?
    Regards,
    RashmiG

    Hi Nilanjan,
    Below is the Entity structure -
    *ID     EVDESCRIPTION     PARENTH1     PARENTH2     PARENTH3     PARENTH4     PARENTH5     PARENTH6     CURRENCY*
    INDIATTOT     India Retail     ROWTTOT                              
    INDIAREG     India Regular     INDIATTOT     M_MNREGROWIND     M_ROWMNREGIND     COUNTRYROWMN     STAT_REGIONALROWMN          
    EMPORIOMALL     Emporio Mall     INDIAREG                              INR
    TAJKRISHNA     Taj Krishna     INDIAREG                              INR
    PALLADIUM     Palladium     INDIAREG                              INR
    UBCITY     UB City     INDIAREG                              INR
    BUREUROPWS     Burberry Europe Wholesale     L5WHOLE                              GBP
    BURUKWS     Burberry Int Wholesale (Rollup)     BUREUROPWS          M_REGIONALWHINT                    GBP
    MUKDIS     International Wholesale     BURUKWS                              GBP
    MUKEUR     UK Europe Wholesale     BURUKWS                              GBP
    MUKDFS     Duty Free Wholesale     BURUKWS                              GBP
    MUKEM     Emerging Markets Wholesale     BURUKWS                              GBP
    MUKSA     South America Wholesale     BURUKWS                              GBP
    Any suggestion?
    Regards,
    Rashmi

  • Error while Loading Entity Dimension through ODI

    Hi,
    When I tried to load the outline for Entity dimension onto the Planning (11.1.1.0) through ODI, I'm getting the following error:
    7000 : null : java.sql.SQLException: Invalid COL ALIAS "STORAGE C2_DATA_STORAGE" for column "DATA"
    java.sql.SQLException: Invalid COL ALIAS "STORAGE C2_DATA_STORAGE" for column "DATA"
         at com.sunopsis.jdbc.driver.file.bb.b(bb.java)
         at com.sunopsis.jdbc.driver.file.bb.a(bb.java)
         at com.sunopsis.jdbc.driver.file.w.e(w.java)
         at com.sunopsis.jdbc.driver.file.w.executeQuery(w.java)
         at com.sunopsis.sql.SnpsQuery.executeQuery(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.h.y(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Kindly help.
    -Jitendra

    Hi,
    Send over the models/interface and I will have a look.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Control authorization of mass change functionality via PCUI

    Hi,
    We are having the following issues with the Opportunity iview, com.sap.pct.crm.opp.opportunities_s.(Business package for CRM 5.0 and contains functionality CRMD_BUS2000111).
    Once the user clicks Go..he has the list of Opportunities. He can select some or select all and use "Mass Change".
    We would like to control the functionality of "Mass Change" attribute in the backend CRM System so that only a few people can be authorized to do this. However we are not able to find any CRM authorization
    object that controls the mass change activity for opportunities and pursuits in the backend CRM System.
    What is the backend CRM Authorization object that controls this functionality in the backend CRM System ?
    Regards,
    Rajan.K

    Frank,
    In IW38/IW3N we added our own Mass-Change button (in addition to the standard option) via Enhancement Spot ES_EAM_LIST_ENHANCEMENTS_EXT. This was required to perform functions that don't exist in the standard mass-change function e.g. mass-add/delete operations, mass-un-TECO, mass-un-CLSD, etc.
    This Enhancement Spot may work for IE05 too.
    PeteA

  • Regarding Rules, Functions and Risks

    Hello,
    1. Does SAP provide a standard ruleset for SoD? Does it come with the AC 5.3 .SCA?
    2. What is the relation between Rules, Risks, Functions and Business Process?
    Thanks.

    Hi Gautam,
    Just to make it more explanatory, lets take few examples for each entity:
    1. Business Process (BP):
    It can be a department, group or an independent functional unit in an organization. E.g Finance or HR or Material Management.
    2. Function:
    It can be a set of activites or say set of simlilar activities in a BP. E.g in SAP Security - SU01 and PFCG combination can be termed as a function - "User and role maintenence" .
    3. Risk:
    It can be a combination of 2 or more functions which when given to a single user, can be harmful to the organization.
    4. Rule:
    It is generated from Risks automatically. E.g if A and B are 2 funtions in a risk R, such that:
                       A has transactions X and Y and
                       B has transactions M and N
    so there can be multiple rules generated here for Risk R , with the combinations like X and M rule, X and N rule, Y and M rule, Y and N rule etc.
    5. Ruleset:
    As the name suggest, is a set of Rules, generated from Risks. Two Rulesets may contain same, similar or dissimilar risks, based on the lanscape for which you want to use the ruleset. E.g you might have ruleset R1 having Risks 1 to N in your development system and you might have ruleset R 2 having Risks 1 to M in your Production system.
    Hope this makes it a bit clearer to you know. For more dependencies within these entities and how they behave with eah other, I would suggest if you create each of them and then observe their linkages. The config guide from SAP would be more than enough for this purpose.
    Regards,
    Hersh.
    http://www.linkedin.com/in/hersh13

  • Problem in COHV with mass processing function Release.

    Hello,Guru's
    I have problem in COHV with mass processing function Release.
    even after execution of COHV the status of Orders remains unchanged.i.e. remain Created instead of Release
      My user require all Orders should release in mass process
    with material availability Check .
    and OPJK setting is
    material availability
    Check availability during order release=X
    Release material = 1(User decides on release if parts are missing)

    > with material availability Check .
    > and OPJK setting is
    > material availability
    >  Check availability during order release=X
    > Release material = 1(User decides on release if parts are missing)
    Hi,
    With these two settings in OPJK, there will not be any impact on COHV.
    Any dates, date ranges you are inputing in the COHV.
    Try with Manually inputing some of the Orders in COHV and in the Foreground you try.
    Afterwards, try with Some selected Orders in the Background..
    You may get the clue for the problem..
    Regards,
    Siva

  • How to change the Entity dimension

    For practice purposes, I created a PSPB application in EPMA. Apparently the new app had no Entity data so I uploaded the entity information from the sample ads file into the EPMA shared dimension library.  I want my practice application called BUDGET to use this new and imported "Entity" dimension.  However, I can't find a way to assign the application to use this dimension or vice versa.  I didnt think the BUDGET app had an Entity dimension but now that I look at its dimensions, it is appearing there.  Even so, it appears to be different than the Entity dimension in the Dimension Library.  I've tried to copy the dimension to the application, but BUDGET doesnt show up as an available application.  How do I get the app to use this shared dimension or create the app to use it?

    For EPMA then usually you would highlight your dimension, select the category of system in the properties window, update the dimension alias, click save, deploy.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 6.5 vs 6.2 Dynamic calc member in basis of @allocate function

    I just converted from 6.2 to 6.5 and have run across a problem in the @allocate function. It appears that it does not resolve the dynamic calc member. Formula is:"Curr Fcst"=@ALLOCATE("SumInput"->"Curr Fcst", @remove(@descendants(@currmbr(Accounts)),@Descendants(@CURRMBR(Accounts),-1)), "Consolidated"->"Curr Fcst"->&LactlmonTD, ,share); The problem is that &LactlmonTD - a substitution variable is "MAY YTD", which is a dynamic calc member. The formula works fine for a stored member "May" if you want to allocate based on last month only. This formula worked in 6.2, but does not work in 6.5 that I can see. Any ideas short of storing the data for YTD? I am logging it as a bug with hyperion.

    OK - Hyperion technical support has solved the issue with an "Undocumented feature". I needed to add the following statement to my Essbase.cfg file:CALCFGDEPOPT FALSEThe explaination was as follows:"This is basically to turn off EVENT 28 in Essbae 6.5. In Essbase 6.2 EVENT28 needs to be turned on manually in the config file, while in Essbase 6.5it is automatically turned on."

Maybe you are looking for