Provide me the answers with good explanantion

Hi Peers,
1. Where is data stored in HFM?
2. Can i display line item details in any report?
3. How do you Achieve closing process in HFM?
4. Child Entities have data,but there is no data in parent entity?What could be the reason?
5. i don't want an account to get translated, What account type should be used?

Hi Bangalore,
1. Where is data stored in HFM?
Ans: RDBMS
2. Can i display line item details in any report?
Ans: NO
3. How do you Achieve closing process in HFM?
Ans: Process management
4. Child Entities have data,but there is no data in parent entity?What could be the reason?
Ans: Consolidation is not run for the parent entity
5. i don't want an account to get translated, What account type should be used?
Ans: Select Account type as Group Lable
Note: For detailed information please go through the admin guide
regards
Dev

Similar Messages

  • Give me the answer with reason

    If this code results in an error, the remedy is: 
    SELECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3. 
    WRITE: /1 tab1-fld1, tab1-fld2. 
    ENDSELECT. 
    A: Add a SY-SUBRC check. 
    B: Change the WHERE clause to use fld1 or fld2. 
    C: Remove the /1 from the WRITE statement. 
    D: Add INTO (tab1-fld1, tab1-fld2).

    Hi Prakash,
    You internal table would have to have a different name e.g. itab or something and then you move the multiple records using INTO TABLE itab.
    Otherwise, if you are getting a single record, then you can use the same database table name as a work area by first declaring the table with
    TABLES: tab1.
    Then move the field into TAB1-<field>
    Cheers

  • Provide me the answer

    what are outbound delivery and inbound delivery in bdc.

    Hi Kudala,
    Would appreciate if you could mentioned brief/ area related about your question in the subject line.
    It help not only to quickly find your question and answer them but also for other member of the forum to find answer in the future if they have same question.
    Welcome and Rules of Engagement
    <b>Use a good subject line.</b> <i>The subject header is your golden opportunity to attract qualified experts' attention in around 50 characters or fewer. Don't waste it on babble like "Workflow question". As we all have busy jobs, often we just skim through the list headings and read those that interest us. Also, DO NOT reply to an unrelated post to ask a different question. This confuses those reading the thread and may lose people that would be interested in your question. Always start a new topic with a new mail.
    Bad subject: Urgent problem with workflow
    Good subject: Error after transport: "Inconsistent workflow definition"</i>
    Hope you have a enduring time with SDN

  • How to change the data provider of the tree with the selection of combobox

    This is my XML data in a file named `nodesAndStuff.xml`.
        <?xml version="1.0" encoding="utf-8"?>
        <root>
            <node label="One" />
            <node label="Two" />
            <node label="Three" />
            <node label="Four" />
            <node label="Five" />
            <node label="Six" />
            <node label="Seven" />
            <node label="Eight" />
            <node label="Nine" />
        </root>
    The component using this data source is an `XMLListCollection` which is bound to a spark `ComboBox` and the code for that is:
        <s:Application name="Spark_List_dataProvider_XML_test"
            xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/halo"
            initialize="init();">
        <fx:Script>
            <![CDATA[
                private function init():void {
                    xmlListColl.source = nodes.children();
    private function closeHandler(event:Event):void {
                    myLabel.text = "You selected: " +  ComboBox(event.target).selectedItem.label;                 myData.text = "Data: " +  ComboBox(event.target).selectedItem.data;
            ]]>
        </fx:Script>
        <fx:Declarations>
            <fx:XML id="nodes" source="nodesAndStuff.xml" />
        </fx:Declarations>
        <mx:ComboBox id="cmbList" dataProvider="{ListXLC}" labelField="STOREVALUE"  close="closeHandler(event);"/>
         <s:dataProvider>
            <s:XMLListCollection id="xmlListColl" />
         </s:dataProvider>
    </mx:ComboBox>
    <mx:VBox width="250" color="0x000000">
                <mx:Text  width="200" color="blue" text="Select a type of credit card."/>
                <mx:Label id="myLabel" text="You selected:"/>
                <mx:Label id="myData" text="Data:"/>
            </mx:VBox> 
    <mx:Tree id="myTree" width="50%" height="100%" visible="false" />
    </s:Application>
    now another of my xml for example this is one.xml
    <?xml version="1.0" encoding="utf-8"?>
    <root>
        <node label="Eleven" />
        <node label="Twelve" />
        <node label="Thirteen" />
        <node label="Fourteen" />
        <node label="Fifteen" />
        <node label="Sixteen" />
        <node label="Seventeen" />
        <node label="Eightteen" />
        <node label="Nineteen" />
    </root>
    and another one is two.xml
    <?xml version="1.0" encoding="utf-8"?>
    <root>
        <node label="twety one" />
        <node label="twety two" />
        <node label="twety three" />
        <node label="twety four" />
        <node label="twety five" />
        <node label="twety six" />
        <node label="twety seven" />
        <node label="twety eight" />
        <node label="twety nine" />
    </root>
    Now I have added my tree just below the list and I have saved counting from 10 to 19 in `one.xml`, 20 to 29 in `two.xml` and so on in different XML file. I have no clue how to connect the XML containing counting from 10 to 19 as the single node in tree at the selection of label one in list and make its visiblity true.this all are dependent on combobox as on selection of item in combobox will lead to change the dataprovider of tree at runtime. i.e on selecting value one in combobox one.xml should be the data provider for tree control. Can anyone help me on this

    This is my XML data in a file named `nodesAndStuff.xml`.
        <?xml version="1.0" encoding="utf-8"?>
        <root>
            <node label="One" />
            <node label="Two" />
            <node label="Three" />
            <node label="Four" />
            <node label="Five" />
            <node label="Six" />
            <node label="Seven" />
            <node label="Eight" />
            <node label="Nine" />
        </root>
    The component using this data source is an `XMLListCollection` which is bound to a spark `ComboBox` and the code for that is:
        <s:Application name="Spark_List_dataProvider_XML_test"
            xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/halo"
            initialize="init();">
        <fx:Script>
            <![CDATA[
                private function init():void {
                    xmlListColl.source = nodes.children();
    private function closeHandler(event:Event):void {
                    myLabel.text = "You selected: " +  ComboBox(event.target).selectedItem.label;                 myData.text = "Data: " +  ComboBox(event.target).selectedItem.data;
            ]]>
        </fx:Script>
        <fx:Declarations>
            <fx:XML id="nodes" source="nodesAndStuff.xml" />
        </fx:Declarations>
        <mx:ComboBox id="cmbList" dataProvider="{ListXLC}" labelField="STOREVALUE"  close="closeHandler(event);"/>
         <s:dataProvider>
            <s:XMLListCollection id="xmlListColl" />
         </s:dataProvider>
    </mx:ComboBox>
    <mx:VBox width="250" color="0x000000">
                <mx:Text  width="200" color="blue" text="Select a type of credit card."/>
                <mx:Label id="myLabel" text="You selected:"/>
                <mx:Label id="myData" text="Data:"/>
            </mx:VBox> 
    <mx:Tree id="myTree" width="50%" height="100%" visible="false" />
    </s:Application>
    now another of my xml for example this is one.xml
    <?xml version="1.0" encoding="utf-8"?>
    <root>
        <node label="Eleven" />
        <node label="Twelve" />
        <node label="Thirteen" />
        <node label="Fourteen" />
        <node label="Fifteen" />
        <node label="Sixteen" />
        <node label="Seventeen" />
        <node label="Eightteen" />
        <node label="Nineteen" />
    </root>
    and another one is two.xml
    <?xml version="1.0" encoding="utf-8"?>
    <root>
        <node label="twety one" />
        <node label="twety two" />
        <node label="twety three" />
        <node label="twety four" />
        <node label="twety five" />
        <node label="twety six" />
        <node label="twety seven" />
        <node label="twety eight" />
        <node label="twety nine" />
    </root>
    Now I have added my tree just below the list and I have saved counting from 10 to 19 in `one.xml`, 20 to 29 in `two.xml` and so on in different XML file. I have no clue how to connect the XML containing counting from 10 to 19 as the single node in tree at the selection of label one in list and make its visiblity true.this all are dependent on combobox as on selection of item in combobox will lead to change the dataprovider of tree at runtime. i.e on selecting value one in combobox one.xml should be the data provider for tree control. Can anyone help me on this

  • How do I put a "close file" icon in the toolbar? I've searched for an hour to find the answer with no luck?

    How do I put a "close file" icon in the toolbar? There's an "open file" icon by default, but I cannot -- in spite of searching for an hour--find a way to put a "close file" icon in there?

    Toolbar where? What program? What system?
    Mylenium

  • Can't connect to another computer on the network with 'good' password

    Hi;
    Out of the blue my wife can no longer connect to my machine on our local network using her normal password. She gets the error 'Sorry, the password you entered is incorrect. Please re-enter it' at the login box. In testing her password it seems fine for all else - can log into her machine fine, can log into other computers on our network OK, do administrator things, etc.....just no long into mine.
    I can log into my machine from hers using my account info, so the connection is fine it seems. It just won't accept her password for this single action.
    Have repaired permissions on both machines, restarted several times, etc. all to no avail. Went to look into her keychain to see if something was amiss there but did not really see anything that pointed to this particular interaction (perhaps it is stored elsewhere?)
    Nothing out of the ordinary happened to her nor my machine that I can think of. Her machine is still on 10.3.9 and I'm on 10.4.7.
    Scratching my head on this one, so any help much apprecated.
    ~Roger

    After considerable testing I've determined that the problem is in the sharing settings on my computer and not the password on the other computer. I've not solved the issue but clarified the questions I have and posted under the 'networking and sharing' discussion in hopes of some help.

  • Please provide me the answer

    Hi Everyone.
    How to close periods in TCODE MMPV.

    Hi,
    Read the Rules of Engagement of the Forum before posting.
    This forum is not for learning or for training purpose.
    Some important rules to be followed are
    1.Use appropriate subject title.
    2.Avoid basic questions(which can be searched from the forum).
    3.Search before posting.
    You get a better idea if you read the Rules of Engagement of the Forum on how to use the forum in a better way.
    ~Andrew

  • DHCP issue - DNS suffix provided to the clients with "" and "" symbols replacing the "."

    Hi,
    My station are receiving strange DNS suffix from the DHCP server.
    Normally supposed to be set as for ex: mydomain.com.local and instead of this is receives like this : mydomain♥com♣local
    Any idea where is the issue. Config problem on the Windows 7 pro station or on the DHCP server (Zyxell USG 110 firewall/router)
    Thanks for your advices.
    Phil

    Hi,
    Did this issue occur on all clients or just on one specific computer?
    If these issue occur on all computer, use network monitor capture the network activity. And then upload the log to OneDrive, post the shared link here.
    About how to use it, please read the guide below:
    Network Monitor
    http://technet.microsoft.com/en-us/library/cc938655.aspx
    You could get it from the following address:
    Microsoft Network Monitor 3.4
    http://www.microsoft.com/en-in/download/details.aspx?id=4865
    Karen Hu
    TechNet Community Support

  • Able to connect to the mypassport web site, but the screen with the License Agreement does not come

    My PC runs under Windows 8.1Under the WiFi mode, the Mypassport wireless disk is identified and is connected, with no limitation. As expected.When I follow the procedure as mentionned in the User Manual, I have to use my browser (firefox in this case) and I type the adress : http://my passport.I enter the WD website, but instead having a window with the License Agreement to accept, I find a regular web page with the various WD external disks: http://support.wdc.com/product/download.asp?level1=2&lang=fr.I tried the other option suggested in the manual with the proposed IP adress, and I find a WD page with a user manual.Conclusion : I can use the disk using the USB cable, but the disk does not work under the WIFI mode.What should I do to connect to the right page?Thanks for the answer. 

    Good information. I don't believe that an internet connection is required when you first set up the MPW, so let's get that done. An internet connection is only required to do firmware updates and connect to Cloud services. You should update the firmware after you have the MPW connected properly and working. I don't think there is a Windows Phone version of the WD My Cloud App. You could use the browser on the phone to access the MPW Dashboard. But there may be issues with that so let's keep it simple. Follow these instructions like a recipe, but keep in mind what it says in the manual. You will need both these instructions and those in the manual. 1. Disconnect the USB cable from the 4G hotspot.2. Turn off the 4G hotspot. Power it down to make sure its network isn't available.3. Make sure your PC is turned on, and the Wi-Fi is on, looking for a network.4. Turn on the MPW and make sure the Wi-Fi LED lights up.5. Press the WPS (Wi-Fi) button on the MPW until the Wi-Fi LED flashes.6. Your PC should see the MPW network. Connect to that network.7. Turn on the 4G hotspot. Wait for it to start up fully. Do not connect your PC to the 4G hotspot at this time. Wait until the instructions say to connect to the 4G hotspot.8. Use a browser to go to the address http://mypassport (unless you have already changed that name when you set the MPW wireless password. If so use that name, or the IP address; http://192.168.60.1 ) This should open the MPW Dashboard for you. Depending on how much of the setup has actually been completed, you may be asked to set up a wireless password at this stage. If so, the MPW will force your PC to disconnect, and you will need to connect again. If you have already set a wireless password, you should be ready to complete the setup and connect the MPW to the 4G hotspot. The manual will have more information about this step, but you should be able to follow the instructions on screen.9. On the Wi-Fi tab in the Dashboard, you should see a graphic with your PC on the left, the My Passport Wireless in the middle, and a Wi-Fi selection list on the right. Select your 4G hotspot to connect to, enter the 4G hotspot security information (password), and the MPW will connect to the 4G hotspot Wi-Fi network. From now on the MPW will remember the 4G hotspot Wi-Fi network and connect to it when it is available.10. Your PC will now have internet access through the MPW, then through the 4G hotspot, to the internet. This will work fine, but it will be a bit slower than what you are used to, so now . . . 11. Close the browser with the Dashboard displayed.12. Disconnect your PC's Wi-Fi from the MPW network and connect your PC again to the 4G hotspot Wi-Fi network. Do not use the USB connection at this time. Use the Wi-Fi connection from the PC to the 4G hotspot.13. Open a browser window again and connect to the MPW Dashboard using http://mypassport  This may be a be a bit slow to respond, as it requires network discovery on your PC to do its thing. The IP address  http://192.168.60.1 will not work now as it only works when you directly connect to the MPW, rather than via a router, or 4G hotspot in this case. If you know how to look up the IP address that the 4G hotspot gave the MPW on its network, you could use that address, which should connect faster. But http://mypassport, or http://<YourNameForTheMPW> if you changed the name should work.14. If the Dashboard worked in the above step, you can finish any setup changes you may want to do, but you are all good to go. The MPW should appear in the "Network" section of Windows Explorer, and you should be able to copy files on and off the MPW, play music, videos, etc. that you have on the MPW. 15. Once you are happy that the MPW is working properly, change to using the USB connection from your PC to the 4G hotspot, if you want to, and check that everything still works properly. It should, as long as your 4G hotspot puts the USB and Wi-Fi connections on the same network, and acts as a router between all connections. Easy really, wasn't it?

  • HT5312 How do I change my security questions and answers if I forgot the answers?

    I loaded 25 bucks on my iPod on iTunes and wanted to buy myself something from a game with that money but it asked me to answer my security questions. I have two and I don't remember one of them so how do I change the answer with that rescue email or whatever?

    If you have a rescue email address, send the answers to it, wait a few hours, and check its spam filter. If not, use the link to contact the iTunes Store staff in the 'Additional Information' section of that article; if you don't already have a valid rescue email address, only Apple itself can assist with recovering lost answers.
    (88708)

  • Forgotten the answers to my security questions now cant access my account ! HELP !

    is there a way to reset the answers with out knowing the old ones ?

    See this previous discussion.
    HT1491 How do i get the security...: Apple Support Communities

  • Hello. I recently bought an Iphone 5S. I tried to charge it with the original charger that came with the phone and it doesn´t work...The cable is good, I´m charging the phone via my PC. I read many answers posted here but no one helped me. Thanks in

    Hello. I have a new Iphone 5S and the charger taht came with the phone doesn´t charge my Iphone. The cable is good because I´m charging the phone via my PC. I tried every recomendation posted here but none helped me...I live in Argentina and we don´t have local support here, I would´ve ask for a new one but it´s not an option here. Does anyone know what can I do? Thanks in advance. Regards.

    I live in China as well and my iPhone5s is the model A1530 I bougth outside China. I have the same problem as Nikatnight with the iPhone while the iPad Air (wifi only) is working like a charm. It must be definitely something related to the carrier since I was abroad few days ago and everything worked well.
    If you pay attention at the source of your maps, you'll discover they are provided by AutoNavi instead of TomTom and make them appear in chinese with their own border interpretation. Queries are only acceppted in Chinese (p.e. if I type in english "Los Angeles International Airport"  it replies it cannot locate it)
    I suppose everything will be fine when you'll be out of censorship....
    Perhaps iOS  Apple Maps are absolutely useless for expatriate in China.
    Use Google Maps instead
    BTW, I'm surprised how much Apple might prostrate towards hard power Governments.... No matter what, money are always on top!

  • 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 am unable to open scanned documents (with .jpg file extension) in my e-mail inbox, on the Mail app on my iPad. Please provide a clear answer. Thanks a lot.

    I am unable to open scanned documents (with .jpg file extension) in my e-mail inbox, on the Mail app on my iPad. Please provide a clear answer. Thanks a lot.

    Can you actually see that the attachment has a .jpg extension?  Some mail systems strip it off (I've seen AOL do that) which makes the attachment difficult to open.

  • Hello I have a problem with security questions and i cant reset to my email  The error was   Exceeded Maximum Attempts  We apologize, but we were unable to verify your account information with the answers you provided to our security questions. You have

    Hello
    I have a problem with security questions and i cant reset to my email
    The error was
    Exceeded Maximum Attempts
    We apologize, but we were unable to verify your account information with the answers you provided to our security questions.
    You have made too many attempts to answer these questions. So, for security reasons, you will not be able to reset password for the next eight hours.
    Click here      for assistance.
    i waited more than eight hours. and back to my account but it is the same ( no change ) i cant find forgot your answers
    http://www.traidnt.net/vb/attachment...134863-333.jpg
    can you help me please

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

Maybe you are looking for

  • Slow Disk Access

    Hi, I have a Dual 2.5 Ghz PowerPC G5, which has two 250GB hard disks. I also have a Lacie 250GB Firewire hard disk installed. I am using Mac OS X 10.4.4. When use this computer the CPU and disk performance are OK. However, whenever and application us

  • SQL Report Region Refresh

    Application Express 4.0.2.00.09 Oracle 11 XE How do I setup a Dynamic Action to refresh my region every X number of seconds? I can refresh the region easy enough on events, but I can't seem to figure out the timing thing. Maybe I just need some sleep

  • Print ical to paper datebook?

    Hi, Has anyone figured out how to print Ical pages to either daytime or franklin covey sized sheets?  There has to be a way.... Thanks!

  • Windows 8.1 blank screen

    HI All Wondering if anyone has experienced this issue before during the deploying if a windows 8.1 image, after the first reboot (image deployment + drivers) the machine boots into a completely blank (black) screen Have tried with and without drivers

  • Problem emptying trash

    Has anyone had problems removing applications since the upgrade?