Hyperion Account Type setting properties??

Hello,
How can I set the Field type for account type (Expense,Asset,Liability,Revenue..) in rule file. When I tried to give the field type as Property, after running the rule file members are tagging with Two pass & Expense reporting automatically eventhough they are not exist in the data file.
I refered below thread also for refernce but no use.
Setting Hyperion Properties
Plz suggest the way to build account type using Parent child reference methos in EAS 11.1.1.3.
Thanks,

Sounds like you are trying to build metadata through essbase for a planning application, if so you have to load metadata to planning and then push to essbase, you can load using a number of different ways depending if it is classic/epma e.g. outlineload utility, epma flat files or interface tables, ODI or if still in the dark ages HAL or DIM
You can archive the essbase side of planning just as you would with a pure essbase application.
You will still have the planning relational database to backup.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • I am getting following error! XML Parsing Error: undefined entity Location: chrome://weave/content/options.xul Line Number 6, Column 3: setting id="weave-account" type="string" title="&account.label;" / --^

    I am getting followong error
    XML Parsing Error: undefined entity
    Location: chrome://weave/content/options.xul
    Line Number 6, Column 3: <setting id="weave-account" type="string" title="&account.label;" />
    --^

    I had this problem - it appeared to be due to having Firefox 4 with the Firefox Sync installed as an add-on. Firefox 4 has sync included so there is no need to have it as an add-on. I went to the add-on manager and removed Firefox Sync and now appears to be working correctly.

  • Acount type and Variance reporting on account member set up

    Hi
    Apologies if the question may seem obvious....
    However we are planning on loading monthly actual data into our application from a flat file where revenues are negative and costs are positive. For reporting purposes within the application we need to switch the signage.
    Therefore when setting up account members if i tag the account type as revenue or expense will this solve the issue?
    Also would anybody know what the "variance reporting" field is used for
    Many thanks

    Hi,
    Variance reporting is good when you report your data from FR or WA as these tools are financially aware of account types and settings in variance reporting.
    When you set an account as expense in variance reporting declines (between versions, months etc.) in your data for those accounts are taken as a positive change and vice versa. On the other hand, reduction in non-expense accounts are taken as negative change.
    Hence, when you create a report where you define conditional formating on variance field, increases can be shown green in revenue accounts and red in expense accounts.
    You can give this a try in Web Analysis by creating a very simple report using Sample:Basic.
    The other question you ask for can be done via a calculated field in FR or WA. Or you can create a reporting version in Planning where you can multiply expense accounts by (-1) and leave the rest as they are.
    Cheers,
    Alp

  • Mojarra doesn't implement setting properties on declared converters?

    Hi,
    I tried to register a custom converter in faces-config, by means of the following declaration:
    <converter>
              <description>Formats a number with exactly two fractional digits.</description>
              <converter-id>numberformat.two</converter-id>
              <converter-class>javax.faces.convert.NumberConverter</converter-class>
              <property>
                   <property-name>maxFractionDigits</property-name>
                   <property-class>java.lang.Integer</property-class>
                   <default-value>2</default-value>
              </property>
              <property>
                   <property-name>minFractionDigits</property-name>
                   <property-class>java.lang.Integer</property-class>
                   <default-value>2</default-value>
              </property>
         </converter>I've used this kind of code before a long time ago when using MyFaces, and this always Just Worked. However, with Mojarra it just doesn't work.
    I used the converter on my view like this:
    <h:outputText value="#{bb.someVal}">
         <f:converter converterId="numberformat.two"/>
    </h:outputText>By putting a breakpoint in javax.faces.convert.NumberConverter, I can check that the converter is being called, but the properties just aren't set on the instance.
    I hunted the Mojarra source code, but I also can't find any code that is supposed to set these properties.
    For instance, the ApplicationImp.createConverter method consists of this code:
    public Converter createConverter(String converterId) {
            if (converterId == null) {
                String message = MessageUtils.getExceptionMessageString
                    (MessageUtils.NULL_PARAMETERS_ERROR_MESSAGE_ID, "convertedId");
                throw new NullPointerException(message);
            Converter returnVal = (Converter) newThing(converterId, converterIdMap);
            if (returnVal == null) {
                Object[] params = {converterId};
                if (logger.isLoggable(Level.SEVERE)) {
                    logger.log(Level.SEVERE,
                            "jsf.cannot_instantiate_converter_error", converterId);
                throw new FacesException(MessageUtils.getExceptionMessageString(
                    MessageUtils.NAMED_OBJECT_NOT_FOUND_ERROR_MESSAGE_ID, params));
            if (logger.isLoggable(Level.FINE)) {
                logger.fine(MessageFormat.format("created converter of type ''{0}''", converterId));
            return returnVal;
        }So without all the error checking, the method basically boils down to just this:
    return (Converter) newThing(converterId, converterIdMap);The heart of newThing consists of this:
    try {
                result = clazz.newInstance();
            } catch (Throwable t) {
                throw new FacesException((MessageUtils.getExceptionMessageString(
                      MessageUtils.CANT_INSTANTIATE_CLASS_ERROR_MESSAGE_ID,
                      clazz.getName())), t);
            return result;So there's no code that's supposed to set these properties in sight anywhere.
    Also the converter tag (com.sun.faces.taglib.jsf_core.ConverterTag) nor any of its base classes seems to contain such code.
    Either I'm doing something very wrong, or Mojarra has silently removed support for setting properties on custom converters, which would seem awkward.
    Any help would be greatly appreciated.

    rlubke wrote:
    Mojarra has never supported such functionality, so it hasn't been silently removed.Thanks for explaining that. Like I said, the silently removed option thus was the less likely of the two ;)
    The documentation for this converter sub-element states:
    <xsd:element name="property"
    type="javaee:faces-config-propertyType"
    minOccurs="0"
    maxOccurs="unbounded">
    <xsd:annotation>
    <xsd:documentation>
    Nested "property" elements identify JavaBeans
    properties of the Converter implementation class
    that may be configured to affect the operation of
    the Converter.  This attribute is primarily for
    design-time tools and is not specified to have
    any meaning at runtime.
    </xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    That documentation is quite clear indeed. I now notice that the project I was working on still had a JSF 1.1 faces-config DTD, and that documentation said this:
    Element : property
    The "property" element represents a JavaBean property of the Java class represented by our parent element.
    Property names must be unique within the scope of the Java class that is represented by the parent element,
    and must correspond to property names that will be recognized when performing introspection against that
    class via java.beans.Introspector.
    Content Model : (description*, display-name*, icon*, property-name, property-class, default-value?,
    suggested-value?, property-extension*)So there it actually says nothing about the design time aspect.
    I do have to mention that I think this entire difference between design time and run time could maybe have been a bit more officially formalized. Don't get me wrong, I think JSF and the whole of Java EE is a really good spec that has helped me tremendously with my software development efforts, but this particular thing might be open for some improvements. A similar thing also happens in the JPA spec, where some attributes on some annotations are strictly for design time tools and/or code generators, but it's never really obvious which ones that are.
    More on topic though, wouldn't it actually be a good idea if those properties where taken into account at run-time? That way you could configure a set of general converters and make them available using some ID. In a way this wouldn't be really different in how we're configuring managed beans today.

  • Period 001/2010 is not open for account type S and G/L 799999

    Hi friends
    I am in SD. I am trying to create stock for newly created material, movement type 561. system give error Period 001/2010 is not open for account type S and G/L 799999.
    I use the T. Code OB52, i am confuse which combination i.e. variant, A, from Account, To Account, from per. 1 Year, To period, Year, from per. 2 year, To Period, Year, I should choose, can some one send me detail reply and solution which may display after this t. code OB52. I also have questin which movement type i should use.
    Using T.Code MMPV, i have created new period (from company code 1000, To Company code 1000, period 01, Fiscal Year 1020.
    I was reading previous solution, one of them was i should close period 2009. I tried to do this using using MMPV, i entered fiscal year 2009. Error display  The specified year 2009 is not the current calender year.
    Thanks
    Raj

    Hi
    Hope you are doing this in test server
    If this is a real time issue this needs to be addressed by a FI consultant
    First see for your company code what is the posting period varient maintained in OBY6
    Say if it is 1000
    Then in OB52
    Maintain a setting like this
    1000-S-BLANK-ZZZZZZZZZZ-1--2010122010-13--201016--2010
    Then save it
    This is for Account type S that is GL accounts
    Preferably maintain the same for      A,   + ,   D,   K,   M,   V
    Regards
    Raja

  • EBS - Posting Area 2 no longer determines Account type & GL account

    Hello all,
    I'm looking for some help/advise on Electronic bank statement processing.  I suspect this has been caused by upgrade to EHP6, but I have not found any notes to help me.
    Relating to inter-company payments.
    We have an issue where posting area 2 is no longer determining the Account symbol & account type based on a search string, which results in error message F5 263 - difference too large for clearing.   
    This then means the team have to manually post process these items, where as before this was automatic, obviously they are not happy.
    The search string is still working as I can see the correct internal transaction has been determined when reviewing the item in FEBA that should have posted automatically.
    Prior to the payment coming through on the bank statement the finance team post a DZ customer clearing document with credit entry posted to a sub GL bank account, this document quotes the payment document number in the XBLNR reference field.
    Through debug I have found that POST_INTERFACE_CLEARING is not receiving the GL account or the Account type when it gets to the FB05 screen to search for the related item to clear in the sub GL.
    Anybody else encountered this & found a way to fix it?
    Thank you
    Steve

    Hi Raghav,
    Thanks for the advice, I had found this note during my search but I'm not convinced it is the answer. 
    Our search string rule is set to use All interpretation algorithms & I've run the bank statement with the ranges for BELNR & XBLNR specified.  I don't want to have a GL tolerance & posting to an alternative account as that changes the business process & would require a new GL account for this purpose.
    I just want it to behave like it did before EHP6.
    Steve

  • Advantages of using "Exchange" account type

    I'm trying to determine the best way of using Mail in a predominantly Outlook/Exchange environment. I see that Mail has an "Exchange" account, and describes it as follows:
    An Exchange account allows you to connect to your Exchange server via IMAP, and if you enter text in the Outlook Web Access Server field, Mail filters non-email related content from the server.
    Is this really all it does? Hide the folders like "Journal", "Notes", etc? Why doesn't it hide "Calendar"? Is there some flag one can set on a folder to mark it as an Exchange folder?
    Are there any other advantages of using the "Exchange" account type as opposed to an IMAP account?

    Turns out the Exchange account type ignores folders like Contacts, Journal and so on (but not Calendar or Sync Issues. Grr.

  • Payment Advice Account Type

    Hi,
    I want to ask when should the Account Type be set to S (GL Account) when creating a payment advice using transaction FBE1.
    Thanks

    Hi,
    Payment advice notes with the G/L account account type are producedwithin manual clearing processing for a G/L account if the currentprocessing status is noted as the payment advice. The processing canthen be continued later with reference to the payment advice number.
    Aravind

  • Maintaining different values for Accounting Type (KOART)

    Hi experts,
    I have several accounting tcodes such as FBV0, FB03, FB08, FV65,FV60 in one parent role.
    FV60, FV65 are added to this role as FBV0 is checking internally for this authorization object. 
    All these tcodes share a same object  F_BKPF_KOA which differ by activity and the accounting type (KOART).
    The KOART field is an org level field defined by SAP and I have entered D,K,S as values.
    But the auth object values should be different for the accounting types.
    i.e  03 for D,K,S
         01,02,03,77  for S
         03,77 for K
    All the derived/child roles for this parent should also have the same document type as the parent. How can I achieve this as this object is maintained at the org level.
    I could not delete this obj from being an org level element as it is defined by SAP.
    Appreciate your response.
    Thanks
    Kee

    > If KOART is an org field you cannot differentiate between authorized activities for each of the KOART values in one role. Whether you maintain values in the parent or not only matters if you're planning to assign the parent roles to users or if you just use them as templates.
    >
    Parent Roles should not be assigned to any users. It should only be used as Template to grant and control Non-Organization Level authorizations centrally (you can see these option in Parent roles). Concept of Parent-Child role is to avoid creating same roles where all authorization field values are exactly same and differs only for Organization Values (different Site / Branch Office specific constants). So we can maintain the Org. levels as different sets for a single Parent role as I already explained.
    For more details:  Note#314513 - PFCG: Maintaining individual organizational levels
    Note#532695 - PFCG: Incorrect organizational level values in derived roles
    >
    > Please elaborate on this one. I think we're running into an urban myth here....
    >
    > Organizational levels are only instruments to assist in building roles. For the final profile it does not matter whether a field is organizational or not. It will not influence the behaviour of the authority-check.
    For the final profile it matters during loading of User authorization data to User Buffer. Think about the Parameter values stored for a particular user. How it behaves for all Objects containing a particular Auth. Field and providing default assignment for that user whenever he tries to perform any action where this field is required to populate.
    If we delete any Object from SU24 proposal then it doesn't mean that the check will not be carried out or the Org. Field contained in that object will not be populated with it's values. I tried to make this clear to the requester.
    Regards,
    Dipanjan
    Edited by: Dipanjan Sanpui on Jun 8, 2009 7:49 AM

  • G\L Account types

    Hi,
    what are the types of G\L Accounts? What is the T.code to create the g\l account at the chrt of accounts level?
    what is meant by Group account?
    Thanks.

    Hi,
    G/L accounts can be devided by the following account types: Assets, Liabilities, Fund Balances, Expenses, and Revenue
    Asset, Liability, or Fund Balance Accounts
    If the request is for an Asset, Liability, or Fund Balance account, establish the account in SAP and establish a corresponding Balance Sheet Account in the Classic system. Also maintain the mapping between the G/L Account and the Balance Sheet Account.
    Revenue or Expense Accounts
    If the request is for a Revenue or Expense Account, set up a corresponding Primary Revenue or Cost Element in the Controlling module (CO) of SAP and an Object Code in the Classic system. Also maintain the mapping between the G/L Account and the Object Code.
    Employee Benefit, Allocations, or Overhead Expense Accounts
    If the request is for Employee Benefit, Allocations, or Overhead Expense accounts, no SAP G/L Account is needed. However, set up a Secondary Cost Element in SAP Controlling and an Object Code in the Classic system. Also maintain the mapping between the Secondary Cost Element to the Object Code.
    You can create it with T code FS00.
    Thanks

  • HR (Planning database) Does the account type matter when suppressing rows?

    Does the account type matter when using the Advanced Options row suppression?
    The report will suppress all the 0 rows if the suppression is based on a column with a Planning acct type "Revenue", but it doesn't do anything if the suppression is based on a column with a Planning acct type "saved assumption."
    Just wondering if this is why I can't get the report to suppress the rows. Everything else seems to be the same in the report.
    Thanks in advance for any assistance on this.

    user11232292 wrote:
    Does the account type matter when using the Advanced Options row suppression? Yes. If you click on the Row > Advanced Options > Setup, you will notice the Account Type under the Suppress Row If drop-down.
    Can you tell us how your Conditional Suppression is set up? If this report consists of account types Revenue and Saved Assumption only, and your conditional suppression works just on Revenue account types, you can insert a second condition for the Saved Assumption account types.
    Let me know if this helps or if you have any other questions.
    Cheers,
    Mehmet

  • Goods Issuance: Message F5243 ... Account type D not defined

    Hi folks!!
    While doing goods issuance, i am getting following error meaasge.
    Account type D is not defined for document type WA.
    Please let me know the path to make this setting.
    Best regards,

    This error occured when posting made on cross company wise. if it is required then go to T code FBPK and check the box of customer.
    Regards

  • FI_Document Archiving - Account type life not reached (T071)

    Hi,
    This is related to archiving FI_Documnt. Few of the documents are not able to archive and the reason is Account type life not reached (T071). I have entered same number of retention dayes for account type and document type, that is too for all account type (*) and document type. My understanding is system first checks the header level retention i.e. document type and then moves on to check account level. If retention days are same for doc and account type, when document type retension reached why should I get mess as account type life not reached.
    Could someone help me to understand what could be the reason.
    Regards,
    Shailesh

    Hi Gurus
    I'm in a project archive, I have a problem with FI_DOCUMNT, and set the days of Life Document / Account which exceeds the limit of days to archive, when I run the archive process sends me an error that life has not been reached, any ideas?
    The year archiving is 2006.
    Document Life 366
    Life Account 366
    release 4.7
    Regards

  • Mail account type change

    We have a user who recently got an ipad.  Until now she only accessed her email via a laptop with mail.app or via a browser.  Now she wants to access with the mobile device and keep the laptop, ipad and server email messages in sync.
    The email account is set up on her laptop as a POP account and as an IMAP account on the ipad.  We'd like it all to be set up using Exchange protocol. 
    If we delete the existing POP account and re-establish the account as exchange, what will happen to all the old email messages on the laptop?  The user does not want to lose them.
    Thanks for any help.
    Rich

    You can drag the mail folder (not the application or icon, the mail folder that houses the messages) to the desktop and all of her messages will be stored there and can be reimported back into the mail application. Its a good way to back up incase something happens!
    If you're on OSX 10.7, its a hidden folder. In previous versions, you can spotlight search and the 'mail' folder will show up (not to be confused with the 'Mail Downloads' folder). If she's on OS X 10.7, you can find the folder like this:
    1. Click the 'Finder' icon on your dock (happy face guy)
    2. At the top of your screen you'll see the Apple > Finder > File > Edit etc etc... Click 'Go'
    3. Select 'Go To Folder' and type ~/library and press 'Go'
    4. (You should be in the library folder at this point) -- find the 'Mail' folder and drag it to the desktop.. then you can delete and re-add the mail account and reimport the mail and mailboxes.
    Hope this helps!

  • Accidentally trashed mailplist for builtin account types

    Hi
    I accidentally trashed the plist file from /library/mail/account types/.com.builtin.mail accounts.
    I believe this file is required for automatically setting up email accounts in mail can anyone please tell me how to get the plist file without doing a reinstall.

    You are correct as to that the file is required for automatically setting up mail accounts. Here is how to get it back.
    1. Download a copy of Pacifist from http://www.charlessoft.com/
    2. Open Pacifist
    3. Insert your Leopard Install Disc, and click open Apple Install Disks and select the DVD you inserted
    4. After it loads, use the search bar to search for the missing file (typing com.apple.builtin will find it).
    5. Click install in upper left corner and type your password.
    That's it! The file has been replaced! And if you were running Time Machine, imagine how much easier that would have been! Hope this works for you!

Maybe you are looking for

  • Installing Itunes and Quicktime...does not install!!

    Hi everyone. I just got an Ipod Nano today and I can't even install Itunes onto my laptop, which runs Windows Vista. This is the message that I get: "Windows ® Installer. V 4.00.6000.0 msiexec /Option <Required Parameter> [Optional Parameter] Install

  • Creating XML files in Java

    i am new to java progamming. I have created project using swing and JDBC. Now I want to do some modifications in that project and want create an XML file for the same. I don't know which API to use. Through googling i have only found information on J

  • Charging control of an ipod

    I have several ipods and a few different speakers systems for them. Most of these accessories (and Macs) will automatically charge my ipods as soon as they are connected - which is nice - if you want it charged. Sometime I don't want my ipod charged,

  • Need help on deleting workflows

    Hi experts, I need to delete workflows that need to be retired. I am veryvery new to workflows. So, what is the Tcode to delete the entire workflow? also, what are the steps that need to be check upon deleting them? i need to delete their custom tabl

  • How to hide ALV column in webdynpro

    Hi frnds,                I want to hide one columns in ALV output on webdynpro , give the procedure ... Thanks & Regards, Rajesh.j