cancel
Showing results for 
Search instead for 
Did you mean: 

Regardiing serial number creation

Former Member
0 Kudos

is there any FM or report to create/generate a serial number for products

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

will the below mentioned will auto generate serial number for a particular product

rajesh_akarte2
Active Participant
0 Kudos

Hi Vijay,

U can try

CALL FUNCTION 'NUMBER_GET_NEXT'

EXPORTING

nr_range_nr = '01'

object = lc_nr_range_obj_7d

quantity = lv_nrquan

  • subobject = lwa_marc-sernp

  • TOYEAR = '0000'

  • IGNORE_BUFFER = ' '

IMPORTING

number = lv_num_high_7d

quantity = lv_nrquan

  • RETURNCODE =

EXCEPTIONS

interval_not_found = 1

number_range_not_intern = 2

object_not_found = 3

quantity_is_0 = 4

quantity_is_not_1 = 5

interval_overflow = 6

buffer_overflow = 7

OTHERS = 8.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

This function module generates the automatic number.

The object parameter is the Serial no object which is created for searial no maintainance.

quantity parameter is the no of quantity of a material for which u want to create the serial no.

It will create the individual serial no for each quantity.

Reward if helpful.

Regards,

Rasjesh Akarte

Former Member
0 Kudos

use this funtion modul..

call fun 'INCREMENT_COUNTER'

Former Member
0 Kudos

CRS_EQUIPMENTCU_COLLECT_DATA Delta Download - Equi & serial number configuration

CRS_EQUIPMENTCU_RETRIEVE Retrieve configuratin data of equipment/serial number

CRS_MAP_EQUI_CFG_TO_BAPIMTCS Map equi & serial number config data to BAPIMTCS

IEP1 PM: Equipment

SERIALNUMBER_POST Update serial numbers

SERIAL_MASE_POST Update program for table MASE 'last numeric serial number for material'

IMS1 Serial Number Management

READ_MASE MASE update and allocation of next, purely numeric serial numbers

LMGT General stand alone functions

GET_UNPACK_SN Validation of serial number for unpacking

GET_WM_PACK_SN Validation of serial number for HU in WM for packing

QFPO Update modules for defects recording

QFPO_POST_QALS_SET_CHANGE Update serial number-related insp. lot data (UPDATE SET)

Please give me reward points...