cancel
Showing results for 
Search instead for 
Did you mean: 

Inventory - Paper driven counting checkboxes greyed out

jan_1904
Participant
0 Kudos
346

Hello everyone,

while doing a paper driven counting I get a problem that some checkboxes in the counting app are greyed out. I don't get the problem when I do a storage-bin-specific inventory. While doing the product-specific inventory the checkboxes about the status of the HU/Bin (HU empty, Bin empty, HU missing) are greyed out. I checked the customizing but can't find anything that would cause this.

I am thankful for every hint!

question-sap.png

Accepted Solutions (1)

Accepted Solutions (1)

Daniil
Active Contributor

Hi Jan, i guess it is a standard Inventory logic. Product inventory is Quant based. And "HU Empty" is HU Based. It works same way in RFUI.

      IF mo_lime_cust->get_pi_category( iv_doc_type ) = limpi_object.
/scwm/cl_rf_bll_srvc=>set_fcode_off( 'HUCOM' ).
/scwm/cl_rf_bll_srvc=>set_fcode_off( 'HUEMP' ).
/scwm/cl_rf_bll_srvc=>set_fcode_off( 'NOTEX' ).
/scwm/cl_rf_bll_srvc=>set_fcode_off( 'BNEMP' ).
/scwm/cl_rf_bll_srvc=>set_fcode_on( 'HUMIS' ).
ELSE.
/scwm/cl_rf_bll_srvc=>set_fcode_on( 'HUCOM' ).
/scwm/cl_rf_bll_srvc=>set_fcode_on( 'HUEMP' ).
/scwm/cl_rf_bll_srvc=>set_fcode_on( 'NOTEX' ).
/scwm/cl_rf_bll_srvc=>set_fcode_on( 'BNEMP' ).
/scwm/cl_rf_bll_srvc=>set_fcode_off( 'HUMIS' ).
ENDIF.
jan_1904
Participant
0 Kudos

Hi Daniil,

thanks for showing the code! I thought about the posibillity, that it is supposed to be that way. Thanks for confirming.

Answers (0)