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

distribution list

Former Member
0 Likes
691

Hi,

IS there any program in SAP through which we can update the email id into table SOID.

regards,

kb

4 REPLIES 4
Read only

Former Member
0 Likes
592

hi,

Check this t-code so23

Cheers,

Will.

Read only

Former Member
0 Likes
592

Please refer below sample code for ur reference.

List of Receivers (Shared Distribution List)

select objnam from soid into table tbl_dlist

where objnam in s_objnam and

where objnam = c_objnam and

dlitp = 'DLI'.

if sy-subrc eq 0.

loop at tbl_dlist.

reclist-receiver = tbl_dlist-objnam.

reclist-rec_type = 'C'.

append reclist.

endloop.

ELSE.

WRITE:/ 'No Valid Distribution List Found'.

endif.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
592

Transaction SO23

Or look at thise subroutine pools : SAPFSSO1 "SAPoffice: External performs for DB manipulation" (look also at SAPFSSOA "SAPoffice: External performs for interface modules")

Regards

Read only

Former Member
0 Likes
592

thanks