TRM_SET_BIN_COORDINATES is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Set bin coordinates With this report, you can set the xyz-coordinates of a set of storage bins to define your
If you would like to execute this report or see the full code listing simply enter TRM_SET_BIN_COORDINATES into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
LSET_BIN_COORDINATES - Maintain Storage Bins by selection
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: IV_DYNSL = D .
Selection Text: IV_LGBER = D .
Selection Text: IV_LGNUM = D .
Selection Text: IV_LGPLA = D .
Selection Text: IV_LGTYP = D .
Selection Text: IV_LPTYP = D .
Selection Text: IV_LZONE = D .
Selection Text: IV_XCORD = D .
Selection Text: IV_YCORD = D .
Selection Text: IV_ZCORD = D .
Title: Set Storage Bin Coordinates
Text Symbol: 001 = Warehouse Number
Text Symbol: 002 = Storage Type
Text Symbol: 003 = | Strge Bin | X-Coord. | Y-Coord. | Z-Coord. | Zone |
Text Symbol: 004 = Additional Selection Options for Storage Bins
Text Symbol: 100 = Set Storage Bin Coordinates
Text Symbol: S01 = Changes were saved.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LESI_SITE_DETERMINE CALL FUNCTION 'LESI_SITE_DETERMINE' EXPORTING iv_lgnum = iv_lgnum IMPORTING ev_site = lv_site EXCEPTIONS not_found = 1 OTHERS = 2.
L_BIN_DISPLAY CALL FUNCTION 'L_BIN_DISPLAY' EXPORTING i_lgnum = iv_lgnum i_lgtyp = iv_lgtyp i_lgpla = lt_lagp-lgpla.
ENQUEUE_ELLAGPE CALL FUNCTION 'ENQUEUE_ELLAGPE' EXPORTING lgnum = iv_lgnum lgtyp = iv_lgtyp EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_ELLAGPE CALL FUNCTION 'DEQUEUE_ELLAGPE' EXPORTING lgnum = iv_lgnum lgtyp = iv_lgtyp.
FREE_SELECTIONS_INIT CALL FUNCTION 'FREE_SELECTIONS_INIT' EXPORTING kind = lc_sel_kind expressions = it_old_select field_groups_key = ls_sel_view IMPORTING selection_id = cv_selectid where_clauses = ct_twhere expressions = ct_texpr field_ranges = ct_trange number_of_active_fields = cv_actnum TABLES tables_tab = lt_tables fields_tab = lt_fields EXCEPTIONS fields_incomplete = 1 fields_no_join = 2 field_not_found = 3 no_tables = 4 table_not_found = 5 expression_not_supported = 6 incorrect_expression = 7 illegal_kind = 8 area_not_found = 9 inconsistent_area = 10 kind_f_no_fields_left = 11 kind_f_no_fields = 12 too_many_fields = 13 OTHERS = 14.
FREE_SELECTIONS_DIALOG CALL FUNCTION 'FREE_SELECTIONS_DIALOG' EXPORTING selection_id = cv_selectid title = text-004 status = ic_status IMPORTING where_clauses = ct_twhere expressions = ct_texpr field_ranges = ct_trange number_of_active_fields = cv_actnum TABLES fields_tab = lt_fields EXCEPTIONS internal_error = 1 no_action = 0 selid_not_found = 5 illegal_status = 6 OTHERS = 7.
LTBN_ZONE_INFO_GET CALL FUNCTION 'LTBN_ZONE_INFO_GET' EXPORTING iv_locat = iv_site TABLES et_zones_info = lt_lzone_info[] t_zones = lt_zones[] EXCEPTIONS zone_info_not_maintained = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
TRM_SET_BIN_COORDINATES - Set Storage Bin Coordinates TRM_SET_BIN_COORDINATES - Set Storage Bin Coordinates TRM_NAVI - Program for object type TRM_NAVI : TRM_NAVI TRM_NAVI - Program for object type TRM_NAVI : TRM_NAVI TRM_COPY_T343_T343XYZ - Copy Storage Bin Definition Rules for Mass Maintenance TRM_COPY_T343_T343XYZ - Copy Storage Bin Definition Rules for Mass Maintenance