I found the failure myself, if anyone need it - you have to make a change in the sql patch:
SET @t4=0;
SELECT (@t4:=configuration_group_id) as t4
FROM configuration_group
WHERE configuration_group_title= 'Google Analytics Configuration';
DELETE FROM configuration WHERE configuration_group_id = @t4 AND configuration_group_id != 0;
DELETE FROM configuration_group WHERE configuration_group_id = @t4 AND configuration_group_id != 0;
INSERT INTO configuration_group VALUES ('','43', 'Google Analytics Configuration', 'Set Google Analytics Options', '1', '1');
You have to add the red marked ,´43´
is needed for the german ZenCart 1.3.7 Version.
Bookmarks