Help Required for using HR_ECM_BUDGET_UNITS_DISPLAY

Hi,
I have been asked by my client to find out the Total budget for an organization unit. He asked me to use the function module HR_ECM_BUDGET_UNITS_DISPLAY for this purpose.
Has anyone used this function module before? As i have not used this function module before can anyone tell me what all parameters have to be passed in this function module.
Thanks,

Hi
The following parameters need to be passed in this FM:
BUTYP (Budget type)
BUDID (Budget Unit ID)
ORGID (Organization Unit ID)
FINYR (Financial Year)
FINREL (Checkbox for 'Display budget financing view')
In fact, you may check the report RHECM_BUDGET_RPT. I think that this report calls the same FM. You can also read more about these fields from the report selection screen.
Hope this helps.
Regards,
Vikas Bhatia
Ps. - Please award points for helpful answers.

Similar Messages

  • Help required for using ajax in netweaver

    Hi..
    Can i Use Ajax for my netweaver applications?? If yes, then how?? Any pointers regarding that will be adequately rewarded points..
    Thanks

    For pure JavaScript enabled AJAX application, no problem. You just write the application as usual and send XMLHttpRequest with parameters to server, then update the web page with your JavaScript code;
    I can show you some sample code here:
    <script type="text/javascript">
            function createXMLHttpRequest() {
                 var xmlHttp;
                if (window.ActiveXObject) {
                        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
                else if (window.XMLHttpRequest) {
                        xmlHttp = new XMLHttpRequest();
                return xmlHttp;
            function onclick_changeModelHouse(id) {
                var xmlHttp = createXMLHttpRequest();
                xmlHttp.onreadystatechange = function(){
                     if(xmlHttp.readyState == 4) {
                          if(xmlHttp.status == 200) {
                               // here you get your page component with id or any you like,
                                    // then update it with data returned from the request you sent;
                                   // Here I update one image url path;
                                  var img = document.getElementById("houseModel");
                                   // suppose you return the image file name;
                         img.innerHTML="<img src='images/" + xmlHttp.responseText +  "'>";
                xmlHttp.open("GET", "http://myserver:8080/myApp//AjaxImageService?model="+id, true);
                xmlHttp.send(null);
    </Script>
    For some button in your page you add javascript code like
    onClick="onclick_changeModelHouse(id)"
    somthing.
    You need develop servlet to response your request, and usually you need pass back your data in XML format, here I just use plain text for easy understanding.

  • Hardware requirements for using BI-IP

    Hello experts,
    i would like to have something like a how to paper in which i can find something about the hardware requirements for ideal using of BI integrated planning. Can anyone give me a help?
    Thanks in advance.
    Best Regards,
    Ali

    HI Ali,
    I have been unable to find specific hardware requirements for using BI -IP so I would refer you to the hardware requirements for running Bi as per notes:
    1013139 - prereqs for frontend bi7
    1013201 - Hardware and Software requirement for BI Standalone frontend
    and please also review the IP note:
    1056259 - Collective note: Performance of BI planning
    I hope this helps
    best regards
    Orla.

  • Is N55-8P-SSK9 required for using native FC ports on N55-M8P8FP

    Hello,
    Could you tell me if  Storage Services license (N55-8P-SSK9) required for using native FC ports on N55-M8P8FP (non-UP ports module - 8 ports 1/10G + 8 ports 8/4/2/1G FC) ?
    thank you

    Hello,
    Could you tell me if  Storage Services license (N55-8P-SSK9) required for using native FC ports on N55-M8P8FP (non-UP ports module - 8 ports 1/10G + 8 ports 8/4/2/1G FC) ?
    thank you

  • Help required for unicode compatibilty

    Dear All,
    We are in a process of analyzing the impact of unicode compatibility for our environment.
    Following is our scenario:
    - ECC6.0 is non unicode systsem
    - Need to buid unicode CRM 7, SCM 7, PI 7.1 and BI7
    - Need to integrate the above systems to non unicode ECC system.
    Our questions are :
    1. Is there any performance consideration when using communication between an Unicode and non-Unicode system?
       Is Unicode - Unicode faster than Unicode - non-Unicode communication performance wise?
    2. Do we face any  technical or functinal problems while trying to integrate
       unicode BI/ NW Java Stack  to non unicode systems.
    3. Do we need to review our sizing estimations due to unicode implemenation?
    5. what will be the storage consumption increase for unicode systems compared to non unicode?
    It would be greatly helpful for me if you can clarify these doubts.
    Thanks and Regards

    Hi,
    1. I think no one has really measured this. I expect a slightly higher requirement for Unicode <--> Non-Unicode interfaces.
    2. Please have a look at SAP Notes 838402, 73606, 975768 and 1358929 for restrictions in Non-Unicode systems. SAP highly recommends to go for Unicode in the whole landscape.
    3. and 5.  If you use the SAP quicksizer (http://service.sap.com/quicksizing), then Unicode is integrated.
    " Please note that the Quick Sizer results include Unicode requirements. For more
    information on additional requirements caused by Unicode, see
    http://service.sap.com/unicode -> Unicode Media Library -> Unicode information on
    specific topics: SAP Business Suite Unicode Hardware Requirements"
    Best regards,
    Nils Buerckel
    SAP AG

  • Href and target tags tutorial/help needed for use with an existing website

    I have a website, (built through iweb), and an intro movie. I have spent a lot of time trying to understand the proper tags and how to use them without much luck. My goal is to have the homepage associated with my domain name load in a browser while at the same time have my intro movie open in a Quicktime Player window, play, and automatically close leaving the webpage visible. If anyone can point me to a tutorial or walk my through the process I would appreciate it.

    Poster movie style. Requires QuickTime Pro:
    Create an image (or a frame from your movie). This becomes the "poster". You could add text to it (Click to Play) in a graphic editor app to help your viewers or add text to the page under the image with these instructions.
    Save this new file as poster.mov
    It becomes the src="poster.mov" (source tag in the html code). Set its dimensions to fit your page layout.
    Your "intro movie" will be your href="intro.mov" (href tag in the html code).
    Open it with QuickTime Pro and then open the Movie Properties window. Click on the Presentation tab to see the choices. Automatically close option will close the QuickTime window. Automatically quit option will quit the running QuickTime Player app. This would be a better option as the browser should come back as the "front" application. You also want to check "auto play".
    Use Save As (preserves fast start feature) and name this file intro.mov
    In your html code for the QuickTime files you need to set target="quicktimeplayer" (this launches the QuickTime Player app instead of using the browser plug-in). It may also help if you use the full URL to both files in each tag (http://myserver.com/foldername/intro.mov).
    One of mine as an example. It uses automatically close window:
    http://homepage.mac.com/kkirkster/mycareerfuture/
    View the source code to see the tag structure. My page uses javascript instead of the older object/embed tag code.
    More useful links:
    http://developer.apple.com/internet/ieembedprep.html
    http://www.qtbridge.com/pageot/pageot.html

  • Hardware requirement for Using SAP ECC 6.0 (IDES)

    Hi
    I am planning to buy a Laptop for Learning more about SAP modules. I am planning to install ECC 5.0 or 6.0 on the laptop.
    Can any one tell me about the minimum configration required for SAP IDES installation. If possible please let me know the processor to be used, the speed of the processor, the RAM and HDD required.
    Also Kindly let me know from where do we get the IDES licence version of ECC 5.0 / ECC 6.0
    Piyush

    Hi
    <b>Please go through the following SAP OSS Notes -></b>
    Note 822208 - IDES mySAP ERP ECC 5.0 SR1
    Note 982228 - Installation KJEPS 601 on SAP ECC 6.0
    Note 1070948 - SAP Best Practices Baseline Package PL based on ECC 6.0
    Note 748977 - INST: mySAP ERP 04 ABAP on iSeries
    Note 855498 - Installation Prerequisite Checker
    Note 1012486 - Important Information on upgrading ERP-Systems in HA-Setups
    Note 855897 - SAP Business Suite 2005 Installation:IBM eServer iSeries
    Note 989368 - Upgrade to SAP ECC 600 with VIRSA 400_700
    Note 1034686 - Installation: Leasing Strategic Improvements on ECC 6.0
    <u>Please Contact local SAP support from this link below</u>
    https://websmp209.sap-ag.de/~form/handler?_APP=00200682500000002025&_EVENT=DISPLAY&SELAREA=501100035870000000694#
    Do let me know.
    Regards
    - Atul

  • Typewriter font required for use with Idraw

    Hi
    I need to lnondon if there is an app that will let me add a typewriter retro font for use in Idraw..?
    The ones avail in idraw are a bit limited.
    Thanks for your help!

    You cannot add any fonts to any apps at all. The fonts that are in the app are all that is available to you.
    If iDraw has an update that includes the font, that is the only way that you could get it. iDraw would have to include it in the app.

  • Help require for Clusterware installation

    Hi,
    Following Oracle version was installed
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64)
    We have to enable ClusterWare option.
    Do we need to install the following Oracle again
    Oracle Clusterware 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64)
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/111060-win64soft-099656.html
    Any help would be useful
    Thanks,

    787186 wrote:
    Hi,
    Following Oracle version was installed
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64)
    We have to enable ClusterWare option.
    Do we need to install the following Oracle again
    Oracle Clusterware 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64)
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/111060-win64soft-099656.html
    Any help would be useful
    Thanks,You need to install the Oracle Clusterware 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64) and migrate your database from single instance to cluster database

  • MFBF transaction help required for variant creation

    Dear experts,
    We have a requirment in using MFBF transaction.
    In assembly backflush tab after entering everything and pressing 'Post with correction button'
    a grid opens.Here we want quantity to be disabled.
    Second we click component backflush tab and after entering data and press
    'process component list' button.Here we want the same grid that we get should have quantity
    enabled.
    I tried using transaction variant and find it responding one way either enabled in both or diabled in both.
    That doesnot meet my purpose.
    Plz tell me some way. Can i use badi to do such stuff ?

    Dear experts,
    I dont know whether its a bug with sap or not,they may conclude themselves.For the time being
    i tried userexits
    EXIT_SAPLBARM_001
    EXIT_SAPLBARM_002
    EXIT_SAPLBARM_003
    EXIT_SAPLBARM_004 IN enhancement XMRM0001
    I activate my projects without any coding on these exits but only breakpoints statement.
    I find them stucking at breakpoints on activation which is what i want .
    But what happens at last is despite without any single piece of code on these exits
    i get information message dialog
    No components Found.Continue without components  ?
    If i say 'yes',i see a blank grid and otherwise material posted without document.
    Why such a behaviour ??

  • Pre-requisites required for using web-services

    Hello all!
    please tell what are the things required to use siebel on demand web-services.
    i have a user-id, password and other than it what all should i have.
    i am planning to use web-services to track my leads via my web-site.. can any one please specify what steps should i follow to make it happen..
    regards,
    Sreekanth

    If it will help you, I can send you a small VB.net example program that demonstrates web services. It will be easy to translate into C#. Click on my name to find my email address if you're interested.

  • PCUI 4.0, Search Help Required for New field

    Hi everyone
    I am working in CRM 4.0 Sales Order application
    We created a new field in CRM sales Order in Header level in SAP GUI through EEWB.
    The search help for the new field is working fine in SAP GUI. We want to add the same field with F4 help functionaliity in PCUI as well.
    The field has been added in structure CRMT_BSP_SLS_OD1_General. It also shows domain value for the field however Origin of input field ie empty
    The field has been added in PCUI and is successfully showing data inputted in SAPGUI
    However we need search help functionality for the field
    i tried these two steps
    1) i checked on domain value checkbox and changed the field from input to dropdown. However the dropdown is empty in PCUI. Whenever i check box domain values for some field then all the possible values in SPA GUI are displayed in PCUI, however this is not working here.
    2) I put Value_table in F4 of the field
    This is also throwing up empty values
    Am i missing something in this case
    Please let me know how to go about it
    TIA
    Asad

    Hi Frederic
    Thanks for your response
    I am not sure what is meant by regenerating the field group in this case
    I added the entries for my view in the field group and generated the layout of the field group (If this is what you mean)
    The field is working fine. I am able to save values to the field and able to see values saved in GUI.
    I haven't linked search help of the field in PCUI
    I am not sure how to go about it.
    I used the data element in the structure for the field.
    The data element has Domain entry in <b>Entry Help/Check</b> of the structure
    If i check the Domain Value checkbox in my field group then the domain values should be available in dropdown if the field is dropdown
    However i am not able to see the possible values of the field (It is present in SAP GUI)
    Does something else needs to be done in this case
    TIA
    Asad

  • Seeburger help required for 810 and Dispatch Advice (IDOC type DESADV).

    Hi All,
    1. Please let me know blogs which clearly shows settings for Seeburger components for 850 (Purchase Order) to IDOC Scenario
    --- Seeburger Workbench
    --- Seeburger Mapping Designer (BIC)
    --- Seeburger Counter and Varaibles
    --- Seeburger AS2 Spoke
    --- Any other Seeburger Component setting required
    I have understand blog for 850 -- /people/rajeshkumar.pasupula/blog/2009/08/05/wanna-implement-seeburger-for-edi-find-the-booster
    2. Anybody has blog for 810 or Dispatch Advice (IDOC type DESADV).
    3. Can anybody provide me Mapping Logic (at field level) done in XI/PI for 850, 810 , Dispatch Advice (IDOC type DESADV) .
    Regards

    Hi Rickkk,
    1. Please let me know blogs which clearly shows settings for Seeburger components for 850 (Purchase Order) to IDOC Scenario
    --- Seeburger Workbench
    --- Seeburger Mapping Designer (BIC)
    --- Seeburger Counter and Varaibles
    --- Seeburger AS2 Spoke
    --- Any other Seeburger Component setting required
    For SEEBURGER workbench please go through this blog and navigate the enbebbed links furthur to know about Seeburger workbench too.
    /people/prateek.srivastava3/blog/2009/08/01/seeburger--part-1--the-basics
    2
    2. Anybody has blog for 810 or Dispatch Advice (IDOC type DESADV).
    For 810 i think the procedure would be the same but themseeburger mapping program that validates the ANSX 810 would be different.As far as 997is concerned 997 is a functional acknowledgement.Its a genric format that is used to send acknowledgement for any EDI transaction set that has been sent.
    3. Can anybody provide me Mapping Logic (at field level) done in XI/PI for 850, 810 , Dispatch Advice (IDOC type DESADV) .
      The logic will be based on the trading partner guidelines which will contain the description of all the semantic and syntactiic description about the segments ,its feilds.we need to consider the guidelines and target side specifications too while mapping.
    Thanks,
    Ram.

  • Requirements for using SAP Kernel 7.20_EXT, e.g. with ERP 6.0 EhP 6

    Dear community,
    we want to bring your attention to the important fact that upcoming SAP product releases and Enhancement Packages, like SAP ERP 6.0 EhP 6 and other members of the BS7i2011 release of SAP Business Suite 7, will use the new 7.20_EXT kernel. As we are using fully supported third party software when building this version of the 7.20 kernel, kernel 7.20_EXT allows us to safely support our customers in the upcoming years. Our updated build environments make SLES 11 Service Pack 1 and RHEL 6 the minimum Linux versions allowing you to run SAP Kernel 7.20_EXT. Please take this prerequisite into account when implementing projects that require or allow you to use SAP Kernel 7.20_EXT.
    You can find more information here:
    Note 1563102 - Linux Requirements for 7.20_EXT kernel
    SAP Product Availability Matrix for SAP NetWeaver 7.0
    Or directly access the PAM for SAP NetWeaver 7.0 EhP 3  (page 4).
    In case of questions, please feel free to contact us by a mail to linux[at]sap.com as well.
    Best Regards,
    Alexander Hass.

    Dear community,
    we want to bring your attention to the important fact that upcoming SAP product releases and Enhancement Packages, like SAP ERP 6.0 EhP 6 and other members of the BS7i2011 release of SAP Business Suite 7, will use the new 7.20_EXT kernel. As we are using fully supported third party software when building this version of the 7.20 kernel, kernel 7.20_EXT allows us to safely support our customers in the upcoming years. Our updated build environments make SLES 11 Service Pack 1 and RHEL 6 the minimum Linux versions allowing you to run SAP Kernel 7.20_EXT. Please take this prerequisite into account when implementing projects that require or allow you to use SAP Kernel 7.20_EXT.
    You can find more information here:
    Note 1563102 - Linux Requirements for 7.20_EXT kernel
    SAP Product Availability Matrix for SAP NetWeaver 7.0
    Or directly access the PAM for SAP NetWeaver 7.0 EhP 3  (page 4).
    In case of questions, please feel free to contact us by a mail to linux[at]sap.com as well.
    Best Regards,
    Alexander Hass.

  • Help Required For HF100 Used With FCE 4 ?

    No, it's not for me.
    A few days ago Tom Bigley tacked this question onto another HF100 thread but it seems to have gone unnoticed, so I am reprinting it here:-
    "Forgive me if I am going over old ground but I have just acquired a HF100 and want assurance I have understood the AVCHD/FCE relationship correctly.
    I must use High Quality XP at 12Mbps (1440 x 1080)
    I cannot use High Quality FXP (1920 x 1080)
    I cannot use Cine and 25Mbps or I get into interlacing complications
    I import using Easy SetUp set to Apple Intermediate Codec
    with the Use Tab set to HDV-Apple Intermediate Codec 1080i50
    Am I there or are there any other pitfalls I've overlooked?
    Tom."

    Hello Richy
    My first thought is, can't you just put the graphic elements in to the photo with your choice of editor?
    It looks like you are trying to position two yellowy-green lines in the page as well.  You could put one of those lines in to the image and one in the left panel as a background (I'm not absoulutely clear where they go but I think I've made a pretty good guess.)
    You could try adding a header div and using a slice of the image as a background and position your logo elements in that with float, margin, padding or whatever.
    Basically, you have a two column layout which is quite simple so there should be a solution.
    You could try putting the main image as a background image and position your graphic elements in the content panel (div)?
    If your main image is a background though, I think you might have a bit more difficulty with height so, you would have to perhaps use the left column content to determine height.
    These are just a few thoughts but given with the caveat of my novice status!  I've only just learned to tie my HTML shoe laces.
    Good luck
    Martin
    PS I remember a few years ago now, bing advised through these pages to only use absolutely positioned elements if you really have no other alternative and then if you do, to only use one!   Since then, I haven't ever used one.
    PPS I like your design very much but I am not sure about that bright yellow text?  The pink circle looks as though it should be crazy but it fits beautifully with your colour scheme.  That yellow hits off it a bit in my mind and jars a little.

Maybe you are looking for