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: 

How to insert new entries to table TCURR

Former Member
0 Kudos

Hi Gurus,

How to insert new entries to table TCURR?

Are there any function module that we can use?

Thanks & Regards,

Ari

1 ACCEPTED SOLUTION

former_member723628
Active Participant
0 Kudos

Hi Ari Harsyanto,

You can use BAPI_EXCHANGERATE_CREATE to add entries in table TCURR. You can find the details about usage in BAPI documentation. Make sure to trigger COMMIT WORK after the call.

Regards,

Gajendra

5 REPLIES 5

Former Member
0 Kudos

Hello

Use t-code OB08

Former Member
0 Kudos

hi..

try this link:

regards,

padma

former_member723628
Active Participant
0 Kudos

Hi Ari Harsyanto,

You can use BAPI_EXCHANGERATE_CREATE to add entries in table TCURR. You can find the details about usage in BAPI documentation. Make sure to trigger COMMIT WORK after the call.

Regards,

Gajendra

0 Kudos

Hi Gajendra,

Thanks for your information.

I can use BAPI_EXCHANGERATE_CREATE to update table TCURR.

Regards,

Ari

satsrockford
Active Participant
0 Kudos

hi

inverted _date

**************************

CALL FUNCTION 'CONVERSION_EXIT_INVDT_OUTPUT'

EXPORTING

input = '79948992'

IMPORTING

OUTPUT = d_date.

write d_date.

Output:10/07/2005

or

CONVERT INVERTED-DATE TCURR-GDATU INTO DATE VALID_FROM_DATE

.

2) Reversal

CALL FUNCTION 'CONVERSION_EXIT_INVDT_INPUT'

EXPORTING

input = '07/10/2005'

IMPORTING

OUTPUT = c_date.

write c_date.

Output: 79949289

regards

Satish