ALV Title using I_GRID_TITLE not showing up in REUSE_ALV_GRID

data:      vg_grid_title    TYPE LVC_TITLE.
move 'Batch: XXXXXX'' to vg_grid_title.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
     EXPORTING
*   I_INTERFACE_CHECK                 = ' '
*   I_BYPASSING_BUFFER                = ' '
*   I_BUFFER_ACTIVE                   = ' '
   I_CALLBACK_PROGRAM                = sy-repid
       i_callback_pf_status_set          = vg_status
       i_callback_user_command           = vg_ucom
*   I_CALLBACK_TOP_OF_PAGE            = ' '
*   I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
*   I_CALLBACK_HTML_END_OF_LIST       = ' '
*   I_STRUCTURE_NAME                  =
*   I_BACKGROUND_ID                   = ' '
   I_GRID_TITLE                      = vg_grid_title
*   I_GRID_SETTINGS                   =
   IS_LAYOUT                         = sg_layout
Title is not showing up.
Do i need to do anything extra.?

Hi
Please try dis :
VG_GRID_TITLE = 'Batch: XXXXXX'.
and
  I_BACKGROUND_ID                   = ' '
   I_GRID_TITLE                      = VG_GRID_TITLE
*or *
make use of
class : CL_DD_DOCUMENT .
DATA: TEXT1 TYPE SDYDO_TEXT_ELEMENT,
data : DOCUMENT TYPE REF TO CL_DD_DOCUMENT. "#EC CALLED
  CALL METHOD DOCUMENT->ADD_GAP
    EXPORTING
      WIDTH = 150.
  TEXT1 =  'YOUR GRID TITLE IN THE REPORT '.
  CALL METHOD DOCUMENT->ADD_TEXT
    EXPORTING
      TEXT         = TEXT1
      SAP_EMPHASIS = strong .
Hope it helps
Regards
Swapnil

