Material batch characteristics

Hi all,
             I have a requirement to fetch the material batch characteristics with delivery number as input and print the characteristics for the corresponding batches. Can you please say me the logic to fetch the details ? It is an urgent requirement..
Thanks & Regards,
RamaKrishnan .T

Hi
See the sample code for fetching the BAtch characteristics of Material
report z21311r_batch_char no standard page heading
                          line-size  132
                          line-count 58(1)
                          message-id mm.
Declaration for Tables
tables: mara,    " Material Master
        mard,    " Storage Location Data for Material
        t001w,   " Plants/Branches
        t001l,   " Storage Locations
        cabn,    " Characteristics
        inob.    " Link between Internal Number and Object
Declaration for Constants
constants : c_klart like ausp-klart value '023',     " Class Type
            c_obtab like inob-obtab value 'MCH1',    " Database Table
            c_flag  type c          value 'X',       " Flag
            c_c23   type i          value '23',      " Ratio
Constants for Ratio Categories
            c_13    type p decimals 2 value '13.00', " For Ratio 13
            c_1499  type p decimals 2 value '14.99', " For Ratio 14.99
            c_15    type p decimals 2 value '15.00', " For Ratio 15
            c_1699  type p decimals 2 value '16.99', " For Ratio  16.99
            c_17    type p decimals 2 value '17.00', " For Ratio 17
            c_1899  type p decimals 2 value '18.99', " For Ratio 18.99
            c_19    type p decimals 2 value '19.00', " For Ratio 19
            c_2099  type p decimals 2 value '20.99', " For Ratio 20.99
            c_21    type p decimals 2 value '21.00', " For Ratio 21
            c_2299  type p decimals 2 value '22.99', " For Ratio 22.99
            c_23    type p decimals 2 value '23.00', " For Ratio 23
            c_g23(4) type c value '>=23',            " For Ratio >=23
            c_ratio(5) value 'RATIO',                  " For Ratio
Constants for Storing Selected item field information
            c_cursor1(15) value 'I_OUTPUT1-MEINS',   " For Selected Base
                                                     " Unit of Measure
            c_cursor2(15) value 'I_OUTPUT1-MATNR',   " For Selected Base
                                                     " Material Number
            c_cursor3(15) value 'I_OUTPUT1-MAKTX',   " For Selected Base
                                                     " Material Des.
            c_cursor4(15) value 'I_OUTPUT1-CLABS',   "For Selected Base
                                                     " Stock Value
            c_cursor5(15) value 'I_OUTPUT1-ATFLV',   " For Selected Base
                                                    " Char.Value (Ratio)
            c_cursor6(5) value 'C_G23'.
Declaration for Global Variables
data : g_exit  type c,                            " Flag
       g_clabs1(16) type c,                       " Quantity
       g_clabs(18)  type c,                       " Quantity
       g_cursor(15) type c,                       " Cursor field name
       g_matnr     type mara-matnr,               " Material Number
       g_werks     type mchb-werks,               " Plant
       g_atinn(30) type c.                        " Character.
Declaration for Internal tables
Internal table to hold Batch Stock data
data : begin of i_mchb occurs 0,
         matnr like mchb-matnr,      " Material Number
         werks like mchb-werks,      " Plant
         lgort like mchb-lgort,      " Storage Location
         charg like mchb-charg,      " Batch Number
         clabs like mchb-clabs,      " Stock Value
         meins like mara-meins,      " Unit of measure
         atflo like ausp-atflv,      " Char.Value (Ratio)
         atflv like ausp-atflv,      " Char.Value (Ratio)
       end of i_mchb.
Internal table to hold Secondary List data
data : begin of i_mchb1 occurs 0,
         werks like mchb-werks,      " Plant
         matnr like mchb-matnr,      " Material Number
         lgort like mchb-lgort,      " Storage Location
         charg like mchb-charg,      " Batch Number
         atinn like ausp-atinn,      " Char.Value
         clabs like mchb-clabs,      " Stock Value
         atflo like ausp-atflv,      " Char.Value (Ratio)
         atflv like ausp-atflv,      " Char.Value (Ratio)
       end of i_mchb1.
Internal table to get the Plant Name
data : begin of i_plant occurs 0,
         werks like t001w-werks,     " Plant
         name1 like t001w-name1,     " Name
       end of i_plant.
Internal table to get the Material Description
data : begin of i_makt occurs 0,
         matnr like makt-matnr,      " Material
         maktx like makt-maktx,     " Description
       end of i_makt.
Internal table to hold AUSP data
data : begin of i_ausp occurs 0,
         objek like ausp-objek,      " Object No
         atinn like cabn-atinn,      " Characteric value
         atflv like ausp-atflv,      " Characteristic Value
       end of i_ausp.
