BDC for FF67 not displaying the line itmes of second page

Hi all,
I am using the Z BDC report Manual Bank Statement Upload (FF67). The BDC is as mentioned below :
We are using start variant in the BDC.
The report is working fine but the issue is that suppose if their are 45 line items and on one page we can have only 30 line items . Then only 30 line items are been displayed . It is not taking the line items which have come on the second page. Please advsie . Below is the code of the BDC.
REPORT  zfi_bank_recon.
TABLES : febko.
DATA: bdcdata LIKE bdcdata    OCCURS 0 WITH HEADER LINE.
DATA : i_messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
DATA : BEGIN OF itab OCCURS 0,
       vgman TYPE febmka-vgman,
       valut TYPE char10, "febep-valut,
       kwbtr TYPE char17, "febmka-kwbtr,
       chect_kf TYPE febmkk-chect_kf,
       sgtxt_kf TYPE febmkk-sgtxt_kf,
       count(6) TYPE n,
       END OF itab.
DATA : BEGIN OF error OCCURS 0,
       msg TYPE string,
      END OF error.
DATA :flag,
      update VALUE 'A',
      mode VALUE 'N'.
DATA : aznum1 TYPE aznum,
lv_esbtr TYPE febko-esbtr,
lv_esvoz TYPE febko-esvoz,
lv_opening TYPE char17, "febmka-kwbtr,
lv_closing TYPE char17. "febmka-kwbtr.
*& Selection screen
SELECTION-SCREEN : BEGIN OF BLOCK blk WITH FRAME TITLE text.
PARAMETERS :  bukrs LIKE febmka-bukrs OBLIGATORY,
              hbkid LIKE febmka-hbkid OBLIGATORY,
              hktid LIKE febmka-hktid OBLIGATORY,
              azdat LIKE febmka-azdat OBLIGATORY,
              aznum LIKE febmka-aznum OBLIGATORY,
              budtm LIKE febmka-budtm OBLIGATORY  DEFAULT sy-datum.
SELECTION-SCREEN :  END OF BLOCK blk.
SELECTION-SCREEN : BEGIN OF BLOCK blk1 WITH FRAME TITLE text1.
PARAMETERS: p_file LIKE rlgrap-filename OBLIGATORY.
SELECTION-SCREEN : END OF BLOCK blk1.
AT SELECTION-SCREEN.
  SELECT SINGLE * FROM febko INTO febko
  WHERE bukrs = bukrs AND hbkid = hbkid AND
  hktid = hktid  AND aznum = aznum
       AND budtm = budtm
        AND azdat = azdat.
  IF sy-subrc EQ 0.
    MESSAGE e038(000) WITH 'Statement' aznum  'already uploaded; No further processing done'.
  ENDIF.
At Selection Screen Event
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
  CALL FUNCTION 'F4_FILENAME'
    IMPORTING
      file_name = p_file.
*& Start of Selection
START-OF-SELECTION.
  CLEAR : flag.
  PERFORM data_upload.
  PERFORM check_data.
  IF itab[] IS NOT INITIAL AND flag IS INITIAL..
    PERFORM open_group.
    REFRESH bdcdata.
    PERFORM bdcdata. " USING LV_OPENING LV_CLOSING.
  PERFORM bdc_insert.
    PERFORM close_group.
  ENDIF.
