How to attached class or function module in FD03

Hi Guys
I want to attached CL_ATTACHMENT_LIST for retriving attachment list from fd03 please help to attached the function module in my program?
regards
Piroz
report zfir_aged_debtors no standard page heading
                         line-size 255.
Type group
type-pools:
  slis.                        " ALV types
Tables
tables:
  adrc,               " Addresses
  bsad,               " Accounting: Customer secondary index (Cleared)
  bsid,               " Accounting: Customer secondary index (Open)
  kna1,               " Customer master: General data
  knkk,               " Customer master: Credit management
  knvk.               " Customer master: Contact persons
Types
types:
  begin of ty_bsadbsid,
    bukrs like bsad-bukrs,              " Company code
    kunnr like bsad-kunnr,              " Customer
    gjahr like bsad-gjahr,              " Fiscal year
    belnr like bsad-belnr,              " Accounting document number
    buzei like bsad-buzei,              " Line item
    budat like bsad-budat,              " Posting date
    bldat like bsad-bldat,              " Document date
    waers like bsad-waers,              " Currency
    xblnr like bsad-xblnr,              " Reference
    shkzg like bsad-shkzg,              " Debit/credit indicator
    dmbtr like bsad-dmbtr,              " Amount
    zfbdt like bsad-zfbdt,              " Baseline date for due date
                                        " calculation
    zbd1t like bsad-zbd1t,              " Cash discount days 1
    zbd2t like bsad-zbd2t,              " Cash discount days 2
    zbd3t like bsad-zbd3t,              " Net payment terms period
    rebzg like bsad-rebzg,              " Number of the invoice
    rebzt like bsad-rebzt,              " Follow on document type
  end of ty_bsadbsid,
  ty_it_bsadbsid type ty_bsadbsid occurs 0,
  begin of ty_merged,
    kunnr      like kna1-kunnr,         " Customer number
    name1      like adrc-name1,         " Name
    city1      like adrc-city1,         " City
    post_code1 like adrc-post_code1,    " Post code
    street     like adrc-street,        " Street
    house_num1 like adrc-house_num1,    " House number
    tel_number like adrc-tel_number,    " Telephone number
    fax_number like adrc-fax_number,    " Fax number
    namev      like knvk-namev,         " First name
    namew      like knvk-name1,         " Last name
    telf1      like knvk-telf1,         " Telephone number
    klimk      like knkk-klimk,         " Credit limit
    skfor      like knkk-skfor,         " Total receivables
    total      like bsad-dmbtr,         " Total amount
    rast1      like bsad-dmbtr,         " Amount period 1
    rast2      like bsad-dmbtr,         " Amount period 2
    rast3      like bsad-dmbtr,         " Amount period 3
    rast4      like bsad-dmbtr,         " Amount period 4
    rast5      like bsad-dmbtr,         " Amount period 5
    rast6      like bsad-dmbtr,         " Amount period 6
  end of ty_merged,
  ty_it_merged type ty_merged occurs 0.
Internal tables
data:
Internal table to store customer line items from BSAD and BSID
  it_bsadbsid type ty_it_bsadbsid,
Internal table to store field catalog for ALV function call
  it_fieldcat type slis_t_fieldcat_alv,
Internal table to store summarised data for report output
  it_merged   type ty_it_merged.
Structures
data:
Display variant structures
  st_tvariant  like disvariant,
  st_variant   like disvariant.
Constants
constants:
  co_delim_dash    type c
                   value '-',
  co_false         type c                      " False
                   value space,
  co_koart_d       like faede-koart            " Customer account type
                   value 'D',
  co_save_u        type c                      " User display variant
                   value 'U',                  " saving allowed.
  co_shkzg_h       like bsid-shkzg             " Debit/Credit indicator
                   value 'H',                  " for credit
  co_shkzg_s       like bsid-shkzg             " Debit/Credit indicator
                   value 'S',                  " for debit
  co_selected      type c                      " Value of selected radio
                   value 'X',                  " button or checkbox
  co_true          type c                      " True
                   value co_selected.
Variables
data:
  va_exit          type c.
Selection screen definition
selection-screen: begin of block b1 with frame title text-001.
select-options:
  s_kunnr for bsad-kunnr.                     " Customer number
parameters:
  p_kkber like knkk-kkber,                    " Credit control area
  p_pafkt like knvk-pafkt,                    " Contact function
  p_datum like sy-datum.                      " Report date
selection-screen: begin of line,
                  comment 01(30) text-006,
                  position pos_low.
parameters:
  rastbis1 like rfpdo1-allgrogr               " Due date sorted 1
           default '000',
  rastbis2 like rfpdo1-allgrogr               " Due date sorted 2
           default '000',
  rastbis3 like rfpdo1-allgrogr               " Due date sorted 3
           default '000',
  rastbis4 like rfpdo1-allgrogr               " Due date sorted 4
           default '000',
  rastbis5 like rfpdo1-allgrogr               " Due date sorted 5
           default '000'.
selection-screen: end of line.
selection-screen: end of block b1,
                  begin of block b2 with frame title text-002.
