0
    
          
  
  
    
            Create a new record from a table directed to a specific TAB
This script works just fine but I cannot figure out how I can to add a TAB name in the script so the table/form opens to that TAB.
 
The TAB name is INPUT.
 
Where would I place INPUT?
 
Script:
 
let thisRecord := this;
 let newRec := (create 'Project Equipment');
 newRec.('SELECT BUILDING, ROOM & DESCRIPTION' := thisRecord);
 newRec.('SELECT PROJECT' := first(thisRecord.EQUIPMENT.'SELECT PROJECT'));
 openRecord(newRec)
5 replies
- 
  
Sadly only popupRecord works with tabs:
see this doc page.
 - 
  
openRecord(newRec,"INPUT")
 
Content aside
- 3 yrs agoLast active
 - 5Replies
 - 138Views
 - 
    3
    Following
    
 