*&      Form  check_data
FORM check_data.
  LOOP AT itab.
    DATA : int(6) TYPE n.
    CLEAR : int.
    int = sy-tabix.
    IF itab-vgman  IS  INITIAL.
      CONCATENATE 'Transaction type should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
      APPEND error.
      CLEAR : error.
    ENDIF.
    IF itab-valut IS INITIAL.
      CONCATENATE 'Value Date should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
      APPEND error.
      CLEAR : error.
    ENDIF.
    IF itab-kwbtr IS INITIAL.
      CONCATENATE 'Amount should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
      APPEND error.
      CLEAR : error.
    ENDIF.
    IF itab-chect_kf IS INITIAL.
      CONCATENATE 'Bank Reference should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
      APPEND error.
      CLEAR : error.
    ENDIF.
     IF  itab-vgman  NE 'DLF1'
       AND itab-vgman  NE 'DLF2'.
      CONCATENATE 'A Transaction type is not used : Record no'  int INTO error-msg SEPARATED BY space.
      APPEND error.
      CLEAR : error.
    ENDIF.
     IF itab-vgman  EQ 'DLF1'
    AND itab-kwbtr LE 0.
      CONCATENATE 'As per Transaction type, the Amount should be Positive : Record no'  int INTO error-msg SEPARATED BY space.
      APPEND error.
      CLEAR : error.
    ENDIF.
     IF   itab-vgman  EQ 'DLF2'
    AND itab-kwbtr GE 0.
      CONCATENATE 'As per Transaction type, the Amount should be Negative : Record no'  int INTO error-msg SEPARATED BY space.
      APPEND error.
      CLEAR : error.
    ENDIF.
  ENDLOOP.
  IF error[] IS NOT INITIAL.
    WRITE : / 'Error found in upload file'.
    SKIP 2 .
    LOOP AT error.
      WRITE : / error-msg.
    ENDLOOP.
    flag = 'X'.
  ENDIF.
  CLEAR : lv_esbtr, lv_esvoz, aznum1, lv_opening, lv_closing.
  IF flag IS INITIAL.
    SELECT MAX(  DISTINCT  aznum )  FROM febko INTO aznum1
    WHERE bukrs = bukrs AND hbkid = hbkid  AND hktid = hktid.
    IF sy-subrc = 0.
      SELECT SINGLE esbtr esvoz  FROM febko INTO (lv_esbtr,lv_esvoz)
      WHERE bukrs = bukrs AND hbkid = hbkid  AND hktid = hktid AND aznum = aznum1 .
      IF lv_esvoz = 'S'.
        lv_opening = lv_esbtr * -1.
      ELSE.
        lv_opening = lv_esbtr.
      ENDIF.
      lv_closing = lv_opening.
    ENDIF.
    LOOP AT itab.
      lv_closing = lv_closing + itab-kwbtr.
      DATA : lv_count(6) TYPE n.
      lv_count = lv_count + 1.
      MOVE lv_count TO itab-count .
      MODIFY itab FROM itab.
      CLEAR : itab.
    ENDLOOP.
  ENDIF.
ENDFORM.                    "check_data
*&      Form  data_upload
FORM data_upload.
  DATA: loc_filename TYPE string.
  loc_filename = p_file.
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename                = loc_filename
      filetype                = 'ASC'
      has_field_separator     = 'X'
    TABLES
      data_tab                = itab
    EXCEPTIONS
      file_open_error         = 1
      file_read_error         = 2
      no_batch                = 3
      gui_refuse_filetransfer = 4
      invalid_type            = 5
      no_authority            = 6
      unknown_error           = 7
      bad_data_format         = 8
      header_not_allowed      = 9
      separator_not_allowed   = 10
      header_too_long         = 11
      unknown_dp_error        = 12
      access_denied           = 13
      dp_out_of_memory        = 14
      disk_full               = 15
      dp_timeout              = 16
      OTHERS                  = 17.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDFORM.                    "data_upload
*&      Form  bdcdata
FORM bdcdata. " USING lv_opening TYPE febko-ssbtr
  "    lv_closing TYPE febko-esbtr.
  DATA : day(2),
         month(2),
         year(4),
         date(10).
  year = azdat+0(4).
  month = azdat+4(2).
  day = azdat+6(2).
  CONCATENATE day month year INTO date.
  CONDENSE : date.