Internal table to hold output data
data : begin of i_output occurs 0,
         atinn like cabn-atinn,      " Characteric value
         werks like mchb-werks,      " Plant
         matnr like mchb-matnr,      " Material Number
         atnam like cabn-atnam,      " Characteristic
         atflv like ausp-atflv,      " Char.Value (Ratio)
         name1 like t001w-name1,     " Plant Description
         maktx like makt-maktx,      " Material Description
         clabs like mchb-clabs,      " Stock Value
         meins like mara-meins,      " Base Unit of Measure
       end of i_output.
Internal table to hold final Output data
data : begin of i_output1 occurs 0,
         atinn like cabn-atinn,      " Characteric value
         werks like mchb-werks,      " Plant
         matnr like mchb-matnr,      " Material Number
         atnam like cabn-atnam,      " Characteristic
         atflv(32) type c,           " Char.Value (Ratio)
         name1 like t001w-name1,     " Plant Description
         maktx like makt-maktx,      " Material Description
         clabs like mchb-clabs,      " Stock Value
         meins like mara-meins,      " Base Unit of Measure
       end of i_output1.
       Selection screen
selection-screen begin of block b1 with frame title text-001.
select-options: s_werks for t001w-werks obligatory,  " Plant
                s_lgort for t001l-lgort,             " Stor.Location
                s_matnr for mara-matnr  obligatory,  " Material No
                s_atinn for cabn-atinn.              " Character.
selection-screen end of block b1.
At selection screen
at selection-screen.
Validation of Selection Screen Fields
  perform validate_screen.
Start of selection
start-of-selection.
Get the Material and Batch Stock data from MARA and MCHB Tables
  perform get_mat_stock_data.
Get the Material Group Text and Plant Name from T023T and T001W Tables
  perform get_plant_grp_data.
Append the data into final Output Internal Table after getting the
Characteristic Values data from INOB and AUSP Tables
  perform append_final_data.
Processing if the Characteristics contain 'RATIO'
  perform collect_ratio.
End-of-Page
end-of-page.
  write /1(125) sy-uline.
End of selection
end-of-selection.
  if g_exit <> c_flag.
Display the Report Output data
    perform display_report.
  endif.
Top-of-Page
top-of-page.
Write the Report and Column Headings
  perform get_headings.
at line-selection
at line-selection.
  if sy-lsind = 1.
    perform display_batch.
  endif.
Top of page during line-selection
top-of-page during line-selection.
  perform heading_seclist.
      Form validate_screen
Validation of Selection Screen fields
form validate_screen.
Validation of Plant
  clear t001w.
  if not s_werks[] is initial.
    select werks
      into t001w-werks
      from t001w
      up to 1 rows
      where werks in s_werks.
    endselect.
    if sy-subrc <> 0.
      message e899 with 'Enter Valid Plant'(002).
    endif.
  endif.
Validation of Material Number
  clear mara.
  if not s_matnr[] is initial.
    select matnr
      into mara-matnr
      from mara
      up to 1 rows
      where matnr in s_matnr.
    endselect.
    if sy-subrc <> 0.
      message e899 with 'Enter Valid Material'(003).
    endif.
  endif.
Validation of Storage Location
  clear t001l.
  if not s_lgort[] is initial.
    select lgort
      into t001l-lgort
      from t001l
      up to 1 rows
      where lgort in s_lgort.
    endselect.
    if sy-subrc <> 0.
      message e899 with 'Enter Valid Storage Location'(004).
    endif.
  endif.
Validation of Characteristic Value
  clear cabn.
  if not s_atinn[] is initial.
    select atinn
      into cabn-atinn
      from cabn
      up to 1 rows
      where atinn in s_atinn.
    endselect.
    if sy-subrc <> 0.
      message e899 with 'Enter Valid Characteristic Value'(005).
    endif.
  endif.
Validation of Plant, Material and Storage Location
  clear mard.
  select matnr werks lgort
    into (mard-matnr, mard-werks, mard-lgort)
    from mard
    up to 1 rows
    where matnr in s_matnr and
          werks in s_werks and
          lgort in s_lgort.
  endselect.
  if sy-subrc <> 0.
    message e899 with 'No Data found for the Selection Criteria'(006).
  endif.
endform.                          "validate_screen
*&      Form  get_headings
Write the Report and Column Headings
form get_headings.
  data: l_repid type sy-repid.
  l_repid =  sy-repid.
  call function 'Y_STANDARD_HEADING'
       exporting
            repid    = l_repid
            heading1 = sy-title.
  write:/1(125) sy-uline.
  format color col_heading on.
  write : /1  sy-vline,  2(18)   'Material Number'(008) centered,
          20  sy-vline,  21(40)  'Material Description'(011) centered,
          61  sy-vline,  62(22)  'Ratio'(009) centered,
          84  sy-vline,  85(18)  'Quantity'(010) centered,
         103  sy-vline, 104(20)  'Base Unit of Measure'(015) centered,
         125  sy-vline.
  write:/1(125) sy-uline.
  format color off.
