<?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 issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue/m-p/3203669#M763649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all. I am having a hard time getting a solution to my particular dilema. Any opinions would be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to add a new input field to a custom infotype. This field should be invisible to the users, but I need a method of populating this field using a call transaction through a batch process. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried making the screen field invisible and setting modification group 1 to '006'. This did not work as the screen field becomes visible with a bunch of asteriks (******). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know one option might be to set the modification group 1 as well as the invisible flag dynamically in the BPO checking SY-BINPT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone tried this or is there an alternative other than looping at screen in BPO?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Dec 2007 07:43:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-22T07:43:02Z</dc:date>
    <item>
      <title>issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue/m-p/3203669#M763649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all. I am having a hard time getting a solution to my particular dilema. Any opinions would be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to add a new input field to a custom infotype. This field should be invisible to the users, but I need a method of populating this field using a call transaction through a batch process. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried making the screen field invisible and setting modification group 1 to '006'. This did not work as the screen field becomes visible with a bunch of asteriks (******). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know one option might be to set the modification group 1 as well as the invisible flag dynamically in the BPO checking SY-BINPT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone tried this or is there an alternative other than looping at screen in BPO?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2007 07:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue/m-p/3203669#M763649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-22T07:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue/m-p/3203670#M763650</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;You will need to loop in PBO to give your screen field the correct attributes - you say you got **** instead of the field being hidden? This is because the wrong property was set (have a look at the SAP Help on LOOP AT SCREEN and you'll see what you need to do to resolve this).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2007 13:18:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue/m-p/3203670#M763650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-22T13:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue/m-p/3203671#M763651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT-OPTIONS: S_EBELN FOR EKKO-EBELN MODIF ID S1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'S1'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;CLEAR SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this to make a field invisible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ANUPAM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Dec 2007 17:33:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue/m-p/3203671#M763651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-22T17:33:29Z</dc:date>
    </item>
  </channel>
</rss>

