<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to Create a Simple Transformation Programatically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102932#M103930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this works for both XSLT and ST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Dec 2005 09:00:00 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2005-12-13T09:00:00Z</dc:date>
    <item>
      <title>How to Create a Simple Transformation Programatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102927#M103925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   I want to Create a Simple Transformation Programatically i.e instead of going to the Repository Browser and creating the ST, If i pass the Code of ST and the name as parameters to some Function Module or a Class Method the ST should be created in the Repository.&lt;/P&gt;&lt;P&gt;Please Give some sample code if any. Thanks in Advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vinay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 04:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102927#M103925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T04:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create a Simple Transformation Programatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102928#M103926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinayaka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Ur requirement is not clear.&lt;/P&gt;&lt;P&gt;   by ST do u mean - Standard Text ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I m sorry if im not aware about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 05:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102928#M103926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T05:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create a Simple Transformation Programatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102929#M103927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ST means Simple Transformation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 05:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102929#M103927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T05:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create a Simple Transformation Programatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102930#M103928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;following is the class &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_O2_API_XSLTDESC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD cl_o2_api_xsltdesc=&amp;gt;create_new           
    EXPORTING                                          
      p_source                = xslt_source            
      p_attr                  = attributes             
    IMPORTING                                          
      p_obj                   = xslt_obj               
    EXCEPTIONS                                         
      object_already_existing = 1                      
      action_cancelled        = 2                      
      not_authorized          = 3                      
      error_occured           = 4                      
      undefined_name          = 5.                     

* save XSLT-description.                     
  CALL METHOD xslt_obj-&amp;gt;save                 
    EXCEPTIONS                               
      error_occured         = 1              
      object_not_changeable = 2              
      object_invalid        = 3              
      action_cancelled      = 4              
      permission_failure    = 5.             
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this would prompt for dev class, transport request. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 05:31:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102930#M103928</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-12-13T05:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create a Simple Transformation Programatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102931#M103929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;       The code which you have given works well in Creating the XSLT Program, but i require similar one for a Simple Transformation Program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 06:19:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102931#M103929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T06:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to Create a Simple Transformation Programatically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102932#M103930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this works for both XSLT and ST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 09:00:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-simple-transformation-programatically/m-p/1102932#M103930</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-12-13T09:00:00Z</dc:date>
    </item>
  </channel>
</rss>