endform.                    "get_headings
*&      Form  get_mat_stock_data
Get the Material and Batch Stock data from MARA and MCHB Tables
form get_mat_stock_data.
  clear: i_mchb,i_output, i_output1.
  refresh: i_mchb,i_output, i_output1.
  select a~matnr       " Material Number
         b~werks       " Plant
         b~lgort       " Storage Location
         b~charg       " Batch Number
         b~clabs       " Stock Value
         a~meins       " Base Unit of Measure
      into table i_mchb
      from mara as a inner join mchb as b
      on amatnr eq bmatnr
      where b~matnr in s_matnr and
            b~werks in s_werks and
            b~lgort in s_lgort.
  if sy-subrc <> 0.
    g_exit = c_flag.
    message s899 with 'No Data found for the Selection Criteria'(006).
    stop.
  endif.
  sort i_mchb by matnr werks lgort charg.
endform.                    " get_mat_stock_data
*&      Form  get_plant_grp_data
Get the Material Group Text and Plant Name from T023T and T001W
form get_plant_grp_data.
  if not i_mchb[] is initial.
Get the Plant Description from t001w Table
    clear i_plant.
    refresh i_plant.
    select werks      " Plant
           name1      " Name
      into table i_plant
      from t001w
      for all entries in i_mchb
      where werks = i_mchb-werks.
Get the Material Description from MAKT Table
    clear i_makt.
    refresh i_makt.
    select matnr      " Material number
           maktx      " Material Description
      into table i_makt
      from makt
      for all entries in i_mchb
      where matnr = i_mchb-matnr and
            spras = sy-langu.
    sort i_plant by werks.
    delete adjacent duplicates from i_plant comparing werks.
    sort i_makt by matnr.
    delete adjacent duplicates from i_makt comparing matnr.
  endif.
endform.                   "form get_plant_grp_data.
*&      Form  append_final_data
Append the data into final Internal Table
form append_final_data.
  data : l_matbatch(28),
         l_tabix like sy-tabix.
  if not i_mchb[] is initial.
    loop at i_mchb.
      l_tabix = sy-tabix.
      clear l_matbatch.
      concatenate i_mchb-matnr i_mchb-charg into l_matbatch.
      move-corresponding i_mchb to i_output.
Get the Plant Description from i_plant Table
        read table i_plant with key werks = i_mchb-werks binary search.
        if sy-subrc = 0.
          i_output-name1 = i_plant-name1.
        endif.
Get the Material Description from i_makt Table
      read table i_makt with key matnr = i_mchb-matnr binary search.
      if sy-subrc = 0.
        i_output-maktx = i_makt-maktx.
      endif.
Get the Characteristic Values data from INOB and AUSP Tables
      clear inob.
      select single cuobj from inob
          into inob-cuobj
          where klart = c_klart and
                obtab = c_obtab and
                objek = l_matbatch.
      if sy-subrc = 0.
        select objek
               atinn
               atflv
           from ausp
           into table i_ausp
           where objek = inob-cuobj and
                 atinn in s_atinn   and
                 klart = c_klart.
        sort i_ausp by objek atinn.
        loop at i_ausp.
          clear cabn.
          select single atinn atnam from cabn
                     into (cabn-atinn,cabn-atnam)
                     where atinn = i_ausp-atinn.
          if sy-subrc = 0.
If the ratio value is between 13-14.99, display 13
            if cabn-atnam cs c_ratio.
              if i_ausp-atflv between c_13 and c_1499.
                i_mchb-atflo = i_ausp-atflv.
                i_mchb-atflv = c_13.
If the ratio value is between 15-16.99, display 15
              elseif i_ausp-atflv between c_15 and c_1699.
                i_mchb-atflo = i_ausp-atflv.
                i_mchb-atflv = c_15.
If the ratio value is between 17-18.99, display 17
              elseif i_ausp-atflv between c_17 and c_1899.
                i_mchb-atflo = i_ausp-atflv.
                i_mchb-atflv = c_17.
If the ratio value is between 19-20.99, display 19
              elseif i_ausp-atflv between c_19 and c_2099.
                i_mchb-atflo = i_ausp-atflv.
                i_mchb-atflv = c_19.
If the ratio value is between 21-22.99, display 21
              elseif i_ausp-atflv between c_21 and c_2299.
                i_mchb-atflo = i_ausp-atflv.
                i_mchb-atflv = c_21.