Similar Messages

  • ALV GRID Report is not showing all records which is in internal table

    hi all,
    have one doubt. please clarify me. ALV Report is working fine since long tiem. But suddenly this report is showing few records only for the given input.   Example:   it_main table have 50 records, but output is showing only 10 records only. (we have not made any modifications in this report).
    temporarily i have given excel output file from it_main table. excel file is showing all records.
    here it_main have all the records. but output is showing few records only. it is not showing any error. i have tested with REUSE_ALV_LIST_DISPLAY function also. but it also showing same results(few records only.)
    please give me some idea.
    FORM display_alv_report.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active          = 'X'
          i_callback_program       = sy-repid
          is_layout                = wa_layout
          it_fieldcat              = it_fcat
          it_events                = it_events
          i_save                   = 'A'
          is_variant               = wa_variant
        TABLES
          t_outtab                 = it_main
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE text-204 " 'Error in Display the list'
        TYPE 'I'.
        LEAVE TO LIST-PROCESSING.
      ENDIF.
    ENDFORM.            .                    "DISPLAY_ALV_REPORT
    Best Regards,
    Srinivas

    hi
    Please study this program and give me suggestions.
    ALV Declaration
    DATA : it_events TYPE slis_t_event,               "ALV event
               it_fcat   TYPE slis_t_fieldcat_alv,        "Field catalog
               it_list_top_of_page TYPE slis_t_listheader,
               c_tabname  TYPE slis_tabname   VALUE 'IT_MAIN'.
    DATA : wa_layout  TYPE slis_layout_alv,
                wa_event   TYPE slis_alv_event,
               wa_fcat    TYPE slis_fieldcat_alv,
               wa_variant TYPE disvariant.
    START-OF-SELECTION.
      PERFORM material_pass.
      PERFORM data_retrieval.
    END-OF-SELECTION.
      PERFORM sub_display_report.
    FORM sub_display_report .
      DATA status(1).
      IF r1 = 'X'.
        PERFORM build_fieldcatalog USING :
          '1'  'ERDAT'     'S.O DATE'             '' '10'  'X',
          '2'  'VBELN'     'SALE ORDER'           '' '10'  'X',
          '3'  'POSNR'     'SALE ITEM'            '' '6'   '',
          '4'  'BSTKD'     'CUSTOMER PO'          '' '35'  '',
          '5'  'BEZEI'     'REASON FOR REJECTION' '' '40'  '',
          '6'  'PLNUM'     'PLANNED ORDER'        '' '10'  '',
          '7'  'AUFNR'     'PROD.ORDER.'          '' '12'  '',
          '8'  'MATNR'     'MATERIAL NUMBER'      '' '18'  '',
          '9'  'MAKTX'     'MATERIAL DESCRIPTION' '' '40'  '',
          '10' 'WERKS'     'PLANT'                '' '4'   '',
          '11' 'KWMENG'    'SALE ORDER QTY'       '' '15'  '',
          '12' 'VRKME'     'UNIT'                 '' '4'   '',
          '13' 'GAMNG'     'PROD.ORDER QTY'       '' '13'  '',
          '14' 'IGMNG'     'CONFIRMED ORDER QTY'  '' '13'  '',
          '15' 'GMEIN'     'UNIT'                 '' '4'   '',
          '16' 'MENGE'     'G.R QUANTITY'         '' '13'  '',
          '17' 'SOBAL'     'S.O BALANCE'          '' '13'  '',
          '18' 'PRDBAL'    'PROD.BALANCE'         '' '13'  '',
          '19' 'GSM'       'GSM'                  '' '4'   '',
          '20' 'SIZE1'     'SIZE1'                '' '10'  '',
          '21' 'SIZE2'     'SIZE2'                '' '10'  ''.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = pathname
            filetype              = ftype
            append                = 'X'
            write_field_separator = 'X'
          TABLES
            data_tab              = it_mains
          EXCEPTIONS
            file_write_error      = 1.
        IF sy-subrc = 0.
          status = 'S'.
        ELSE.
          status = 'E'.
        ENDIF.
      ELSEIF r2 = 'X' OR r3 = 'X'.
        PERFORM build_fieldcatalog USING :
          '1'  'ERDAT'     'S.O DATE'             '' '10'  'X',
          '2'  'VBELN'     'SALE ORDER'           '' '10'  'X',
          '3'  'POSNR'     'SALE ITEM'            '' '6'   '',
          '4'  'BSTKD'     'CUSTOMER PO'          '' '35'  '',
          '5'  'BEZEI'     'REASON FOR REJECTION' '' '40'  '',
          '6'  'PLNUM'     'PLANNED ORDER'        '' '10'  '',
          '7'  'AUFNR'     'PROD.ORDER.'          '' '12'  '',
          '8'  'MATNR'     'MATERIAL NUMBER'      '' '18'  '',
          '9'  'MAKTX'     'MATERIAL DESCRIPTION' '' '40'  '',
          '10' 'WERKS'     'PLANT'                '' '4'   '',
          '11' 'KWMENG'    'SALE ORDER QTY'       '' '15'  '',
          '12' 'VRKME'     'UNIT'                 '' '4'   '',
          '13' 'GAMNG'     'PROD.ORDER QTY'       '' '13'  '',
          '14' 'IGMNG'     'CONFIRMED ORDER QTY'  '' '13'  '',
          '15' 'GMEIN'     'UNIT'                 '' '4'   '',
          '16' 'MENGE'     'G.R QUANTITY'         '' '13'  '',
          '17' 'SOBAL'     'S.O BALANCE'          '' '13'  '',
          '18' 'PRDBAL'    'PROD.BALANCE'         '' '13'  '',
          '19' 'GSM'       'GSM'                  '' '4'   '',
          '20' 'SIZE1'     'SIZE1'                '' '10'  '',
          '21' 'CUT1'      'CUT1'                 '' '11'  '',
          '22' 'SIZE2'     'SIZE2'                '' '10'  '',
          '23' 'CUT2'      'CUT2'                 '' '11'  '',
          '24' 'SIZE3'     'SIZE3'                '' '10'  '',
          '25' 'CUT3'      'CUT3'                 '' '11'  '',
          '26' 'SIZE4'     'SIZE4'                '' '10'  '',
          '27' 'CUT4'      'CUT4'                 '' '11'  '',
          '28' 'SIZE5'     'SIZE5'                '' '10'  '',
          '29' 'CUT5'      'CUT5'                 '' '11'  '',
          '30' 'SIZE6'     'SIZE6'                '' '10'  '',
          '31' 'CUT6'      'CUT6'                 '' '11'  ''.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = pathname
            filetype              = ftype
            append                = 'X'
            write_field_separator = 'X'
          TABLES
            data_tab              = it_mainall
          EXCEPTIONS
            file_write_error      = 1.
        IF sy-subrc = 0.
          status = 'S'.
        ELSE.
          status = 'E'.
        ENDIF.
      ENDIF.
      PERFORM build_layout.
      PERFORM build_events.
      PERFORM sub_comment_build USING it_list_top_of_page.
      PERFORM sub_set_variant.
      PERFORM display_alv_report.
      IF status = 'S'.
        MESSAGE 'Excel Output file Downloaded to Given Path' TYPE 'I'.
      ELSE.
        MESSAGE 'Download Not Possible' TYPE 'I'.
      ENDIF.
    ENDFORM.                    " SUB_DISPLAY_REPORT
    FORM BUILD_FIELDCATALOG
    FORM build_fieldcatalog USING  p_col_pos
                                   p_fieldname
                                   p_text
                                   p_datatype
                                   p_outputlen
                                   p_col_freez.
      wa_fcat-row_pos        = '1'.
      wa_fcat-col_pos        = p_col_pos.
      wa_fcat-fieldname      = p_fieldname.
      wa_fcat-tabname        = c_tabname.
      wa_fcat-reptext_ddic   = p_text.
      wa_fcat-datatype       = p_datatype.
      wa_fcat-ddic_outputlen = p_outputlen.
      wa_fcat-key            = p_col_freez.
      APPEND wa_fcat TO it_fcat.
      CLEAR wa_fcat.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
    FORM build_layout.
      CLEAR: wa_layout.
      wa_layout-window_titlebar   = 'LIST OF GSM WISE OPEN SALE ORDERS'.
      wa_layout-colwidth_optimize = 'X'.
      wa_layout-totals_text       = 'CUMULATIVE'.
    ENDFORM.                    "BUILD_LAYOUT
    *&      Form  BUILD_EVENTS
    FORM build_events.
      CLEAR wa_event.
      REFRESH it_events.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = it_events
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      IF sy-subrc = 0.
        READ TABLE it_events INTO wa_event
             WITH KEY name = 'TOP_OF_PAGE'.
        IF sy-subrc EQ 0.
          wa_event-form = 'TOP_OF_PAGE'.
          APPEND wa_event TO it_events.
          CLEAR wa_event.
        ENDIF.
      ENDIF.
    ENDFORM.                    "BUILD_EVENTS
         -->P_IT_LIST_TOP_OF_PAGE  text
    FORM sub_comment_build  USING it_top_of_page TYPE slis_t_listheader.
      DATA ls_line TYPE slis_listheader.
      CLEAR ls_line.
      ls_line-typ = 'H'.
      ls_line-info = str1.
      APPEND ls_line TO it_top_of_page.
      CLEAR ls_line.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary = t_header[].
    ENDFORM.                    " SUB_COMMENT_BUILD
    *&      Form  SUB_SET_VARIANT
          text
    -->  p1        text
    <--  p2        text
    FORM sub_set_variant .
      CLEAR wa_variant.
      wa_variant-report = sy-repid.
      wa_variant-username = sy-uname.
    wa_variant-variant = c_variant.
    wa_variant-variant = p_layout.
    ENDFORM.                    " SUB_SET_VARIANT
    *&      Form  DISPLAY_ALV_REPORT
    *Display Report Using ALV GRID
    FORM display_alv_report.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active          = 'X'
          i_callback_program       = sy-repid
         i_callback_pf_status_set = c_pf_status
         i_callback_user_command  = c_user_command
          is_layout                = wa_layout
          it_fieldcat              = it_fcat
         it_sort                  = it_sort[]
          it_events                = it_events
          i_save                   = 'A'
          is_variant               = wa_variant
        TABLES
          t_outtab                 = it_main
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE text-204 " 'Error in Display the list'
        TYPE 'I'.
        LEAVE TO LIST-PROCESSING.
      ENDIF.
    ENDFORM.            .                    "DISPLAY_ALV_REPORT
    *ALV Report Header
    FORM top_of_page.
      DATA : t_header TYPE slis_t_listheader WITH HEADER LINE,
             wa_header TYPE slis_listheader,
             t_line LIKE wa_header-info,
             ld_lines TYPE i,
             ld_linesc(10) TYPE c.
      wa_header-typ  = 'H'.
    T_HEADER-INFO = 'LIST OF GSM WISE OPEN SALE ORDERS'.
      wa_header-info = str1.
      APPEND wa_header TO t_header.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header[].
    ENDFORM.                    "TOP_OF_PAGE
    here it_main internal table having all data. but output is showing few records only.
    pl. give some idea.
    Thanks & Regards
    Srinivas.

  • I book text boxes that are not used will not show up in the printed book?

    If I don't want to use all the text boxes for my printed book will the outline be printed anyway?(black background with white text box) I assume there is no way to turn the captions off.
    Many thanks in advance.
    Dennis

    Dunny
    Welcome to the Apple user to user assistance forums
    Which theme and layout are you discussing
    In general text boxes do not show in printed books - however they must have something in them - at least a single space
    But some clearly show up - in the travel theme the layouts that have text blocks that look like a torn piece of paper or a post card will of course print
    Always preview your book and verify the resulting PDF to see what you rfinal book will look like - http://support.apple.com/kb/HT1040
    And usually I can find an alternative layout with no text
    LN

  • The navigation I am using is not showing up in internet explorer, why not?

    I went into the widgets library>compositions>blank as my navigation bar. After exporting into HTML to view in the browser to see if all correct...the navigation bar showed up in Chrome and Firefox, but not in Internet Explorer. This is the only thing wrong with my site before I was ready to put it live. Do I have to use a different navigation bar tool? If so where do I find this?
    Thanks!

    This can be an issue with IE blocking the content or preview , try to publish the site as a trial site and then check, also check with a latest version of IE for isolating the issue with specific IE version.
    Thanks,
    Sanjit

  • Every time I start up my computer and load firefox, the theme I was using is not showing up.

    Every time I start up my computer and load Firefox, the theme I was using has gone back to the default one. The theme is still on my computer and it works if I change it back, I just don't know why it won't show up when I first load Firefox.
    == This happened ==
    Every time Firefox opened

    See http://kb.mozillazine.org/Preferences_not_saved and [[Preferences are not saved]]

  • Dynamically ALV  Titles  Using Events - How To

    Dear All,
    There is a selection screen. Depending upon the selection, there will be output in ALV grid or list. This output doesn't contain any field of selection.
    So the output must be grouped on the basis of selection as their common title.
    Eg. If model and type are in selection screen then output something like
    Model No. 1    Type No. 2
         ALV Grid for Model 1 and Type 2
    Model No. 3    Type No. 4
         ALV Grid for Model 3 and Type 4
    How to use ALV Events to process the data dynamically for the titles as in above case the numbers 1, 2 ,3 & 4 are present in the output table which is passed to ALV for display.
    Thanks & Regards,
    Sapna Modi.

    Hi Sapna
    To set title you can fill a structure of type <b>"LVC_S_LAYO"</b> (the field gridtitle) and use the method <b>"set_frontend_layout"</b>. You can get the current layout structure using the method <b>"get_frontend_layout"</b>.
    To set column headers you can use to get and set the fieldcatalog at any instance of the runtime. For this you can use <b>"set_frontend_fieldcatalog"</b> and <b>"get_frontend_fieldcatalog"</b>. At the field catalog, you can set titles for columns using <i>"coltext", "scrtext_s", "scrtext_m", "scrtext_t"</i> .
    For more information you can refer to the tutorial <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an%20easy%20reference%20for%20alv%20grid%20control.pdf">"An Easy Reference For ALV Grid Control"</a>.
    *--Serdar
    [email protected]

  • 9i Reports Graphic using JSP not showing in Portal

    Using Portal Rel 2, 9iAS Report Server Rel 2, Oracle 9i database and 9iDS Report Builder, SUN servers and Windows2000 (for Builder).
    I've created 2 reports very simple, using scott.emp table, one tabular (deptno,ename, salary) and one line graph (ename,salary) both created as .RDF (paper layout) and .JSP (web layout).
    The tabular reports both work fine on portal (after setting Oracle Reports Security as Servelet and as JSP).
    The graphics only work as Servlets , as .JSP it shows the little box with the red x.
    If I run the reports outside of portal, all 4 work fine.
    Any idea what might be the problem?
    Thanks in advance for all your help on this.
    Max.

    Hi Zsolt:
    Thanks for your response. May I ask you further questions regarding your solution:
    1) content SCORM compliant?? (yes/no)
    Yes, it is SCORM compliant
    2) check in / publish the content in the Authoring Environment
    I am not sure if my colleague has check-in/publish it in AE. I'll check on this one.
    3) go to the LSO back-end and create a WBT
    Do you mean creating a Course Type with Delivery Method "WBT"? if yes, I've done so. If no, then how do I do it?
    4) enclose the cheked in / published content
    Do you mean creating IT5006 - Course Type Content to link the content to the course type? if yes, I've done so. If no, then how do I do it?
    5) try to find on the portal again
    I'll ask my colleague about Step 2 and then I'll re-try again..
    Thanks,
    Sean

  • Collect Signatures workflow using Firefox not showing Workflow task "This document requires your signatures" Open this task...

    Hi!
    I am assuming FireFox does not support the Collect Signatures workflow in SharePoint 2010.
    We are testing things now, and if the Outlook link is opened via IE, the workflow task shows up when the Word 2010 document opens for signing...and I can sign the document.
    If we open the hyperlink in Firefox, I go through the initial prompts and get to a stopping point where I cannot sign the document and the message states:
    "Signatures can't be added or removed because this document was opened as read-only".
    It looks as if we have to tell our users to use IE since there is ActiveX involvement in this entire collect signatures process.
    Please advise...thank you!

    Hi!
    Yes, I did see this under the ActiveX Controls area (3/4 down the page) from the same link you mention above:
    Connect to Outlook, Connect to Office, and Sync to SharePoint Workspace >> Works with an ActiveX control and the stssync:// protocol. Therefore, functionality may be limited without
    an ActiveX control, such as the one that is included in Microsoft Office 2010. The feature also requires an application that is compatible with the stssync:// protocol, such as Microsoft Outlook.
    ...which I'm assuming is the whole ActiveX control issue...and hence the Firefox problem.
    Thank you!

  • Sent mail using icloud not showing up on other machines

    I sent a message using the mail application on my Macbook Pro with an icloud account. That sent message (at least I thought) would be showing up in my icloud sent messages folders on other computers. It is not. Should it, or will it only show up on the computer it was sent from? There are no error messages saying it did not send btw.
    Gary in Oregon

    Are you using IMAP or POP?  Are you storing sent mail on the server?
    Only if you're using IMAP and selecting to store sent mail on the server will you see the email on other devices.
    My recommendation is to actually scrap using "sent mail" entirely and instead bcc: yourself on every message and file it where you want it.  There are many advantages to doing this.

  • Movies trimmed using Quicktime not showing up in iPhoto

    My movies are .AVI. When I open Quicktime, and edit the movie, it saves it as .MOV, which is fine. The only trouble is that the old unedited .MOV version is the only one that shows up in iPhoto.
    When I 'Show File' in Finder, I see both the unedited .AVI version and the edited .MOV version.
    How do I get only the new edited .MOV version to show up in iPhoto?
    Thank you!

    Welcome to the Apple Discussions. When you edit with QT and the new movie gets saved as a .mov iPhoto's database files which keeps track of files and edits does not get updated and still looks to the .avi version. You will have to save the edited version to the Desktop and import as a new file. It's the nature of the beast.
    OT

  • My title bar is not showing up how do I get it back?

    Why do i not have a title bar  at the top of my itunes i want it back and i have tryed many different things i have tryed re downloading and nothing works please help.

    heres a picture of what im talking about

  • Title Bar not showing transparency?

    My title bar is not showing the transparency in leopard. I am wondering if I am the only one experiencing this problem.
    title bar: http://www.flickr.com/photos/14619753@N05/2079776248/in/photostream/
    (I am running on a PPC processor, and maybe that is the problem, I don't know)
    Message was edited by: [Rolamoto]

    This will depend on your computer. I believe the transparent menubar requires "core image" or some other "core" technology, and if your graphics card does not support that technology then it will not do it. The transparent menubar works on my G5 with a Radeon X800XT, but it doesnt work on my PowerBook G4 (Radeon 9000).

  • I have a ringtone that is not showing up in the voicemail list in settings?

    IOS5  Iphone 4
    I have a ringtone that I would like to have a as a ringtone when someone leaves a  new voicemail message.
    The ringtone is installed on the iphone.  I can select it as a ringtone for phone calls in settings........ no problem.....
    But when I go to settings on the iphone, the "new voicemail" ringtone option, the one ringtone that I want to use does not show up in the list.
    All of my other ringtones are available accept the one I want to use? I have a total of 6 custom ringtones. 5 show up in "new Voicemail" drop down...

    Here are the steps, from an Apple note. You said the eject key didn't work and there was nothing to drag to the trash ....
    Try to eject discs using the F12 or eject key on the keyboard.
    If the disc will not eject try dragging the disc icon to the trash.
    If the disc will still not eject, holding down the trackpad or mouse button after restarting the computer should also eject a disc.
    If the disc continues not to eject, reset the System Management Controller (SMC) and try steps 1-3 again.
    If the disc still does not eject, for additional troubleshooting, evaluation, or service pleasecontact Apple, contact an Apple Authorized Service Provider, or make an appointment with anApple Retail Store.

  • Pb! pics not showing in n85 gallery but in file ma...

    Hi!
    As it is writen in title, my pics not showing in n85 gallery but in file manager!
    I don't now if it is because I have uptdated till share online 4.
    I just have a blank screen with now pics showing. When I click on open, I just have white and grey icons with a boat in it but unable to open one.
    That's is really annoying as I bought this mobile phone for the multimedia advantages...
    Please need help!
    Thanks

    its either the presence of Share Online 4.0 or a firmware issue. the same thing happened with N78 until new firmware 20.149 rectified the problem of the thumbnails not displaying/displaying incorrectly. a new firmware should be on the horizon for N85 i'm sure 
    If you found this or someone's comments helpful or like what that person has to say, please give some Kudos to their post!
    Message Edited by adrianhughes on 04-Apr-2009 12:47 PM

  • Playbook Bridge Calendar Not Showing What's on the Phone Calendar

    There are calendar items that display of my Curve 9330 but not on the Playbook bridge calendar .  If I open the calendar item on my phone and from the menu select either "save" or "send," the item will appear on the Playbook bridge calendar - but it then disappears if I close the calendar and reopen it, or when the Playbook wakes up after it goes to sleep.
    This issue pre-dates the OS upgrade and still exists.   For many months, everything worked fine, but then this problem arose. 
    I have reinstalled- re-Paired, re-booted.  I backed up the Playbook, reinstalled the OS, deleted and reinstalled the bridge on the phone, pulled the phone's battery -- whatever I try, I still have the same problem - the bridge calendar does not show what is on the phone's calendar. 
    Appointments added to the calendar on my desktop (we use Lotus Notes) show up on the phone but not in the bridge calendar.
    I don't use the native calendar.

    Hi JerryPasternak,
    I would recommend contacting BlackBerry® PlayBook™ tablet support for further investigation into this issue. You can find the contact information here: http://bbry.lv/MgKtEp
    Thanks.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for

  • How the program set the resolution by itself

    hi need help. i have an exe with graphs. in my computer i can c the whole vi  where it has a quit button at the end without any problem. wen i test in different computer i cant see the quit button .. i think because of different resolution of the com

  • How to activate FM Account assignment in Sales Order

    Dear All, How to activate FM Account assignment in Sales Order at item level in account assignment category. Plz provide some solution for the same. Thanks & Regards, Pankaj

  • New iPod nano chromatic crashes computer

    I have an iMac version 10.4.11. My daughter just bought a new iPod nano chromatic and whenever we try to use it on that computer, it crashes and a window pops up demanding a mandatory restart. There was no way to even register the iPod and it never s

  • Tooltip for points in 'Chart Engine'-diagram

    Hi, I am using the Chart Engine (Class CL_GUI_CHART_ENGINE) to display a column chart. Is there a way to show the value of a point in a tooltip when placing the mouse cursor on a column? Thanks for any suggestions! Regards, Mathis

  • Pre-loading conditional content(pictures etc.) before it needed.

    Hi, i have some linkedlist or tree-structure contents(images,sounds etc.) I want to pre-load next items(content) to cache while user interacting with current content. Thus, when user want to see next content, it'll show immideately and start loading