First field missing on the top of page 2

I have a form that will occasionally create a second page as it's listing disbursements, but the first field of the second page continually comes in blank. Any ideas?

This could be a lot of things. More details would help.
Check the !FldNotAvail and !FldUsed events of your offending field. Perhaps it's not there, so the second field's !FldNotAvail is laying down the subform, at which point print agent has already given up on your first field.

Similar Messages

  • To display the typ, key field,info in the top-of -page event in OO ALV

    Hi all,
    I need to display the heading and the other select option details in the top-of-page  event in ooalv.How can the key ,typ and the info of top of event  in alv grid be passed in ooalv grid display.
    Regards,
    Arpita

    Check the blog.
    TOP_OF_PAGE in ALV  Using CL_GUI_ALV_GRID
    Now you have to use the method ADD_TEXT to populate the Select options details.
    I hope you know the Function to get the selection details
    RS_REFRESH_FROM_SELECTOPTIONS,. it will give into a table. so use that table and populate the TOP_OF_PAGE uisng the class CL_DD_DOCUMENT.

  • How i can show the selection screen input field in the top of page in alv

    hi ,
              how i can show the selection screen input field in the top of page in alv  grid output.
    tell me the process

    Hi,
    excample from my program:
    FORM topof_page.
      DATA: l_it_header   TYPE TABLE OF slis_listheader WITH HEADER LINE,
            l_info        LIKE l_it_header-info.
      DATA: l_it_textpool TYPE TABLE OF textpool WITH HEADER LINE.
      DATA: l_key LIKE l_it_textpool-key.
      READ TEXTPOOL c_repid INTO l_it_textpool LANGUAGE sy-langu.
      DEFINE m_selinfo.
        if not &1 is initial.
          clear l_it_header.
          l_it_header-typ   = 'S'.
          l_key = '&1'.
          translate l_key to upper case.
          read table l_it_textpool with key key = l_key.
          if sy-subrc = 0.
            shift l_it_textpool-entry left deleting leading space.
            l_it_header-key = l_it_textpool-entry  .
          endif.
          loop at &1.
            case &1-option.
              when 'EQ'
                or 'BT'
                or 'CP'.
                write &1-low to l_it_header-info.
              when others.
                write &1-low to l_it_header-info.
                concatenate &1-option
                            l_it_header-info
                       into l_it_header-info
                       separated by space.
            endcase.
            if not &1-high is initial.
              write &1-high to l_info left-justified.
              concatenate l_it_header-info
                          l_info
                     into l_it_header-info
                     separated by space.
            endif.
            if &1-sign = 'E'.
              concatenate ']'
                          l_it_header-info
                     into l_it_header-info.
            endif.
            append l_it_header.
            clear: l_it_header-key,
                   l_it_header-info.
          endloop.
        endif.
      END-OF-DEFINITION.
      m_selinfo: s_trmdat,
                 s_trmext,
                 s_trmint,
                 s_fkdat,
                 s_delno,
                 s_vbeln,
                 s_deact,
                 s_kdmat.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                it_list_commentary = l_it_header[].
    ENDFORM.
    I hope, this will help you.
    Regards
    Nicole

  • How to print the top of page part along with the ALV list and generate PDF

    HI all,
             I have created one ALV by using oops concept .
             and also am able to get the top of page where I have One standard logo on the right hand side
             and some details on the left side .
               Now my requirement is to while printing the list the logo and other top of page details should appear
               In the PDF output but currently while am pressing the print preview button only the alv data is coming
              am already using the method
        handle_top_of_page
          FOR EVENT print_top_of_page
                 OF cl_gui_alv_grid,
    may be am missing something ... How to get the top of page along with the logo printed ?

    Hi  Surya,
    After generating the grid display  click on print button,
    a spool number is generated. capture the spool number and convert it to pdf using the fm:
    CONVERT_ABAPSPOOLJOB_2_PDF  and save the file
    Hope this will solve your problem.
    Regards,
    R K.

  • How to capture the current info in the top-of-page event in Reuse block dis

    How to capture the current info in the top-of-page event in Reuse block dis

    Hi Geetha,
         If you don't have any information to pass the Heading Block, then why you are using this event ?
         please comment/ remove that TOP_OF_PAGE code. and use subtotal code in field catalog block.
          you can use below code for subtotal. 
          FORM field_catalog .
                    gs_fcat-do_sum = &2.
              fcat : 'WRBTR' '15' 'X' ' ' ' ' 'WRBTR' 'Amount',
           ENDFORM.
           Regards,
           Kunjan

  • Slider bar is missing at the top of iTunes.

    Slider bar is missing at the top of iTunes.
    Not sure how to get it back into view.
    Not sure if this has been answered. First time posting on here and very new to Apple software, Macbook that is. Iphones and Ipads i've got covered.
    Thanks

    Go to Preferences > Customize Toolbar
    Dave

  • A variable from START-OF-SELECTION to be displayed at the TOP-OF-PAGE?

    Hi
    I want to display a variable (by WRITE ststement) which is populated under the the event start-of-selection in the top-of-page event.
    Is it possible to do that and if yes then How can I do it?
    Thanks

    i think top-of-page will trigger when it gets the first write statement. so
    start-of-selection.
    var = 100.
    write : / 'This is in start-of-selection'.
    top-of-page.
    write : / var.
    so the thing is you have to assign the value to your variable before first write statement.
    regards
    shiba dutta

  • If the program has a write statement   at   the top  & the TOP-OF-PAGE

    Q]      We know that START-OF-SELECTION  is triggered by the 1st   writr statement. Now if the program has a write statement   at   the top  & the TOP-OF-PAGE too is written explicitly  which also contains write statements-----what will be the effect?

    Hi,
    i will order of events
    see first of all initialization event gets triggred and then at selection screen triggres and then it goes to start of selection and if it found any list processing statement then it goes to top-of -page event and after executing all the statements it returns back to the start of selection event
    just i will give one test case to u execute it u will know one thing
    give one write statement in the initialization event and in the start of selection of give one write statement see what happns u can find different different things just try i will expalin u the concept..
    plzz reward if it is useful...
    plzz dont forget to reward..
    if u want any concepts u can contact me on [email protected]
    plzz reward

  • HT4095 What happens if the genre box goes missing on the top left corner on your iPad? How do I get it back?

    What happens if the genre box goes missing on the top left corner on your iPad?How do I get it back please help me.

    Try quitting iTunes and restart your iPad.
    Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. 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. Restart the iPad.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    You can also try a reset if quitting the app doesn't work.
    Reset 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 - let go of the buttons.

  • Can we create the longer lines in the top-of-page in ALV Grid

    Dear Experts,
    I want to display longer characters in the TOP-OF-PAGE in the ALV GRID .
    ( more than 60 character up to 150 ).
    Is there any possible FM.
    Kindly provide.
    Regards
    R.Rajendran

    hI rANGA,
    I think upto 60 char is possible.
    Thanks
    Vincent

  • How to gve the colors to the TOP-OF-PAGE in ALV Grid Disply..

    i want to give 3 different colors in the top-of-page(there are three different lines each line should disply in different colors)...
      plaese tell me how can i do that...........

    Hi
    Try like this...
    form build_events.
      clear   gv_event.
      refresh i_events.
    Get the ALV events
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        exporting
          i_list_type     = 0
        importing
          et_events       = i_events
        exceptions
          list_type_wrong = 1
          others          = 2.
      if sy-subrc = 0.
        sort i_events by name.
      endif.
    Form for Top-of-Page ---------------------------------*
      read table i_events with key name = slis_ev_top_of_page
                                          into gv_event
                                          binary search.
      if sy-subrc = 0.
        move gc_top_of_page to gv_event-form.
        modify i_events from gv_event index sy-tabix.
      endif.
    Form for End-of-List ---------------------------------*
      read table i_events with key name = slis_ev_end_of_list
                                          into gv_event
                                          binary search.
      if sy-subrc = 0.
        move gc_end_of_list to gv_event-form.
        modify i_events from gv_event index sy-tabix.
      endif.
    Specify the ALV layout
      wa_layout-max_linesize = gv_linsz.
      wa_layout-min_linesize = gv_linsz.
    endform.                    " build_events
    form top_of_page_d.                                        
      format color col_heading.
      write: / 'Satyanarayana'
      format color col_total.
      write: / 'Sayana'.
      format reset.
    endform.
    Satya.

  • How to give colors to the top-of-page in ALV Grid

    How to give colors to the top-of-page in ALV Grid
    in table GT_LIST_TOP_OF_PAGE i am filling 3 rows ,i need 3 different colors to be displyed on top-of-page(one color to one row)
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    I_LOGO = 'ENJOYSAP_LOGO'
    IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.
    please help mee

    HI Kranthi,
    Check out teh foll. link,
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    Hope this helps.

  • How to give colors to the top-of-page in ALV List Display

    how to give colors to the top-of-page in ALV List Display....

    Check this blog.........
    It provides your required output...........
    /people/vijaybabu.dudla/blog/2006/07/21/topofpage-in-alv-using-clguialvgrid
    See the point 7 for complete code...
    Regards,
    Pavan

  • The spotlight is missing  on the top bar.. how can i fix this?

    The spotlight is missing on the top bar of my MacBook Pro.. How can i fix this problem?

    This could be a serious issue, I would contact Apple, if the following does not work.
    You can try a SMC reset:
    Power off, press left side shift,control,option.
    Power up and hold the keys before the start up chime, hold them till the gear stops spinning.
    As you do not say which os you are running, this can only be a guess.
    If you provide more detailed info, you might get a better response.
    Best

  • I dropped my phone last night, already with a little bit of glass missing at the top. The screen has gone black with blue lines down it and i cant even see my home screen. I've tried holding down the power and home button, someone please help

    I dropped my phone last night, already with a little glass missing at the top. The screen is black with blue vertical lines, I cant even see my home screen I've tried holding the home and power button. Someome help?

    It's broken. Take it to Apple.