If the ratio value is greater than or equal to 23, display 23
              elseif i_ausp-atflv >= c_23.
                i_mchb-atflo = i_ausp-atflv.
                i_mchb-atflv = c_23.
              endif.           " Condition for RATIO values
            else.              " If characteristic does contain RATIO
              i_mchb-atflv = i_ausp-atflv.
            endif.
            i_output-atinn = cabn-atinn.
            i_output-atnam = cabn-atnam.
            i_output-atflv = i_ausp-atflv.
            i_mchb1-matnr = i_mchb-matnr.
            i_mchb1-werks = i_mchb-werks.
            i_mchb1-lgort = i_mchb-lgort.
            i_mchb1-charg = i_mchb-charg.
            i_mchb1-clabs = i_mchb-clabs.
            i_mchb1-atinn = i_ausp-atinn.
            i_mchb1-atflo = i_mchb-atflv.
            i_mchb1-atflv = i_ausp-atflv.
            append : i_output, i_mchb1.
            clear i_mchb1.
            modify i_mchb index l_tabix transporting atflo atflv .
          endif.
        endloop.
      endif.
    endloop.
  endif.
Checking whether the table is filled or not
  if not i_output[] is initial.
    sort i_output by atinn werks matnr atflv.
  else.
    g_exit = c_flag.
    message s899 with 'No Data found for the Selection Criteria'(006).
  endif.
Delete the records where RATIO is less than 13.
  delete i_output where atnam cs c_ratio and atflv lt c_13.
endform.                    "append_final_data
*&      Form  display_report
Display the Report Output data
form display_report.
data: l_tabix like sy-tabix.
  loop at i_output1.
    l_tabix = sy-tabix.
At new Characteristic
     at new atinn.
      read table i_output1 index l_tabix.
      format color 1 intensified on.
      write: /1 sy-vline, 2(20) 'Characteristic Name:'(007),
             23(40) i_output1-atnam,
             125 sy-vline.
      format color off.
      format color 4 intensified on.
      write: /1 sy-vline, 2(20) 'Plant Name         :'(022),
             23(4) i_output1-werks, 29(30) i_output1-name1,
             125 sy-vline.
      format color off.
      write /1(125) sy-uline.
    endat.
    clear: g_clabs, g_clabs1.
    format color col_normal.
    write :/1 sy-vline,  2(18)   i_output1-matnr,
           20 sy-vline,  21(40)  i_output1-maktx,
           61 sy-vline.
    if i_output1-atflv = c_c23.
      write: 62(22)  c_g23 centered.
    else.
      shift i_output1-atflv left deleting leading space.
      write: 62(22)  i_output1-atflv centered.
    endif.
    write:  84     sy-vline,
           103     sy-vline,
           110(5)  i_output1-meins.
If the quantity value is negative
    if i_output1-clabs ge 0.
      write: 85(18) i_output1-clabs unit i_mchb-meins,
            125     sy-vline.
    else.
      i_output1-clabs = - i_output1-clabs.
      write i_output1-clabs unit i_mchb-meins to g_clabs1.
      condense g_clabs1.
      concatenate '(' g_clabs1 ')' into g_clabs separated by space.
      write: 85(18) g_clabs right-justified,
           125 sy-vline.
    endif.
    format color off.
    hide : i_output1.
    new-line.
At end of material
    at end of matnr.
      sum.
      move : i_output1-matnr to g_matnr.
      format color 3 intensified on.
      write /1(125) sy-uline.
      write :/1 sy-vline,  2(25) 'Total for Material      :'(012),
             28(18) g_matnr.
      if i_output1-clabs ge 0.
        write: 85(18) i_output1-clabs  unit i_mchb-meins,
        125 sy-vline.
      else.
        i_output1-clabs = - i_output1-clabs.
        write i_output1-clabs unit i_mchb-meins to g_clabs1.
        condense g_clabs1.
        concatenate '(' g_clabs1 ')' into g_clabs separated by space.
        write: 85(18) g_clabs right-justified,
             125 sy-vline.
      endif.
      write: 125 sy-vline.
      format color off.
      write /1(125) sy-uline.
    endat.
At end of plant
    at end of werks.
      sum.
      move : i_output1-werks to g_werks.
      format color 3 intensified off.
      write :/1 sy-vline,  2(25) 'Total for Plant          :'(013),
             28(4) g_werks.
      if i_output1-clabs ge 0.
        write:  85(18) i_output1-clabs  unit i_mchb-meins,
        125 sy-vline.
      else.
        i_output1-clabs = - i_output1-clabs.
        write i_output1-clabs unit i_mchb-meins to g_clabs1.
        condense g_clabs1.
        concatenate '(' g_clabs1 ')' into g_clabs separated by space.
        write: 85(18) g_clabs right-justified,
             125 sy-vline.
      endif.
      format color off.
      write /1(125) sy-uline.
    endat.
