If msg.payload in the object you posted is the value you require then change the function to use msg.payload.
in this example i have recreated the object you posted and fedd it into the altered function that targets msg.payload
[{"id":"79374974.a4c608","type":"inject","z":"5a245aa1.510164","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":120,"y":4140,"wires":[["cd76cbac.cb34"]]},{"id":"cd76cbac.cb34","type":"function","z":"5a245aa1.510164","name":"create object for testing","func":"msg = {\"topic\":\"PAC3\",\"messageId\":\"606f5271f53dcc48e91efbd7\",\"payload\":507,\"queueLengthByUnitId\":{\"unitId\":3,\"queueLength\":0},\"queueUnitId\":3,\"unitId\":3,\"modbusRequest\":{\"value\":1617908337460,\"unitid\":\"3\",\"fc\":4,\"address\":\"30775\",\"quantity\":\"2\",\"messageId\":\"606f5271f53dcc48e91efbd7\"},\"responseBuffer\":{\"data\":[0,507],\"buffer\":[0,0,1,251]},\"_msgid\":\"bd027958.c0bdf8\",\"originalPayload\":[0,507],\"specification\":{\"options\":{\"byteSwap\":[],\"resultType\":\"keyvalue\",\"singleResult\":true,\"msgProperty\":\"payload\",\"setTopic\":true},\"items\":[{\"type\":\"int32be\",\"name\":\"PAC3\",\"offset\":0,\"length\":1,\"offsetbit\":0,\"scale\":\"1\",\"mask\":\"\",\"id\":0,\"value\":507}]},\"values\":[507],\"objectResults\":{\"PAC3\":{\"type\":\"int32be\",\"name\":\"PAC3\",\"offset\":0,\"length\":1,\"offsetbit\":0,\"scale\":\"1\",\"mask\":\"\",\"id\":0,\"value\":507}},\"keyvalues\":{\"PAC3\":507},\"arrayResults\":[{\"type\":\"int32be\",\"name\":\"PAC3\",\"offset\":0,\"length\":1,\"offsetbit\":0,\"scale\":\"1\",\"mask\":\"\",\"id\":0,\"value\":507}],\"buffer\":[0,0,1,251]}\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":360,"y":4140,"wires":[["4d18ea91.fe6d24","dc737e2d.6fbe4"]]},{"id":"4d18ea91.fe6d24","type":"function","z":"5a245aa1.510164","name":"","func":"msg.topic = msg.payload < 0 ? \"Beladen\" : \"Entladen\";\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":330,"y":4000,"wires":[["dc737e2d.6fbe4","60a9ce87.71931"]]},{"id":"dc737e2d.6fbe4","type":"debug","z":"5a245aa1.510164","name":"ternary","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":700,"y":4080,"wires":[]},{"id":"60a9ce87.71931","type":"function","z":"5a245aa1.510164","name":"runden","func":"var temp = msg.payload\nmsg.payload = {[msg.topic]: parseFloat(temp.toFixed(0))};\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":620,"y":4000,"wires":[["dc737e2d.6fbe4"]]}]