Date not showed when report is viewed in PDF .

Hi,
We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
Totally there are four pages for the report.

I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
I have chatted with Oracle Support, and they will not address it with a patch for now.

Similar Messages

  • 0IC_C03  Data Not Showing in Report

    Dear Friends,
    We are using SAP BW 3.5. I have a problem with 0IC_C03 Cube.
    Problem is:
    Data is transfered to BW i can see the data from Cube --> Contents.
    But when i create a report i am unable to see only that particaluar data which dont
    have storage location.
    Can anybody help me why its not showing that specific data which dont
    have storage location.
    and on other hand we can see the data from Cube -->Contents
    Regards,
    malik

    Yes i am taking care of marker.
    all data is ok excep 13 records which have no storage location.
    and only these 13 records are not showing in the report and thats why
    my stock is not tele with R/3.
    Any other hint.
    regrds,
    Malik

  • Data doesnt show when report is run but shows in preview mode or exported to PDF

    I have  tablix and sub reports in that tablix.. When I run the report and go to the second page i dont see any data from the sub report... but if i export it to pdf i do see data in that spot...
    What should i do to fix it? the page size for this report has been set for legal I have tried messing with the page size and removed the margins for the sub report...
    Any help will be appreciated.
    Thanks
    Karen

    Hi Karen,
    As per my understanding, I think this issue can be caused by Interactive Size. InteractiveSize is used by the HTML rendering extension to provide the equivalent of Page Size. Because the HTML rendering extension dynamically resizes a report to accommodate
    drilldown, drillthrough, and show/hide features, the report server uses different properties to support pagination on dynamic pages. So please check the InteractiveSize of the report, make sure it uses the same size as PageSize.
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Data not showing when not defining PARAMETER

    hi all,
    i have created a report in which  i have define two Parametres i-e S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790' and
    S_ZUJHR LIKE ANLA-ZUJHR*.When i execute it by giving year 2005, 2006,2007 or 2010, it gives me data but when i execute it without defining any year it does'nt show me any data.Eventhough i have check in the table that there data when execute at table level.Could anybody identified my mistake.Following are the code for report:
    include zalsd_alv_incl.
    *Define Tables
    TABLES:ANEP,ANLA,ANLC.
    SELECT-OPTIONS:
        S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790'.
    PARAMETER:
        S_ZUJHR LIKE ANLA-ZUJHR.
    DATA:BEGIN OF gi_anla OCCURS 0,
         bukrs  LIKE anla-bukrs,
         ANLN1  LIKE anla-ANLN1,
         ANLN2  LIKE anla-ANLN2,
         ZUJHR  LIKE anla-ZUJHR,"Fiscal Year
         AKTIV  LIKE ANLA-AKTIV,"Asset capitalization date
         ANLKL  LIKE ANLA-ANLKL,"Asset Class
         END OF gi_anla,
         BEGIN OF GI_ANLC OCCURS 0,
          bukrs  LIKE anlc-bukrs,
          NAFAP  LIKE anlc-nafag,"Posted Depreciation
          kansw  LIKE anlc-kansw,"Asset Acquisation Value
          ANLN2  LIKE anlc-anln2,"Asset Subnumber
          ANLN1  LIKE anlc-ANLN1,"Main Asset Number
          AFABE  LIKE ANLC-AFABE,"Real depreciation area
          ANSWL  LIKE ANLC-ANSWL,"Transactions for the year
         END OF GI_ANLC,
        BEGIN OF gi_main OCCURS 0,
         sno    type   i,       "S.No
         bukrs  LIKE anla-bukrs,"Company code
         ANLN1  LIKE anlc-ANLN1,"Main Asset Number
         anln2  LIKE anlc-anln2,"Asset Subnumber
         AKTIV  LIKE ANLA-AKTIV,"Asset capitalization date
         ANLKL  LIKE ANLA-ANLKL,"Asset Class
         ZUJHR  LIKE anla-ZUJHR,"Fiscal Year
         NAFAG  LIKE anlc-nafag,"Ordinary Depreciation Posted
         kansw  LIKE anlc-kansw,"Asset Acquisation Value
         PSTEND LIKE anlc-PSTEND,"Posting depreciation up to period
         AFABE  LIKE ANLC-AFABE,"Real depreciation area
         ANSWL  LIKE ANLC-ANSWL,"Transactions for the year
           END OF gi_main.
    DATA: date_from TYPE d,
          date_to   TYPE d.
    START-OF-SELECTION.
         PERFORM get_data.
         PERFORM organize_data.
         PERFORM f_display_report.
      END-OF-SELECTION.
    form get_data.
      Data:
            lv_year(4) type n,
            lv_prvyear(4) type n,
            lv_datefrom type d,
            lv_dateto type d.
        move s_ZUJHR to lv_year.
        lv_prvyear = lv_year - 1.
        concatenate lv_prvyear '10' '01' into lv_datefrom.
        concatenate lv_year '09' '30' into lv_dateto.
      SELECT anlc~bukrs anlc~anln1 ANLC~ANLN2 ANLA~ZUJHR kansw nafaG PSTEND ANSWL ANLKL AKTIV
        INTO CORRESPONDING FIELDS OF TABLE gi_main
        FROM
        ANLC
        INNER JOIN ANLA ON
        anlc~bukrs = anla~bukrs AND
        anlc~anln1 = anla~anln1 AND
        ANLC~ANLN2 = ANLA~ANLN2
       WHERE ANLC~AFABE eq '01'
        AND ANLA~ZUJHR EQ S_ZUJHR
        AND   ANLA~ANLKL in S_ANLKL
        AND   ANLA~AKTIV between lv_datefrom and lv_dateto.
        ENDFORM.
      FORM organize_data.
      data: lv_index type sy-tabix.
      LOOP at gi_anla.
      move sy-tabix to gi_main-sno.
        READ TABLE gi_anla WITH KEY bukrs = gi_anla-bukrs
                                    anln1 = gi_anla-anln1
                                    anln2 = gi_anla-anln2.
        MOVE-CORRESPONDING gi_anla to gi_main.
        READ TABLE gi_anlc WITH KEY bukrs = gi_anlc-bukrs
                                    anln1 = gi_anlc-anln1
                                    anln2 = gi_anlc-anln2.
        IF sy-subrc = 0.
          MOVE-CORRESPONDING gi_anlc to gi_main.
        ENDIF.
        CLEAR gi_main.
    ENDLOOP.
        ENDFORM.
        form f_display_report.
      perform fill_fieldcat using 'SNO'       5    'S.No.' 'gi_main'.
      perform fill_fieldcat using 'ANLKL'     20   'Asset Class' 'gi_main'.
      perform fill_fieldcat using 'ANLN1'     20   'Asset Number' 'gi_main'.
      perform fill_fieldcat using 'ANLN2'     20   'Asset Subnumber' 'gi_main'.
      perform fill_fieldcat using 'AKTIV'     20   'Asset Capitalization Date' 'gi_main'.
      perform fill_fieldcat using 'KANSW'     20   'Asset Acquisation Value' 'gi_main'.
      perform fill_fieldcat using 'NAFAG'     20   'Posted Depreciation' 'gi_main'.
      perform fill_fieldcat using 'PSTEND'    20   'Posting depreciation up to period' 'gi_main'.
      perform fill_fieldcat using 'ANSWL'     20   'Transactions for the year' 'gi_main'.
      perform add_heading_alv using c_alv_head_header '' 'Ghulam Farooq Group'.
      perform display_alv using gi_main[].
    endform.

    hi abapGenin,
    i have used my PARAMETER as SELECTION-OPTION as under:
    SELECT-OPTIONS:
        S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790',
        S_ZUJHR FOR ANLA-ZUJHR NO INTERVALS NO-EXTENSION.     
    and also used IN expression insetead of EQ in ANLA~ZUJHR IN s_zujhr as under
    SELECT anlc~bukrs anlc~anln1 ANLC~ANLN2 ANLA~ZUJHR kansw nafaG PSTEND ANSWL ANLKL AKTIV
        INTO CORRESPONDING FIELDS OF TABLE gi_main
        FROM
        ANLC
        INNER JOIN ANLA ON
        anlc~bukrs = anla~bukrs AND
        anlc~anln1 = anla~anln1 AND
        ANLC~ANLN2 = ANLA~ANLN2
       WHERE  ANLC~AFABE eq '01'
        AND   ANLA~ZUJHR IN s_zujhr
        AND   ANLA~ANLKL in S_ANLKL
        AND   ANLA~AKTIV between lv_datefrom and lv_dateto.
    but still data is not coming.
    Thanks
    abapfk

  • E63: Day & Date not showing when profile changed

    Hello All,
    When I change profile from "Normal" to something else on Nokia E63, I do not see day and date on the top right corner  and instead see the profile name. I would like to see day and date with profile name there. Is there anyway I can get this done?
    When phone goes to screen saver mode I have set up a digital clock as screen saver and in that I can see profile, day, date and time.
    Thanks,
    Ray 

    Hello All,
    When I change profile from "Normal" to something else on Nokia E63, I do not see day and date on the top right corner  and instead see the profile name. I would like to see day and date with profile name there. Is there anyway I can get this done?
    When phone goes to screen saver mode I have set up a digital clock as screen saver and in that I can see profile, day, date and time.
    Thanks,
    Ray 

  • Chart binded data not showing when Window State property of form is set to Maximized

    Possible bug?
    Using In VS 2013 Community, .NET 4.5, MySQL w/Connector/NET...
    When a form is maximized, it wil not render the binded datasource on a chart.
    Example is a new project...  chart dragged onto a form... add a Dataset when initializing the chart and immediately bind that to the Datasource property with no changes to the chart except changing your XValue from a column to a line type. I only have
    3 columns in the table. keyId, entryDate, mcf.
    I can also maximize the window after the form is up and running and it doesn't effect the chart at all.
    Any ideas? I need the window to run in a maximized state.
    Many thanks!

    Hi,
    to debug your web content in IE
    f12>Debug tab, select "Break on all errors"... the debugger will break on any errors.
    Emulation tab, tells you which emulation mode the browser is using and which userAgent string it is using.
    File>Properties shows which IE security zone it maps to.
    "When a form is maximized it will not render the binded datasource on a chart"
    Probably you are running from a localhost proxy (http://localhost:8080)... the IE developer tool will show you any scripting errors. Publish your 'test' to a named webserver. eg.
    http://localhost/test.local
    - Questions about html, css and scripting for website developers. If possible please include with your question a link to your website or a mashup that shows the issue.
    Regards.
    Rob^_^

  • Help: Records not showing when cube is placed under the Multiporivider

    Hi Experts,
    I have a Cube called Bcube with char Plant,calm year/month, material and Key Figure, Pqty
    When I generate a report on this Cube, everything looks fine and I see plants, year, etc in the report
    There are 2 other cubes:
    MCube also has char Plant,calyear/month, material and Key Figure: Pqty, Sqty, TQty, AQty
    DCube also has same as BCube: with char Plant,calyear/month, material and Key Figure Pqty
    When I place all three cubes under the multiprovider, the values from the BCube does not show up in reports
    e.g. in a simple report such as
    Row       :  Plant
    Columns:  Pqty, Sqty, TQty, AQty
    In the Multiprovider, under the Indentification of Characteristics, I checked the boxes for all three cubes whenever the same charactertic in all cubes showed up for identification: e.g..
    InfoProvider  InfoObject
    Bcube----
    Plant
    MCube-------Plant
    DCube -
    Plant
    and same for. e.g. 0Calyear
    and same for Key Figures, e.g. I checked all 3 boxes  for PQty which exists in each of the cubes
    1. Why is my data for BCube not showing when reporting against the multiprovider?
    2. what does it mean by checking the 3 boxes for Plant? and checking the 3 boxes for 0Calyear.
    Thanks

    Hi,
    regarding your questions:
    1. When I run listcube against the multiprovider, I only went to the output list to select the fields I needed in the output; then entered the particular cube e.g. BCube in the infoprovider field. That was it (NO other selection) and I got the described results I explained earlier. If you have a specific test for me to try, please let me know.
    2. Please find the settings in both characteristics and key figures for all cubes in the MULTIPROVIDER maintenance screen:
    Characteristic Assighment:
    0calyear -- 3 boxes checked for BCube, DCube & MCube
    Plant -- 3 boxes checked for BCube, DCube & MCube
    0Material-- 3 boxes checked for BCube, DCube & MCube
    Key Figure selection
    PQty-- 3 boxes checked for BCube, DCube & MCube
    Sqty --checked for DCube, this key fig is ONLY in DCube
    TQty--checked for DCube, this key fig is ONLY in DCube
    AQty--checked for DCube, this key fig is ONLY in DCube
    I hope this helps you to guide me.
    Or, were you referring to mappings in the transformations?
    Thanks

  • Data in infoobject not showing in report

    Hi,
    I have this situation. I can see cost center number in variable screen but the number is not showing when I run the report.
    thanks

    Hi,
    I would suggest you try to see if the data is being populated in the cube for the particualr infoobject.If it is not populated in the cube itself,then check the filters inthe start routine,transfer & Update Routines. If its populating the data then,try to run the query on the same selection criteria and verfiy.This way you can confirm if its the loading into the dataprovider or on the front end that needs to be fixed.
    hope it helps

  • XMP data not showing up in the custom file info panels when upgraded to CC

    For several versions of Photoshop, I have been able to use a modified custom file info panel to input, update, and track psd files. With each version of photoshop there are always some changes in the way the object data is handled. The lastest challenge is:
    1. XMP data not showing up in the custom file info panels when upgraded CC from CS6.
    2. Raw data is not visible in CC in the File info panel.
    3. This occurs in new documents where we create the xmp wrapper while the file template is built.
    4. When metadata is manually entered into the file, the data is not added to the XMP wrapper when it is recreated on the save.
    5. When a file that was created in CS6 is opened that contains the Metadata in the file info template. It is visible. the Raw data is also visible. Once the XMP wrapper is recreated - write and then close. The data is no longer available. the Raw data will not pull up in the file info panel.
    Any feedback or a direction will be appreciated.

    I have a script that the user runs to input xmp data into a Customized version of the generic file info panel. it is data that is gathered from the user when the psd file is created. once the file is open in photoshop. the information is visible in the File info panel , the raw data, and as a schema addition in the advanced tab.
    in CC the nodes and the children of the XMP packet have changed positions. so that the XML -this.XMP.child(0).appendChild(this.createNode())
    is no longer the node that can be appended.
    Where XML.child(0).elements().length(); would enable the xmlns to be added in CS6
    <rdf:Description xmlns:phsa="' + this.namespace + '" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:x="adobe:ns:meta/" rdf:about="" />'
    it is visible in CC as namespace in a different arrangement. XML.child(0).child(0).namespaceDeclarations().toString()) and the children are  XML.child(0).child(0).elements().length().toString()); There are now 7 child nodes where before there were 1.
    with all shifted, the initialize of the values and the delete XMP packet wrapper and create new or the amend to the XMP packet wrapper is undefined.

  • Authorization Object is not working when report is modified.

    Hi BW Guru's
    We have Company Code as Authorization Object .and we have 3 company Codes (xxxx,yyyy,zzzz).where the users under Company code xxxx are not supposed to view company code yyyy,zzzz data etc.
    I modified an existing Report and transported to production.But the Authorization Object is not working for that report.The Report is defaultly displaying all the company codes data(xxxx,yyyy) for all the users.But for the other reports its(company code ) is working fine.
    What could be the problem?Is theproblem in transporting the objects.But i transported all the objects inluding auhorization object.
    Please send me the solution as it is very much urgent.
    The solution will be def. awarded with full points.
    Regards
    Sanjay

    hi Sanjay,
    please don't post the same question again, check and response back from your previous thread
    Re: Authorization Object is not working when report is Modified.
    hope this helps.
    would be nice if you reward for helpful answers to all of your previous postings, e.g
    docs related to RRI

  • Ssrs parameter default value not showing ,when available values is binded to query dataset

    I have developed a report using sql server data tools for vsiual studio2012 ,i have defined few parameters ,on one of the parameter when available values is binded to a dataset query, the report default value is  not showing in report preview .
    Many Thanks
    Chandra

    Hi Chandra,
    According to your description, you have set the default value for a parameter, but it's not displayed when initially running the report. Right?
    In this scenario, since you have set the available values bind to query, so your default values should be within these available values. If these default values are not within the available values, the default values will be not displayed. So please check
    the default values.
    Reference:
    Add, Change, or Delete Default Values for a Report Parameter (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • New tables & indexes created do not show up in dba_segments view

    Dear all,
    I have created 3 tables and some indexes, but these objects do not show up in dba_segments view. Is this a normal behaviour? Previously, with dictionary managed tablespace, I can specify the minimum extent to create, when the table/index is created. But I'm not sure how the locally managed tablespace work. Please do advice. Thank you very much in advance.
    I'm using Oracle 11g R2 (11.2.0.1.0) for Microsoft Windows (x64), running on Windows 7.
    For the purpose of reproducing this issue, I have created the tablespaces as follow:
    CREATE TABLESPACE CUST_DATA
    DATAFILE 'd:\app\asus\oradata\orcl11gr2\CUST_DATA01.DBF' SIZE 512K
    AUTOEXTEND ON NEXT 256K MAXSIZE 2000K
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 256K
    SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLESPACE CUST_INDX
    DATAFILE 'd:\app\asus\oradata\orcl11gr2\CUST_INDX.DBF' SIZE 256K
    AUTOEXTEND ON NEXT 128K MAXSIZE 2000K
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128K
    SEGMENT SPACE MANAGEMENT AUTO;
    CREATE TABLE CUSTOMER_MASTER (CUST_ID VARCHAR2 (10),
    CUST_NAME VARCHAR2 (30),
    EMAIL VARCHAR2 (30),
    DOB DATE,
    ADD_TYPE CHAR (2) CONSTRAINT CK_ADD_TYPE CHECK (ADD_TYPE IN ('B1','B2','H1','H2')),
    CRE_USER VARCHAR2 (5) DEFAULT USER,
    CRE_TIME TIMESTAMP (3) DEFAULT SYSTIMESTAMP,
    MOD_USER VARCHAR2 (5),
    MOD_TIME TIMESTAMP (3),
    CONSTRAINT PK_CUSTOMER_MASTER PRIMARY KEY (CUST_ID) USING INDEX TABLESPACE CUST_INDX)
    TABLESPACE CUST_DATA;
    SQL> SELECT TABLE_NAME, TABLESPACE_NAME
    2 FROM USER_TABLES
    3 WHERE TABLE_NAME LIKE 'CUST%';
    TABLE_NAME TABLESPACE_NAME
    CUSTOMER_MASTER CUST_DATA
    SQL> SELECT INDEX_NAME, TABLESPACE_NAME
    2 FROM USER_INDEXES
    3 WHERE TABLE_NAME LIKE '%CUST%';
    INDEX_NAME TABLESPACE_NAME
    PK_CUSTOMER_MASTER CUST_INDX
    SQL> SELECT SEGMENT_NAME, SEGMENT_TYPE, TABLESPACE_NAME, BYTES
    2 FROM USER_SEGMENTS;
    no rows selected

    Prior to 11g, when you created a table or whatever, you automatically allocated one extent.
    This is now no longer true and depends on a parameter I don't remember.
    dba_segments is a summary of dba_extents.
    Obviously, if there is no extent allocated, the table (view is defined with inner join) will not show up.
    You could qualify this is as a bug and submit a SR to Oracle. But then the performance impact may be huge.
    Sybrand Bakker
    Senior Oracle DBA

  • Narrative is not showing up in Layout View

    Narrative is not showing up in layout view when I'm creating a custom report. In Step 2, Creating Layout. I am hovering over add view, then down to advanced. Narrative is not showing up. How do I get this to work??? Static text and Legend is not showing either.
    Thank you for your help!!

    Hello,
    You need to have the privilege Analytics Scripting in step 4 for the narrative report to work. Only then would you HTML and javascript you apply on the Narrative report would show up.
    Please update if this works or not.
    Regards,
    Paul

  • Old All-Day events not showing in Calendar List View

    Reviewing events in my Calendar on the iPhone and have noticed that All Day Events that are older than one year do not show in the "List" view
    For example, I have all my holidays in a calendar called "Vacation". Month and Day view list holidays from earlier than today (09 Sept 2008) properly, however list view shows nothing. Timed events (e.g. day trips) in the same calendar show.
    Similarly no Birthdays appear in the past. I can see a case for Birthdays being omitted in the past, but not other events (e.g. wanting to know exactly when you went to that all day wedding last summer)

    I have this same exact problem. For me, past events that have a specific time associated with them show up in List view; however, past events that are all day events only show in List view once in a blue moon only. Apple support has been absolutely clueless about this issue. They just tell me it's weird and they have no explanation. It's unbelievably annoying though.

  • Calendar items not showing ONLY in list view on iPhone

    Weird: My Calendar items are not showing in the list view only, on iPhone.
    They show when I search, they show in month, they show in Day views--just NOT in list view.
    Ideas?

    I just had the same problem (calendar information--for eight different calendars--OK on laptop and on Mobile me; on the iPhone only 3 of my calendars were displaying in "List" view, but all eight were appearing in "Day" view); first time I've encountered this problem (and immediately after installing the 11-February-2010 iPhone software update, so I'm suspicious that this might have been the cause).
    Solution described in posting immediately above seems to have worked. I.e.,:
    1. shut OFF MobileMe syncing for calendars on the iPhone (from Settings menu);
    2. wait for calendar entries to be removed;
    3. shut off iPhone, and wait 2 minutes;
    4. restart iPhone;
    5. turn ON MobileMe syncing for calendars on the iPhone (again, from Settings menu).
    All eight calendars now appear in List view (and still appear in Day view).