parameters:
  p_varint like disvariant-variant.           " Display variant.
selection-screen: end of block b2.
Initialisation
initialization.
Provide default periods for due date sorted list.
  rastbis1 = 0.
  rastbis2 = 30.
  rastbis3 = 60.
  rastbis4 = 90.
  rastbis5 = 120.
Default report date to current.
  p_datum = sy-datlo.
Default credit control area to BP01.
  p_kkber = 'BP01'.
At selection screen on value request for
at selection-screen on value-request for p_varint.
Provide display variant list for this program.
  call function 'REUSE_ALV_VARIANT_F4'
    exporting
      is_variant = st_variant
      i_save     = co_save_u
    importing
      e_exit     = va_exit
      es_variant = st_tvariant
    exceptions
      not_found  = 2.
  if sy-subrc eq 2.
    message id sy-msgid type 'S'
            number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  else.
    if va_exit eq space.
      st_variant = st_tvariant.
      p_varint = st_tvariant-variant.
    endif.
  endif.
At selection screen
at selection-screen.
Load display variant.
  if not p_varint is initial.
    move st_variant to st_tvariant.
    move p_varint to st_tvariant-variant.
    call function 'REUSE_ALV_VARIANT_EXISTENCE'
      exporting
        i_save     = co_save_u
      changing
        cs_variant = st_tvariant.
    st_variant = st_tvariant.
  else.
    clear st_variant.
    st_variant-report = sy-repid.
  endif.
  if p_kkber is initial.
  Ensure credit control area is specified.
    message e000(zgen) with 'Credit control area must be specified'.
  endif.
  if p_pafkt is initial.
  Ensure contact person function is specified.
    message e000(zgen) with 'Contact person function must be specified'.
  endif.
Start of selection
start-of-selection.
Extract open customer items from BSID
  select bukrs kunnr gjahr belnr buzei budat bldat waers xblnr shkzg
         dmbtr zfbdt zbd1t zbd2t zbd3t rebzg rebzt
         from  bsid
         into  table it_bsadbsid
         where kunnr in s_kunnr
         and   budat le p_datum.
Extracct cleared customer items from BSAD
  select bukrs kunnr gjahr belnr buzei budat bldat waers xblnr shkzg
         dmbtr zfbdt zbd1t zbd2t zbd3t rebzg rebzt
         from  bsad
         appending table it_bsadbsid
         where kunnr in s_kunnr
         and   budat le p_datum
         and   augdt ge p_datum.
Ensure that items were not selected twice while getting data from the
open and cleared items tables (Only if transaction occured during
report run).
  sort it_bsadbsid by bukrs belnr gjahr buzei.
  delete adjacent duplicates from it_bsadbsid
         comparing bukrs belnr gjahr buzei.
  if it_bsadbsid[] is initial.
  No data found for selection
    message s001(zgen).
    exit.
  endif.
Merge data for report output
  perform merge_data tables it_bsadbsid
                            it_merged.
Build field catalog
  perform build_field_catalog tables it_fieldcat.
Output report via ALV
  perform output_report_via_alv tables it_fieldcat
                                       it_merged.
*&      Form  merge_data
      text
form merge_data  tables   pa_it_bsadbsid type ty_it_bsadbsid
                          pa_it_merged   type ty_it_merged.
Local work areas
data:
  lwa_bsadbsid type ty_bsadbsid,
  lwa_merged   type ty_merged.
Local structures
data:
  lst_faede    like faede.
