Bit shifts with ABAP
问题 I'm trying to port some Java code, which requires arithmetic and logical bit shifts, to ABAP. As far as I know, ABAP only supports the bitwise NOT, AND, OR and XOR operations. Does anyone know another way to implement these kind of shifts with ABAP? Is there perhaps a way to get the same result as the shifts, by using just the NOT, AND, OR and XOR operations? 回答1: Disclaimer: I am not specifically familiar with ABAP, hence this answer is given on a more general level. Assuming that what you