Maybe you are looking for

  • Community Nugget 4/08/2007 Action Engines

    Action Engines, What are They? “An action engine is Ben's term for a functional global which includes extra actions other than just holding the data.”  (tst , 03-13-2007 01:18 PM) In a nut shell tst has nailed it except for the “Ben’s term” part. I w

  • Some DCs are not available locally - NWDS error while importing Track confg

    Hi, We have configured NWDI in our landscape. As per the requirement of the developers, we have created a new product and software component (SC) in SLD, as they don't want to use any standard components. The same has been synced with CMS using updat

  • Error Stack and Error DTP

    Hi All, i have a doubt. Error DTP is used to to edit the error records then to load tha data And error DTP is always full load. If a have 100 records in my error DTP with same kind of problem eg:Special char problem do i need to edit all the 100 reco

  • How to delete photos with no option to sync in iTunes

    I'm trying to delete photo albums from my iphone 4s, but when connecting to iTunes, there is no 'photo' tab to allow me to re-sync and remove some albums. This is v2 of the phone, the original having drowned in a vegas pool, and not sure if the issue

  • Help Import a photo Shop Albumn(PSA2.0) into Photo Shop Elements 12 (PSE12)

    I just purchased  PSE12.   I was told by the online sales guy that i could import my PSA2.0 catalogue backup into PSE12.  The import worked the pictures are there but I don't see any of my catalogue folders.  It's just the pictures sorted by date.  I