How can you pass a parameter to another window.
par example:
test1.w has :
define variable param as character.
I want to run the window test2.w and pass this variable.
What should i do in test1.w and test2.w
And if I have a file FormatNumber.p:
Function FormatNumber
FUNCTION FormatNumberToIngrammicro RETURNS CHARACTER
(INPUT DateOrig AS DATE):
DEFINE VARIABLE DateTechData AS CHARACTER.
....
RETURN DateTechData.
END FUNCTION.
how can I call it in another function:
ASSIGN.....
These things don't resolve the problem. I will explain it:
I have a file test.p. This creates a tree of xml-elements.
DEFINE VARIABLE hDoc AS HANDLE NO-UNDO.
DEFINE VARIABLE hOrderRequest AS HANDLE NO-UNDO.
CREATE X-DOCUMENT hDoc.
CREATE X-NODEREF hOrderRequest.
hDoc:CREATE-NODE(hOrderRequest...
I have a file, named CreateVersion.p.
The content is as followed:
PROCEDURE CreateVersion:
......
END PROCEDURE.
My question is: How can I call this procedure from another file?
I have a problem:
I have to create an XML-document. I have several procedures, but i have to pass the current Node.
Example:
<Order>
<Head>
<...>
</Head>
<Body>
--------------------------------------------------
This node was created as followed:
DEFINE VARIABLE hBody AS HANDLE NO-UNDO...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.