Topic Options
Rate This Topic
#139854 - 04/19/08 01:24 AM Help me in Run process
Vino Offline
Just Signed Up

Registered: 04/19/08
Posts: 1
Hi all,
I have a problem in a table in which values are being refreshed automatically This table gets the value from different form and refreshes automatically when some active links are run but the values in the table are not selected in some scenarios automatically.Some values are dependent upon these table column values for checking exceedence of values and so on. Important thing ,this table is not visible to users.So i thought of creating a run process in one active link.I used this Perform-action-table-refresh 1020.It didnot work out.So can any1 tell me the synatax of run process i have given with an example or any other suggestions.Plz help me out.

Top
#139859 - 04/22/08 07:26 AM Re: Help me in Run process [Re: Vino]
Carlos Offline
Stealth Member

Registered: 01/24/07
Posts: 82
Loc: London
You need to specify the field ID of the associated table, not 1020. 1020 is, as shown in the help, for a results list.

So use (and insert the table ID for the table field you want to refresh e.g. 53687202):
PERFORM-ACTION-TABLE-REFRESH <table_field_ID>

-------------------
PERFORM-ACTION-TABLE-REFRESH <table_field_ID> [ <start_row> ] [ <number_to_retrieve> ]
Refreshes a table. You can optionally specify a start row and a maximum number of rows to retrieve.
If the action is for a results list, use reserved field ID 1020.
This command is valid for all types of table fields.

Top