FBL5N layout - field is missing data

A user changed a layout and ever since we've been having strange things happen.  I was wondering if anyone has ever seen this before.  When I run FBL5N with the layout, one of the fields on the report is Reference Key 1.  The data is always blank, although I know this field has data.  I use the icon to change the layout (add a field and then delete immediately delete it) and copy the layout, the screen now shows data in the Reference Key 1 field on my screen.  I have no idea why the data from this field does not show automatically when I pull up the screen. 
Has anyone ever seen this and if so, how did you correct it?
Thanks in advance.
Karla

Hi,
I ran the program, but I still don't see REF Key 1 data on the reprot unless I change the layout.  But, thanks for this information.  Any other ideas?
Thanks!
Karla

Similar Messages

  • If the connecting fields are missing the data from knvh should be u00BBnullu00AB

    Could you help me I would like to have all fields from kna1 (if the connecting fields are missing the data from knvh should be »null«)in following code
    select * from kna1 .
    select * from knvh where kunnr = kna1-kunnr and vkorg = '0200'.
      itab-mandt = kna1-mandt.
      itab-stceg = kna1-stceg.
          itab-hkunnr = knvh-hkunnr.
          itab-datab = knvh-datab.
          itab-datbi = knvh-datbi.
        append itab. clear itab.
      endselect.
    endselect.

    HI,
      use the following code
    select * from kna1 into table it_kna1.
    if sy-subrc = 0.
    select * from knvh into table it_knvh
    for all entries in IT_kna1
    where kunnr = it_kna1-kunnr
       and vkorg = '0200'.
    if sy-subrc = 0.
    loop at it_kna1 into wa_kna1.
    itab-mandt = wa_kna1-mandt.
    itab-stceg = wa_kna1-stceg.
    loop at it_knvh into wa_knvh where kunnr = wa_kna1-kunnr.
    itab-hkunnr = wa_knvh-hkunnr.
    itab-datab = wa_knvh-datab.
    itab-datbi = wa_knvh-datbi.
    append itab.
    clear itab.
    endloop.
    endloop.endif.
    endif.
    I hope this solves your problem
    Regards,
    Vara

  • Value date field is missing in MIRO

    Hi Gurus,
    When I insert an account in transaction code MIRO, in tab "G/L account", the system shows the follwing message error: "An entry is required in Value date field for account XXXXXXXXXXX".
    I try to create a variant to display this field but it' s impossible.
    Could you please say me how I do?
    I would insert the value date in MIRO.
    BR.
    Thanks.
    Angela

    Hi Angela,
    there is an old SAP note available regarding your issue: 391683
    It seems the value date has been removed from the MIRO dynpros. (Nvertheless, when you try to change the layout and set value date fo visible, the length of the field is 0. So no use setting it to visible.)
    But you can activate the "Define default value date" in the Company code global data (T001). So for g/l accounts with required entry for value date, the value date is filled with the system date.
    Hope this helps.
    Best regards,
    Stefan

  • Converting varchar to datetime where date field is missing

    Hello Sir,
    i have a column with varchar datatype values like '2013/12','2012/11' where date field is missing.  i want to convert it as datetime at runtime so that i can use datetime related function. Is it possible for ms sql server 2008?
    thanking you.

    >> I have a column with VARCHAR data type values like '2013/12', '2012/11' where DATE field is missing. I want to convert it as DATETIME2(0) at runtime so that I can use DATETIME2(0) related function. Is it possible for MS SQL Server 2008? <<
    The most important leg on a three-legged stool is the leg that is missing :)  A DATE is made up of three fields; YEAR, MONTH and DAY. You gave no business rule for picking the DAY field, so this makes no sense. 
    Since SQL is a database language, we prefer to do look ups and not calculations. They can be optimized while temporal math messes up optimization. A useful idiom is a report period calendar that everyone uses so there is no way to get disagreements in the DML.
    The report period table gives a name to a range of dates that is common to the entire enterprise. 
    CREATE TABLE Something_Report_Periods
    (something_report_name CHAR(10) NOT NULL PRIMARY KEY
      CHECK (something_report_name LIKE <pattern>),
     something_report_start_date DATE NOT NULL,
     something_report_end_date DATE NOT NULL,
     CONSTRAINT date_ordering
      CHECK (something_report_start_date <= something_report_end_date),
    etc);
    These report periods can overlap or have gaps. I like the MySQL convention of using double zeroes for months and years, That is 'yyyy-mm-00' for a month within a year and 'yyyy-00-00' for the whole year. The advantages are that it will sort with the ISO-8601
    data format required by Standard SQL and it is language independent. The pattern for validation is '[12][0-9][0-9][0-9]-00-00' and '[12][0-9][0-9][0-9]-[01][0-9]-00' in the CHECK constraints. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Missing Date fields in table maintenance generation

    I have some non-key date fields in my custom table and have noticed that they do not get generated on the overview screen of my two-step table maintenance dialog. They are present on the detail screen.
    If I change the domain of the fields to CHAR they appear.
    If I change the maintenance type to one-step they appear.
    It seems it is standard behaviour for date fields to be omitted from the overview screen.
    Can anyone confirm that this is standard behaviour or give an explanation for date fields being treated in this manner?...or come up with a way of including the fields on the header screen.
    I already know that I can:
    1. customize the screen to include the fields
    2. create a non-date domain for the fields which uses date-type calendar dropdown
    Thanks,
    Neil

    Thankyou Jonathan, I would have been too lazy to go into debug if I didn't have the form name you supplied! It wasn't the reason you suspected but it was failing the following check in that routine:
    maintenance in list screen required?
          CHECK p_tvdir-type = one_step_maint OR
           ( <w_dfies>-keyflag NE space    "force only keyfields
            OR ( 'CHARNUMC' CS <w_dfies>-datatype     "and view char-fields
             AND p_skip_fields = space )
            OR ( 'CHARNUMC' CS <w_dfies>-datatype     "and view char-fields
             AND <w_dfies>-intlen GE 20 )       "int 3263961/2000
            OR <w_dfies>-rollname = 'BEGDA'    "time dependence
            OR <w_dfies>-rollname = 'ENDDA'    "time dependence
            OR <w_dfies>-tabname NE p_gencb-viewname ). "or text table field
    Because the datatype was DATS.......looks like it will only include key fields and CHAR, NUMC non-key fields or those with a rollname of BEGDA/ENDDA or texttable fields. In debug I changed the datatype to CHAR and it generated with my field included. I think there might be an OSS note to fix this but haven't found it yet.

  • Adding a new field and new data item breaks layout

    I am adding a new field to a subform and populating it form a .Dat unfortunatly adding this field is causing data outputed to the subform below it to shift down one line on the page when outputted.
    This new field is outputted at the top of the form and and the line being shifted are below this.
    Below is the field details and the field as it is in the .dat file.
    Field:F_PO_NUMBER [1]                                
    Lines: 1  Characters: 20  Angle: 0
      In Subform
    : Main_Page
      Options  
    : Global
    ^Command JFPAGE_START
    ^Undefine global:~^PAGE 1
    ^define global:SEQUENCE \pic"NUM999999",@D:NUMPAGESPRINTED../\pic"NUM99",@$PAGE../\pic"NUM99",@:JFPAGE_PAGE_OF..
    ^define global:JFPAGE \pic"NUM99",@$PAGE.. of \pic"NUM99",@:JFPAGE_PAGE_OF..
    ^GLOBAL Email COLL_TEL_NUM~12345678~^REFORMAT OFF
    ^GLOBAL F_CURRENCY_CODE
    GBP
    ^FIELD F_PO_NUMBER
    ^COMMENT R_remit_customer
    ^FIELD F_REMIT_TO_CONCATENATED
    Address
    ^COMMENT M_INVOICE_HDR_BOX1
    ^GLOBAL F_TRX_TYPE
    Invoice
    Now the weird party is if I move the new field in the .dat as below it fixes things and the everything lines up like it should do.
    ^Command JFPAGE_START
    ^Undefine global:~^PAGE 1
    ^define global:SEQUENCE \pic"NUM999999",@D:NUMPAGESPRINTED../\pic"NUM99",@$PAGE../\pic"NUM99",@:JFPAGE_PAGE_OF..
    ^define global:JFPAGE \pic"NUM99",@$PAGE.. of \pic"NUM99",@:JFPAGE_PAGE_OF..
    ^GLOBAL Email COLL_TEL_NUM~12345678~^REFORMAT OFF
    ^GLOBAL F_CURRENCY_CODE
    GBP
    ^COMMENT R_remit_customer
    ^FIELD F_REMIT_TO_CONCATENATED
    Address
    ^COMMENT M_INVOICE_HDR_BOX1
    ^FIELD F_PO_NUMBER
    ^GLOBAL F_TRX_TYPE
    Invoice
    ^FIELD F_TRX_NUMBER
    I hoping someone might have an idea of why this is the case as I'm at a loss regarding why its happening.

    I may not hit on it exactly, but this sounds like Adobe's processing order.
    It wants to process the fields in the order they are in the DAT file.
    I have a similar problem with an overflow field, that isnt last in the DAT file,
    Read this here:
    http://forums.adobe.com/message/2298283#2298283
    Now that may not be exactly your issue, but I think its the same inherent problem,
    Adobes processing order for the fields/subforms.
    I am still trying to resolve my issue, but found the ^field command in the reference manual (Print Agent),
    and am wondering if I can use it.

  • Expanding text field to hold data

    This sounds like a pretty simple problem, but... I have created a form using Designer that consists for 4 text boxes that span the width of the page. We are using a middleware product, LogiXML, to populate the form. We have successfully accomplished getting the data to appear in the text fields, but the data is being cut of because of the size of the boxes. I have selected the check box to allow the box to expand and to allow mutiple lines. This doesn't seem to have any effect. Am I missing something here?
    Thanks.

    The only field type that'll let you have multiple lines of text is a text edit. With that object, you can check the
    Allow multiple lines property on the Object palette's Field tab and check the
    Expand Height (in your case since the text fields are side-by-side) property on the Layout palette.
    The combination of these two properties should get you text fields which display their content in total visibility.
    If that still doesn't work, then it's possible you haven't saved your form as a
    Dynamic PDF form (or, if you've saved your form as XDP, that you aren't previewing it as a Dynamic PDF form).
    If you think your problem is the preview type (i.e. you're not previewing as a dynamic PDF), the following entry on my blog should help you out:
    Previewing as Dynamic PDF.
    Stefan
    Adobe Systems
    You can set the default preview type (for unsaved files) in the "Tools | Options" menu on the
    page and you can set the preview type for saved files in the "File | Form Properties" menu's
    Defaults page.

  • FI-AP  Add  field of master data vendor for reporting of vendor

    Hi,
    I have to add the field LFA1-BRSCH (industry) into layout output reports for suppliers:
    S_ALR_87012082
    S_ALR_87012093
    S_ALR_87012103
    I have already read the note 984305 - Line Item: Definition of special fields (T021S), but does not help me because it does not allow to enter fields of master data vendor
    But  I 've found the extension RFKRRANZ, but I do not know what to enter as a code.
    Has anyone ever used or even if it is used on your systems could send me the code?
    Any assistance would be greatly appreciated.
    Eric

    Hi,
    if someone can affect, the answer SAP  such enhancement is not possible for teh reports:
    S_ALR_87012082
    S_ALR_87012093
    S_ALR_87012103
    But only transactions: FBL1N/FBL3N/FBL5N or, as of ERP2004, FAGLL03.
    Best Regards.
    Eric

  • Add new filed EXNUM in FBL5N Layout

    Hi Frnds,
    I want add new field in T-Code FBL5N layout, the field is Excise number from table J_1IExchdr, can anybody tell me how to do that ?
    dont worry about points.
    Thanks in advance.
    mahesh.

    Hi Mahesh,
    Dont know the version on which you are working. If it is ECC 6 then this might help.
    You can go to the report program for the transaction i.e to RFITEMAR and go to enhance mode and select show implicit enhancemnet options.
    Then create an implementation for any suitable implicit enhancement option and select the required data and add it to the output table which i believe is 'it_pos' .
    Regards,
    Vikas
    <b>Encourage by rewarding points if useful.</b>

  • Help needed with missing data problem in CRVS2010

    We recently upgraded the reporting engine in our product to use Crystal Reports for Visual Studio 2010 (previously engine was CR9). Our quote report, which has numerous subreports and lots of conditional formatting, started losing data when a quote took more than a single page to be printed. We knew the SQL results included the data, but the report was not printing those lines at all or sometimes printing a partial line. In addition, the running total on the report would exclude the lines that were being missed on the next page. In one example submitted by a customer, 3 lines were skipped between pages.
    I think I have identified two potential issues that document the possibility of data not being included in the report.
    The first potential issue is an issue with the "suppress blank section" option being checked. This issue is supposedly fixed with ADAPT01483793, being released someday with service pack 2 for CRVS2010.
    The second potential issue is using shared variables. This issue is supposedly fixed with ADAPT01484308, also targeted for SP2.
    Our quote report does not explicitly use shared variables with any of the subreports, but it does have several subreports, each in its own section that has the "supress blank section" option checked. We have other reports that use this feature, as well, and they are not exhibiting the problem.
    One different thing about the quote report is that it has a section with multiple suppression options selected. The section has a conditional suppression formula, which controls whether the section is included at all within the report. The section also has the suppress blank section option selected. There are multiple fields within the report that are each conditionally suppressed. In theory, the section's suppress formula could evaluate to true, yet all of the fields within the section are suppressed (due to null values), and then the "suppress blank section" option would kick in.
    The missing data only seems to happen when the section is not being suppressed, and at least one of the fields is being included in the report. If I clear the "suppress blank section" check box, and change the section formula to also include the rules applied to the fields in the section, the missing data problem seems to be resolved.
    Is this related to ADAPT01483793? Will it be fixed in service pack 2?
    If more details are needed, I would be happy to provide a sample report with stored data.

    Hi Don,
    Have a look at the Record Selection formula in CR Designer ( stand alone ) and when exported to RPT format opening that report in the Designer also. 
    There's been a few issues with => logic in the record selection formula. It could be you are running into this problem. Look for NOT inserted into your selection formula.
    Oh and SP2 is coming out shortly so it may resolve the issue. But if you want you could purchase a support, or if you have a support contract then create a case in SMP and get a rep to work with you to debug the issue.
    If you have not try the Trial Version of CR 2011, put it on a VM-ware image or Test PC so you don't corrupt anything for production and have a look at and test it in that designer also. If you purchase a case and it is a bug then you'll get a credit back for the case.
    Don
    Edited by: Don Williams on Oct 26, 2011 7:40 AM

  • SLED field is missing in ECC 6.0

    Hello!!!
    we're upgrading from 4.6C to ECC 6.0.
    I have a problem with SLED field in MIGO transaction in ECC 6.0
    For not batch-managed materials, the SLED check is activated.
    1)In Custimizing, the plant and movement type are actived.
    2) remining self life in Material master plant stock view -> 0 Days
    3)The PO -> 0 Days
    4) Info record -> 0 Days
    WHen we enter the MIGO transaction, in Material tab, the SLED field is missing, so we can't enter de SLED. If I maintain in PO or material, more than 0 Days, the field is open, but It doesn't work with 0 Days...
    In 4.6C version, the SLED filed is open, and It's OK.
    I don't find the solution...any idea???
    Thanks ins advance.
    Best regards
    María.

    Hello,
    thank you so much.
    I think that there is not soultion. SAP told me:
    Dear Maria ,
    You have set the Maximum period, Minimum remaining shelf life and
    Total shelf life as zero. I tested this on our internal test system
    and when these are all set to zero the fields PROD & SLED are not
    visisble in the Material tab in tcode MIGO.
    The shelf life is only checked when you enter a goods receipt if the
    following prerequisites are met :-
    1.The minimum remaining shelf life is maintained in the material master
    record or in the purchase order. The minimum remaining shelf life is theminimum number of days for which the material must keep for the goods
    receipt to be accepted by the system.
    2.The shelf life expiration date check is active for the plant and
    movement type in Customizing for Inventory Management.In the
    transaction SPRO,if you check in SAP Reference IMG
    Material Management > Inventory management and Physical Inventory
    > Goods Receipt > Set Expiration date Check,the SLExp/prDt field
    is checked for plant and material movement
    Regards

  • SSRS 2008 R2 - Missing Data when Exporting to Excel or CSV (Row Count is 500)

    Hey Folks,
    When exporting SSRS 2008 R2 report  to an csv or excel file not all the rows are being exported. Any suggestions on why this is occurring. The number of rows is less then 500 and it seems to be a pretty straight forward export. Any help is
    greatly appreciated.  Inherited this and not sure if this would be configuration issues or something else. It is happening on a number of reports.
    Thanks.

    Hi Humbly,
    According to your description, when you export report into CSV or Excel format, some rows are missing.
    In your scenario, since you are missing data “rows” in your exported file, we are guessing if you have any visibility setting like toggle which hide those records. It’s possible that you have set toggle or visibility in your report. After exporting
    Excel/CSV, some data might not appear properly. In SSRS 2008 R2, it has reported this kind of issue about data missing after exporting. However, those scenarios are not exactly same as your issue. It mostly turns out be conflict between data and “layout render”
    and related to DataElementOutput property. DataElementOutput property controls export behavior, it indicates which report item data should appear in Excel/CSV render. For more information, please refer to this article: Reporting Services:
    Why aren’t all my report columns exporting to CSV and/or XML?.
    As we tested in our environment(SSRS 2008 R2), no matter what we export into CSV or Excel, we get same results as in BIDS . So I would like to know your report design structure. If possible, please provide some screenshots about results in BIDS and Excel/CSV
    render extension results. It may help us find out the root cause of your issue. Thank you.
    Best regards,
    Qiuyun Yu

  • How to analyse a problem in BI ( Example missing Data in a report )

    Hello;
    What is the best procedure to analyse a problem missing data in BW. the question could be unclear but I am looking for a method to determine directly and without taking long time in follwing the dataflow to be able to say that we have a problem getting a field A ou B.
    Regards
    Anis

    Hi Anis,
    you can debug data flow or let's say specific data load between 2 objects e.g. datasource and DSO or DSO an cube etc... you can track down e.g. like specific sales order was loaded e.g some specific field is treated within the load (e.g. in case there is ABAP routine used). However it is always better to start either from:
    top->bottom = report->datasource (source table or extractor checked)
    or
    bottom->top = datasource->report
    and go layer by layer (or infoprovider by inforprovider) to see if particular value is still there.
    cheers
    m./

  • Investment order field is missing in origin tab of asset master (AuC)

    Dear Experts,
    While creating an asset master (AuC), the Investment Order field is not shown for the input, in the Origin Tab. Whereas for Asset master for the other Asset classes are showing this field for the input.
    Please advice how can I get this field in the asset master under AuC asset class.
    Thanks in advance in anticipation.
    An early reply is well appreciated and properly rewarded with points.
    Regards
    Preethi

    Hi,
    First check the asset Scr.layout rule for asset class by using path -
    Spro>Financial Accounting>Asset Accounting>Organizational Structures>Asset Classes-->Define Asset Classes
    Select your asset class and check - asset Scr.layout rule .
    Then go to -
    Spro>Financial Accounting>Asset Accounting>Master Data>Screen Layout-->Define Screen Layout for Asset Master Data
    Click on - Define Screen Layout for Asset Master Data
    Select your Screen layout which you got earlier. In Logical Field group select 'Inv. account assignment'. and double click on field group rule.Then make required changes in 'Investment Order' as required - Required, optional, display.
    Then check asset master data in AS02.

  • Grouping to display null values for all the missing dates

    Hi SAP,
    I am trying to display '0.00' value for all the missing dates in my crystal reports as follows:
    17-Jan-14     40.00
    18-Jan-14       0.00
    19-Jan-14       0.00
    20-Jan-14     80.00
    However, my crystal report is showing as follows:
    17-Jan-14     40.00
    18-Jan-14       0.00
    19-Jan-14
    20-Jan-14     80.00
    The missing dates with no data are group together and my '0.00' value is not. Kindly advise me the solution. The formula is shown as per attached.
    Thank you.
    Regards.

    Hi,
    Thanks for your reply.
    Fyi, I am using a formula field in crystal report to display "0.00" for days in between as follows:
    whileprintingrecords;
    if Days_Between({Command.DocDate},next({Command.DocDate}),'dd-MMM-yy') = "" then "" else "0.00"
    There is another formula field in crystal report to display the missing dates in between as follows:
    whileprintingrecords;
    Days_Between({Command.DocDate},next({Command.DocDate}),'dd-MMM-yy')
    Below is my report custom functions:
    Function Days_Between (datefield as datetime, nextdatefield as datetime, format as string)
    ' This function is only used to display what data is missing within a specified date range...output type is text
    dim thisdate as date
    dim nextdate as date
    dim output as string 'output is the text display
    dim daysbetween as number
    dim looptimes as number
    looptimes = 0
    daysbetween = 0
    output = ""
    thisdate = datevalue(datefield) + 1
    nextdate = datevalue(nextdatefield)
    if nextdate - thisdate > 1 then daysbetween = nextdate - thisdate else daysbetween = 1
    do
    if nextdate - thisdate > 1 _
    then output = output + totext(thisdate, format) + chr(10) _
    else _
    if nextdate - thisdate > 0 _
    then output = output + totext(thisdate, format)
    looptimes = looptimes + 1
    thisdate = thisdate + 1
    loop until looptimes = daysbetween
        Days_Between = output
    End Function
    The issue arise when when there is more than one missing dates in between but the null values ("0.00") displayed is only for the first missing dates and not for all the missing dates.
    Regards,
    Ting Wei 

Maybe you are looking for

  • Embedded videos in powerpoint no longer working

    I have recently done the upgrades and until this time, all was well.  BUT I went to play a couple of videos that are embedded into a powerpoint presentation (Microsoft 2011) and they won't play.  I tried setting up a new powerpoint presentation, same

  • Canon HF20 - Issue w/ Log and Transfer in FCE

    I just bought Final Cut Express 4, How do you know if you have the most up to date version? How do you upgrade? The Video shows up, but it WILL NOT "log and transfer" I have tried to drag it down and drop it in and it acts like it will process it, bu

  • Pages text lost thu iweb

    I write in Pages, my text for iweb pages. When I need it I copy and paste to a text box. Makes since right. I see it in iweb, resize and edit. It takes me 3 tries to post, then the text from Pages is missing. In one case, the blog the placeholder tex

  • Help with Firefox seperating spacing in words!?

    Firefox has spaced letters and words extremely far apart, and to the point where I cannot read it anymore. I have tried uninstalling and reinstalling but this did not work. Take a look at what I mean: Google's "I'm feeling lucky" has a bunch of space

  • Cant watch any video from anything on my ipad2

    Upon my return in the airport noted that while on their wifi i was unable to view any videos.