At end of  characteristic
    at end of atinn.
      read table i_output1 index l_tabix.
      sum.
      format color 3 intensified on.
      write :/1 sy-vline,  2(25) 'Total for Characteristic:'(014),
             28(25) i_output1-atnam.
      if i_output1-clabs ge 0.
        write:  85(18) i_output1-clabs  unit i_mchb-meins,
        125 sy-vline.
      else.
        i_output1-clabs = - i_output1-clabs.
        write i_output1-clabs unit i_mchb-meins to g_clabs1.
        condense g_clabs1.
        concatenate '(' g_clabs1 ')' into g_clabs separated by space.
        write: 85(18) g_clabs right-justified,
             125 sy-vline.
      endif.
      format color off.
      write /1(125) sy-uline.
    endat.
  endloop.
endform.                    " display_report
*&      Form  DISPLAY_BATCH
     Display the batch details for the seclected material            *
form display_batch.
Get the batch details for the selected material
  get cursor field g_cursor.
  if g_cursor = c_cursor1 or
     g_cursor = c_cursor2 or
     g_cursor = c_cursor3 or
     g_cursor = c_cursor4 or
     g_cursor = c_cursor5 or
     g_cursor = c_cursor6.
    format color 3.
    write: /1 sy-vline,
            2(17) 'Material Number :'(020),
           20(17) i_output1-matnr,
           94 sy-vline.
    format color off.
    write /1(94) sy-uline.
    loop at i_mchb1 where matnr = i_output1-matnr and
                          atinn = i_output1-atinn and
                          atflo = i_output1-atflv.
      format color col_normal.
      shift i_mchb1-charg left deleting leading '0'.
      write :/1 sy-vline,  2(16) i_mchb1-lgort centered,
             18 sy-vline, 19(17) i_mchb1-charg centered,
             36 sy-vline.
      if i_output1-atnam cs c_ratio.
        write: 37(29) i_mchb1-atflv
                       exponent 0 decimals 2 centered.
      else.
        write : 37(29) i_mchb1-atflv
                      exponent 0 decimals 0 centered.
      endif.
      write : 66 sy-vline, 67(27) i_mchb1-clabs unit i_mchb-meins,
              94 sy-vline.
      format color off.
    endloop.
    write /1(94) sy-uline.
  else.
    message s899 with 'Invalid cursor position'(016).
    exit.
  endif.
endform.                    " DISPLAY_BATCH
*&      Form  HEADING_SECLIST
      Write the Column Headings for Interactive Report
form heading_seclist.
  write /1(94) sy-uline.
  format color col_heading on.
  write :/1 sy-vline,  2(16) 'Storage Location'(021),
         18 sy-vline, 19(17) 'Batch Number'(017) centered,
         36 sy-vline, 37(29) 'Characteristic Value'(018) centered,
         66 sy-vline, 67(27) 'Quantity'(019) centered,
         94 sy-vline.
  write /1(94) sy-uline.
  format color off.
endform.                    " HEADING_SECLIST
*&      Form  COLLECT_RATIO
      Display the Characteristic ratio data
form collect_ratio.
  loop at i_output.
    clear g_atinn.
    i_output1-atinn = i_output-atinn.
    i_output1-atnam = i_output-atnam .
    i_output1-werks = i_output-werks.
    i_output1-name1 = i_output-name1.
    i_output1-matnr = i_output-matnr.
    i_output1-maktx = i_output-maktx.
    i_output1-clabs = i_output-clabs.
    i_output1-meins = i_output-meins.
    call function 'CONVERSION_EXIT_ATINN_OUTPUT'
         exporting
              input  = i_output-atinn
         importing
              output = g_atinn.
    if g_atinn cs c_ratio.
If the ratio value is between 13-14.99, display 13
      if i_output-atflv between c_13 and c_1499.
        i_output1-atflv = c_13.
If the ratio value is between 15-16.99, display 15
      elseif i_output-atflv between c_15 and c_1699.
        i_output1-atflv = c_15.
If the ratio value is between 17-18.99, display 17
      elseif i_output-atflv between c_17 and c_1899.
        i_output1-atflv = c_17.
If the ratio value is between 19-20.99, display 19
      elseif i_output-atflv between c_19 and c_2099.
        i_output1-atflv = c_19.
If the ratio value is between 21-22.99, display 21
      elseif i_output-atflv between c_21 and c_2299.
        i_output1-atflv = c_21.
