Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Display schedule qty - Month wise in ALV Grid

Former Member
0 Kudos

Hi Experts,

I have a requirement to display the schedule line quantities month wise in ALV Grid. The columns sholud be dynamic columns based on the input date range. I got some idea about how to create dynamic ALV but it is not clear to implement in my requirement.

Please Guide me in achiving the same.

Example:

Jan 2011 Feb 2011 March 2011

100 2000 300

Thanks&Regards,

Karthik

1 ACCEPTED SOLUTION

former_member184578
Active Contributor
0 Kudos

Hi.,

Create field catalog dynamically as like this.,

select-options s_date for sy-datum.

data: n type i,
      count type i,
      cnt type string,
      field type string,
      descr type string.

DATA: m TYPE t247-mnr,
      month_name type char10,
      m1 type i.

n = s_date-high+4(2) - s_date-low+4(2) .   " getting number of months

m1 = s_date-low+4(2).

m = m1.

n = n + 1.

DO n TIMES.   " building field catalog dynamically

  m = m + 1.
  count = count + 1.
  cnt = count.

  concatenate 'FIELD' cnt into field.

  CALL FUNCTION 'ISP_GET_MONTH_NAME'    " FM to get month name
      EXPORTING
        LANGUAGE           =  sy-langu
        MONTH_NUMBER       =   m
     IMPORTING
*    LANGU_BACK         =
       LONGTEXT           =  month_name .

  concatenate month_name s_date-low+0(4) into descr separated by ''.


  wa_fieldcat-col_pos = count.
  wa_fieldcat-row_pos = '1'.
  wa_fieldcat-fieldname = field.
  wa_fieldcat-seltext_m = descr.
  append wa_fieldcat to it_fieldcat.
  clear wa_fieldcat.


ENDDO.

After this create dynamic table using,

CALL METHOD cl_alv_table_create=>create_dynamic_table

EXPORTING

it_fieldcatalog = t_fldcat

IMPORTING

ep_table = t_newtable.

then loop the internal table and assign the component to final internal table,.

like .,

CONCATENATE 'FIELD' index INTO fieldvalue. " do same like fieldcatalog

ASSIGN COMPONENT fieldvalue OF STRUCTURE <fs_dyntable> TO <fs_fldval>.

<fs_fldval> = wa-fieldvalue.

hope this helps u.,

Thanks & Regards,

Kiran

3 REPLIES 3

former_member184578
Active Contributor
0 Kudos

Hi.,

Create field catalog dynamically as like this.,

select-options s_date for sy-datum.

data: n type i,
      count type i,
      cnt type string,
      field type string,
      descr type string.

DATA: m TYPE t247-mnr,
      month_name type char10,
      m1 type i.

n = s_date-high+4(2) - s_date-low+4(2) .   " getting number of months

m1 = s_date-low+4(2).

m = m1.

n = n + 1.

DO n TIMES.   " building field catalog dynamically

  m = m + 1.
  count = count + 1.
  cnt = count.

  concatenate 'FIELD' cnt into field.

  CALL FUNCTION 'ISP_GET_MONTH_NAME'    " FM to get month name
      EXPORTING
        LANGUAGE           =  sy-langu
        MONTH_NUMBER       =   m
     IMPORTING
*    LANGU_BACK         =
       LONGTEXT           =  month_name .

  concatenate month_name s_date-low+0(4) into descr separated by ''.


  wa_fieldcat-col_pos = count.
  wa_fieldcat-row_pos = '1'.
  wa_fieldcat-fieldname = field.
  wa_fieldcat-seltext_m = descr.
  append wa_fieldcat to it_fieldcat.
  clear wa_fieldcat.


ENDDO.

After this create dynamic table using,

CALL METHOD cl_alv_table_create=>create_dynamic_table

EXPORTING

it_fieldcatalog = t_fldcat

IMPORTING

ep_table = t_newtable.

then loop the internal table and assign the component to final internal table,.

like .,

CONCATENATE 'FIELD' index INTO fieldvalue. " do same like fieldcatalog

ASSIGN COMPONENT fieldvalue OF STRUCTURE <fs_dyntable> TO <fs_fldval>.

<fs_fldval> = wa-fieldvalue.

hope this helps u.,

Thanks & Regards,

Kiran

0 Kudos

Hi Kiran,

I need some help on displaying the qty data date wise which dynamic cal.

<< Moderator message - Please do not ask for or post e-mail addresses >>

Please read [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement], and [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]

Edited by: Rob Burbank on Jul 14, 2011 2:29 PM

0 Kudos

Hi, Kiran ,

In this report Month is display in column wise but in my report display in row wise plz help me. but month start from April may...etc...Validation by means of selection screen creation date. I will send Example..

Creation Date :

creation date:  20.05.2012   to   18.07.2012.

From (may 20 to 31 created order Qty will be display in may )

From(June 1 to 30 created order  Qty will be display in june)

From(July 1 to 18 created order   Qty will be display in july)

Plz Guide me

Month    Qty1    qty2         Total

April

may       10       30              40

jun         80      20              100

july        10      10               20

aug

sep

Nov

Dec

Jan

Feb

March

Total        110   60         160

plz guide me