Application Development and Automation 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: 
Read only

date format in table

prince_isaac
Active Participant
0 Likes
609

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
Read only

Former Member
0 Likes
567

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

Read only

Former Member
0 Likes
567

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.

Read only

prince_isaac
Active Participant
0 Likes
567

Hi

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

regards

Isaac Prince