If the ratio value is greater than or equal to 23, display 23
      elseif i_output-atflv >= c_23.
        i_output1-atflv = c_23.
      endif.
      write i_output1-atflv to i_output1-atflv .
    else.
      write i_output-atflv to i_output1-atflv exponent 0 decimals 0.
    endif.
    collect i_output1.
    clear   i_output1.
  endloop.
  sort i_output1 by atinn werks matnr atflv.
endform.                    " COLLECT_RATIO
<b>Reward points for useful Answers</b>
Regards
Anji

Similar Messages

  • Copy of Batch characteristics value from material master to Batch

    Hi Gurus,
    I have maintained some values in the characteristics under batch classification in material master and want to copy the values in batch characteristics during batch creation at process order release.
    Can any one help me to achieve this in standard way?
    Thanks
    Sandip

    Hi,
    Try to understand the batch classification functionality...In batch classification characteristic values changes from batch to batch...Values should not be maintained in the material master...it does not have any meaning...in the material master we need to assign only the batch class with class type 023 in classification view ...no need to assign the values there....Batch classification means characteristics values differs from batch to batch...
    Thanks
    Kumar 

  • Getting Batch from Packaging material Number (Batch characteristics)

    Hi Gurus,
    I've a requirement.
    i want to know the batches where the packaging material is used.
    Packaging material is one of the batch characteristics, if i assign the same packaging material number in one batch, that should not be assigned to another batch.
    I want to know in which batches the same packaging material is assigned.
    Please guide me?? which table has the links for batch, packaging material number and main material number???
    How can i find this???
    Thanks in advance.
    Adi.

    we can use the MMCL transaction/BMBC to see this.
    In MMCL we have a FM to get the Data.

  • Batch Characteristics copying from material HALB to FERT

    Dear Experts ,
    I have one typical scenario, in whcich we want copy the batch Characteristics semifinsihed  product to finished product.
    ( these Characteristics recorded by quality dept for semifinshed products and updated in batch)
    Please let me know the solutions.
    Regards
    Sandeep

    Hi Sandeep,
    This can be achieved by Use of Batch Derivation Functionality.
    Go to t.code DVSP and activate Batch Derivation.
    Now ,First Create Sander Condition by usng T.code DVS1,
    Assign Material type (Halb) and assign required characteristic for which you want to transfer Batch value to Fert Code.
    Then create recipient condition by T.code DVR1.
    Assign material Type Fert to it and Characteristic which you have assign in T.code DVS1.
    This will work during Production Order or Process Order release.
    And for this you have do Batch Determination for Halb in Order itself
    Regards,
    Dhaval

  • Material and batch characteristics

    Hi All..
    For the material and the batch i want to retrieve the material characteristics and the batch characteristics.
    Are there any function modules or bapi's available to achieve this..
    Appreciate your help and will reward the helpful.

    Hi
    Try  BAPI_MATERIAL_GETLIST
    BAPI_MATERIAL_GET_DETAIL
    reward points if helpful
    Regards
    Srikanta Gope

  • MIGO : Error when copying batch characteristics

    Hi,
    I've some problem on MIGO Tcode when i want to copy the batch characteristics.
    I work with class type 022.
    I create a GR from PO. (movement 101). My item line contained sub-items (with BOM). So i would like to copy the batch characteristics in reference of component batch values.
    I've implemented the UE "EXIT_SAPMM07M_004".
    Case 1 : In this UE, i fill a standard internal table (named VALUES) with the characteristics names and values i want to resume.
    and i use the FM 'CLFM_OBJECT_CLASSIFICATION' with the father and the son batch information in UE, i go to MSC3n and all characteristics are copied (even those unwanted). But when i go to MCS2N,  i retrieve the expected values.
    Case 2 : Only use the internal table, but some characteristics are not maintained.
    Case 3 : Only use the FM, but no characteristics are reversed.
    Does anyone could help me ?
    Thanks in advance
    Best regards.

    Hi,
    Table and field used in additional data table should be related to the object than only it will work, for e.g. MCHA and ERDAT will work if you create a characteristcis and assign it to class type Batch (022/023) because MCHA table has Batch no. as primary key,
    this implies for using material specific table e.g. MARA , you should use characteristics with class type 001 (Material class) , try using with table MARC also
    Cheers
    Dheeraj

  • Updated Batch Characteristics on Order Release is not available in MSC3N

    Hi All,
    I have maintained the Class (023) and characteristics for Finished Material. When I am releasing the production order, I am assigning the values for batch characteristics (Custom defined characteristic) after that, If I go and see the corresponding batch in display mode (MSC3N) the value for the characteristic is not updated (entered value not available its blank).
    u2022     Automatic batch creation for the production order during the order releasing is happening exactly as per the configuration but the entered value for the characteristic is not available for the corresponding batch in change as well as display mode (MSC2N/MSC3N)
    Please guide to solve out this issue
    Thanks in Advance

    Hi Sanil,
               Thanks for your speedy reply.
    For me characteristics and all available as per the expectations but the updated value for the characteristcs on release is not sticking with the batch.
    Please guide me to solve out this issue.
    Thanks in Advance

  • Copying Batch Characteristics Value from Standard SAP Table Field

    Dear Experts,
    1. While creating a user-defined Batch Characteristics 'CREATED_BY' using ct04,  on the Additional Data tab, I filled  the following fields as follows:  Table Name = MCHA,  Field Name =ERNAM.
    'CREATED_BY' was then assigned to a batch Class TRIMMED (of class type 022).
    TRIMMED  was assigned to a batch managed material ADE245DD.     
    After posting co15 (confirmation of production order) for material ADE245DD, the value in table MCHA & field ERNAM is automatically copied into the Batch Characteristics value field of u2018CREATED_BYu2019  for the generated batch.
    2. But I am unable to achieve the same result when I create another Batch Characteristic with similar settings in the Additional Data tab as follows: Table Name = MARC, Field Name = DISPO.
    After doing co15, the value stored in table MARC and field DISPO does not get copied into the Batch Characteristics value.
    Please what do I need to do in Scenario 2 above to achieve the same result as in Scenario1?
    Regards

    Hi,
    Table and field used in additional data table should be related to the object than only it will work, for e.g. MCHA and ERDAT will work if you create a characteristcis and assign it to class type Batch (022/023) because MCHA table has Batch no. as primary key,
    this implies for using material specific table e.g. MARA , you should use characteristics with class type 001 (Material class) , try using with table MARC also
    Cheers
    Dheeraj

  • Batch Characteristics value in report

    I want to develop a custom report where material master batch characteristics value should be displayed.
    The report will display based on Process order No. In Process order AFPO table I am bringing MATNR, CHARG, WERKS information.
    Now, the MATNR is maintained with a batch classification of class type 001 (material class) one characteristic "Z_NUMERIC" and value is maintained as "22345".
    Now, in custom report I have to bring the 22345 no. In which Table I can get the information for material for 001 class type characteristics value?
    Please repond.

    You can find it in table ausp
    Regards,
    Dhaval

  • Retrival of  values based on Batch Characteristics

    Dear all
    I am maintining some characteristics for a material on Batch classes. Like to pull the total stock based on any 1 these characteristics.Kindly suggest what are the tables we can use for this and logic
    Thanx
    MK

    Hi,
    Please check these tables
    MCHA Batches
    MCH1 Batches
    MCHB Stock: batches
    CABN Characteristics ( o.a. batch/vendor)
    CABNT Characteristics description
    CAWN Characteristics ( o.a. material)
    CAWNT Characteristics description
    AUSP Characteristic Values
    Class types and objects :
    TCLAO Several class types for object
    TCLA Class types ( vb. lfa1 => v10 en 010)
    TCLAT Class type text
    TCLT Classifiable objects
    TCLC Classification status
    Links:
    INOB Link between Internal Number and Object
    KLAH Class header data
    KSSK Allocation Table: Object (vb.matnr) to Class
    KSML Characteristics for a class (internal number)
    Regards,
    Raj.

  • SD pricing based on Batch characteristics

    Hi,
    I have a requirement whereby the pricing in the billing document is dependent on the batches in the delivery document. Eg. For a single material, I may two batches each one having its % of impurities - 2% for the Batch 1, and 5% for Batch 2 in the delivery document. For this reason, Batch 1 should have Price 1 and Batch 2 should have Price 2 in the billing document. How will I configure this? At the time of Sales order, I do not know my exact price(since the batch details are not known), hence, I will be giving just a base price. The actual prices are to be calculated in the billing document based on batch characteristics(in the delivery document).
    I would appreciate your inputs.
    Regards,
    Tim

    Hi,
      I think you can maintain your condition record in VK11 on the following combinations:
       Material /Batch
    This access sequence can be created by making your own condition tables in transaction V/03.
    While doing billing ,you can carry out new pricing.
      Suppose you have a condition type PR00 in sales order and you are also maintaining access sequence for this purpose then this access sequences should be such that when you carry out pricing at billing the same values should not be copy to billing.
      Then the system would take the value of second access sequence from VK11.
      Your second access sequence will be Material/Batch and the condition in the billing document will be picked based on them.
    Regards
    Karan

  • Error in Uploading  Initial balance with Batch Characteristics!

    Dear Gurus,
    I have a material on which batch management and batch specific unit of measure is activated. I want to upload the initial balance thorugh MB1C. I have created a recording of MB1C. when i run the recording with the uplaod file, system opens a Coding block screen and does not open the Batch classification screen and does not take batch characteristics. Initially, in the recording there was no error.
    Help me ikn this.
    Thanks in advance.

    hi,
    the characteristics screen behaves strangely during a recording. i suggest you create the batch record separately. when you do a recording for this, HIGHLIGHT ALL THE CHARACTERISTICS, click on the magniying glass, and enter the values one by one.
    1) upload batch records (LSMW recording - as described above)
    2) upload stock balances (LSMW using BAPI)
    hope you figure this out. i recently did this in a project successfully.
    regards,
    marvin

  • Wiping out Old Batch Characteristics in MSC2N

    Hi,
          I have a requirement where I have to do a Material-To-Material Transfer (VLMOVE) and update the Batch Characteristics in a Custom Inbound Posting Program. Now, I am able to update the batch Characteristics for the new Material with the Characteristic Values received in the Inbound IDoc.
          However, I am unable to wipe out (Clear) all the Old Batch Characteristics for the Old material. Can somebody give me an idea as to how exactly do we go about clearing all the Batch Characteristics for a Material - Batch Number in MSC2N Transaction?
    Thanks and Regards,
    Venkat.

    Hi Konduri Venkata,
    Did you try below FMs ??
    BAPI_BATCH_CHANGE
    BAPI_OBJCL_CHANGE
    also search for BAPI_BATCH*
    u will get other bapis from it...
    OR else...
    at last u can have one more option is LSMW...
    because MSC2N is SAP Njoy Tcode so it wont allow BDC...
    Hope it will solve ur problem
    Reward points if useful...
    Thanks & Regards
    ilesh 24x7

  • Material Batch Characeristics

    Hi,
    In T-code MMBE we can see characteristics of material with batch number,description etc.....
    I want to print all those fields with quantity of each material.Pls advise how to get it?
    Is it possible to generate Zreport ?I've searched in CABN,CAWN,AUSP .....tables to find material characteristics but the link and the details are not correct as per my requirement.I tried with some FM too.I didn't get anything.
    Is there any standard report or BAPI to see all these fields with quantity?
    Pls help me in providing tables which contains material characteristics based on Material Batch as it shows in MMBE.
    I've tried the below BAPI's but I didn't find my result.
    CLAF_CLASSIFICATION_OF_OBJECTS
    BAPI_MATERIAL_GET_DETAIL
    BAPI_OBJCL_GETDETAIL
    Please post some examples.
    thanks & regards
    sankar.

    hi ,
               Try this
    BAPI_CLASS_GET_CHARACTERISTICS
    Regards,
    Vind

  • Copy manufacturing date to batch characteristics in REM confirmation

    Hi to everyone,
    I have a situation that when goods receipt occurs with movement 131 in MFBF, manufacturing date is not updated in batch. How can I copy the value as batch characteristics?
    please advice,
    best regards..

    Hi,
    If you want the value as batch characteristic you need to:
    1. Create the characteristic in trn. CT04, with reference to field MCHA-ERSDA (or MCH1-ERSDA if your batch management is cross-plant)
    2. Create a class in trn. CL02 and include the characteristic in it.
    3. Assign the class to your material in Material Master.
    Hope it helps.
    Regards,
    mr.

