Hello Gurus, In the BDC i have to upload the negative values for every month for a plant as shown below. -10 -20 - 30 -40 -50 -60 -70 -80 -90 -100 -110 -120 but while uploading these values into BDC negative sign not showing in the output. Please help me out code is given below. This code is for 0 value, which also need to upload. please suggest me code need to change for negative values. LOOP AT wt_sumfinal INTO wa_temp1. wa_temp3-wbs = wa_temp1-wbs. wa_temp3-year = wa_temp1-year. wa_temp3-saknr = wa_temp1-saknr. IF wa_temp1-jan EQ '0'. MOVE wa_temp1-jan to wa_temp3-jan. CONDENSE wa_temp3-jan. ELSE. UNPACK wa_temp1-jan TO wa_temp3-jan. SHIFT wa_temp3-jan LEFT DELETING LEADING '0'. Thanks Sankil