Robert Moran Posted February 13, 2011 Posted February 13, 2011 I've tried with little success to copy portal content into a text file. The DB works perfectly but I cannot do this. The portal content is all text and consists of related files running in a portal. As stated before, the system works without issue. I have tried various looping scripts to no success (I am no scripting monster in any way whatsoever. ) that look similar to this. I know I am doing something wrong here as this contributed script looks fine to me but what do I know. Go to Related Records, in a new window, show related only. Loop .. Set Variable [$PortalContents; $PortalContents & Left ("¶"; Length ($PortalContents)) & PortalTable::Field X] .. Go to Record [Next, Exit After Last] End Loop Close Window Set field [YourTable::Text Field; $PortalContents] Another approach I took, which actually would work better, I think is the List function but it only gives me one line and no duplicates as I need duplicate content in order to dump information to an outside resource. The List Calculation I used is this: PortalDump= List ( TestDateText ;ToExamDateText; gTestLocation;TesttID ) Any help on this would be great. TIA remoran
comment Posted February 13, 2011 Posted February 13, 2011 This part makes no sense: Left ( "¶"; ... ) It will return either a carriage return or nothing, depending on the second parameter of the Left function. Another approach I took, which actually would work better, I think is the List function but it only gives me one line and no duplicates No, that's not true. However, the List() function will not list more than one related field. The thing most missing from your description is what separators do you want to have between fields of the same record. I need duplicate content in order to dump information to an outside resource. Why not export, then?
bruceR Posted February 13, 2011 Posted February 13, 2011 Actually the statement Set Variable [$PortalContents; $PortalContents & Left ("¶"; Length ($PortalContents)) & PortalTable::Field X] does make sense, it is a way to create a List function without using the list function. Perhaps this user is pre 8.5?
Recommended Posts
This topic is 5032 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now