cancel
Showing results for 
Search instead for 
Did you mean: 

fetch address by address number

Former Member
0 Kudos

hi masters,

i have smartform where by in the addres window ( general attributes ) their is an address number say for ex : 22411.

based on this i get the address. but my concern is.....how is the address fetched based on the address number and

where can i see the address....

can i have some input pls and much appricieated in advance for the replies.

thank you,

pasala.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Addresses in maintained in ADRC table. Pass 22411 in ADRNR field and you will get the Address.

Thanks

Nitesh

Former Member
0 Kudos

hi nitesh,

thank you for your reply,

however

when i give my address number or Pass 22411 i dont see address but i can see a record with the number.

but i dont see anything except the number.

how can it be?

i have created a sample smartform by giving the address number but it brings the address

from where it brings am bit spectic.

can you explain me if you dont mind.

thank you,

pasala.

Former Member
0 Kudos

Hi pasalabasker,

As far as my knowledge there is only one table i.e ADRC which stores the address. Check properly.

Thanks & Regards,

Rock.

Former Member
0 Kudos

hi Rock,

how can we maintain address to a perticuler address number?

thank you,

pasala.

Former Member
0 Kudos

Hi pasalabasker,

If you want to change the address of Vendor,Customer,Plant then change them in their Masters. For other addresses like the address given in PO Delivery Address you can maintain In T.Code MEAN.

Thanks & Regards,

Rock.

Former Member
0 Kudos

Hi,

If you want to have teh addressed displayed inthe FORM BASED ON the address number - You coudl make use of FM -ADDRESS_INTO_PRINTFORM.

PASS on the address number and the address type ((1=Organization, 2=Person, 3=Contact person) to this.

This shld solve your problem.

Revert in case u need further clarification.

Former Member
0 Kudos

hi Rock,

thank you for the reply, and much appriciated.

i have never maintained anything before so if you can pls say how to do it willl be much more helpful.

say for ex : this is addres : KS technologies

Pine avenue,

Northgate

Botswana.

How can i maintain above address in TCODE : MEAN and to a perticuler address number?

thank you,

pasala.

Former Member
0 Kudos

Hi pasalabasker ,

Goto MEAN, then enter the name as : KS technologies* then press Find. It will give a list of the addresses then select one which you want to change.

Thanks & Regards,

Rock.

Answers (2)

Answers (2)

Former Member
0 Kudos

thank you all much appriciated for you time.

Former Member
0 Kudos

Hi,

Because domain AD_ADDRNUM has conversion exit ALPHA so before pass it to address number to read from ADRC table, you must convert it to internal use FM CONVERSION_EXIT_ALPHA_INPUT


DATA:
      ls_in_address TYPE adrc-addrnumber,
      ls_out_address TYPE adrc-addrnumber.

ls_in_address = 22411.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    input  = ls_in_address
  IMPORTING
    output = ls_out_address.

ls_out_address will has value: 0000022411

Please check,

Thanks