Local variables
data:
  lva_daysover type i,
  lva_merged_tabix like sy-tabix.
  loop at pa_it_bsadbsid into lwa_bsadbsid.
  Lookup merged entry for customer
    clear lwa_merged.
    read table pa_it_merged into lwa_merged
                            with key kunnr = lwa_bsadbsid-kunnr
                            binary search.
    lva_merged_tabix = sy-tabix.
    if sy-subrc ne 0.
    Create new merged record for customer
      lwa_merged-kunnr = lwa_bsadbsid-kunnr.
    Get customer details from KNA1
      clear kna1.
      select single *
             from   kna1
             where  kunnr eq lwa_bsadbsid-kunnr.
    Get customer address details from ADRC
      clear adrc.
      select single *
             from   adrc
             where  addrnumber eq kna1-adrnr
             and    date_from  le p_datum.
      lwa_merged-name1      = adrc-name1.
      lwa_merged-city1      = adrc-city1.
      lwa_merged-post_code1 = adrc-post_code1.
      lwa_merged-street     = adrc-street.
      lwa_merged-house_num1 = adrc-house_num1.
      lwa_merged-tel_number = adrc-tel_number.
      lwa_merged-fax_number = adrc-fax_number.
    Get credit limit details from KNKK
      clear knkk.
      select single *
             from   knkk
             where  kunnr eq lwa_bsadbsid-kunnr
             and    kkber eq p_kkber.
      lwa_merged-klimk = knkk-klimk.
      lwa_merged-skfor = knkk-skfor.
    Get customer contact person details from KNVK
      clear knvk.
      select single *
             from   knvk
             where  kunnr eq lwa_bsadbsid-kunnr
             and    pafkt eq p_pafkt.
      lwa_merged-namev = knvk-namev.
      lwa_merged-namew = knvk-name1.
      lwa_merged-telf1 = knvk-telf1.
      insert lwa_merged into pa_it_merged index lva_merged_tabix.
    endif.
  Interpret debit/credit indicator
    case lwa_bsadbsid-shkzg.
      when co_shkzg_h.
      Credit
        lwa_bsadbsid-dmbtr = 0 - lwa_bsadbsid-dmbtr.
      when co_shkzg_s.
      Debit
    endcase.
  Perform ageing
    clear lst_faede.
    move-corresponding lwa_bsadbsid to lst_faede.
    lst_faede-koart = co_koart_d.
    call function 'DETERMINE_DUE_DATE'
      exporting
        i_faede = lst_faede
      importing
        e_faede = lst_faede
      exceptions
        others  = 1.
    lva_daysover = p_datum - lst_faede-netdt.
  Accumulate total.
    add lwa_bsadbsid-dmbtr to lwa_merged-total.
    if lva_daysover le rastbis1.
      add lwa_bsadbsid-dmbtr to lwa_merged-rast1.
    else.
      if lva_daysover le rastbis2 or
         rastbis3 is initial.
        add lwa_bsadbsid-dmbtr to lwa_merged-rast2.
      else.
        if lva_daysover le rastbis3 or
           rastbis4 is initial.
          add lwa_bsadbsid-dmbtr to lwa_merged-rast3.
        else.
          if lva_daysover le rastbis4 or
             rastbis5 is initial.
            add lwa_bsadbsid-dmbtr to lwa_merged-rast4.
          else.
            if lva_daysover le rastbis5.
              add lwa_bsadbsid-dmbtr to lwa_merged-rast5.
            else.
              add lwa_bsadbsid-dmbtr to lwa_merged-rast6.
            endif.
          endif.
        endif.
      endif.
    endif.
  Update the merged record
    modify pa_it_merged from lwa_merged index lva_merged_tabix.
  endloop.
endform.                    " merge_data
*&      Form  build_field_catalog
      text
form build_field_catalog tables pa_it_fieldcat type slis_t_fieldcat_alv.
Local work areas
  data:
    lwa_fieldcat   type slis_fieldcat_alv.
--WG1K903216: Start Insert-
  data: v_datum type datum,
        v_mdmth type datum,
        v_datxt type string,
        v_noday type i.
--WG1K903216: End Insert---
  refresh pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'KUNNR'.
  lwa_fieldcat-ref_tabname   = 'KNA1'.
  lwa_fieldcat-ref_fieldname = 'KUNNR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '1'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'NAME1'.
  lwa_fieldcat-ref_tabname   = 'ADRC'.
  lwa_fieldcat-ref_fieldname = 'NAME1'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '2'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'CITY1'.
  lwa_fieldcat-ref_tabname   = 'ADRC'.
  lwa_fieldcat-ref_fieldname = 'CITY1'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '3'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'POST_CODE1'.
  lwa_fieldcat-ref_tabname   = 'ADRC'.
  lwa_fieldcat-ref_fieldname = 'POST_CODE1'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '4'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'STREET'.
  lwa_fieldcat-ref_tabname   = 'ADRC'.
  lwa_fieldcat-ref_fieldname = 'STREET'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '5'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'HOUSE_NUM1'.
  lwa_fieldcat-ref_tabname   = 'ADRC'.
  lwa_fieldcat-ref_fieldname = 'HOUSE_NUM1'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '6'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'TEL_NUMBER'.
  lwa_fieldcat-ref_tabname   = 'ADRC'.
  lwa_fieldcat-ref_fieldname = 'TEL_NUMBER'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '7'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'FAX_NUMBER'.
  lwa_fieldcat-ref_tabname   = 'ADRC'.
  lwa_fieldcat-ref_fieldname = 'FAX_NUMBER'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '8'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'NAMEV'.
  lwa_fieldcat-ref_tabname   = 'KNVK'.
  lwa_fieldcat-ref_fieldname = 'NAMEV'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '9'.
  lwa_fieldcat-seltext_l     = 'Contact first name'.
  lwa_fieldcat-seltext_m     = 'Contact Fname'.
  lwa_fieldcat-seltext_s     = 'Ctct Fname'.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'NAMEW'.
  lwa_fieldcat-ref_tabname   = 'KNVK'.
  lwa_fieldcat-ref_fieldname = 'NAME1'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '10'.
  lwa_fieldcat-seltext_l     = 'Contact last name'.
  lwa_fieldcat-seltext_m     = 'Contact Lname'.
  lwa_fieldcat-seltext_s     = 'Ctxt Lname'.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'TELF1'.
  lwa_fieldcat-ref_tabname   = 'KNVK'.
  lwa_fieldcat-ref_fieldname = 'TELF1'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '11'.
  lwa_fieldcat-seltext_l     = 'Contact phone no.'.
  lwa_fieldcat-seltext_m     = 'Contact phone'.
  lwa_fieldcat-seltext_s     = 'Ctct Phne'.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'KLIMK'.
  lwa_fieldcat-ref_tabname   = 'KNKK'.
  lwa_fieldcat-ref_fieldname = 'KLIMK'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '12'.
  lwa_fieldcat-seltext_l     = 'Credit limit'.
  lwa_fieldcat-seltext_m     = 'Credit limit'.
  lwa_fieldcat-seltext_s     = 'Crdt limit'.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'SKFOR'.
  lwa_fieldcat-ref_tabname   = 'KNKK'.
  lwa_fieldcat-ref_fieldname = 'SKFOR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '13'.
  lwa_fieldcat-seltext_l     = 'Credit used'.
  lwa_fieldcat-seltext_m     = 'Credit used'.
  lwa_fieldcat-seltext_s     = 'Crdt used'.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'TOTAL'.
  lwa_fieldcat-ref_tabname   = 'BSAD'.
  lwa_fieldcat-ref_fieldname = 'DMBTR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '14'.
  lwa_fieldcat-seltext_l     = 'Total'.
  lwa_fieldcat-seltext_m     = 'Total'.
  lwa_fieldcat-seltext_s     = 'Total'.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'RAST1'.
  lwa_fieldcat-ref_tabname   = 'BSAD'.
  lwa_fieldcat-ref_fieldname = 'DMBTR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '15'.