Maybe you are looking for

  • Does anyone know why my finder window resizes when I enter time machine?

    Can anyone explain why my finder changes size when I enter time machine? I'm pretty sure this didn't happen on Snow Leopard but it does since I installed Lion. It's only a small glitch but it's rather annoying since I have positioned and resized the

  • Changed my email (login) now I can't disconnect from the older one

    Hi there I changed my email on Apple account and now I can't access the older one. What happens is that how the email has changed it can't find the old one that is settle up on the notebook and iphone. So I thought about disconnecting from the old em

  • I dropped my iPod in coffee and the backlight doesn't work.

    I dropped it in coffee and stupidly turned it on afterwards. It seemed 'done' for a few days but it dried out. (it was only half submerged for a few seconds). It was fine, other than the camera which is pooched, until today. Now the backlight doesnt

  • QTP can't read .mp4 files from JVC HM-100 cam...

    My QTP gives me the following message when I try to open an .mp4 file created with a JVC HM-100 camera: "The movie could not be opened. The movie contains some invalid data." VLC and iSkysoft (video converter) can read the file with no problem, so it

  • XRAID not appearing in RAID admin

    I've been having a problem for quite awhile now. Although both my RAID sets will mount properly on the desktop, I can not get then xRAID to appear when trying to add it to the Admin app. I have reset the controllers, and confirmed that the ethernet c