<?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: Billing Printout in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332059#M1032103</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look out the place, where it is displaying and check out that Window for the coressponding text or field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Aug 2008 07:40:39 GMT</pubDate>
    <dc:creator>former_member585060</dc:creator>
    <dc:date>2008-08-14T07:40:39Z</dc:date>
    <item>
      <title>Billing Printout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332058#M1032102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting a issue in biling output here i am  getting some text, but i checked this text every where in my billing, delivery and SO but i could not find this text from where it is displaying.&lt;/P&gt;&lt;P&gt;( since i am in prroduction i can retest this)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this billing output is working fine in both development and quality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also i checked in smartform also its all correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332058#M1032102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T07:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: Billing Printout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332059#M1032103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look out the place, where it is displaying and check out that Window for the coressponding text or field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:40:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332059#M1032103</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2008-08-14T07:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: Billing Printout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332060#M1032104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out the VF03 transaaction, are the header/items text fields filled?&lt;/P&gt;&lt;P&gt;There might be a text include in your smartform also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the text's position you can easily find out, in which window and in which text element is it printed out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332060#M1032104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T07:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Billing Printout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332061#M1032105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi niki,&lt;/P&gt;&lt;P&gt;try this way....&lt;/P&gt;&lt;P&gt;first you find the FM generated by the smartform in production.&lt;/P&gt;&lt;P&gt;And go to main program of that fuction module.&lt;/P&gt;&lt;P&gt;You will find the forms, &lt;/P&gt;&lt;P&gt;1. FORM %WRITE_TEXT USING NAME        TYPE SSFKEYNAME&lt;/P&gt;&lt;P&gt;                       STYLE       TYPE TDSSNAME&lt;/P&gt;&lt;P&gt;                       STYLEVARI   TYPE TDVARIANT&lt;/P&gt;&lt;P&gt;                       APP_MODE    TYPE TDSFAMODE&lt;/P&gt;&lt;P&gt;                       PROTECT     TYPE TDSFFLAG&lt;/P&gt;&lt;P&gt;                       INPUTFIELDS TYPE TSFINPUT&lt;/P&gt;&lt;P&gt;                       TEXTAREA    TYPE SSFTXTAREA.&lt;/P&gt;&lt;P&gt;At CALL FUNCTION 'SSFRT_READ_TEXT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put a break point at sy-subrc .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here you can see the text printing in table %TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. FORM %WRITE_TEXT_MODULE USING NAME        TYPE SSFKEYNAME&lt;/P&gt;&lt;P&gt;                              TEXT        TYPE TDSFNAME&lt;/P&gt;&lt;P&gt;                              TLANG       TYPE SPRAS&lt;/P&gt;&lt;P&gt;                              STYLE       TYPE TDSSNAME&lt;/P&gt;&lt;P&gt;                              STYLEVARI   TYPE TDVARIANT&lt;/P&gt;&lt;P&gt;                              APP_MODE    TYPE TDSFAMODE&lt;/P&gt;&lt;P&gt;                              PROTECT     TYPE TDSFFLAG&lt;/P&gt;&lt;P&gt;                              IGNORE      TYPE TDSFFLAG&lt;/P&gt;&lt;P&gt;                              INPUTFIELDS TYPE TSFINPUT&lt;/P&gt;&lt;P&gt;                              TEXTAREA    TYPE SSFTXTAREA.&lt;/P&gt;&lt;P&gt;in this at   CALL FUNCTION 'SSFRT_READ_TEXTMODULE'&lt;/P&gt;&lt;P&gt;put a break point at sy-subrc.&lt;/P&gt;&lt;P&gt;here you can see the textmodule which cause to print the text . use NAME = textmodule name.&lt;/P&gt;&lt;P&gt;You can easily find out from where the text is picking up from smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 09:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/billing-printout/m-p/4332061#M1032105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T09:40:02Z</dc:date>
    </item>
  </channel>
</rss>