--WG1K903216: Start Delete-
concatenate '<'
             rastbis2
             into lwa_fieldcat-seltext_l
             separated by space.
--WG1K903216: End Delete---
--WG1K903216: Start Insert-
  clear: v_datum,
         v_datxt.
  v_noday = rastbis2.
Always use the middle of the report month as a heading reference date.
  concatenate p_datum+0(6) '15' into v_mdmth.
  call function 'ZWAG_DATE_CALCULATOR'
    exporting  i_datum         = v_mdmth
               i_noday         = v_noday
               i_oprnd         = '+'
    importing  e_datum         = v_datum
    exceptions invalid_operand = 1.
  call function 'ZWAG_END_MONTH'
    exporting  i_datum         = v_datum
    importing  e_datum         = v_datum
               e_datxt         = v_datxt
    exceptions invalid_date    = 1.
  concatenate 'Due' v_datxt into lwa_fieldcat-seltext_l
    separated by space.
--WG1K903216: End Insert---
  lwa_fieldcat-seltext_m     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-seltext_s     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'RAST2'.
  lwa_fieldcat-ref_tabname   = 'BSAD'.
  lwa_fieldcat-ref_fieldname = 'DMBTR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '16'.
--WG1K903216: Start Delete-
concatenate rastbis1
             rastbis2
             into lwa_fieldcat-seltext_l
             separated by co_delim_dash.
--WG1K903216: End Delete---
--WG1K903216: Start Insert-
  clear: v_datum,
         v_datxt.
  v_noday = rastbis1.
  call function 'ZWAG_DATE_CALCULATOR'
    exporting  i_datum         = v_mdmth
               i_noday         = v_noday
               i_oprnd         = '+'
    importing  e_datum         = v_datum
    exceptions invalid_operand = 1.
  call function 'ZWAG_END_MONTH'
    exporting  i_datum         = v_datum
    importing  e_datum         = v_datum
               e_datxt         = v_datxt
    exceptions invalid_date    = 1.
  concatenate 'Due' v_datxt into lwa_fieldcat-seltext_l
    separated by space.
--WG1K903216: End Insert---
  lwa_fieldcat-seltext_m     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-seltext_s     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'RAST3'.
  lwa_fieldcat-ref_tabname   = 'BSAD'.
  lwa_fieldcat-ref_fieldname = 'DMBTR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '17'.
--WG1K903216: Start Delete-
concatenate rastbis2
             rastbis3
             into lwa_fieldcat-seltext_l
             separated by co_delim_dash.
--WG1K903216: End Delete---
--WG1K903216: Start Insert-
  clear: v_datum,
         v_datxt.
  v_noday = rastbis2.
  call function 'ZWAG_DATE_CALCULATOR'
    exporting  i_datum         = v_mdmth
               i_noday         = v_noday
               i_oprnd         = '-'
    importing  e_datum         = v_datum
    exceptions invalid_operand = 1.
  call function 'ZWAG_END_MONTH'
    exporting  i_datum         = v_datum
    importing  e_datum         = v_datum
               e_datxt         = v_datxt
    exceptions invalid_date    = 1.
  concatenate 'Due' v_datxt into lwa_fieldcat-seltext_l
    separated by space.
--WG1K903216: End Insert---
  lwa_fieldcat-seltext_m     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-seltext_s     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'RAST4'.
  lwa_fieldcat-ref_tabname   = 'BSAD'.
  lwa_fieldcat-ref_fieldname = 'DMBTR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '18'.
--WG1K903216: Start Delete-
concatenate rastbis3
             rastbis4
             into lwa_fieldcat-seltext_l
             separated by co_delim_dash.