Comment
  PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '/EVORG'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'FEBMKA-AZDAT'.
  PERFORM bdc_dynpro      USING 'SAPMF40K' '0110'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'FEBMKA-VARI_START'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '=ENTE'.
  PERFORM bdc_field       USING 'FEBMKA-KONT_INT'
                                'X'.
  PERFORM bdc_field       USING 'FEBMKA-FDIS_SEL'
                                'X'.
  PERFORM bdc_field       USING 'FEBMKA-VARI_START'
                                'Z0001'.
  PERFORM bdc_field       USING 'FEBMKA-DEBI_MID'
                                'D'.
  PERFORM bdc_field       USING 'FEBMKA-KRED_MID'
                                'K'.
  PERFORM bdc_field       USING 'FEBMKA-WVAR_ART'
                                '4'.
  PERFORM bdc_field       USING 'FEBMKA-BUCH_VAL'
                                'X'.
  PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'FEBMKA-ESALD'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '/00'.
  PERFORM bdc_field       USING 'FEBMKA-BUKRS'
                                bukrs.
  PERFORM bdc_field       USING 'FEBMKA-HBKID'
                                hbkid.
  PERFORM bdc_field       USING 'FEBMKA-HKTID'
                                hktid.
  PERFORM bdc_field       USING 'FEBMKA-AZNUM'
                                aznum.
  PERFORM bdc_field       USING 'FEBMKA-AZDAT'
                                date.
  PERFORM bdc_field       USING 'FEBMKA-SSALD'
                                lv_opening.
  PERFORM bdc_field       USING 'FEBMKA-ESALD'
                                lv_closing.
  PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'FEBMKK-SGTXT_KF(01)'.
  SORT itab DESCENDING BY count.
  LOOP AT itab.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '=SICH'.
    PERFORM bdc_field       USING 'FEBMKA-VGMAN(01)'
                                  itab-vgman.
    PERFORM bdc_field       USING 'FEBEP-VALUT(01)'
                                  itab-valut.
    PERFORM bdc_field       USING 'FEBMKA-KWBTR(01)'
                                          itab-kwbtr.
    PERFORM bdc_field       USING 'FEBMKK-CHECT_KF(01)'
                                  itab-chect_kf.
    PERFORM bdc_field       USING 'FEBMKK-SGTXT_KF(01)'
                                  itab-sgtxt_kf.
    PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
    PERFORM bdc_field       USING 'BDC_CURSOR'
                                  'FEBMKK-SGTXT_KF(01)'.
  ENDLOOP.
  PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'FEBMKA-KWBTR(01)'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '=SICH'.
  PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'FEBMKA-BUKRS'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '=BACK'.
  PERFORM bdc_dynpro      USING 'SAPLSPO1' '0100'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '=NO'.
ENDFORM.                    "bdcdata
*&      Form  OPEN_GROUP
FORM open_group .
  CALL FUNCTION 'BDC_OPEN_GROUP'
    EXPORTING
      client = sy-mandt
      group  = 'BANK_STAT'
      user   = sy-uname.
     keep   = 'X'.
ENDFORM.                    " OPEN_GROUP
*&      Form  CLOSE_GROUP
FORM close_group .
  CALL FUNCTION 'BDC_CLOSE_GROUP'.
  CALL TRANSACTION 'SM35'.
ENDFORM.                    " CLOSE_GROUP
*&      Form  bdc_insert
FORM bdc_insert.
  CALL FUNCTION 'BDC_INSERT'
    EXPORTING
      tcode     = 'FF67'
    TABLES
      dynprotab = bdcdata.
ENDFORM.                    " bdc_insert
       Start new screen                                              *
FORM bdc_dynpro USING program dynpro.
  CLEAR bdcdata.
  bdcdata-program  = program.
  bdcdata-dynpro   = dynpro.
  bdcdata-dynbegin = 'X'.
  APPEND bdcdata.
ENDFORM.                    "BDC_DYNPRO
       Insert field                                                  *
FORM bdc_field USING fnam fval.
  CLEAR bdcdata.
  bdcdata-fnam = fnam.
  bdcdata-fval = fval.
  APPEND bdcdata.
ENDFORM.                    "BDC_FIELD

Hi,
Use:
If line item = 30.
OKCODE = 'P++'. --->For next page after every 30 line items.
endif.
Or:(Sumilate in BDC)
1 . New line.   -
>Get the Fcode/Sy-ucomm value of New line(Icon on menu bar)
2.Enter Line Item.
Follow this after every line item.
Hope this resolves the issue.
Regards,
Gurpreet

