How to increase or Decrease Budget for a Particular Period

Hello All,
Can some tell me how to increase/decrease fund for a particular period.

You can pass the manual entry & ensure to choose the balance type to budget
To increase the balance for a specific period- Input the balance to debit side
To decrease the balance for a specific period- Input the balance to credit side
No need to balance the debit & credit totals for budget journals.

Similar Messages

  • How to increase the table space for a particular table?

    Hi Friends,
    I want to know how to increase the table space for a particular table and how to check the table space size of a particular table. Please can any one send the SQL Script. I am very much poor in DBA Part.
    Thanking You ..
    Kiran

    Kiran - you should post this question on the SQL/Database forums - this is a Forms specific forum...
    Regards
    Grant Ronald
    Forms PRoduct Management

  • How do we calculate Accumulated Depreciation for a Particular Period

    Dear Members,
    How do we calculate the Accumulated Depreciation for a particular asset. It would be great if some body can explain me ,what tables should we use.
    I read that Accumulated Depreciation is nothing but deprn_reserve column in fa_deprn_summary table. I have to make a report which should show the accumulated depreciation for an asset by period name. (eg : For MAY-07 the report should give the accumulated depreciation for that asset).
    Please give your suggestions.
    Thanks
    sandeep

    Hi,
    You can use DEPRN_RESERVE from fa_deprn_summary to get accumulated deprn. Make sure you select the latest row from fa_deprn_summary for a particular period.
    Use FA_DEPRN_PERIODS to join with period_counter if you wnat to use Period Name as criteria.
    Cheers
    Sunil Chawla

  • How to reverse the posted depreciation for a particular period..?

    Hi Experts,
    Please solve my problem, that my client users are changed the depreciation key in last month as per legal requirement. While changing the depreciation key they select the wrong depreciation key and run the depreciation in AFAB. But after running the depreciation they came to know that amount is wrong because of the wrong depreciation key. So now they want reverse the entry for last month only and post the new entry with changed depreciation key.
    Please give me advise how to reverse depreciation for only Last month. That should effect the all previous posting.
    Regards
    Narendra

    Hi,
    Depreciation Posted of only of the Previous Fiscal years
    can be reversed using ABZU Write-Up.
    ABZU -->Reverse the Past
    Dep. For current depreciation reversal you have no alternative except reversing
    co code depreciation document posted using OAGL and then repost it.
    Regards

  • Cal Total Available budget for a particular Object No (Fund No)

    Hi All,
    Can anyone tell me how to cal Total Available budget for a particular Object No (Fund No)
    Thanks

    Hi,
    Issue resolved on my own
    Thanks

  • How to increase the waiting time for response in Adapter Engine not in IE

    Hi Experts,
                It is a SOAP to Proxy Synchronous interface. SOAP system is sending the request to PI, PI sending the same request to ECC system, After execution of some logic response back to PI in 7 minutes. In ABAP Stack(sxmb_moni) processing the response message also successfully with success flag after completion of these 7 minutes. But exactly 5 minutes later getting the error at Java Stack RWB- in communication channel monitoring i.e
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.MessageExpiredException: Message bd2bf8d0-b2c2-11e0-c383-001cc4fb5cb7(OUTBOUND) expired.  We have set the "runtime-HTTP_TIMEOUT" parameter as 3600. thats why in Integration engine it is processing successfully.
    kindly suggest me how to increase the waiting time for response in Adapter Engine. Exactly after 5 mins getting the above error in rwb, but in Integration Engine getting successful flag after 7 mins until then it is waiting for response with  status flag Log version.
    Thanks & Regards,
    Srihari.

    Hi,
    Please see
    How To... Investigate Timeouts In Synchronous XI/PI Scenarios
    It will answer all your queries
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c059d583-a551-2c10-e095-eb5d95e03747?QuickLink=index&overridelayout=true

  • How to increase the thread count for JDBC adapter

    Hi ALL,
                Could someone advice me on how to increase the thread count for JDBC Adapter in Visual Admin:
    JDBC_http://sap.com/xi/XI/System.Call.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Recv.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Rqst.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Send.maxConsumers 5
    I need to increase them to 10.
    Regards,
    Xier

    hi check the below links:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/806e75a0-0e01-0010-2587-fc518de8ac1a
    admin manual:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/fdb09490-0201-0010-e09e-a76388646ad0
    note:reward points if solution found helpfull.....
    regards
    chandrakanth.k

  • How to run a search query for a particular folder in KM related to portal

    Hi,
    Can any one tell me the steps for : how to run a search query for a particular folder in knowledge management related to portal.
    Answers will be rewarded.
    Thanks in advance.
    KN
    Edited by: KN on Mar 18, 2008 6:33 AM

    Ok u may not require a coding
    But u req configuration
    U should first make a search option set
    Link: [Search Option set|http://help.sap.com/saphelp_nw04/helpdata/en/cc/f4e77ddef1244380b06fee5f8b892a/frameset.htm]
    Then u need 2 duplicate a KM Command by the name Search From here
    and customize it to include the Search Option that u have created
    Link: [Search from here|http://help.sap.com/saphelp_nw04/helpdata/en/2a/4ff640365d8566e10000000a1550b0/frameset.htm]
    Then in the layout add this command.
    Regards
    BP

  • I movie 11: how do i find an event for a particular clip in my project

    I movie 11: how do i find an event for a particular clip in my project

    Thanks so much for your response.  I tried that though and it did not work... any other suggestions?

  • How to get a organization name for a particular user using API's

    Hi alll,
    How to get a organization name for a particular user using API's

    You need to do something like this:
    SearchCriteria criteria = new SearchCriteria("User Login", "XELSYSADM", SearchCriteria.Operator.EQUAL);
                   UserManager usrService = oimClient.getService(UserManager.class);
                   Set<String> retAttrs = new HashSet<String>();
                   retAttrs.add(UserManagerConstants.AttributeName.USER_ORGANIZATION.getId());
                   List<oracle.iam.identity.usermgmt.vo.User> users = usrService.search(criteria, retAttrs, null);
                   System.out.println("ORG KEY :: " + users.get(0).getAttribute("act_key"));

  • How to add a related content for a particular document in UCM

    Hi All
    How to add a related content for a particular document in UCM. On which table it stores all the related document details. Can anyone suggest me a document which helps me to know how to add related contents for a document
    With thanks and regards
    Anoop

    I believe there is a PDF doc which comes with the component (it should be at your harddrive when you install it), which describes everything you will need.
    In a nutshell, there are two types of relationship: sibling - sibling, parent - child (there are some more nuances, but it follows the same logic).
    A relationship is created between two existing items (not sure, if you can also create a relationship for a new checked in item, but it would be just a usability). You select the type of relationship and the item - I believe depending on the relationship you may start from either item. The dialog to start is INFO (display metadata) or UPDATE (update metadata).
    When a relationship is created you may watch it also from either end (again INFO is the starting point).
    It is quite self-explanatory, so if you have the component installed you may just play around with it for a while and that is it.

  • How to find the customer exits for a particular transaction

    hi
    how to find the customer exits for a particular transaction

    Hi jyothsna vankadari ,
    ther is a convenient way to find all BADIS called. You may know that BADIS are the newer version of EXITs.
    I would suggest you to go for BADI.
    Follow the below steps to find out what all BADI's are called when you press any button in any transaction.
    1) Goto se24 (Display class cl_exithandler)
    2) Double click on the method GET_INSTANCE.
    3) Put a break point at Line no.25 (CASE sy-subrc).
    Now
    4) Execute SAP standard transaction
    5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.
    6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.
    7) This way you will find all the BADIs called on click of any button in any transaction.
    Regards,
    Clemens

  • How do i search a textfile for a particular value?

    How do i search a textfile for a particular value?
    I have made the records etc, six fields per record, i would like to find a value which is typed into the search textbox, find the record in the textfile and display the record in the boxes used to enter the data.
    SO HOW WOULD I SEARCH A TEXTFILE?
    Thanks very much for your help, Antony (UK)...

    If it were me, I'd use Lucene. Each line could be a separate document, and each field would be a field in Lucene. That would provide you one of the fastest and most flexible ways to do what you want.
    Or did you mean you want someone to complete your homework assignment? :-)

  • How do I get resale rights for a particular Cloud Service ?

    How do I get resale rights for a particular Cloud Service ?

    Each Cloud Service has the resell criteria and any training required listed on their respective Knowledge Zones. In the KZ click on the "Apply to Resell" tab and there you will find 1 steps. Step one lists all of the items that are included within that product family. Step two lists the criteria. Once you complete all the items in step two, then you select Step 3 that will walk you through the actual process to apply. As mentioned in one of the other questions here, you also need to be Gold member or higher, have an active FUDA (Full Use Distribution Agreement) and a CSDA (Cloud Services Distribution Addendum). All of the products that are included in resell, along with links to their respective KZ's can be found at oracle.com/partners/goto/cloud.

  • How to find expense and revenue of a company code for a particular period

    Hi Gurus,
    I am new to FI. I need to find out the revenue, expense and gross profit of a company code for a particular period.
    for eg: I need to find the revenue, expense and GP of a comapany code 'ZYZM' for the month of july. Is there
    any standard report for this or any way to see P&L statement for this period?
    Thanks and regards,
    Ashish Kumar

    Hi Ashish
    You can use report S_PL0_86000030 - G/L Account Balances (New)  for the period wise report.
    You can select as Mani mention P&L account statement type as X in dynamic selection and give the period for which you require the balance.
    The report will give you the three balances
    Opening
    Till previous period
    for the period
    Hope this report will help you.
    Regards
    Pankaj P

