Hello,
I am trying to develop a HTML service in ABAP. The HTML format is like below,
<html>
<body>
<h1>ABC</h1>
<br>XYZ
<form action="https://website" method="post">
<input type="hidden" name="Id" value="XXXXX">
<input type="hidden" name="tr" value="call">
<input type="hidden" name="BN" value="YYYYY">
<input type="hidden" name="KL" value="O">
<br>jkl:
<input type="text" name="ns" value="LKI" size="3">
<input type="submit" name="OP" value="CAP">
</form>
</body>
</html>
I need the classes and class elements to build this type of HTML. I know to post XML messages by creating XML document using class "IF_XML" but do we have similat classes to create HTML message document and call the HTTP service.
Thanks
Vijay.