|
Re: My Accounts
Posted: 25 Jul 08 8:17 AM
|
Hi Sandeep,
You could restore a back up of the database and create a bundle containing your group then apply to your system. You will need to clear out the synch stuff so that you do not contaminate your live remotes.
The group SQL is:
SELECT A1.ACCOUNTID, A1.ACCOUNT, A2.CITY A2_CITY, A2.STATE A2_STATE, A1.MAINPHONE, A1.TYPE, A1.SUBTYPE, A1.STATUS, A1.ACCOUNTMANAGERID, A1.SECCODEID, A1.ACCOUNT_UC FROM ACCOUNT A1 INNER JOIN ADDRESS A2 ON (A1.ADDRESSID=A2.ADDRESSID) WHERE (A1.ACCOUNTMANAGERID=:userid) ORDER BY A1.ACCOUNT_UC ASC
Add a condition to the Group: Account.Accountmanagerid = :userid Use value as a literal is checked Case Sensitive Compare is checked
Cheers,
Steve
|
|
|