Skip to main content

Hi ,

 

In Create purchase orders screen I want to process only certain records according to a condition. And also,  for records those do not meet meet the condition, I want to print an error for each in the processing window. Can I put my logic inside POCreateFilter_Rowselected event handler or FixedDemand.SetProcessDelegate? What is the most efficient way to do this?

 

Thanks

Hi @charithalakshan49 

You can write the logic on the CreateProc Method. This method has the List of records. So, you can be able to write the logic here based on your requirement. 


@jinin Thanks for the response. However, I added my logic inside FixedDemand.SetProcessDelegate(Before calling CreateProc method). And It worked!

But I think the way you tell is more suitable than mine. 


Reply