issue we can see below in the Distmgr.log file
Package
XYZ00234 requires a newer version (3) of source files and the new compressed
files haven’t arrived yet, current version is 2, skip
E:SMSinboxesdistmgr.boxINCOMINGZ3AWAX9I.PKG
read here : https://marcusoh.blogspot.sg/2008/01/sms-distribution-manager-fails-to-send.html
just to add to the above page we need to refresh the Package, and we might need to restart the Distrubutionmanager/Sender services or Componenet manager and SMS executive services.
multiple things you want to look at if you’re running into this error:
SQL Commands to update the delta replication status.
SELECT * FROM PkgStatus WHERE Type=1 AND Status=1 AND ID='XYZ00234'
having a problem with the package. it should look like the following:
ID | Type | SiteCode | PkgServer | Personality | Status | SourceVersion | UpdateTime | Location | ShareName | HTTPUrl |
XYZ00234 | 1 | XYZ | SMSServer1 | 0 | 1 | 93 | 2008-01-01 |
replication value by changing the status to 2 and changing the sourceversion to
0:
UPDATE PkgStatus SET Status=2, SourceVersion=0 WHERE (ID='XYZ00234') AND (TYPE=1) AND (PkgServer='SMSServer1')
and now it should look like this:
ID | Type | SiteCode | PkgServer | Personality | Status | SourceVersion | UpdateTime | Location | ShareName | HTTPUrl |
XYZ00234 | 1 | XYZ | SMSServer1 | 0 | 2 | 0 | 2008-01-01 |
Below are the Pkgstatus table Codes and their meanings.