Alv not displaying top-of-page

hi every buddy,
i am workiong on report where there  is a requirment of dislpaying alv
with top of page having some details . the event function mudule is calling the top-of-page fm properly
but perform for top-of page is not called up
i.e. controls are not goin to that point of perform
please give me your valuable suggestions
regards
prashant

Hi,
please check this code it is working
type-pools: slis.
* Including icon for icon display
include <icon>.
* Including symbol
include <symbol>.
* Declaring structure for vbak
types: begin of t_vbak,
        vbeln type vbeln_va,
        auart type auart,
        netwr type netwr,
        vkorg type vkorg,
        vtweg type vtweg,
        erdat type erdat,
        vbtyp type vbtyp,
        augru type augru,
        icon  type icon-id,
      end of t_vbak.
* Declaring structure for vbap
types: begin of t_vbap,
       vbeln type vbeln_va,
       posnr type posnr,
       matnr type matnr,
       arktx type arktx,
       lsmeng type dzmeng,
       auart type auart,
       netwr type netwr,
       vkorg type vkorg,
       vtweg type vtweg,
       erdat type erdat,
       vbtyp type vbtyp,
       augru type augru,
       icon  type icon-id,
     end of t_vbap.
* Declaring variables
data: v_vbeln type vbeln,
      my_tab type sy-tabix.
* Declaring internal table and wa for vbak and vbap
data: i_vbak type table of t_vbak,
      wa_vbak type t_vbak,
      i_vbap type table of t_vbap,
      i_pbo type table of t_vbap,
      wa_vbap type t_vbap.
* Declaring internal table and wa for alv components(fieldcatalog,layout,events,header)
data: i_fieldcat type slis_t_fieldcat_alv,
      wa_fieldcat type slis_fieldcat_alv,
      wa_layout   type slis_layout_alv,
      i_event    type slis_t_event,
      wa_event   type slis_alv_event,
      i_header   type slis_t_listheader,
      wa_header   type slis_listheader,
      wa_varient  type disvariant,
      wa_sort     type slis_sortinfo_alv,
      i_sort     type slis_t_sortinfo_alv.
* Declaring selection-screen details
selection-screen: begin of block b1 with frame title text-001.
selection-screen skip.
select-options: s_vbeln for v_vbeln.
selection-screen: begin of block b2 with frame title text-008.
parameter: ch1 type c as checkbox,       "check bos for Subtotal.
           ch2 type c as checkbox.       "check box for Grand total.
selection-screen: end of block b2.
selection-screen: end of block b1.
* Start of start-of-selection
start-of-selection.
* Fetching data from vbak table
  select vbeln
         auart
         netwr
         vkorg
         vtweg
         erdat
         vbtyp
         augru
       from vbak into table i_vbak
             where vbeln in s_vbeln.
  if sy-subrc = 0.
* Fetching data for vbap table
    select vbeln
           posnr
           matnr
           arktx
           lsmeng
         from vbap into table i_vbap
         for all entries in i_vbak
         where vbeln = i_vbak-vbeln.
  endif.
* Looping data for final output
  loop at i_vbak into wa_vbak.
* checking conditiions for icon
    if wa_vbak-netwr < 10000.
      wa_vbak-icon = '@08@'.
    elseif wa_vbak-netwr < 15000.
      wa_vbak-icon = '@09@'.
    else.
      wa_vbak-icon = '@0A@'.
    endif.
    modify i_vbak from wa_vbak index sy-tabix  .
  endloop.
*Looping data for final output
  loop at i_vbap into wa_vbap.
    my_tab = sy-tabix.
    read table i_vbak into wa_vbak with key vbeln = wa_vbap-vbeln.
    if sy-subrc = 0.
      wa_vbap-auart = wa_vbak-auart.
      wa_vbap-netwr = wa_vbak-netwr.
      wa_vbap-vkorg = wa_vbak-vkorg.
      wa_vbap-vtweg = wa_vbak-vtweg.
      wa_vbap-erdat = wa_vbak-erdat.
      wa_vbap-vbtyp = wa_vbak-vbtyp.
      wa_vbap-augru = wa_vbak-augru.
      wa_vbap-icon  = wa_vbak-icon.
      modify i_vbap from wa_vbap index  my_tab transporting
                             auart netwr vkorg vtweg erdat vbtyp augru icon.
    endif.
  endloop.
