becks22
6th September 2010, 15:47
Hi I have created a display session x ..Its working fine ..I had attached another display session y on the special menu of session x.My requirement is I need to display only the details of an order on session y hich is selected in session x.Unable to find a way..Please help
amitmmokashi
7th September 2010, 07:16
Hi,
Kindly use query.extend.where in the before.program section of the session Y which is opened from the specific of session X.
Regards,
Amit Mokashi
Hitesh Shah
7th September 2010, 18:11
Import function in child Y can give value main table field in parent session X . Import if written in before.program and start choice is find.data in child session y , it can bring the right record n child Y from parent X .
kiran kumar
8th September 2010, 10:06
Hi becks22,
In session y import the order using
import("table field related to order in x session",Variable)
query.extend.where("y session table field related orno={:variable}")
field.orno of y:
before.display:
table field related to order in y=variable.
It may work.