HI
we can solve the issue by opening the system setting of data packer size
like below we have create 2 programs, 1 for open the system settings,2 for
close the settings .
1 start program
data: z_roidocprms like table of
roidocprms.
data: wa like line of z_roidocprms.
wa-slogsys = 'system_client' . wa-maxsize = '50000'. wa-statfrqu = '10'.
wa-maxprocs = '6'. wa-maxlines = '50000'.
insert wa into table z_roidocprms.
Modify roidocprms from table z_roidocprms .
2 close program
data: z_roidocprms like table of roidocprms.
data: wa like line of z_roidocprms.
wa-slogsys = 'syetm_client' . wa-maxsize = '50000'. wa-statfrqu = '10'.
wa-maxprocs = '6'. wa-maxlines = '50000'.
insert wa into table z_roidocprms.
modify roidocprms from table z_roidocprms .
data load infopakage settings we have to maintain like
below
we have create the process chain like as below
1 start progarm
data load infopakage
2 close program.
This might fix the problem.
Regards,
Polu.