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

Get company address

Former Member
0 Likes
3,978

Hi all,

Iam having company code. with that how i need to find out the company address.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Apr 2, 2008 12:30 PM

5 REPLIES 5
Read only

Manohar2u
Active Contributor
0 Likes
1,743

Take address number from T001-ADRNR

and pass this to ADRC-ADDRNUMBER to get the address details...

Read only

Former Member
0 Likes
1,743

hi Maha

Get the address number from field ADRNR in table T001, then use this and go to the ADRC tables to get the address .

or check this code........

*SELECTING ADDRESS NUMBER FOR PARTICULAR COMPANY CODE

SELECT SINGLE ADRNR

FROM T001

INTO V_ADRNR

WHERE BUKRS = companycode.

*SELECTING ADDRESS FOR THAT ADRNR

IF SY-SUBRC EQ 0.

SELECT SINGLE *

FROM ADRC

INTO IT_ADDRESS

WHERE ADDRNUMBER = V_ADRNR.

ENDIF.

~~Guduri

Read only

Former Member
0 Likes
1,743

Hi,

Please refer to the table T001 and field ADRNR.

Thanks,

Sriram Ponna.

Read only

0 Likes
1,743

Hi all,

Thnks for u r reply,

I want to change the address for payment advice in japanese not in english.But when i debugg the code in EN it was showing correct result(Correct address).but in the client layout ,that when he run the print payment advice in japanese It was showing old address.

what to do. Can any body tell me the procedure to change the address.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Apr 2, 2008 12:31 PM

Read only

0 Likes
1,743

so this was'nt the initial question and an urgent one..

may be address is not properly maintain in Japanese language? try login in Japanese and debug it.