Entry date blank in FAGLL03

Hi All,
New GL is active,
In FAGLL03, the entry date is blank for all the documents,
i have to click on each documents and see the entry date of each. But it should show the entry date in FAGLL03 itself.
Appreciate your quick response,
Thank you,
Vidya

Hi Vidya,
In the FAGLL03 you can display data from different tables and different
selection logics.
1st
If an account is 'OpenItem/LineItem' managed, the displayed data is
selected in a Join of the index tables BSIS/BSAS and the NewG/L line
item table.
2nd
If an account has the 'Clearing Specific to ledger Groups' se, the
displayed data is selected in a join of the tables FAGLBSIS/FAGLBSAS
and the NewG/L line item table.
3rd
In the case of an account which is NOT 'OpenItem/LineItem' managed, th
displayed data is selected from BKPF, NewG/L line item table and the
BSEG table.
Referring to your case, the ledger group is only available in the
BKPF and the FAGLBS*S tables.
The CPUDT is even only available in the BKPF.
As all the different logics to select use the same 'fieldcatalog' to
display the data, there might be some fields which are not filled
in relation to the master data settings of the accounts.
To avoid this, you should define the two fields as special fields:
BKPF LDGRP
BKPF CPUDT
This can be done in the IMG path:
Financial Accounting (New)
  General Ledger Accounting (New)
    Master Data
      G/L Accounts
        Line Items
          Define Special Fields for Line Item Display
After you defined and stored them there, please also run the report
BALVBUFDEL.
About the special fields in general, refer to the 984305.
I hope this can help further.
Kind Regard,
Fernando Evangelista