Similar Messages

  • 12.1.3 BI Publisher report not displaying the detail section on first page

    Hi,
    As part of our R12.1.3 upgrade, I designed a Purchase Report as a RTF template.
    Header and footer sections generate fine, but for some reason the detail (text body of the RTF template) does not display on the first page but starts on the second page (this is a PO with many lines). I am using MS Word table to display the detail section.
    Is there something I can check?
    Thanks,
    Sinan

    can you send me your template and xml . i can check at my side .
    email:[email protected]
    there may be some spaces in the beginning .

  • Not display the line items in the delivery.

    HI
    Please let me know any one guess the solution below issue.
    In the sales order 5 line items are there , But when i am doing delivery the 5 lines items are not displyed, Only 2 line items only displyed.
    what could be the reasons ?
    Thnaks,
    THAMBI

    Hi,
    Please check all 5 things
    1 Shipping Point
    2. Ship-to Party
    3. Route
    4. Inco terms
    5. Delivery Date
    should be same if not delivery will get split if all 5 things are same then please check conform quantity for those item which is not appear in delivery
    Because confirm quantity is not available means system will not allow to deliver that item so also check schedule line date it might be different for that 3 item that is not coming in delivery
    And also check the user exist may be  included in the sales order .
    Whenever the sales order is creating the 2 line items only come for delivery.
    Thanks
    E.vasu

  • Firefox does not display the basic menu line File Edit View etc. How do I get this menu to show. I have tried uninstalling and reinstalling, but that does not help

    When I ask for help finding bookmarks, the answer tells me to click on bookmarks as shown in the illustration, but there is no such line displayed on my computer.

    '''''"Firefox does not display the basic menu line File Edit View etc."''''': That is the Menu Bar; see below.
    '''<u>Menu Bar</u>''' (File, Edit, View, History, Bookmarks, Tools, Help)<br /> <u>Firefox 3.6.x versions allow the user to hide the Menu Bar.</u><br />
    *Tap the ALT key or the F10 key, Menu Bar will display, click View, click Toolbars, click Menu Bar to place a check mark next to it, '''''OR'''''
    *Press and hold the ALT key while pressing the letters VTM on your keyboard, then release the ALT key
    *See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    '''<u>Other Toolbars</u>''', see: https://support.mozilla.com/en-US/kb/Back+and+forward+or+other+toolbar+items+are+missing<br />
    '''<u>Status Bar</u>''': click View, click Status Bar to place a check mark<br />
    '''<u>Full Screen Mode</u>''': If you have no Toolbars or Tab Bar: Press F11 (F11 is an on/off toggle). See: http://kb.mozillazine.org/Netbooks#Full_screen<br />
    Also see: http://kb.mozillazine.org/Toolbar_customization_-_Firefox#Restoring_missing_menu_or_other_toolbars
    <br />
    <br />
    '''Other items that need your attention'''
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post. You can also see your plugins from the Firefox menu, Tools > Add-ons > Plugins.<br />
    <br />
    *Adobe PDF Plug-In For Firefox and Netscape
    **Current versions are 9.4.2 and 10.0.1 (aka Reader X)
    **More info about version 10 (aka Reader X)
    ***New Adobe Reader X (version 10) with Protected Mode was released 2010-11-19
    ***See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file, SAVE it to your hard drive, when complete, close Firefox, click on the installer you just downloaded and let it install.
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.

  • Windows could not display the images available for installation

    I am trying to perform unattended installation of windows which I created with Windows AIK. When I add answer file on USB's with windows installation root I get "windows could not display..." message. Problem is there even when there are just a
    few simple lines (oobe, microsoft international core-WinPe).
    I replaced install.wim file of standard windows installation iso with customized install.wim and then created catalog file with windows system image manager.
    Kind people of world, please help!

    Hi bugili,
    Could you help us post the complete error information, it will more helpful when we locate the issue. I am not quite understand “add answer file on USB's with windows
    installation root”, do you mean the answer file and install file on the external device? Please try to confirm this image has the same Security permission with
     others image in WDS image share folder,  the WDS default image location is like
    x:\RemoteInstall\Images.
    If it not work please post the WDS error log,
    How to enable logging in Windows Deployment Services (WDS) in Windows Server 2003, Windows Server 2008, Windows Server 2008 R2, and in Windows Server 2012
    http://support.microsoft.com/kb/936625/en-us
    The simlar thread:
    Windows could not display the images available for installation.
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/07fe03dd-9798-4583-8d0b-dc963c95434c/windows-could-not-display-the-images-available-for-installation?forum=winserversetupMore
    information:
    How to Add a Boot Image to WDS Server
    https://social.technet.microsoft.com/wiki/contents/articles/11643.how-to-add-a-boot-image-to-wds-server.aspx
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Reports MB5W / MB5L are not displaying the individual material lines

    Hi All,
    We are encountering a problem in MB5W/MB5L reports. When we are executing these report with the option checked "Display Indiv. Material Lines", system is not displaying the details material wise.
    It is just showing the GL wise value of Material ccy and Stock account ccy. It was running fine when we ran the same reports in Feb for Jan 2014.
    Do you have any idea why system is behaving like this please?
    Thanks,

    Hi Narasimhulu,
           In report MB5W/MB5L, click the "Current display variant icon" in the next pop-up screen click the position tab and check whether all the material related fields are added or not. If not, move the fields into display list and then check.
    Thanks

  • My IPhone 4's mailing feature does not display the toolbar at the bottom for deleting, moving, or writing emails. What is wrong with it?

    My work recently decided to buy every full time employee an IPhone 4 to be used for work purposes. (I do suspect these are refurbished, but I don't think that matters) I have had no trouble with it, except for on occasion the mailing feature does not display the toolbar at the bottom for deleting, moving, or writing emails. You know what I'm talking about...that bar at the bottom of the mailbox when you open an email that you use to delete, respond, forward, move, etc. It just goes away for no reason, and then reappears for a day or two, and goes away again. It is quite annoying since I can't respond to any of my emails without getting on my work computer. If you have any suggestions, please help!

    Hi there,
    You may need to force close the Mail application when this happens. The next time this happens, use the steps in the article below to coles out of the mail application.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Hope that helps,
    - Griff W.

  • HT5858 Both my iPhone & iPad now on version 7 do not display the airplay connection for my Apple TV ?

    Both my iPhone &amp; iPad now on version 7 do not display the airplay connection for my Apple TV ?

    Hey Barry02,
    Thanks for the question. I understand you are experiencing issues with AirPlay. The following resource may help to resolve your issue:
    iOS: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS4215
    Because the issue is occurring on both devices, it may be isolated to the Apple TV itself. You may want to troubleshoot the Apple TV connection:
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS4546
    Thanks,
    Matt M.

  • How do i type in tamil in microsoft office for mac? my previous tamil documents from my pc are not displaying the font correctly, nor am i able to use the inbuilt mac tamil font to write in microsoft office

    How do i type in tamil in microsoft office for mac? my previous tamil documents from my pc are not displaying the font correctly, nor am i able to use the inbuilt mac tamil font to write in microsoft office

    You should probalby post your question on Microsoft's own forums for their Mac software since it's their stuff you're asking about:
    http://answers.microsoft.com/en-us/mac

  • HT5364 Safari is not displaying the web page content & Crashes on clicking Security Tab in Preferences!

    I have Mac 10.8.4 with Safari 6.0.5.
    Safari is not displaying the web content but images on the web page are being displayed.
    Although the webpage is loaded, but nothing is shown else than Images. When I hover the mouse on the blank webpage shown, the cursor changes on the links on the web page.
    I tried resetting the preferences from the menu as well as deleting the Preferences of Safari from ~/Library/Preferences/ but nothing helped.
    When I open Preferences of Safari & click on Security tab, It Crashes!!
    Thanks,
    Shubhi

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    Still in the Console window, look under User Diagnostic Reports for crash reports related to the process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Design Window is not displaying the correct view

    Hi
    For some reason the Design View on my CS3 is not displaying
    the correct view.
    It used to show how the web page would look but it is simply
    showing up the wording and pictures surrounded by dotted black
    lines.
    I am using a template as a bases for all the pages and all
    the pages are showing like this.
    My other sites are showing up OK though.
    When I Preview in Browser, it all shows up OK.
    Can anyone help?
    Bezz

    VIEW | Style Rendering > Display Styles
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Bezz333" <[email protected]> wrote in
    message
    news:fttdsr$394$[email protected]..
    > Hi
    >
    > For some reason the Design View on my CS3 is not
    displaying the correct
    > view.
    >
    > It used to show how the web page would look but it is
    simply showing up
    > the
    > wording and pictures surrounded by dotted black lines.
    >
    > I am using a template as a bases for all the pages and
    all the pages are
    > showing like this.
    >
    > My other sites are showing up OK though.
    >
    > When I Preview in Browser, it all shows up OK.
    >
    > Can anyone help?
    >
    > Bezz
    >

  • View the .rtf file not display the data in BI Publisher Enterprise.

    Hi,
    Platform: OBIEE 10g in NT XPsp2
    View the .rtf file not display the data in BI Publisher Enterprise.
    Step 1, I created Answer-request, create .rtf file with Word and add the request name, Add bar chart and table, preview PDF is working fine with data, Upload this template to Answers, View Template from Answer is working fine with data.
    Step 2, Answers – More Products > BI Publisher > My Folders > Create a new report > Edit > Data Model > New > Type: SQL Query > Data Source: Oracle BI EE > Query Builder > from SupplierSales assign Customer, Periods, Sales Facts (select Region, state, Year, Units Shipped) > Results > Save > Save
    Click Layouts > New > enter Name ….. > Click Layouts > borrows .rtf file in Manage T file > Upload > Save > Click View
    It is showing only the .rtf file without data. Why there is no data?
    Please guide me to solve this issue.
    Thanks,
    Jo

    Thanks for you reply,
    Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
    We dint face this kind of issue while developing other reports.
    So please let us know if you have any idea on why we are facing this issue.
    Regards,
    Maneesh

  • HT2500 How do I not display the preview pane in mail until I open it with a double click? Some mail I do not wish to open-just delete it.

    How do I not display the preview pane in mail until I open it with a double click? Some mail I do not wish to open-just delete it. New macbook pro with LION OS

    Just drag the divider line between the preview pane and the message list all the way to the edge so the preview is completely closed. Selected messages will open in a new window with a double-click or the return key.

  • App Store shows update available but will not display the update or tell me that there are no updates...

    There is a badge with the number 1 on my "App Store" icon, but when I go to see what needs to be updated, the App Store does not display the app that has an update nor does it say that there are no updates available.  Basically the place that tells me these things, is completely blank.  I have the word "Updates" at the top of the screen and I can see an icon on the bottom right corner area that has the cirlce with a down arrow and the word "Updates" with a badge with the number 1 in it. 
    The iPad 2 has 6.1.2 for the iOS.  I have already closed the app out completely by closing the app in the multitasking section and then restarting it.  This does not correct the issue.  I have also restarted the iPad 2, however this did not correct the issue either.
    If anyone has seen this and knows it is a glitch in the software, and that Apple is aware of it, please let me know.  If anyone knows how to correct this, please let me know.  Thanks.

    The update server is down; try this temporary workaround
    App Store>Purchased>Select "All"
    Note: Look out for apps that have the word "Update"
    http://i1224.photobucket.com/albums/ee374/Diavonex/9c256282736869f322d4b3071bbb2 a82_zps51a6f546.jpg

  • How do I make a table of contents for a collection of six short stories that is after the legal page and NOT in the front on an unnumbered page?

    How do I make a table of contents for a collection of six short stories that is after the legal page and NOT in the front on an unnumbered page?
    When I first started I made a title page and then pasted in my first story from a .TXT file. After cleaning up I went back to the front a couple of empty lines ahead of the story and typed in the story title.  Unlarged the font size and centered it, then

    You can't do that. This is what the Pages User Guide, downloadable from your Pages Help menu, says:
    Creating and Updating a Table of Contents
    Each table of contents (TOC) you create using a Word Processing template lists only the content that follows it, up until the next table of contents. If you want a master table of contents for the entire document, it must be the only table of contents, and it must be at the beginning of the document.
    You can do it manually though.

Maybe you are looking for