* Preparing fieldcatalog for final output
  perform main_fieldcat.
*Preparing final layout for final output
  perform layout.
*Preparing list header for final output
  perform list_header.
*Preaparing events for alv display
  perform event.
*Getting subtotals for amount fields
  if ch1 eq 'X'.
    perform sub_total.
  endif.
*Showing final output data
  perform alv_display.
form main_fieldcat .
*Fieldcatalog for icon
  wa_fieldcat-fieldname = 'ICON'.
* WA_FIELDCAT-TECH     = 'X'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-icon      = 'X'.
  wa_fieldcat-seltext_l = 'ICON'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
* Fieldcatalog for salesorder
  wa_fieldcat-fieldname = 'VBELN'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C410'.
  wa_fieldcat-seltext_l = 'Sales order NO'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for salesordertype
  wa_fieldcat-fieldname = 'AUART'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C610'.
  wa_fieldcat-seltext_l = 'Sales order type'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for netamount
  wa_fieldcat-fieldname = 'NETWR'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-edit   = 'X'.
  wa_fieldcat-emphasize = 'C501'.
*  wa_fieldcat-input = 'X'.
  wa_fieldcat-seltext_l = 'Net Amount'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for salesorg
  wa_fieldcat-fieldname = 'VKORG'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C310'.
  wa_fieldcat-seltext_l = 'Sales Organization'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for salesdistribution
  wa_fieldcat-fieldname = 'VTWEG'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C210'.
  wa_fieldcat-seltext_l = 'Sales Distribution'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for date
  wa_fieldcat-fieldname = 'ERDAT'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C110'.
  wa_fieldcat-seltext_l = 'Sales OrderDate'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for salestype
  wa_fieldcat-fieldname = 'VBTYP'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C410'.
  wa_fieldcat-seltext_l = 'Sales type'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for orderreason
  wa_fieldcat-fieldname = 'AUGRU'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C710'.
  wa_fieldcat-seltext_l = 'Order reason '.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for itemnum
  wa_fieldcat-fieldname = 'POSNR'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C110'.
  wa_fieldcat-seltext_l = 'Item No '.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for materialnum
  wa_fieldcat-fieldname = 'MATNR'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C710'.
  wa_fieldcat-seltext_l = 'Material No '.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
  wa_fieldcat-fieldname = 'ARKTX'.
  wa_fieldcat-tabname   = 'IT_VBAP'.
  wa_fieldcat-emphasize = 'C310'.
  wa_fieldcat-seltext_l = 'Description'.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
*Fieldcatalog for quantity
  if ( ch1 = 'X' and ch2 = 'X' ) or ( ch1 = 'X' and ch2 = ' ' ) or ( ch2 = 'X' and ch1 = ' ' ).
    wa_fieldcat-fieldname = 'LSMENG'.
    wa_fieldcat-tabname   = 'IT_VBAP'.
    wa_fieldcat-emphasize = 'C510'.
    wa_fieldcat-seltext_l = 'Quantity '.
*    WA_FIELDCAT-edit   = 'X'.
    wa_fieldcat-do_sum     = 'X'.
  else.
    wa_fieldcat-fieldname = 'LSMENG'.
    wa_fieldcat-tabname   = 'IT_VBAP'.
    wa_fieldcat-emphasize = 'C510'.
    wa_fieldcat-seltext_l = 'Quantity '.
*    WA_FIELDCAT-edit   = 'X'.
  endif.
  append wa_fieldcat to i_fieldcat.
  clear wa_fieldcat.
endform.                    " MAIN_FIELDCAT
form alv_display .
  wa_varient-report = sy-repid.
  call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      i_callback_program       = sy-repid
      is_layout                = wa_layout
      it_fieldcat              = i_fieldcat
      it_sort                  = i_sort
      i_callback_pf_status_set = 'PF_STATUS'
      i_save                   = 'X'
      is_variant               = wa_varient
      it_events                = i_event
    tables
      t_outtab                 = i_vbap
    exceptions
      program_error            = 1
      others                   = 2.
  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.                    " ALV_DISPLAY
