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: 

Distribution List Table

Former Member

Team,

I'm looking for the table that contains the information in Distribution List from SO23.

I will be grateful if I get your response.

7 REPLIES 7

Former Member
0 Kudos

Hi Joel,

Check tables:

SOOD

SOID

for more info

Hope this info will help you.

Thanks!!

Former Member
0 Kudos

SODM SAPoffice: distribution list contents

SOFR SAPoffice: Distribution List Table for Inc

SOID SAPoffice: Inverse record for distribution

0 Kudos

Thank you for your suggestions, however, I still cannot get the email information of the distribution list from any of those tables.

Please if anyone has more information, I will appreciate it.

Former Member
0 Kudos

Hi Joel,

for the email address of distibution list check below

Thanks!

Former Member
0 Kudos

Not resolved.

Former Member
0 Kudos

It is too late to reply

But if the problem still unsolved try this:

REPORT  ZTESTALE.

data ls_member type SODM1.
data lt_member type table of SODM1.
data ls_dli_id type SOODK.

data ls_objpara type SELC.
data lt_objpara type table of SELC.
data ls_objparb type SOOP1.
data lt_objparb type table of SOOP1.


CALL FUNCTION 'SO_DLI_READ'
EXPORTING
   DISTRIBUTIONLIST                 = 'PIPPO' "DLIST NAME
   DLI_ID                           = ls_dli_id "Empty if it is a system dlist
   OWNER                            = sy-uname
   SYSTEM_DLI                       = 'X'
* IMPORTING
*   OBJECT_FL_DISPLAY                =
*   OBJECT_HD_DISPLAY                =
*   OBJECT_ID                        =
*   OBJECT_SD_DISPLAY                =
  TABLES
    member                           = lt_member
    objpara                          = lt_objpara
    objparb                          = lt_objparb
* EXCEPTIONS
*   ACTIVE_USER_NOT_EXIST            = 1
*   COMMUNICATION_FAILURE            = 2
*   COMPONENT_NOT_AVAILABLE          = 3
*   DL_NAME_NOT_EXIST                = 4
*   FOLDER_NOT_EXIST                 = 5
*   FOLDER_NO_AUTHORIZATION          = 6
*   FORWARDER_NOT_EXIST              = 7
*   OBJECT_NOT_EXIST                 = 8
*   OBJECT_NO_AUTHORIZATION          = 9
*   OPERATION_NO_AUTHORIZATION       = 10
*   OWNER_NOT_EXIST                  = 11
*   PARAMETER_ERROR                  = 12
*   SUBSTITUTE_NOT_ACTIVE            = 13
*   SUBSTITUTE_NOT_DEFINED           = 14
*   SYSTEM_FAILURE                   = 15
*   USER_NOT_EXIST                   = 16
*   X_ERROR                          = 17
*   OTHERS                           = 18
          .
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

loop at lt_member into ls_member.

endloop.

former_member653066
Participant
0 Kudos

This message was moderated.