Maybe you are looking for

  • Blue screen error after USB connection

    hello, I have a new 8100. All is great, all is working, but the problem appeared after I installed the software and I connected the mobile to the computer by USB... the blue screen error of Windows Vista appeared and then after the automatic reboot o

  • OracleXMLQuery and OracleXMLSave  Problem

    I have tow problems in my Java/oracle Application : 1) I am using OracleXMLQuery to extract data from a data base, the problem is when the table is empty i get an empty output file. Is there a method to get the header of the table (the manes of colom

  • TS3297 I tried to download a Bruno Mars song and error message said temporarily unavailable try again later, but still no luck 24 hours later. How to fix?

    I tried to download a Bruno Mars song and it took the money from my account. Error message came up saying song temporarily unavailable, try again later. was able to download other songs tho. 24 hours later and still getting same message, How to fix?

  • Open file not working

    Hi, I've read various articles but i can't seem to get the file links correct. I am publishing my captivate file to .exe and then burning to cd. I'm adding my pdf files to the CD aswell. The file is located e.g. pdfs/nameoffile.pdf on the cd. In capt

  • DKIM/DomainKeys Content Filters Best Practices?

    Hi All, I was wondering if anyone has some best practices on implementing content filters for domain keys/dkim results on incoming mail. I am having a tough time figuring out a good solution to this problem as we have various users who also subscribe