--WG1K903216: End Delete---
--WG1K903216: Start Insert-
  clear: v_datum,
         v_datxt.
  v_noday = rastbis3.
  call function 'ZWAG_DATE_CALCULATOR'
    exporting  i_datum         = v_mdmth
               i_noday         = v_noday
               i_oprnd         = '-'
    importing  e_datum         = v_datum
    exceptions invalid_operand = 1.
  call function 'ZWAG_END_MONTH'
    exporting  i_datum         = v_datum
    importing  e_datum         = v_datum
               e_datxt         = v_datxt
    exceptions invalid_date    = 1.
  concatenate 'Due' v_datxt into lwa_fieldcat-seltext_l
    separated by space.
--WG1K903216: End Insert---
  lwa_fieldcat-seltext_m     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-seltext_s     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'RAST5'.
  lwa_fieldcat-ref_tabname   = 'BSAD'.
  lwa_fieldcat-ref_fieldname = 'DMBTR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '19'.
--WG1K903216: Start Delete-
concatenate rastbis4
             rastbis5
             into lwa_fieldcat-seltext_l
             separated by co_delim_dash.
--WG1K903216: End Delete---
--WG1K903216: Start Insert-
  clear: v_datum,
         v_datxt.
  v_noday = rastbis4.
  call function 'ZWAG_DATE_CALCULATOR'
    exporting  i_datum         = v_mdmth
               i_noday         = v_noday
               i_oprnd         = '-'
    importing  e_datum         = v_datum
    exceptions invalid_operand = 1.
  call function 'ZWAG_END_MONTH'
    exporting  i_datum         = v_datum
    importing  e_datum         = v_datum
               e_datxt         = v_datxt
    exceptions invalid_date    = 1.
  concatenate 'Due' v_datxt into lwa_fieldcat-seltext_l
    separated by space.
--WG1K903216: End Insert---
  lwa_fieldcat-seltext_m     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-seltext_s     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
  clear lwa_fieldcat.
  lwa_fieldcat-tabname       = 'PA_IT_MERGED'.
  lwa_fieldcat-fieldname     = 'RAST6'.
  lwa_fieldcat-ref_tabname   = 'BSAD'.
  lwa_fieldcat-ref_fieldname = 'DMBTR'.
  lwa_fieldcat-row_pos       = '1'.
  lwa_fieldcat-col_pos       = '20'.
--WG1K903216: Start Delete-
concatenate '>'
             rastbis5
             into lwa_fieldcat-seltext_l
             separated by space.
--WG1K903216: End Delete---
--WG1K903216: Start Insert-
  clear: v_datum,
         v_datxt.
  v_noday = rastbis5.
  call function 'ZWAG_DATE_CALCULATOR'
    exporting  i_datum         = v_mdmth
               i_noday         = v_noday
               i_oprnd         = '-'
    importing  e_datum         = v_datum
    exceptions invalid_operand = 1.
  call function 'ZWAG_END_MONTH'
    exporting  i_datum         = v_datum
    importing  e_datum         = v_datum
               e_datxt         = v_datxt
    exceptions invalid_date    = 1.
  concatenate 'Due By' v_datxt into lwa_fieldcat-seltext_l
    separated by space.
--WG1K903216: End Insert---
  lwa_fieldcat-seltext_m     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-seltext_s     = lwa_fieldcat-seltext_l.
  lwa_fieldcat-ddictxt       = 'L'.
  append lwa_fieldcat to pa_it_fieldcat.
endform.                    " build_field_catalog
*&      Form  output_report_via_alv
      text
form output_report_via_alv
                    tables pa_it_fieldcat type slis_t_fieldcat_alv
                           pa_it_merged   type ty_it_merged.
Local variables
  data:
    lva_repid    like sy-repid,
    lva_formname type slis_formname.
  lva_repid = sy-repid.
  lva_formname = 'USER_COMMAND'.
  call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      i_callback_program      = lva_repid
      i_callback_user_command = lva_formname
      i_save                  = 'A'
      is_variant              = st_variant
      it_fieldcat             = pa_it_fieldcat[]
    tables
      t_outtab                = pa_it_merged
    exceptions
      program_error           = 1
      others                  = 2.
endform.                    " output_report_via_alv

Hi shiva
Thanks for your help,
Can you check this coding and revert me back ASAP Please.
REPORT BDS_GOS_CONNECTION.
DATA : logical_system LIKE BAPIBDS01-log_system.
       CLASSNAME LIKE BAPIBDS01-CLASSNAME
       OBJKEY LIKE SWOTOBJID-objkey.
PARAMETERS: pa_lo_sys BAPIBDS01-log_system,
            pa_class like BPIBDS01-CLASSNAME,
            pa_objkey like swotobjidobjkey.
AT SELECTION-SCREEN.
CALL FUNCTION 'BDS_GOS_CONNECTIONS_GET'
         EXPORTING
              bor_id             = bor_id
         IMPORTING
              logical_sytem      = pa_lo_sys.
              classname          = pa_class.
              objkey            = pa_objkey.
         EXCEPTIONS
              no_objects_found     = 1
              internal_error       = 2
              internal_gos_error   = 3.
   IF sy-subrc <> 0.
     MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
             WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
   ENDIF.
