Write tram line to output transaction details...?

PD24

New Member
Hello, i am fairly new to progress open edge 10.2B and i need to write a tram line to output transaction details into a temp-table. How can this be done? is there any code out there that i can use? Thanks..
 

PD24

New Member
I think what i want to do is make a transaction and then grab the values and populate a temp table, then i want to out the values on screen or output it to a file.

In ASP/SQL we would grab the values via the request.form and then write the values into a cookie. However i am unsure with pure software (progress) methods?

So i would build a temp table to then output a file? I want to do many transactions so i how can i read the results?

Thanks in advance!
 

PD24

New Member
It is hard to understand what do you want to do. Can you be more clear, what is the task, what is a problem.

the problem

a despatch of goods has exactly 1 invoice assigned to it. However 2 were created. The 2nd invoice some how is currupted.

I want to write a query to find all the despatches that how more than 1 invoice allocated to them.
 

Cringer

ProgressTalk.com Moderator
Staff member
You'll want something along these lines then...

Code:
for each despatch no-lock:
  find invoice of despatch no-lock.
  if ambiguous invoice then
  do:
    <output details>
  end.
end.
 
Top