Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

date format in table

prince_isaac
Active Participant
0 Kudos

incorrect date format saved thru transaction spro>General settings>Currencies>Enter Exchange rates. date format entered is 98.98.9898 now the system wont allow you to maintain exchange rates without specifying correct date format for the entries. in tables TCURR i cannot get the entries as they are stored in nines compliment. how then can i delete the entries with abap script??

3 REPLIES 3

Former Member
0 Kudos

Hi,

use delete statement on TCURR table.

ex:

delete from TCURR where KURST = <your exchange rate type>.

commit work.

Reward points for helpful answers,

Satish

Message was edited by:

Satish Panakala

Former Member
0 Kudos

You can use the FM "CONVERSION_EXIT_INVDT_INPUT", to converte a normal date in the date that is used in table TCURR.

I hope it's usefull.

best regards,

Aline.

prince_isaac
Active Participant
0 Kudos

Hi

Had to delete the entry to enable exchange rates to be captured.

regards

Isaac Prince