RIB Posting Updating the current Budget

Hi Guys:
I am facing an issue in FM Revenue increasing budget. I am using FMMPRBB to post Revenue increasing budget and in it document type i am using have a setting of automatic releasing the budget and source and target budget type for RIB are also in consumable budget, but when system is posting budget to the RIB target address , BUDCON report is showing it in current budget column not in consumable budget. Please guide me what can be the reason behind this.
Regards

Hi Ming:
I have figured out the reason now, in automatic release settings for document type ZGRN which i was using for automatic releasing RIB budget, RBBST and RBBT processed were not included so that is why budget was getting posted under Current budget even with Fund dependent release settings with no budget type specifications. Thank you for above valuable input.
There is an issue when i post RIB budget via FMMPRBB, please see the attaches screen shot, why is revenue budget increasing , as per my understanding by virtue of an invoice posting on RIB address with revenue commitment  item, fund and fund center, only OPEX related budget should increase but why is revenue address receiving budget. BUDCON view is also attached for revenue commitment item

Similar Messages

  • Error :The current budget for budget type CBUD is negative

    Hi All, I am using the BAPI BAPI_0050_CREATE, which is using giving me the message
    The current budget for budget type CBUD is negative (budget address)
    I want to know how is this message being occured, so that i can do the same check in one of my program.
    I deugged the BAPI and its using the method CL_FMKU_ENTRYDOC_HANDLER->DOC_CHECK_POST, but could not trace the CHECK done for the above error.
    Please let me know the validation
    Regards
    Gopi

    Hi,
    notes 20347 and .302756.                                      
    Try to change following customizing temporarily to 160:               
    IMG->FI-AA->Transactions->Determine default transaction types for            
         internal transactions->Acquisition from goods receipt                                                                               
    Another alternative could be to TEMPORARILY change the definition  of transaction type group 10 so that it allows negative values.                                                                               
    139899   AA629 when posting MR01/MRHR/MIRO invoice receipt                                                                               
    AA629 is raised when the transactions per transaction type group in one year are negative in balance and the definition of the  transaction type group only allows positive values  (that means TABWG-VZJSAL is '+'). This is the case for transaction           
    type group 10. After posting transaction I recommend to set transaction   group 10 back to its original definition.                                    
    Regards Bernhard

  • Unable to upload "filescopied_48862.txt" to update the current view of the

    Hi Team,
    While applying applications patch I am getting the below error in the patch log file.
    Start Processing Snapshot Info
    AutoPatch error:
    Unable to upload "filescopied_48862.txt" to update the current view of the snapshot.
    But when I checked in the ad_bugs table it is showing the bug_number.Actually this patch has to change the version of file fadp6.lpc,but it is not changing it.
    We already have updated current view snapshot.
    Please suggest me on this.
    Thanks,
    Suresh

    Hi Hussein,
    Thanks for quick reply and the details are:
    Q)Please post the application release, database version and OS.
    ApplicationRelease:R12.1.1
    Database Version:11.1.0.7
    OS:Windows Server 2008(32 bit)
    Q).What is the patch number?
    12338963
    Q).Is this the complete error message?
    In the whole patch log file this is the only error it is showing.
    Q).Did the patch continue to run after this error and completed successfully?
    Yes It has continued to run after this error and completed successfully.
    Q).Please apply the patch again from the beginning and see if you encounter the same issue.
    I have applied the patch again from the beginning and we are getting the same error.
    The only error in patch log file it is showing is:
    Start Processing Snapshot Info
    AutoPatch error:
    Unable to upload "filescopied_48862.txt" to update the current view of the snapshot.
    Q).What is the version of fadp6.lpc you already have? What is the version of fadp6.lpc delivered by this patch? Have you verified the timestamp of the file?
    fadp6.lpc 120.36.12010000.7 and the timestamp is:2009/07/28 07:55:40
    Version of fadp6.lpc delivered by this patch is:120.36.12010000.13
    Thanks,
    Suresh

  • Updating the current row in vo which is bind to af:table.

    Dear all.
    I have created af table by dragging datacontrol on page.. i also have a form and onclick of button i want to update the current selected row in table..
    I am getting the current row properly but when i am trying to update the row.. it gives me following exception.
    <Utils> <buildFacesMessage> ADF: Adding the following JSF error message: Failed to lock the record, another user holds the lock.
    oracle.jbo.AlreadyLockedException: JBO-26030: Failed to lock the record, another user holds the lock.
    Following is my update code.
    public void update(){
    //BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Create").execute();
    BindingContext bc = BindingContext.getCurrent();
    JUApplication japp =
    (JUApplication)bc.getCurrentBindingsEntry().get("Entries_AMDataControl");
    Entries_AMImpl ampl = (Entries_AMImpl)japp.getApplicationModule();
    ViewObjectImpl vo=ampl.getEntries_VO1();
    Entries_VORowImpl row=(Entries_VORowImpl)vo.getCurrentRow();
    row.setSubject(subject);
    ClobDomain c=new ClobDomain(toXML().toString());
    row.setXmlcontent(c);
    row.setDescription("");
    //vo.setCurrentRow(row);
    //vo.executeQuery();
    //BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Execute").execute();
    BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit").execute();
    So please can anyone there tell me how can solve this problem.
    Thanks,
    Regards
    jdev version 11.1.1.4.0

    Hi Frank
    in your AM configuration, set the locking behavior to optimisticIts already optimistic.
    is bad coding practice. You should perform updates through teh ADF binding layer and not directlxy against the Application Module Impl class. You can get the >current row from the iterator the table is bound to and set the attributes on itI changed my code to following
    RowKeySet rs = getCalcTable().getSelectedRowKeys();
    Iterator it = rs.iterator();
    DCBindingContainer bindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding empIter =
    bindings.findIteratorBinding("Entries_VO1Iterator");
    StringBuilder sb = new StringBuilder();
    RowSetIterator empRSIter = empIter.getRowSetIterator();
    Row currentRow = null;
    while (it.hasNext()) {
    Key key = (Key)((List)it.next()).get(0);
    currentRow = empRSIter.getRow(key);
    break;
    Entries_VORowImpl row=(Entries_VORowImpl)currentRow;
    row.setSubject(subject);
    ClobDomain c=new ClobDomain(toXML().toString());
    row.setXmlcontent(c);
    row.setDescription("");
    BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit").execute();
    But it still gives me same error.
    <Utils> <buildFacesMessage> ADF: Adding the following JSF error message: Failed to lock the record, another user holds the lock.
    oracle.jbo.AlreadyLockedException: JBO-26030: Failed to lock the record, another user holds the lock.
    Any suggestion appreciated..
    Thanks
    Regards.

  • How can I update the current java for Mac Pro 10.6.8

    I tried to update the current java on my computer, but after i down load, the application failed to installed.

    Spinning Beach Ball
    Spinning Beach ball (2)
    Spinning Beach ball (3)
    Spinning Beach ball (4)

  • What program will update the current temperature in Mavericks 10.9.1?

    We have tried YoWindow3 and Weather.com with no success. So what can we use to display the current weather/temperature on the Desktop? Both of those programs do display the temperature, but they do not automatically update it as they did on our Windows system. If we start at 50 degrees, it will stay 50 degrees all day and night until we open the weather program itself, at which time it will update the temperature to the current temperature one time ... until we again manually refresh it. Is there any weather program that will actually refresh the temperature display on its own?

    No, not Dashboard, as that requires bringing up the dashboard. Nor Safari as that means having Safari open to view it. But on the Menu bar at the top of the screen, the programs we have tried display the current temperature on that top bar, but do not upgrade it. We would like to see it when doing whatever without having to open or switch to a specific screen or program. When creating a document or spreadsheet, or when listening to music or viewing pictures, or doing anything else that does not necessarily leave the Dashboard nor Safari open. We are new to Macs, so pardon me if I am using the wrong terminology. In Windows, this would have been called the Title Bar, Menu Bar, or even Toolbar.

  • How do i update the current time to the database ?

    Hi guys...
    How do i connect the "Date/Time string" to the DB Tools Update Data.vi ??? Is it connect it to the point/pin called "condition" of DB Tools Update Data.vi ?
    I am kind of confuse of how do i connect...
    Thanks in Advance.
    Attachments:
    Att taking.png ‏102 KB

    This is the error i get...{    NI_Database_API.lvlib:Cmd Execute.vi->NI_Database_API.lvlibB Tools Update Data.vi->FYP_3.1.vi<ERR>ADO Error: 0x80040E14
    Exception occured in Microsoft OLE DB Provider for ODBC Drivers: [Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement. in NI_Database_API.lvlib:Rec Create - Command.vi->NI_Database_API.lvlib:Cmd Execute.vi->NI_Database_API.lvlibB Tools Update Data.vi->FYP_3.1.vi  }
    When u scans a card, it will show you your information with the Current Time/Date on the table. and update it on the database....
    I try the example of DB tools update data vi .. it make me more confuse :l

  • When I add text to a PDF, I am forced to change the file name rather than just updating the current file.  Why?

    I have been doing the same process for months and until recently I could just add text to a pdf, click save, adobe would ask me if I wanted to replace the current file, I'd say yes and we would be done.  Now I get a message that says "The document could not be saved.  Cannot save to this filename. Please save the document with a different name or in a different folder." It does this about 70% of the time.  The rest of the time it works like it used to.

    You cannot skip arguments, you can either use the function with one
    argument (just the required argument), or you have to provide all of them.
    Also, it looks like you are trying to specify 20 parameters, even though
    the function only takes 19. Try the following:
    Call jso.addWaterMarkFromText("Test Text", jso.app.Constants.Align.Center,
    jso.Font.Helv, 16, _
        jso.Color.Black, 0, 0, True, True, True, _
        jso.app.Constants.Align.Center, jso.app.Constants.Align.Center, _
        100, 100, False, 1, False, 0, 1)
    I just typed this in without running it through the compiler, so there may
    be typos in the code, but you should get the idea of how the code is
    supposed to look like.
    Karl Heinz Kremer
    PDF Acrobatics Without a Net
    PDF Software Development, Training and More...
    [email protected]
    http://www.khkonsulting.com
    On Fri, Jul 26, 2013 at 1:55 PM, I Love Mustangs

  • Software updates: the current program version 10.1.0.273

    Dear Sir, Why server does not function on the new version 10.1.0.4181 tried several attempts but to no avail

    Please explain what you mean by "server does not function"?
    What are you trying to do?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Running CS5 on a Macbook Pro. Will not read raw files for a new Canon T5i camera.Can update the current RAW?

    Running CS5 on a Madbook Pro. Will not open RAW image files from a new Canon TRi camera. Can I update to latest RAW processor with current CS5, or must I update to CS6 on the MacBook?
    Jack

    ACR 7.4 is the one that will read T5i raw files and it is CS6 specific. You can upgrade for $200 Standard or $400 Extended in you need 3D support.
    You can also see if converting your T5i files to .dng format will do just as well.
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Adobe DNG Converter 7.4

  • When i update the current version of firefox with the latest version. can i delete the original version.

    why cant i get a straight answer to a very simple question.

    if you made a custom installation wherein you opt to have a different installation path, then you may have to delete the previous installed version.
    if you made a default installation wherein you opt to have an "upgrade installation", then the original version need not be uninstalled.
    having two installation paths will result to two working mozilla firefox browsers but each time you launch a version, an "add-on compatibility check" will always occur.
    for best results, always do an "upgrade installation" unless you want to try a new version first by checking it out.

  • No budget in the current year but the system is letting receipts go against

    We have a re-accuring issue where there is no budget in the current year but the system is letting receipts go against the budget. We need to know how this happens and a resolution as to how we can get it to stop.  We can't have purchases against projects that do not have a current year budget.
    PO created and delivery date has been in the month of Dec’07 and goods received / Invoicing in Feb’08 we don’t have budget for 2008 but when we check in 2007 we have current budget.
    How can I stop Posting in the current year even if PO has been created in Previous year?

    Hai,
    I also opinion same as Ashish.
    Budget availability will come alive when you create a PO. If Budget is available in year 2007, it will allow you to raise a PO. When you do GR, No cost postings happen. If you use Valuated Project stock, Qnty and value will sit in Project stock. To my knowledge, Budget availability will not check , cost in stock.
    Try and do the GI to project. See if it is throwing an error. Becoz when you do GI, actual costs gets posted. ( if you r using valuated project stock).
    Please let us know your findings.
    Thanks
    Saikishore Ganga.

  • Please make iCal update the date in the dock!!

    If I leave iCal open for several days, the date in the icon on the dock remains unchanged. I have to quit iCal to get the date to update (the current date shows as soon as I quit iCal; I don't even have to restart the application.

    Linc -- thanks so much! This fixed it. I had posted the same question a few months ago, but never got an answer. I do appreciate your assistance.

  • How to Update the New Condition values for list of sales orders

    Hi
    Client requirement is they have set of old Sales Orders to be executed. But the material prices have been revised in the meantime. Now they want to update the current prices in the sales order before proceeding further.

    Hi,
    Though Lakshmi suggested you the right option, it may not be carried out for Sales Documents in random and will be much suited for Sales Documents with continuous sequence like 00010, 00011, 00012, 00013, etc.
    If you want to New Pricing to be carried out for Specific Lists of documents like 00010, 00017, 00043, 00057, etc, then you can do by following option:
    Go to Transaction "MASS", Select the Table - VBAK and Field - PRSTD and proceed by entering the Sales Documents Lists to carry out New Pricing.
    Hope this will be helpful to you.
    Rgds,

  • Budget - K022  - PROBLEM IN CURRENT BUDGET

    Hi guys,
    i have an issue while entering the over all budget in KO22.
    When i enter over all budget the "current budget  column "is having an impact. (it is adjusting the variance amount  , but not over writing it)
    but my requirment is it shoudl overwright the  budget amount which i am entering should be overwritten in "Current Budget' too.
    kindly suggest me the settings for the same.....
    regards,
    Giri

    if we enter year wise it will replace in year wise column.....but my requirment is i need to enter the over all value only .......(i am sure some setting is there , for your information i have two servers, in another server it is perfectly ok for me , i am facing this problem in another server)...
    I am sure some budget profile settings will do this functionality .... i also checked up the SPRO settings 'Maintain budget profile' , I Couldn't find.
    please help

Maybe you are looking for