GL Opening Balance Due Date Column not Editable

Hi Experts,
I am about to enter GL Opening balances for a new company I just created,I have created posting periods from January 2007 to date, I want to post an opening balance to 31 december 2007, I am able to enter the posting date but the due date (01.01.08 by default) is not editable,I want to change the due date to be the same as posting date(31.12.07) how can I achieve this ?
Thanks in anticiption of your prompt response.
Regards

Hi Chiko,
Opening balance is for new period.  Therefore, the due date should be in new period. If you can change it to last year, that should be called ending balance for 2007.
Thanks,
Gordon

Similar Messages

  • Due date is not showing up in UWL

    Hi ,
    Due date is not showing up in UWL. Back end is ECC not GP Just regular work flow.
    I can see in workflow object end date kind. But the field is blank. For due date any additional configuration needed.
    I really appreciate your help.
    Regards
    Mark

    Hi,
    As far as I remember correctly, the Due Date in UWL is the Requested End date in the workflow. So basically you need to open the workflow in backend in WF builder and look at the step. There is a tab for setting different deadlines and stuff. If you do the settings there (for example set the requested end in 3 days), I think that work item will display the due date based on that data.
    Regards,
    Karri

  • Report that lists Customer balance, Due date, & Invoice date.

    Hello Gurus,
    I would appreciate your help on the following question. Points available.
    Is there a report I can run in SAP that can show me the <b>Customer Balance, due date, and Invoice date</b>?
    Is there anything besides FBL5N?
    Thanks in advance!

    Please note a customer balance is the total outstanding against a customer, normally totalled at a Company Code level.
    Due dates and invoice dates are at line item level, where as Balance is the total of the line items.
    If you run a balance report you wont get line item data and if you have a line item report it wont give you balance details.

  • Interest calculation on due date and not on invoice

    Hello,
    Pls can some one let me how to start interest calculation on due date and not invoice date.
    In the interest calculation, T code FINT, the system calculates interest from invoice date till clearing date and not from due date till clearing date.
    BR,
    Zulfikar

    Hello,
    We have selected the Always calculate interest from net due date check box. but now when i run FINT transaction for a customer it is calculation interest from invoice date and not on due date. the item is already cleared.
    The scenarion is
    the net due date of the docuemnt is 30.07.2008 so the interest calculation should stard from 31.07.2008 till clearing date. but the interest calcualtion is starting from 01..07.2008 which is the invocie date.
    BR,
    Zulfikar

  • Fbl3n  heading we need to adde opening balance  and date

    Hi guru's
    My requirement is adding fields opening balance and date in fbl3n (g/l account line item display)
    please guide  me.

    Hi,
    Use Business Transaction Events(Tcode FIBF) to populate custom fields in FBL*N transactions.
    Regards,
    Madhu

  • OHS - Protocol (Periodic) Next due dates are not being captured properly

    Protocol (Periodic) Next due dates are not being captured properly in the Planning Cockpit (EHSH_D_PCP) report nor the Protocol report (S_SH8_7200013).  The Planned date is not resetting itself for the medical service sometimes.
    Any idea what might be causing this issue?
    Regards
    Naveen

    HI Naveen
    Have you overridden the std BADI for calculating Next due date?
    Thanks
    Jagdsh

  • Due date column to calculate 7 working days

    Can you help me with formula to calculate the Due date default to 7 business days from created date. and due date should not be in weekend.

    Refer to the following post, hope it helps
    http://sharepoint.stackexchange.com/questions/88149/formula-to-show-differens-between-dates-without-weekends-and-holidays
    Cheers,

  • Can't open file due to "can't edit bank note" crap.

    So i was working on a file using a $20 bill as a template to make a cool looking coupon.  Now, today, trying to open the file, it gives me this ********* pop up "can't edit bank notes" dialog box.  I'm not editing BANK NOTES!  How can i open this file or am i fuc***?

    Sigh.  Creative people are supposed to be able to think for themselves...
    What do we know at this point?
    You're not going to be able to open it with Photoshop.  You can infer that there's not an "it's okay, I'm not a counterfeiter" switch.
    It's because the image contains the EURion constellation.
    If you're willing to start with a flattened document, you may be able to open it with another application - e.g., the freeware program IrfanView.  You have been told what to look for above.  Find those patterns and eliminate them, then you'll be able to open the result with Photoshop again.
    -Noel

  • Flex datagrid custom itemRenderer - making column NOT EDITABLE

    Hi all,
    I am new to flex and having been trying to build custom editors and renderers for datagrid. I ran into this problem trying to fix another one (http://forums.adobe.com/post!reply.jspa?message=3569216)
    The problem is :
    I have a custom editor and a renderer for a text column. The whole grid is editable (i.e; editable=true). But clicking on the cell does not show me the editor. However, if I change the renderer to mx.controls.label, clicking on it takes me to my custom editor.
    Can anyone please tell what I am doing wrong?? I am pasting the relevant code for more details.
    DATAGRID : Replacing  itemRenderer = "renderers.TextRenderer" with itemRenderer = "mx.controls.Label" makes the column editable
    <mx:DataGrid id="dg" editable="true" rowHeight="100" width="861" x="10" y="10" height="498" dataProvider="{this.slideArray}">
         <mx:columns>
                           <mx:DataGridColumn headerText="Text" width="100"
                                                           resizable="true" sortable="false"
                                                           itemRenderer = "renderers.TextRenderer"
                                                           itemEditor="editors.TextEditor"
                                                          dataField="text" editorDataField="myData"/>
                </mx:columns>
    </mx:DataGrid>
    TEXT EDITOR
    <?xml version="1.0" encoding="utf-8"?>
    <s:MXDataGridItemRenderer  xmlns:fx="http://ns.adobe.com/mxml/2009"
                                               xmlns:s="library://ns.adobe.com/flex/spark"
                                               xmlns:mx="library://ns.adobe.com/flex/mx"
                                               focusEnabled="true"
                                              initialize="initEditor()">
    <mx:TextInput id="edit" width="{this.width}" height="{this.height}"/>
    <fx:Script>
    <![CDATA[
              import domain.Slide;  // contains just one property :::: public var text : String
              override public function set data(value:Object):void{
                        super.data = value;
                        this.edit.text = (value as Slide).text;
              public var myData : String; // editor data field
              import mx.binding.utils.BindingUtils;
              private function initEditor():void{
                        BindingUtils.bindProperty(this,"myData", this.edit, "text");
    ]]>
    </fx:Script>
    </s:MXDataGridItemRenderer>
    TEXT RENDERER
    <?xml version="1.0" encoding="utf-8"?>
    <s:MXDataGridItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                                              xmlns:s="library://ns.adobe.com/flex/spark"
                                             xmlns:mx="library://ns.adobe.com/flex/mx"
                                             focusEnabled="true">
         <s:Label id="txt"  horizontalCenter="0" verticalCenter="0"/>
         <fx:Script>
              <![CDATA[
                             import domain.Slide;
                             override public function set data(value:Object):void{
                                            super.data = text;
                                            this.txt.text = (value as Slide).text;
              ]]>
         </fx:Script>
    </s:MXDataGridItemRenderer>
    Tricks I have tried and failed :
    1. added the following code to the renderer
       override public function get data():Object{
                                       return super.data;
    2. remove/change focusEnabled
    3. wrote the same renderer in Actionscript - making it extend MXDataGridItemRenderer. I had to add the label component txt using addElement. Clicking on this does show th editor but it doesnt show the label txt at all... i.e; I dont get any text displayed.
    I am using Flex 4.0 sdk.

    It worked!!!!!!! Thank you!! What you mentioned was indeed the problem!
    Here is the custom item renderer's set data function
    Before
    Now
    override public function set data(value : Object):void{
                      super.data = text;
                      this.txt.text = (value as Slide).text ; //txt is the Label control
    override public function set data(value : Object):void{
                      super.data = value;
                      this.txt.text = (value as Slide).text ; //txt is the Label control
    oh man, this is such a stupid mistake. I think I was confused with having three text properties - one inherited from MXDataGridItemRenderer, one in my txt Label control and one on my slide.
    I had no idea that sending the value up to the super class was so important. None of the docs I read seemed to give much importance to this statement.
    thanks so much and sorry for taking up so much of your time. I guess it is uncessary to post any more code.

  • Open item due date forecast

    Hi
    i run the report   due date forecast for particular customer   fi customer only
    it gives report like
    company code  /   busa  /   total open / due in 8days or less  /  due in 30 days or less  /due in 30 days or more
    data came only in company code  and business area  and total open otems
    issue is  i would like to generate one report   i need some data in  due in 8days  or less  /// due in 30 days or less
    inorder to get this report  what should i do   i need to do any  i need to assign any dunning procedure in customer data
    plz  put some light on this
    thanks
    mvnr

    Hello,
    If the standard report are not sufficing your requirement,
    I would suggest you create a FORM in FDI4 - Refer FDI5 and FDI6 for standard forms.
    Create a report in FDI1 and assign the form that you have created in FDI4.
    Refer FDI2 and FDI3 for standard reports.
    You can flexibly configure the forms according to your requirement and even add the formulas.
    Regards,
    Ravi

  • Date Column not getting sorted in a table in web Dynpro Java

    Hi All,
    I am facing an issue while sorting the date column in a table in my web dynpro java application.
    When the date is displayed in the sql format in tha table, I am able to sort the date column successfully but when we convert the date field from sql format to util format in our table and then sort it does not work.
    Kindly let us know the steps to be followed in this case to sort the date column of a table in Simple Date format as we do not want date in the sql format to be displayed.
    Thanks & Regards,
    Anurag

    Hi,
    You might want to check whether both your browser's language settings are identical. The browser language could also determine the date format.
    As a workaround, you could add an extra attribute to your context, and set the calculated property to 'true'.
    In your table, add a new column and bind to this new attribute, and hide your original date column
    If you sort using the date column that's hidden now, you could use the calculated field to fixed-format your date the way you prefer (by using the SimpleDateFormatter class for instance)
    Cheers,
    Robin

  • Mac mini cannot open cd because data could not be read or written -

    Mac mini (Mac OSX 10.6.8) cannot open cd/files because data could not be read or written.  Error code -36.  What is way to correct this problem?  Thanks so much.

    Try:
    Apple Computers: Troubleshooting the slot-loading SuperDrive
    Does it work with DVDs?
    When is the last time it worked with CDs?
    Have you tried cleaning/blowing out the drive?

  • Credit memo net due date is not correct

    Hi experts,
    In most cases the net due date of customers credit memos (posting key 11) is correct based on payment terms but sometimes itu2019s not (e.g. payment terms 30 days end of month but net due date is the same as document date).
    Any ideas why?
    I checked payment terms in customer master data and in FI and they are the same.
    Thanks for your help,
    Ben

    The general rule is that the due date of a credit memo is the baseline date.
    There are 2 exceptions: if you put the number of an invoice in the field BSEG-REBZG (Number of the Invoice the Transaction Belongs to), the due date of the credit memo is the due date of the invoice.
    2nd exception: if you put the constant 'V' in this field REBZG (you can do it thru a substitution rule), the due date will be calculated the same way as for an invoice.
    You can see this in the documentation of the data element REBZG:
    A special rule applies to credit memos which have a "V" in this field.
    The due date is determined in the same way as for an invoice. If the field is empty (containing neither a document number nor a "V") the due date is the baseline date for payment.

  • I work in Indesign CS5.5. After saving all documents in indd and open again. Document are not editable now. Whats wrong?

    I have started to work in Indesign CS5.5. Ater saving all my pages in indd and open them again. Now they are not editable what is wrong?

    Are your layers or objects locked? Did you do all the initial editing on your master pages?

  • Export of DATE column not recognized by Excel

    SQL DEVELOPER version 2.1.1.64
    just installed.
    When I export a table to Desktop as XLS or CSV, all the DATE columns show this format:
    11-MAY-09 12.00.00.000000000 AM
    MicroSoft Excel will not convert this to standard format: MM/DD/YYYY
    I changed NLS setting in SQL DEVELOPER for Date and TimeStamp, Excel still does not convert.
    Any suggestions?

    (1)
    export from the context menu on the table's navigator tree node
    (2)
    export from worksheet result set
    (3)
    export from table Data tab
    All three exports work.
    Each DATE column in the export file shows the TIMESTAMP value.
    Unfortunately, after the export, when I apply the DATE format inside of Excel using "Format Cells",
    the data in the Excel column does not change to MM/DD/YYYY
    WHY DOES APPLYING FORMAT INSIDE EXCEL FAIL?
    THIS IS MY QUESTION.
    (4)
    copy the result set from SQL*Developer (CTRL-A, then CTRL-C or CTRL-SHIFT-C) and paste in Excel.
    The DATE column shows value in MM/DD/YYYY format and I can change the format.
    This works but not for large amounts of data.

Maybe you are looking for

  • 865PE Neo2-PFISR failure

    Hello, This is my first post here so I would write down my system configuration at first: my MSI mobo: 865PE Neo2-PFISR (with BIOS update to V3.A since 21/01/2005) CPU: Intel Pentium 4 HT 2.8E SL79K RAM: 2GB Kingston 400MHz DDR (4 x KVR400X64C3A/512)

  • HT201260 How old is my mac book pro?

    f             

  • How do i export/import the Oracle Portal Online help

    hai everybody... i want to export/import the Oracle Portal Online Help Content Area i tried this same as (my own content area export/import)...but my own content area Pages were worked.....how do i do this.. any help.. thanks in advance null

  • Itunes web page keeps popping up without being commanded.

    I have a window 7 pc and just downloaded 10.5 ITunes.  Now the itunes web page automatically pops up uncommanded.  I close it and come back to my computer at a later time and the itunes page is back up again.  I also use firefox.

  • DUMP Applications for E-Recruiting

    Dear I have an issue with register of external candidate. I have checked the log generated in the T.code ST22 and this genera error in the line 108 of the following class. CL_HRASR00_CREATE_PERS_FILE=>CREATE_APPEND_PERS_FILE   101   102 * Get the per