Maybe you are looking for

  • Library won't play music purchased on phone even after syncing phone

    Bought 2 albums on my iphone, which plays them fine, but when synced to my computer a few of the songs show in itunes library but have a next to them and can't be played on the computer. I look in itunes store, which says they've been purchased, but

  • Cropping 16:9 video in Compressor for output in 3GPP format

    Hi all, We need to regularly batch convert video for a client, from a 16:9 original to 3GPP's 176x144 ratio by cropping and resizing in Compressor. However, when setting up the encoding settings for 3GPP output, the Geometry fields are greyed out, me

  • Is it possible to merge duplicate email addresses in the same address book?

    Instead of multiple address books have combined them all into one by dragging and dropping into main address book. Is there a method to merge duplicate address such that no data is lost? I.E. if one entry had different data from another duplicate can

  • Standard C++ Libraries Out of Range

    My InDesign PlugIn runs ok when built under VS2005 but when built under VS2008 I get an assertion "Standard C++ Libraries Out of Range" when calling into SnapshotUtilsEx::Draw(). Since the Readme.txt recommends building with VS2005, I believe this to

  • Color Palette Extension

    My stylesheets tend to get long at times and I find I am constantly fishing around looking for colors to use. So I asked a friend at work about it and he created a dremweaver extension that will pull all of your colors from your css ot html fil and d