DEFINE TEMP-TABLE ttCustomer NO-UNDO
NAMESPACE-URI "http://myCompanyServer.com/myNamespace" FIELD CustNum LIKE Customer.CustNum FIELD Name LIKE Customer.Name FORMAT "x(30)". |
<?xml version="1.0"?><ttCustomer xmlns="http://myCompanyServer.com/myNamespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ttCustRow xmlns="http://myCompanyServer.com/myNamespace"> <CustNum>3</CustNum> <Name>Hoops</Name> </ttCustRow> </ttCustomer> |
DEFINE TEMP-TABLE ttCustomer NO-UNDO
NAMESPACE-URI "http://myCompanyServer.com/myNamespace" NAMESPACE-PREFIX "myPrefix" FIELD CustNum LIKE Customer.CustNum FIELD Name LIKE Customer.Name FORMAT "x(30)". |
<?xml version="1.0"?>
<myPrefix:ttCustomer xmlns:myPrefix="http://myCompanyServer.com/myNamespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <myPrefix:ttCustRow> <myPrefix:CustNum>3</myPrefix:CustNum> <myPrefix:Name>Hoops</myPrefix:Name> </myPrefix:ttCustRow> </myPrefix:ttCustomer> |
DEFINE TEMP-TABLE ttCustomer NO-UNDO
NAMESPACE-PREFIX "myPrefix" FIELD CustNum LIKE Customer.CustNum FIELD Name LIKE Customer.Name FORMAT "x(30)". |
<?xml version="1.0"?>
<ttCustomer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ttCustRow> <CustNum>3</CustNum> <Name>Hoops</Name> </ttCustRow> </ttCustomer> |