form layout .
  wa_layout-colwidth_optimize = 'X'.
  wa_layout-subtotals_text    = 'SUBTOTAL SUM'.
  wa_layout-totals_text       = 'TOTAL'.
  wa_layout-zebra             = 'X'.
endform.                    " LAYOUT
form event .
  call function 'REUSE_ALV_EVENTS_GET'
    importing
      et_events       = i_event
    exceptions
      list_type_wrong = 1
      others          = 2.
  if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
  read table i_event into wa_event with key name = 'USER_COMMAND'.
  if sy-subrc = 0.
    wa_event-form = 'USER_COMMAND'.
    modify i_event from wa_event transporting form where name = 'USER_COMMAND'.
  endif.
  read table i_event into wa_event with key name = 'TOP_OF_PAGE'.
  if sy-subrc = 0.
    wa_event-form = 'TOP_OF_PAGE'.
    modify i_event from wa_event transporting form where name = 'TOP_OF_PAGE' .
  endif.
endform.                    " EVENT
form user_command using ucomm type sy-ucomm
                        selfield type slis_selfield.
  data: gstring type c.
  constants: l_c_repid type sy-repid value 'ZCOE_ALV_SIMPLE'.
  data: l_i_seltab type table of rsparams.
  case ucomm.
    when '&IC1'.
      if selfield-fieldname = 'VBELN'.
        set parameter id 'AUN' field selfield-value.
        call transaction 'VA02' and skip first screen.
      endif.
*  *  CASE ok_code.
    when 'SAVE'.
*  *A pop up is called to confirm the saving of changed data
      call function 'POPUP_TO_CONFIRM'
        exporting
          titlebar       = 'SAVING DATA'
          text_question  = 'Continue?'
          icon_button_1  = 'icon_booking_ok'
        importing
          answer         = gstring
        exceptions
          text_not_found = 1
          others         = 2.
      if sy-subrc ne 0.
*       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
*      *When the User clicks 'YES'
      if ( gstring = '1' ).
        message 'Saved' type 'S'.
*Now the changed data is stored in the it_pbo internal table
        i_pbo = i_vbap.
      else.
*When user clicks NO or Cancel
        message 'Not Saved'  type 'S'.
      endif.
**When the user clicks the 'EXIT; he is out
    when 'EXIT'.
      leave program.
* Clicking on refresh button at toolbar
    when 'REF'.
* Calling fm to get refresh data
      call function 'RS_REFRESH_FROM_SELECTOPTIONS'
        exporting
          curr_report     = l_c_repid
        tables
          selection_table = l_i_seltab
        exceptions
          not_found       = 1
          no_report       = 2
          others          = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      else.
*  * Calling the screen after refreshing
        submit zcoe_alv_simple with selection-table l_i_seltab.
      endif.
  endcase.
endform.                    " USER_COMMAND
form top_of_page .
  call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
      it_list_commentary = i_header.
endform.                    " TOP_OF_PAGE
form list_header .
* Local data declaration
  data: l_date      type char10,    "Date
        l_time(8)   type c.         "Time
  wa_header-typ = 'H'.
  wa_header-info = 'Sales Order Information Report'.
  append wa_header to i_header.
* Run date Display
  clear l_date.
  wa_header-typ  = 'S'.
  write: sy-datum  to l_date dd/mm/yyyy.
  wa_header-key = 'Run Date :'(002).
  wa_header-info = l_date.
  append wa_header to i_header.
  clear: wa_header.
  wa_header-typ  = 'S'.
*  WRITE: sy-uzeit  TO l_time .
  l_time+0(2) = sy-uzeit+0(2).
  l_time+2(1) = ':'.
  l_time+3(2) = sy-uzeit+2(2).
  l_time+5(1) = ':'.
  l_time+6(2) = sy-uzeit+4(2).
  wa_header-key = 'Run Time :'(009).
  wa_header-info = l_time.
  append wa_header to i_header.
  clear: wa_header.