Similar Messages

  • Entry Date in FBL3N / FAGLL03 report

    Dear Friends,
    How can i see Entry Date in the above reports or evenFBL5N or FBL1N?
    Thanks
    Sanjay

    Hi...As per your issue
    Go to FBL5N or FBL1N..Double click respective document number and click header data at header level (with cap symbol) there see the Entry date
    Other wise Go to BKPF table go to settings and click on format list and select chose field and select your respective fields (Like entry date)
    And  enter Company code ,Document number and fiscal year   ...there you can see...
    otherwise your ABAPER to create Z report Entry date field name is : CPUDT
    I hope it will helps you....
    Regards
    vamsi

  • FAGLL03 ENTRY DATE

    HI,
    Entry Date Field in Report FAGLL03
    Values not getting captured in Entry Date Field (CPUDT)
    CAN ANYONE HELP???
    REGARDS
    SHAPPU

    Sorry for the delay!!!
    The above issue can be solved by Maintaining entry date as a special field in the configuration.
    After this u can see values getting populated in the entry date field of FAGLL03.
    Issue resolved on my side.
    Thanks

  • Entry date is not showing in fbl3n

    hello,
    my client wants to see the entry date in fbl3n screen. so I have done the little configuration in spro "define special fields for line item display" where i select table-bkpf and field-cpudt.
    But I am able to see the entry date only in fagll03 not in fbl3n.
    please suggest me where i am wrong and what to do next to solve it.
    thanks and regards
    konishko

    Hi
    It is really surprising that CPUDT is still not appearing.  May be that the place you have updated your customizing is relating to newGL customizing.
    Can you please check whether the entry you have added in available in T.code O7R3 and OBVU.
    If it still does not work, then delete the entry and add it again and execute FBL3N again.
    Regards

  • FAGLL03- Entry Date showing blank in the report

    Hi Gurus,
    We have observed that the field "Entry Date" in the GL report FAGLL03 is not showing entry dates of documents posted . We are using ECC6.0 and CUPDT field is already there in the report FAGLL03.
    Need advise how to achieve this? is there any sap note available for the same
    Regards,
    Vijay

    Thanks for your quick responce.
    I have one question.
    The standard layout of report FAGLL03 is having the field ENTRY DATE.
    Still is it require to maintain as special field in customization under below path? to get values(i.e. Entray Dates)  in the report.
    Path is: SPRO->Financial Accounting (New)->General Ledger Accounting (New)->Master Data->G/L Accounts->Line Items
    ->Define Special Fields for Line Item Display.
    BKPF-CUPDT-Entry Date
    Regards
    Vijay.
    Edited by: Vijaya kumar on Jun 24, 2010 7:19 AM

  • Entry date in blank for limited Contract Type

    Hello,
    I've set up the feature ENTRY with the value EINDT X for my molga, but when I run a hiring action and in infotype 16, in the field Contract Type I use a Limited contract Type, and when I run the report S_AHR_61016362 (Flexible Employee
    Data) the Entry Date Column is in blank but it does not happen when I use Unlimited Contract Type.
    Does anyone can help me?

    Hi,
    This feature provides entry date definition method to function module HR_ENTRY_DATE. In your case it reads following fields from IT0016:
    1. EINDT "Initial Entry"
    2. KONDT      "Date of Entry into Group"
    First of all check that you entered one of these fields for employees with temporary contract.
    Cheers

  • Blank  entry date S_AHR_61016362 - Flexible Employee Data

    Good day all,
    i know that there are a lot of posts refering to 0041 but none of the suggestions have solved my problem so please help me.
    1. we are currently on ECC6
    2. the entry feild in S_AHR_61016362 returns 00.00.0000 when i select "today" but is populated if i select "up to today"
    3. "Up to today" gives additinal historical data which i do not need besides i really want to know what is the cause of the problem.
    4. running the same report in DEV or QA returns the corect data...entry date fields are correctly populated
    5. Note 562031  and 508026 were applied in 4.6c before we upgraded to ECC6.
    Can anyone please assist??
    thanks

    Well, even this report works exactly the same way whether I select today or up to today in my ECC6 system.
    As it is a standard SAP query, I do not believe anything could have gone wrong in the upgrade. When I upgraded a system some time back I remember we had to go into each and every z query and make some changes to make it work again.
    Given that it works fine in your own DEV and QAS systems, I suppose it could be a data issue.
    Are you able to debug and see?

  • Last Entry Date for Each Quarter

    Hi,
    I want to find out the last entry date for each quarter. The query I am using is this:
    SELECT 
    Country.Name as Country,
    CONVERT(DATE,MAX([CreationDate])) as LastDateOfClipEntry,
    DATEPART(Year,([CreationDate])) as Year,
    DATEPART(Quarter,([CreationDate])) as Quarter
    FROM 
    [dbo].[Clip]
    JOIN Office on Office.Code = Clip.Office
    JOIN Country on Country.Code = Office.Country
    WHERE YEAR(CreationDate) IN (@YEAR)
    GROUP BY Country.Name,DATEPART(Year,([CreationDate])) ,DATEPART(Quarter,([CreationDate]))
    ORDER BY Country.Name
    Now based on the column group I added in my report the result is coming correct but not properly formatted as I want.
    Below is the snapshot how its coming now:
    I don't want the extra blanks coming for each occurrence. There should be only one line for Australia and in the single line it should show the last entry date for that quarter. How can I achieve that ? Below is the snapshot showing current config:
    Thanks a lot in advance. Any help would be appreciated.
    Vivek Kamath

    Hi Vik2907,
    According to your description, you have a matrix which shows you those unexpected cells. Right?
    In this scenario, the reason caused this problem is the group setting. Mostly, you set the row group on a wrong field. As we tested in our local environment, if you set the row group on LastDateOfClipEntry, it will render the data as the screenshot you post.
    Please check both Row and Column Group setting, make sure they are group on proper field.
    Reference:
    Tables, Matrices, and Lists (Report Builder and SSRS)
    Understanding Groups (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • General Ledger extraction Entry date wise (FBL3N & FBL1N)

    Hi All,
    How can we extract the GL entry date wise. We are trying through FBL3N & FAGLL03 but entry date option is not showing in dynamic selection. Please advice.
    Thanks & Regards.
    Pankaj

    Hello,
    Run report FBL3N.
    From the main menu - go to Settings - Special Fields and add BKPF-CPUDT (Entry date) in the special fields.
    After you have added the entry date in special fields you will be able to see the Entry date in the change layout screen in both FBL3N report.
    Similarly you can add special fileds for FAGLL03 report.
    Once you do the above you will get the entry date in both the reports.
    Regards,
    Prasad

  • Entry date not proper in adhoc query

    Hi,
    Entry date field in action infotype ( in the adhoc query) always returns 00.00.0000. Whereas the standard reports brings the entry date properly (This is from prelq.hiredate). How we can bring the values into this particular field.The feature 'ENTRY' returns DATYP but data is not maintained in IT41. System should bring the hiring action date (0000 start date) as the entry date. We want to use this entry date field in the adhoc query.
    Thanks in advance.
    Sreeja

    Hi Sreeja
    Please  read the following paragraph of the consulting note 508026 :
    "Exception:
    If the query is started with a key date selection, the query calls
    function module HR_LEAVING_DATE with the key date and not with the start
    and end date of the personnel action in which the key date exists. You
    can use modification note 562031 to change this system response."
    Please also make sure, that the corrections of note 561514 are contained in your system.
    I hope that this information be useful for you.
    Regards,
    Jun

  • SD Billing to FI Accounting: How to make Baseline Date equal to Entry Date?

    Hello,
    I have configured Baseline Date to be equal to Entry Date in the Payments Terms in OBB8. I have assigned this payment term to the Customer as well as the Sales Order.
    But still, when I release a Billing Document to accounting through VFX3, the Baseline Date in the Accounting Document is taken as the Document Date/Posting Date.
    What does the configuration in Payment Terms do?
    How can I get the Baseline Date to equal the Entry Date?
    Any help is greatly appreciated.
    Cheers!
    Bharath

    Just copy from the standrad delivered 0001 to some Z001 and change the date to entry date.
    For me it is working fine. Also try first individually using FB60 or FB70 to llok at the behaviuor of the system.
    reward if useful
    sarma

  • Service entry without an entry date/not linked to goods receipt/invoice?

    Dear Gurus,
    I created a service entry against line 10 of PO. When viewing the service entryu2019s u201CAccept. Datau201D tab, there is a document date and a posting date.
    When viewing the u201CHistory tab,u201D the created dated is 01/12/11...
    When viewing the POu2019s u201CPurchase Order Historyu201D tab, the Service Entry does not have an entry date Additionally, when I go to the u201CGR/IR Assgtu201D view, the service entry is at the very top of the view But the goods receipt and invoice processing document are at the bottom, grouped together, but without the service entry.
    Please help as why is it happeing like this?

    Dear Gurus,
    I m creating service PO and later on doing service entry sheet w.r.t the PO...in service entry sheet, i m entring entry date, posting date and all other relevant informations...and saving the SES and later on releasing it...
    after this, I am going to PO history tab, there i m seeing the SES number but entry date field is missing...
    May i know the reason?
    Pls help...

  • No records for 2LIS_04_P_COMP, posting date & entry date not in same month

    Hi All,
    I m unable to get records in rsa3 for my DS 2LIS_04_P_COMP if my entry date and posting date of production order is not same or not in same month.
    Please suggest.
    Niraj

    Hi,
    It depends up on your Delta relevant field either it is Changed on or Time Stamp. What is ur delta field?
    Regards,
    Suman

  • Entry Date

    HI All
    I want to display Entry Date while displaying line items. How can i do that.
    Thanks
    Gautam Anand

    Hi
    In the line item report you can change the layout. Select the change layout tab or Presse Cntl+F8 to change the layout.
    In the change layout you can select the Entry date/Posting date field. So that you can see the same. If you want the same layout to be defaulted save the layout as user defined layout after selecting the entry date.
    Regards
    Venkat

  • Employee information missing in CAT2 time entry data view

    Hi,
         We upgrade our system and when we go to time entry data view, we lost the employee information like Personnel number and cost center which displayed before upgrade.
    I checked with Tcode CAC2, nothing found. But My guess is Personnel number and Cost center will be coming default.
    Please let me know, where I can look in to it.
    Thaks
    Ral

    Hey Guys,
    You should ensure that for any configuration, the Modifiable and Influences you have a Hide entry. This way you will not be able to show the field. Kindly check the on CAC2 these both sections:
    - Modifiable
    - Influences.
    Thank you.
    Regards,
    Bentow

Maybe you are looking for

  • Unable to switch between tools in Photoshop CC.

    Hi, I am seriously about to loose my mind over this problem. I use key commands to speed up my work flow while creating storyboards.  Say I have the brush selected and i want to erase a bit of a line I would switch to the eraser tool just by tapping

  • Trying to sync new account with facebook not working

    hi i have been trying to sync my spotify with facebook on my mobile but as i have already done this with previous account it wont let me and i cant seem to find any way to un sync old account any help plz thanks

  • A few wireless N questions

    I have a macbook pro and and imac. They are under 18 months old and are both intel. I remember reading somewhere a while ago that there is a firmware update for my built in wireless to upgrade to "N" Where is that? and is it free because I purchased

  • How to measure the number of pixels involved in a selected area of a digital photo?

    Hi everyone. I want to determine the number of pixels in an object that is part of a digital photo. I use cameras to film chunks of ice breaking away from ice cliffs or tidewater glaciers. I want to know the size of the ice chunk that my digital phot

  • Wnat to maintain Substitution rule for VF60 tcode.

    Hi  All,    I wanted to know that how do i define substitution rulr for FB60 tcode    after enetr the data of costcenter. It would be trigered after ost center in the    line item.  does any one knows abt the same and how do we configured this   one.