clear v_attno1.
i_object1-typeid = 'BUS2012'.
i_object1-catid  = 'BO'.
i_object1-instid = i_yItem-docno.
call method cl_gos_attachment_query=>count_for_object
   exporting
    is_object = i_object1
    ip_arl    = space
   receiving
    rt_stat   = i_stat1.
read table i_stat1 into wa_stat1 index 1.
if sy-subrc eq c_0.
    move wa_stat1-counter to v_attno1.
endif.             
CALL METHOD cl_gos_attachment_query=>count_for_object
EXPORTING
is_object = object
ip_arl =    space
RECEIVING
rt_stat = lt_stat.
READ TABLE lt_stat INDEX 1 into ls_stat.
count = ls_stat-counter.
*The object has to be a concatenation of your document, like this:
CONCATENATE object-instid tab-gjahr INTO object-instid.
ELSE.
CONCATENATE tab-bukrs tab-belnr tab-gjahr INTO
object-instid.
ENDIF.

Similar Messages

  • How to create a callback function module

    Hi all,
    I am working in a requirement where we need to call a function module at a 'after change' event. So how to create a callback function module and register it with the crmvevent ?_
    I created a sample function module and try to create entries in table crmv_event_cust, but i got an error message saying that the function module name I provided is not in table CRMC_FUNC_ASSIGN. When I try to create entry there, I got a message that function module is not in CRMC_OBJ_FUNC and that table is a standard table with no maintanance options !!
    looks like i am going in wrong way ... can any one please help ??

    Looking at my system all you need to do is create the entry for the callback function in maint view: CRMV_FUNC_ASSIGN.
    Your entry should be as simple as Z-function name Object Function - <same as others in the segment you are assigning>
    IE for the partner it would be CRM_PARTNER as object function, for general order processing CRM_ORDER
    Take care,
    Stephen

  • How to check for a function module with its description and functionality

    Hi all,
    How to check for a function module,with its description and its functionality,in detail how can I know the purpose of a particular function module,how to search for a function module which suits my requirement .

    Hi,
    You can search a FM of your requirement by putting in the Key words and searching for a FM. Like * KEYWORD * and then pressing F4.
    Say for example you need to search something regarding converstion.
    Search for * CONVERT * and press F4.
    If there is something specfic like converting date to something you can give
    DATE * CONVERT *
    OR
    CONVERT * DATE *  and press F4.
    Once you narrow down your search you will have a Function module documentation inside the Function module. Please note that all the FMs willl not have documentation.
    Regards,
    Pramod

  • How to go into a function module through SE80 t - code

    Hi All , 
                 How to go into a function module through SE80 t - code.
    Thanks in advance.

    >
    Balaji Krishnamoorthy wrote:
    > Hi All , 
    >              How to go into a function module through SE80 t - code.
    >
    > Thanks in advance.
    Hi,
    With  help of  function group
    Thanks & Regards
    Edited by: Always Learner on Oct 16, 2008 2:31 PM

  • How to config Check Digits function module for Student Number Validation

    Hi SLCM Experts,
    In the SAP-SLCM, How to use check digits function module for validate student number.  Just only config it or need to customizing program.
    *Any idea to student number validation in SLCM?*
    Best Regards,
    Suvatchai K.

    Hi ,
    Can you expalin it further ?
    You configure the St. no in piq_matr . And set it  as external or internal no. range which suits your business .
    What is the validation you are looking for ?
    Regards
    Gajalakshmi

  • How to connect our outbound function module to the message type

    how to connect our outbound function module to the message type any transcation code exits to assign the message type with the function module .
    Thank in advance .
    A. Thiru

    Hi Thiru,
    Standard Transaction Codes, have their own Function Modules for generating Outbound/Indbound Idocs. Where these Function Modules will be configured to a particular Process Codes.
    For E.g for PO's
    Process code : ME10 - IDOC_OUTPUT_ORDERS - for creation
    In case if its a Z Function Module, It depends on the case how you use IDOC types. either directly through Z Program or through Inbound/Outbound Process  codes with respective Function modules.
    Regards,
    Anbalagan

  • How to create a custom function module with the records in SAP R/3?

    Hi All,
    How to create a custom function module with the records in SAP R/3? Using RFC Adapter I have to fetch the custom function module records.
    Regards
    Sara

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • How to code a predifined function module in sap ,in se37.

    can any one tell me how to code a predifined function module in sap ,in se37.it's an immediate requirement.if u give a brief description it'll do.

    Hi Henry,
    There are two possible ways in which I can interpret your question.
    1. You want to create a new Function Module in SE37. you will have to refer to the <a href="http://help.sap.com/saphelp_47x200/helpdata/en/d1/801e9a454211d189710000e8322d00/frameset.htm">Function Builder</a> tutorial for that.
    2. You want to use an existing function module in your program. In the code of your program in SE38, click the button <i>Pattern</i>. On the pop-up, give the name of the function module that you wish to use in your program.
    Regards,
    Anand Mandalika.

  • How to replace obsolete download function module in ECC6.0?

    Hi Experts,
    How to replace obsolete download function module in ECC6.0?
    Thanks,
    Adi.

    Hi,
    DOWNLOAD is obsolete FM in ECC 6. To get the same functionality , we need to use
    CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG  method (It provides the File selection feature)
    and
    GUI_DOWNLOAD function module.(It downloads the internal table from program to presentation server)
    Please see the example below:
    Example:
    *CALL FUNCTION 'DOWNLOAD'
              EXPORTING
                   FILENAME            = p_filename
                   FILETYPE            = ‘DAT’
              TABLES
                   DATA_TAB            = T_DOWNL
              EXCEPTIONS
                   INVALID_FILESIZE    = 1
                   INVALID_TABLE_WIDTH = 2
                   INVALID_TYPE        = 3
                   NO_BATCH            = 4
                   UNKNOWN_ERROR       = 5
                   OTHERS              = 6.
    *End of deletion CH01-
    Replacement Method for above code:
    DATA: l_filename    TYPE string,
           l_filen       TYPE string,
           l_path        TYPE string,
           l_fullpath    TYPE string,
           l_usr_act     TYPE I.
    l_filename = P_filename.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
      EXPORTING
        DEFAULT_FILE_NAME    = l_filename
      CHANGING
        FILENAME             = l_filen
        PATH                 = l_path
        FULLPATH             = l_fullpath
        USER_ACTION          = l_usr_act
      EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        NOT_SUPPORTED_BY_GUI = 3
        others               = 4.
    IF sy-subrc = 0
          AND l_usr_act <>
          CL_GUI_FRONTEND_SERVICES=>ACTION_CANCEL.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = l_fullpath
       FILETYPE                        = 'DAT'
      TABLES
        DATA_TAB                        = T_DOWNL
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22.

  • How can i use reuse_alv_fieldcatalog_merge function module

    I am using below steps for populating the final internal table.How can I use reuse_alv_fieldcatalog_merge function module in the place of declaring all these fields.How canI put title of the report in reuse_alv_fieldcatalog_merge function module.
    FORM BUILD_FIELDCATALOG .
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'KUNNR'.
      FIELDCAT-SELTEXT_M = 'Customer Name'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VBELN'.
      FIELDCAT-SELTEXT_M = 'Invoice Reference'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VKBUR'.
      FIELDCAT-SELTEXT_M = 'Sales Office'.
      FIELDCAT-JUST      = 'L'.
    FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VKGRP'.
      FIELDCAT-SELTEXT_M = 'Sales Person'.
      FIELDCAT-JUST      = 'L'.
    FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'POSNR'.
      FIELDCAT-SELTEXT_M = 'Item No'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FIANL'.
      FIELDCAT-FIELDNAME = 'ARKTX'.
      FIELDCAT-SELTEXT_M = 'Item Description'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.

    Hello,
    It is very easy to use reuse_alv_fieldcatalog_merge.
    You try this it will work.
    example
    data:
    DATA : gv_repid        TYPE syrepid VALUE sy-repid .  " Report id
      PERFORM set_field_catalog USING gst_struct CHANGING lst_fieldcat.
    FORM set_field_catalog  USING uv_tab TYPE slis_tabname
                         CHANGING  xt_fieldcatalog TYPE slis_t_fieldcat_alv.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = gv_repid
          i_internal_tabname     = uv_tab
          i_inclname             = gv_repid
        CHANGING
          ct_fieldcat            = xt_fieldcatalog
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 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.
      ENDIF.
    ENDFORM.                    " set_field_catalog_spec

  • How to use SWC_CREATE_OBJECT in Function Module

    Hi All,
    I need to create a one function module to fill the work flow container field. this work flow builder had only one task, that task is triggering through QM Action box. I need to maintain this function module in AM Action box, FM when saving field.
    Please help me how to create a new function module in QM Acion box. When run the QM02 with usage decesion option is triggered Associated task is triggering, now how i will pass the notification number to work flow container.
    Please help me

    I think you can
    SWC_CREATE_OBJECT 'QMObject' Object Key
    Or you can pass the QM number to the Workflow and use GENERICINSTANTIATE Method of Business Object SYSTEM to instantiate the QM Business Object.
    Thanks
    Arghadip

  • How can i use this  function module

    Hai
    How can i use this function module /SAPHT/SALES_ORDER_READ, already apply the some parameters in this function module, but it shows the error , please tell me, how to declare the parameters in this function module ,
    thanks
    neelima

    Hi
    For a particular sales order,you have to pass the order number and the item number in the sales order.
    It will display the rest of the values which u can capture them using internal tables.
    Regards,
    Vishwa.

  • How to create EXCEPTION in function module

    hi experts,
              how to create exeptions in function module i want step by step.
    regards,
    chaitu

    hi,
    Raising Exceptions
    There are two ABAP statements for raising exceptions. They can only be used in function modules:
    RAISE except.
    und
    MESSAGE.....RAISING except.
    The effect of these statements depends on whether the calling program handles the exception or not. The calling program handles an exception If the name of the except exception or OTHERS is specified after the EXCEPTION option of the CALL FUNCTION statement.
    If the calling program does not handle the exception
    ·         The RAISEstatement terminates the program and switches to debugging mode.
    ·         The MESSAGE..... RAISING statement displays the specified message. Processing is continued in relation to the message type.
    If the calling program handles the exception, both statements return control to the program. No values are transferred. The MESSAGE..... RAISING statement does not display a message. Instead, it fills the system fields sy-msgid, sy-msgty, sy-msgno , and SY-MSGV1 to SY-MSGV4.
    Source Code of READ_SPFLI_INTO_TABLE
    The entire source code of READ_SPFLI_INTO_TABLE looks like this:
    FUNCTION read_spfli_into_table.
    ""Local Interface:
    *"       IMPORTING
    *"             VALUE(ID) LIKE  SPFLI-CARRID DEFAULT 'LH '
    *"       EXPORTING
    *"             VALUE(ITAB) TYPE  SPFLI_TAB
    *"       EXCEPTIONS
    *"              NOT_FOUND
      SELECT * FROM spfli INTO TABLE itab WHERE carrid = id.
      IF sy-subrc NE 0.
        MESSAGE e007(at) RAISING not_found.
      ENDIF.
    ENDFUNCTION.
    The function module reads all of the data from the database table SPFLI where the key field CARRID is equal to the import parameter ID and places the entries that it finds into the internal table spfli_tab. If it cannot find any entries, the exception NOT_FOUND is triggered with MESSAGE ... RAISING. Otherwise, the table is passed to the caller as an exporting parameter.
    Calling READ_SPFLI_INTO_TABLE
    The following program calls the function module READ_SPFLI_INTO_TABLE:
    REPORT demo_mod_tech_fb_read_spfli.
    PARAMETERS carrier TYPE s_carr_id.
    DATA: jtab TYPE spfli_tab,
          wa   LIKE LINE OF jtab.
    CALL FUNCTION 'READ_SPFLI_INTO_TABLE'
         EXPORTING
              id        = carrier
         IMPORTING
              itab      = jtab
         EXCEPTIONS
              not_found = 1
              OTHERS    = 2.
    CASE sy-subrc.
      WHEN 1.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno.
      WHEN 2.
        MESSAGE e702(at).
    ENDCASE.
    LOOP AT jtab INTO wa.
      WRITE: /  wa-carrid, wa-connid, wa-cityfrom, wa-cityto.
    ENDLOOP.
    The actual parameters carrier and jtab have the same data types as their corresponding interface parameters in the function module. The exception NOT_FOUND is handled in the program. It displays the same message that the function module would have displayed had it handled the error.
    Hope this is helps,Do reward.

  • Any Class or Function Module..?

    Hi,
    I have a requirement to update some Infotypes when the user updates the salary package from portal.
    Is there any class or Function Module available?
    Pls let me know.
    Thanks,
    KK
    Moderator Message: Thread locked. Points unassigned.
    Edited by: Suhas Saha on Sep 29, 2011 8:38 PM

    Hello,
    I had a similar requirement earlier and I've used the Function modules listed below to update the IT0008, IT0014 & IT0589 respectively.
    HR_SPA_FILL_IT0014_STRUCTURE
    HR_SPA_FILL_IT0008_STRUCTURE
    HR_SPA_FILL_IT0589_STRUCTURE
    Hope this helps.
    Regards,
    Venkata Phani Prasad K

  • 1...how to find that a function module belongs to normal function module or

    Hi to all.........
    1...how to find that a function module belongs to normal function module or remote enabled function module?
    Thanks and regards,
    K.Swaminath reddy

    Hi Swaminath,
    Go to Transaction SE37.
    In The Remote enabled function module, in the Attribute tab radio Button "Remote Enabled module will be selected and in the Normal Function Module, Normal Function Module will be selected.
    Regards,
    Mukesh Kumar

Maybe you are looking for

  • Simple math and a variable in an mc instance name

    i have several movie clips with instance names in the format of screened1, screened2, screened3, and so on. i am trying to reference a movie clip as shown below, but it's not working. what am i doing wrong? how do i fix it? this.screened[numOfItems-8

  • In SD, how to get address etc. for a commercial Partner via ADDNR

    Hello all, I am new to SD (and new to ABAP for that matter) so have a lot to learn. I am to write a report program to produce a list of documents containing information about commercial partners and their full address. That is to say, town, country,

  • How do you display a image in apex

    I have a trouble for a long time.. I can't load a image in apex.. I do a lot of things but it never give result correctly some could help me.. Thank u....

  • Errors while testing

    Hi. I created a pretty simple sharedWhiteboard app in Flex (as an adobe AIR app). Pretty much used the sample code from Ryan Stewarts article on afcs. The app works fine when I run it from my desktop. I tried to test the "shared" part by debugging th

  • Treo 755P Expense Report Problems

    I have tried two expense report programs for my Treo 755P and have been frustrated with both. The first, Expense Report Wizard, wouldn't run. After a month of back and forth I asked for a refund. The second, Expense EZ, loads on the Treo, doesn't app