endform.                    " LIST_HEADER
form pf_status using rt_extab type slis_t_extab.
  set pf-status 'SSS'.
  set titlebar 'MAIN100'.
endform.                    "pf_status
form sub_total .
  wa_sort-fieldname = 'VBELN'.
  wa_sort-tabname   = 'I_VBAP'.
  wa_sort-spos      = 1.
  wa_sort-up        = 'X'.
  wa_sort-subtot    = 'X'.
*  wa_sort-group = 'X'.
*  WA_SORT-EXPA       = 'X'.
  append wa_sort to i_sort.
endform.                    " SUB_TOTAL

Similar Messages

  • Problem while displaying top of page in list display

    Hi,
    M facing problem in displaying top of page in list .
    M using following methods:-
    lr_outer_grid TYPE REF TO cl_salv_form_layout_grid,
    lr_inner_grid TYPE REF TO cl_salv_form_layout_grid,
    lr_label TYPE REF TO cl_salv_form_label,
    lr_text TYPE REF TO cl_salv_form_text.
    For displaying the top of page m using event TOP_OF_PAGE.
      CREATE OBJECT lr_outer_grid.
    *Outer grid
      lr_inner_grid = lr_outer_grid->create_grid(
      row = 1
      column = 1 ).
    *... create lable information in inner_grid
    User ID
      lr_label = lr_inner_grid->create_label(
      row = 1
      column = 1
      text = text-h03 ).
    *... create text information in inner_grid
      lr_text = lr_inner_grid->create_text(
      row = 1
      column = 2
      text = sy-uname ).
    *... set label for text
      lr_label->set_label_for( lr_text ).
    But while m going to do same coding for second parameter its not intializing length so adding extra spaces while displaying second row.
    e.g
    USERID       abcdefghjik
    PLANT         jhk            to hjk
    I want that output should look like
    USERID      abcdefghjik
    PLANT        jhk to hjk
    Please tell me the solution what should i do for avoiding extra space

    Hi Neelema,
    You could try this sample code.
    [http://sap-img.com/fu037.htm]
    [http://sap-img.com/abap/sample-alv-heading-in-alv.htm]
    Regards,
    Amit.

  • URL parameter value with : not displayed correctly on page

    Hi,
    I am working on a page with an interactive report.One of the report columns is hyperlinked to another page (Delete Page).This link passes an id and a title to the Delete page such that its displays a confirmation message to the end user before actually performing the delete.If the title contains a ":" the text after the ":" is not displayed on the page (albeit visible in the URL on the top)
    Is this because the ":" seperates parameters in an APEX URL and therefore the text after the ":" is taken as the next URL parameter?
    How can we solve this problem?
    Regards,
    Priya Jetley

    Hi
    Yes - Apex will see the ":" as a parameter separator and will ignore everything after any that exist in the "with these values" parameter at the end of the url.
    You can get around this in two ways:
    1 - Escape your title - replace ":" with "%3A" in your sql statement
    2 - Do not pass the title in the link but use a computation on the delete page to retrieve this value for display
    Andy

  • Print with  write statements from webynpro does not trigger top-of-page

    Print launched from webdynpro application via application server created with write statements does not trigger top-of-page event. When print is done from sapgui it works ok. The idea is to reuse backend print which was created for sapgui with abap list made application log in webdynpro application.

    Hi,
    here a short extract like i do it:
    CLASS LCL_EVENT_HANDLER DEFINITION .
      PUBLIC SECTION .
        METHODS:
       HANDLE_PRINT_TOP_OF_PAGE
             FOR EVENT PRINT_TOP_OF_PAGE OF CL_GUI_ALV_GRID,
    ENDCLASS.                    "LCL_EVENT_HANDLER DEFINITION
    * Event-Händer Implementierung
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION .
      METHOD HANDLE_PRINT_TOP_OF_PAGE.
          PERFORM PRINT_TOP_OF_PAGE.
      ENDMETHOD.   
    ENDCLASS.
      CREATE OBJECT GR_EVENT_HANDLER.
      SET HANDLER
      GR_EVENT_HANDLER->HANDLE_PRINT_TOP_OF_PAGE  FOR GR_ALVGRID_LEFT.
      CALL METHOD GR_ALVGRID_LEFT->SET_TABLE_FOR_FIRST_DISPLAY
    FORM PRINT_TOP_OF_PAGE.
      LINSZ = SY-LINSZ - 16.
      WRITE: / 'Report:   ', SY-REPID,
               AT LINSZ 'Datum:',  SY-DATUM.
      WRITE: / 'Benutzer: ', SY-UNAME,
               AT LINSZ 'Zeit: ', SY-UZEIT.
    ENDFORM.
    hope it helps.
    Regards, Dieter

  • Some PDF files and other emails do not display the whole page. Is there a way to change that?

    Some PDF files and other emails do not display the whole page. Is there a way to change that?

    If an app does not behave as expected, try closing the app completely and reboot the iPad. It appears as though you have the original iPad. It helps if you list your iPad model and the iOS that you are running.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button twice.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Safari not displaying some web pages properly why?

    I have been finding of late that safari does not display certain web pages properly. i.e.: text overlaps other text  and is not formatted properly. This seems to have become more common lately. Even Apple's own apple info page does not display properly. Could this be a setting in safari that I have messed up somehow?

    Go step by step and test.
    1. Delete Cookies
        Safari > Preferences > Privacy > Cookies and other website data:
        Click the “Details” button.
        Remove all cookies except from Apple, your internet service provider and banks.
    2. Safari > Preferences > Extensions
        Turn off Extensions if any and launch Safari again to test.
        Turn on those one by one and test.
    3. Delete Caches.db
        Close all windows and quit all applications.
        Hold "option" key down and click "Go" menu in the Finder menu bar.
        Select "Library" from the dropdown.
        Library > Caches > com.apple.Safari > Caches.db
        Right click the Caches.db file and select "Move To Trash.
        Close windows and relaunch Safari.
    4. Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    5. Temporarily  turn off  Safari iCloud sync and test.
         System Preferences > iCloud
         Uncheck the box beside “Safari” and test.

  • Dreamweaver not displaying my home page.

    For some strange reason Dreamweaver not displaying my home page. However it will display all other pages on the site. Does anyone know why this is happening?

    Because you have made an error. If you want to share the error with us please post a link to your site.
    Gramps

  • My pdf files do not display the full page on Creative Cloud (side of pages missing)

    Hello
    My pdf files do not display the full page on Creative Cloud (side of pages missing).
    Does anyone else have this problem?
    Thanks

    Creative Cloud is the process used to download and install programs... which program are you using?
    If Acrobat, http://forums.adobe.com/community/acrobat may be a better place to ask

  • 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.

  • Extended attribute value of PerPayProposalsVO is not displaying in the page

    Hi,
    Please could someone reply on this urgently?
    I have requirement to add one field in the VO PerPayProposalsVO.
    I have extended the VO properly and substituted the standard VO with extended VO.
    Please see below the xxPerPayProposalsVO query where Xxfte_Salary column is my added column:
    SELECT PerPayProposalsEO.PAY_PROPOSAL_ID, PerPayProposalsEO.ASSIGNMENT_ID, PerPayProposalsEO.EVENT_ID, PerPayProposalsEO.BUSINESS_GROUP_ID, PerPayProposalsEO.CHANGE_DATE, PerPayProposalsEO.LAST_CHANGE_DATE, PerPayProposalsEO.NEXT_PERF_REVIEW_DATE, PerPayProposalsEO.NEXT_SAL_REVIEW_DATE, PerPayProposalsEO.PERFORMANCE_RATING, PerPayProposalsEO.PROPOSAL_REASON, PerPayProposalsEO.PROPOSED_SALARY, PerPayProposalsEO.REVIEW_DATE, PerPayProposalsEO.ATTRIBUTE_CATEGORY, PerPayProposalsEO.ATTRIBUTE1, PerPayProposalsEO.ATTRIBUTE2, PerPayProposalsEO.ATTRIBUTE3, PerPayProposalsEO.ATTRIBUTE4, PerPayProposalsEO.ATTRIBUTE5, PerPayProposalsEO.ATTRIBUTE6, PerPayProposalsEO.ATTRIBUTE7, PerPayProposalsEO.ATTRIBUTE8, PerPayProposalsEO.ATTRIBUTE9, PerPayProposalsEO.ATTRIBUTE10, PerPayProposalsEO.ATTRIBUTE11, PerPayProposalsEO.ATTRIBUTE12, PerPayProposalsEO.ATTRIBUTE13, PerPayProposalsEO.ATTRIBUTE14, PerPayProposalsEO.ATTRIBUTE15, PerPayProposalsEO.ATTRIBUTE16, PerPayProposalsEO.ATTRIBUTE17, PerPayProposalsEO.ATTRIBUTE18, PerPayProposalsEO.ATTRIBUTE19, PerPayProposalsEO.ATTRIBUTE20, PerPayProposalsEO.LAST_UPDATE_DATE, PerPayProposalsEO.LAST_UPDATED_BY, PerPayProposalsEO.LAST_UPDATE_LOGIN, PerPayProposalsEO.CREATED_BY, PerPayProposalsEO.CREATION_DATE, PerPayProposalsEO.OBJECT_VERSION_NUMBER, PerPayProposalsEO.APPROVED, PerPayProposalsEO.MULTIPLE_COMPONENTS, PerPayProposalsEO.FORCED_RANKING, PerPayProposalsEO.PERFORMANCE_REVIEW_ID, PerPayProposalsEO.PROPOSED_SALARY_N, hr_general.decode_lookup('PER_SAL_PROPOSAL_STATUS',APPROVED) AS SALARY_PROPOSAL_STATUS, hr_general.decode_lookup('PROPOSAL_REASON',proposal_reason) AS REASON_MEANING, PER_SALADMIN_UTILITY.get_basis_currency_code(PerPayProposalsEO.ASSIGNMENT_ID,PerPayProposalsEO.CHANGE_DATE) as currency_code,ppr.review_date performance_review_date, hr_general.decode_lookup('PERFORMANCE_RATING',ppr.performance_rating) performance_rating_desc, PerPayProposalsEO.DATE_TO, piv.uom as uom, per_saladmin_utility.get_fte_factor (PerPayProposalsEO.assignment_id,PerPayProposalsEO.change_date) fte_factor, PER_SALADMIN_UTILITY.get_currency_format(PerPayProposalsEO.assignment_id, PerPayProposalsEO.change_date) as currency_format, hr_util_misc_ss.get_in_preferred_currency_str( PerPayProposalsEO.proposed_salary_n*decode(ppb.pay_annualization_factor, null, 1, 0, 1, ppb.pay_annualization_factor)*per_saladmin_utility.get_fte_factor(paa.assignment_id,sysdate), pet.input_currency_code, trunc(sysdate)) as Xxfte_Salary FROM PER_PAY_PROPOSALS PerPayProposalsEO, per_performance_reviews ppr, per_assignments_f2 paa, per_pay_bases ppb, pay_input_values_f piv, pay_element_types_f pet where PerPayProposalsEO.performance_review_id = ppr.performance_review_id(+) AND PerPayProposalsEO.assignment_id = paa.assignment_id AND paa.assignment_id = :1 AND :2 between PerPayProposalsEO.change_date and nvl(PerPayProposalsEO.date_to, hr_general.end_of_time) AND PerPayProposalsEO.change_date between paa.effective_start_date and paa.effective_end_date and paa.pay_basis_id(+) = ppb.pay_basis_id and ppb.input_value_id = piv.input_value_id and piv.element_type_id = pet.element_type_id and PerPayProposalsEO.change_date between piv.effective_start_date and piv.effective_end_date and PerPayProposalsEO.change_date between pet.effective_start_date and pet.effective_end_date
    When I tried to personalise and showed the field in Salary Admin page it is not displying any value. Even when I tried to show any field from the Standard VO through personalization it is not displaying value. Please could someone look into this?
    Thanks and regards,
    Sunil

    Hi Sunil,
    Are you passing parameters at CO or at VOImpl class. To get message printed and if running in Oracle Appln.
    Use
    oadbtransaction.writediagnostics/pageContext.writeDiagnostics.
    Sample
    pageContext.writeDiagnostics(this, "ItemKey " + iKey,2);
    You can set it at any level, please make sure your VO is getting executed.
    Thanks
    Rakesh

  • Greek language not displaying in jsp page

    My application is based on struts framework...
    we doing in multilanguage.
    When i select greek the followingis displayed:
    �������&#132;�&#131;���&#133;���� ���&#128;�����&#137; �&#131;�&#132;��
    even i've did the pageEncoding code in jsp page...
    i dont know why it is not displaying but i maintaining properties files for greek language. so, when i call the greek language, the greek properties file was located and display the content... But for other languages like dutch, portuguese, spanish is working fine...I keep the resource properties file in the same place where other language files placed.
    Is there any more changes i want to do...
    I call this greek lang. externally but should this related to database(SQL Server 2000).
    What i want to do.

    <body background="pic/love.gif">
    <%
    --- jsp code
    out.println("<img src='pic/vijay.jpg' height='100' width='100'>");
    --- jsp code
    %>
    </body>

  • Frame line not display in next page of main window

    hi Xpert,
    I am creating layout in SAP SCRIpt,it working fine only the main window of next page  frame line is not display.
    i m define next page as a FIRST page and writing main window of first page following coding
    /:           POSITION XORIGIN '0.50' CM YORIGIN '7.75' CM
    /:           SIZE HEIGHT '17' CM WIDTH '19.25' CM
    /:           BOX  FRAME 10 TW
    when i run the program first page are coming properly and only when i go in second page of output then main window lines not displaying.
    please guide me how to solve this problem.
    Regards,
    pravin

    Hi Praveen,
    In that case why you have to make the main window in the first page and secondry window.
    You can use it as manin window itself. Print the total amount in the main window itself in the first page. and copy that main window to the second page.
    In the first page under the main window create a text. and there u print the total value and text.
    Now copy the main window to the second page..only COPY DONT CREATE NEW.
    In the second page now under the main window create the table to print the line items. What every u add in the second page main window it will come in the first age also in the smartforms. But it will nto get printed in the first page.After the text to print the totals call the COMMAND option and call next page in that.
    Hope you got me..
    Regards
    Ansari

  • Mail will NOT display a multi-page pdf file in the body.

    I want to send an email with a multi-page PDF attached that is displayed in the email- so that readers don't even have to click on the pdf to open it. Can I do that? I can do a single page, and I did determine that if I save all the pages of the document as single pds and then attach those, that works, but is there a way to display a multi-page pdf? Any help would be greatly appreciated!

    I do not use pages - there are several possible solutions to your situation - in pages you should be able to do a send pdf to iPhoto and then in iPhoto you can create an e-mail with smaller (and harder to read) images- you may be able to produce smaller (lower quality) PDFs in pages (don't know), you can change e-mail servers - use a different one it you have multiple accounts or get a free gmail account or other new account that will handle your needs
    LN

  • Firefox will not display a complete page only framework w/o background. have reloaded 3X still junk.

    Full page with background does not display.

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    If images are missing then check that you aren't blocking images from some domains.
    *You can inspect and manage all permissions on the about:permissions page, via the location bar.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images permissions.default.images
    *http://kb.mozillazine.org/Images_or_animations_do_not_load

  • I'm at work and my Mac book pro is saying its connected  but will not display a web page. Others who have the MacBook is connected. Tried to restart. Please help

    I'm at work and my MacBook Pro is connected wifi but a web page will not display. Other have the pros and is connect. Tried restarting but not working

    You're not a liar. They should not charge you $90, it is within the 1-year warranty that comes with it and you are entitled to a free replacement. I have never had the problem myself on a 15 month old MacBook, so there must be SOMETHING that happened to it, maybe without you noticing. But might I recommend a wireless trackpad or Apple "Magic Mouse?"

Maybe you are looking for