[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: CDC "continuation" records

Status
Not open for further replies.
C

ChUIMonster

Guest
Details, details... It turns out that you have to actually *change* the data and change all (or at least *most*) of the fields in the table. This works: define variable c as character no-undo. do transaction: find first customer exclusive-lock. c = chr( random( 32, 127 )). name = fill( c, 10 ). /* idx */ address = fill( c, 4000 ). address2 = fill( c, 4000 ). city = fill( c, 5 ). state = fill( c, 4000 ). country = fill( c, 10 ). /* idx */ phone = fill( c, 4000 ). contact = fill( c, 4000 ). salesRep = fill( c, 10 ). /* idx */ comments = fill( c, 10 ). /* idx */ creditLimit = random( 1, 1000 ). balance = random( 1, 500 ). terms = fill( c, 4000 ). discount = random( 1, 10 ) * 0.01. postalCode = fill( c, 10 ). /* idx */ fax = fill( c, 4000 ). emailAddress = fill( c, 3880 ). message record-length( customer ). end. Still looking for documentation though :)

Continue reading...
 
Status
Not open for further replies.
Top