We can restrict the Cancelled Lines on PO PDF. By Default, the value for this parameter is set to 'Yes'. We have to set this default value to 'No' in the concurrent program definition using System Administrator (Concurrent > Program > Define), Thus it prevents canceled lines from appearing in the PDF output.
Old Default Value Query:
Select Meaning from FND_LOOKUPS where lookup_type='YES_NO' and lookup_code='Y'
New Default Value Query :
Select Meaning from FND_LOOKUPS where lookup_type='YES_NO' and lookup_code='N'
This will set the Default Value as 'No', and prevents canceled lines from appearing in the PDF output.
Comments
Post a Comment