<?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: Visible fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071533#M94963</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venugopal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK I understood yur issue.. How are you updating the infotype? Are you using any function modules? Did you try using HR_INFOTYPE_OPEARTION to create the new records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Nov 2005 23:42:54 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2005-11-15T23:42:54Z</dc:date>
    <item>
      <title>Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071522#M94952</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;I'm working on import dynpro of infotype screens&lt;/P&gt;&lt;P&gt;does anyone have any experience with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem I have is how do I check if a certain field is visible or not in pa30.&lt;/P&gt;&lt;P&gt;I can't seem to find a connection with the result of the import dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 10:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071522#M94952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T10:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071523#M94953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I'm working on import dynpro of infotype screens&lt;/P&gt;&lt;P&gt;&amp;gt; does anyone have any experience with this&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; the problem I have is how do I check if a certain&lt;/P&gt;&lt;P&gt;&amp;gt; field is visible or not in pa30.&lt;/P&gt;&lt;P&gt;&amp;gt; I can't seem to find a connection with the result of&lt;/P&gt;&lt;P&gt;&amp;gt; the import dynpro.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;You problem is not very well detailed...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you think about&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;CHECK SCREEN-NAME EQ 'NameofFiled'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the field exist here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe describe your problem much in details in order to get a better solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephan,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 10:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071523#M94953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T10:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071524#M94954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In the internal table of element list &amp;lt;b&amp;gt;F&amp;lt;/b&amp;gt; (of structure D021S) there is a field called &amp;lt;b&amp;gt;FMB1&amp;lt;/b&amp;gt; (Type X).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the screen element is INIVISIBLE then FMB1 will be 34&lt;/P&gt;&lt;P&gt;If the screen element is OUTPUT ONLY then FMB1 will be 31&lt;/P&gt;&lt;P&gt;If the screen element is OUTPUT then FMB1 will be 30&lt;/P&gt;&lt;P&gt;If the screen element is visible, ready for input then 00.&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;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 11:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071524#M94954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T11:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071525#M94955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your answer was very helpfull thanks !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still have one problem though.&lt;/P&gt;&lt;P&gt;I have for infotype 0009 different subtypes. Some fields are hidden depending on the subtype. The screen number is the same for all. So there is no different result for the import dynpro.&lt;/P&gt;&lt;P&gt;Do you have any idea where I can find that information?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 11:46:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071525#M94955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T11:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071526#M94956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just thought of something else.&lt;/P&gt;&lt;P&gt;To what mode do these settings apply? So for view mode nothing is editable,but for modify and create there are sometimes differences.&lt;/P&gt;&lt;P&gt;My result now has mode 30 for almost all fields, so output.&lt;/P&gt;&lt;P&gt;eg BEGDA and ENDDA have 30 FMB but they are editable. AEDTM and UNAME also have 30, but they aren't editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for all the questions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 13:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071526#M94956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T13:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071527#M94957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to check IMG for hide/display fields based on subtypes and so far could not find any such links.&lt;/P&gt;&lt;P&gt;I think they are done via coding in PBO of the infotype screens..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And about FMB1 for BEGDA and ENDDA and so on..&lt;/P&gt;&lt;P&gt;Make sure you are not looking at Field Labels (As they always have 30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There will be two entries for each field, one for Field Label and one for I/O Field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example I was looking at Program MP000900 (for Info Type 0009) and screen 2000..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEGDA will have two entries, first entry for field label with FMB1 30 and second entry with 00 (As it is editable in screen 2000).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also if possible give me the screen number that you are interested in so that I can have a look at it and determine how we can retrieve this information..&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;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 13:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071527#M94957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T13:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071528#M94958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah ok&lt;/P&gt;&lt;P&gt;I just found the problem, I do:&lt;/P&gt;&lt;P&gt;DELETE ADJACENT DUPLICATES FROM imp588m COMPARING fnam .&lt;/P&gt;&lt;P&gt;The field labels are the ones that are retained in the list and the other ones are removed.&lt;/P&gt;&lt;P&gt;I guess I can solve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I still have a problem with the subtypes:&lt;/P&gt;&lt;P&gt;Some fields are not shown in another subtype, but the parameters for the import dynpro are the same, so I don't see how to derive that from the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do an import dynpro with following parameter:&lt;/P&gt;&lt;P&gt;PROG=MP000900&lt;/P&gt;&lt;P&gt;DNUM=2000&lt;/P&gt;&lt;P&gt;VARKY=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our configuration the field P0009-BETRG and P0009-ANZHL are shown for subtype 2 but not for the others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks already.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 09:17:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071528#M94958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T09:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071529#M94959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this customizing is done in T588M table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SPRO(IMG), the link is,&lt;/P&gt;&lt;P&gt;Personnel Management-&amp;gt;Personnel Administration&lt;/P&gt;&lt;P&gt;-&amp;gt;Customizing User Interfaces&lt;/P&gt;&lt;P&gt;-&amp;gt;Change Screen modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think DBILD is the field in T588M which contains &lt;/P&gt;&lt;P&gt;the screen modifications ('-' means hide, '+' means show)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check customizing here whether there is some thing different just for Subtype 2..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, a bit on technical side,&lt;/P&gt;&lt;P&gt;Take a look at subroutine SCREEN_MODIFICATION in include&lt;/P&gt;&lt;P&gt;FP50MF20 to see how the field is determined for output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VARKEY (if it is not space based on customizing) can be derived by using function module HR_FEATURE_BACKFIELD, feed the feature = 'P0009' and whatever you can in l_pme04 like infty, subty etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_pme04 LIKE pme04,  "Got it from T549D&lt;/P&gt;&lt;P&gt;      l_varkey LIKE t588m-varkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_FEATURE_BACKFIELD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    feature                           = 'P0009'&lt;/P&gt;&lt;P&gt;    struc_content                     = l_pme04&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  KIND_OF_ERROR                     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   BACK                              = l_varkey&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STATUS                            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   DUMMY                             = 1&lt;/P&gt;&lt;P&gt;   ERROR_OPERATION                   = 2&lt;/P&gt;&lt;P&gt;   NO_BACKVALUE                      = 3&lt;/P&gt;&lt;P&gt;   FEATURE_NOT_GENERATED             = 4&lt;/P&gt;&lt;P&gt;   INVALID_SIGN_IN_FUNID             = 5&lt;/P&gt;&lt;P&gt;   FIELD_IN_REPORT_TAB_IN_PE03       = 6&lt;/P&gt;&lt;P&gt;   OTHERS                            = 7.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use this l_varkey while reading T588M with,&lt;/P&gt;&lt;P&gt;REPNA = 'MP000900', DYNNR = '2000' and VARKY = l_varkey&lt;/P&gt;&lt;P&gt;Like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: s_t588m LIKE t588m.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM t588m INTO s_t588m&lt;/P&gt;&lt;P&gt;WHERE repna = 'MP000900'&lt;/P&gt;&lt;P&gt;  AND dynnr = '2000'&lt;/P&gt;&lt;P&gt;  AND varky = l_varkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally use s_t588m-dbild to determine what is visible/invisible. ('-' invisible, ' ', '+' visible)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This leads me to think that IMPORT DYNPRO is not required..&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;NOTE: ' ' / '-' / '+' etc are based on screen group3,&lt;/P&gt;&lt;P&gt;and screen-group3 for BETRG is 008 so dbild will have '-' at 7th positionsimilarly screen-group3 for ANZHL is 009&lt;/P&gt;&lt;P&gt;so dbild will have '-' at 8th position..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be you can look at all entries in T588M for MP000900, 2000 and then see which entry has '--' at 7th and 8th positions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 11:14:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071529#M94959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T11:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071530#M94960</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 need to set the value dynamically in the program for 'VARKY'. Could anybody know how to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody please help.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 20:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071530#M94960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T20:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071531#M94961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venugopal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a config entry.. why do you want to change it dynamically? in which Program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 20:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071531#M94961</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-11-15T20:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071532#M94962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure if I am doing it correctly.&lt;/P&gt;&lt;P&gt;I am writing an interface to update IT2010.  In the table T588M the functional people have set two entries for the infotype 2010 screen.  One with Variable key = 10 and other with 99.&lt;/P&gt;&lt;P&gt;There is field called external document number on 2010.&lt;/P&gt;&lt;P&gt;If the value for Variable key = 10 (default for all users) the field on the IT2010 is grayed out.&lt;/P&gt;&lt;P&gt;And if the value = 99 then it will take input.&lt;/P&gt;&lt;P&gt;The functional people are asking, if I can dynamically change during the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 23:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071532#M94962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T23:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071533#M94963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venugopal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK I understood yur issue.. How are you updating the infotype? Are you using any function modules? Did you try using HR_INFOTYPE_OPEARTION to create the new records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 23:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071533#M94963</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-11-15T23:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071534#M94964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using 'Call transaction' method for this interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2005 17:13:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071534#M94964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-17T17:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071535#M94965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venugopal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will be  better off using the above function module instead of the traditional call transaction method. Use the function module in a loop ,fill the structure p2010 for each pernr and pass it on. You need not woory about the VARKY validation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2005 17:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071535#M94965</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-11-17T17:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Visible fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071536#M94966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anybody know, what fields of structure D021S are responsible for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srikanth Pinnamaneni wrote about FMB1... and what can you say about the other fields of this structure? By the way, great thanks for explaining of FMB1!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 09:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/visible-fields/m-p/1071536#M94966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T09:31:14Z</dc:date>
    </item>
  </channel>
</rss>

