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

Compay currency

Former Member
0 Likes
771

hi all,

Anyone know,

what is the function module to get company currency??

thanks

Jose

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
752

USE FM :

BKK_GL_GL_ACCESS_COMP_DETAIL

and get the currency

CALL FUNCTION 'BKK_GL_GL_ACCESS_COMP_DETAIL'

EXPORTING

i_company = e_company

IMPORTING

e_wrk_comp_details = l_wrk_company

e_rcd_return = l_rcd_return.

get currency from

l_wrk_company-currency

hi all,

Anyone know,

what is the function module to get company currency??

thanks

Jose

3 REPLIES 3
Read only

Former Member
0 Likes
752

Hi,

You can use table T001 field waers.

Thanks,

Sriram Ponna.

Read only

Former Member
0 Likes
752

Hello Jose,

Check the table T001.

SELECT SINGLE * FROM T001 INTO LR_T001

WHERE BUKRS = LV_BUKRS.

Cheers,

Vasanth

Read only

Former Member
0 Likes
753

USE FM :

BKK_GL_GL_ACCESS_COMP_DETAIL

and get the currency

CALL FUNCTION 'BKK_GL_GL_ACCESS_COMP_DETAIL'

EXPORTING

i_company = e_company

IMPORTING

e_wrk_comp_details = l_wrk_company

e_rcd_return = l_rcd_return.

get currency from

l_wrk_company-currency