Nice post! I have implemented IDM 8.0 and I'm able to sync an ABAP system however I want the users to be able to reset their password with the reset password form (http://host:50000/idm/pwdreset)... I'm unable to find documentation for this... any hi...
Hi Ashish,The problem, I think, it's in you're table definition... if you want to be able to insert the number 999,999,999.99 you sould change the number characters to 11 (9+2) because the number of characters includes the number of decimals.Hope thi...
Yes, that's correct. You can declare an internal table with ABAP code, for example:data:internaltable LIKE remotetable OCCURS 0 WITH HEADER LINE. SELECT * FROM remotetable INTO CORRESPONDING FIELDS OF TABLE internaltable WHERE etc...Hope this...
In that case you need to specify the schema in the SQL statement... and use the connection created in Tx. DBCO. Example>SELECT * FROM QRHWORLD.SCHEMA.TABLE (Schema for ABAP is SAPSR3 and for Java it's SAPSR3DB)