Diagnosis The system uses a feature's decision tree to generate a report. Everypossible syntax error was checked before generation, except for thefact that the report has more than 16,000 lines. Procedure Try to simplify the decision tree. Determine whether it is possible toshorten decision operations by taking just some parts of the decisionfield into account. Example: Rather than taking account of FELD1 A11 ... B11 ... C11 ... D11 ... E11 ... ***(etc.) ... you could take account of the relevant part only: FELD1+1 11 ... **(etc.) ... Another possible way of solving the problem is to store parts of thedecision tree in an ABAP program, which is then accessed at theappropriate place within the decision tree (see the onlinedocumentation). |