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: 

table

Former Member
0 Kudos
307

any table is available for cuurency details

ex : inr -


Rupees and paise

USD -


Dollers and cents

like that..

1 ACCEPTED SOLUTION

Former Member
0 Kudos
233

Hello Vijay,

U can make use of TCURC & TCURT.

If useful reward.

Vasanth

13 REPLIES 13

Former Member
0 Kudos
233

Please check

TCURC

TCURT

anversha_s
Active Contributor
0 Kudos
233

hi,

Currency : TCURC

rgds

anver

pls mark hlpful answrs

Former Member
0 Kudos
233

check the table TCURC

and the field is WAERS.

Regards

Srikanth

Former Member
0 Kudos
233

hi Vijay,

try table

TCURC

Regards,

Preema

*Reward points for helpful answers

Former Member
0 Kudos
234

Hello Vijay,

U can make use of TCURC & TCURT.

If useful reward.

Vasanth

Former Member
0 Kudos
233

Hi Vijay,

Try table T500w. It contains currency per country and the valid date from and to.

Regards.

Former Member
0 Kudos
233

Hi,

If your looking for the text check table

<b>TCURT</b>

Regards,

Former Member
0 Kudos
233

Hi vijay,

<b>In TCURC

The fields waers is the code and LTEXT or KTEXT will give you the description for the code</b>

PLZ check...

REgards,

Ajith

MArk if useful

Former Member
0 Kudos
233

thanx all.

in these tables it is giving the details of rupees/dinar

etc. but they r not providing the details regarding paise..

0 Kudos
233

i think, decimal related is not maintained in SAP.

as per the country it will be converted .

lets say 100.10 INR

means 100 rupees and .1 rupee.

in INDIA, it will be calculated how much a rupee for its paise like that.

Correct me,if i am wrong.

here is the small code about SPELL_AMOUNT function module, here we can give the curr field also

REPORT YTEST no standard page heading .

data : tline like tline occurs 0 with header line,
SPELL LIKE SPELL OCCURS 0 WITH HEADER LINE.

data amouno type p DECIMALS 5 value '5455555.65461'.

CALL FUNCTION 'SPELL_AMOUNT'
EXPORTING
AMOUNT = amouno
<b>CURRENCY = 'USD'</b>
* FILLER = ' '
LANGUAGE = SY-LANGU
IMPORTING
IN_WORDS = SPELL
EXCEPTIONS
NOT_FOUND = 1
TOO_LARGE = 2
OTHERS = 3
.

WRITE : / 'Amount in Number: ',AMOUNO.

WRITE : / 'Amount in Word: ',SPELL-WORD, 'AND DECIMALS' , SPELL-DECWORD.

Regards

Srikanth

Message was edited by: Srikanth Kidambi

0 Kudos
233

hai srikanth

i have to print the amount according to the country specifec in words

if i use spell_amount it will give in US format.

if i use HR_IN_CHG_INR_WRDS it is giving in indian format because in this FM they r hard coded according to india..

but i need to print the amount of hongkong and ......

so how to fetch them.

0 Kudos
233

Hi Vijay,

did you try FM SPELL_AMOUNT with language change.

it uses language component to change to words.

Hope this help you.

Regards,

Amit

You also have to check that do your system is configured for that language check it out in T002 table.

there you will get the language key for ll the stored values in your system.

Also by default that FM uses EN therefore you should pick the right one.

Message was edited by: Amit Khare

Former Member
0 Kudos
233

This message was moderated.