<?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: Table Maintenance Generator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156921#M993818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link ,&lt;/P&gt;&lt;P&gt;&lt;A href="http://209.85.175.104/search?q=cache:D0uXQjUjrhkJ:help.sap.com/bp_bblibrary/600/Documentation/G20_BB_ConfigGuide_EN_US.doc" target="test_blank"&gt;http://209.85.175.104/search?q=cache:D0uXQjUjrhkJ:help.sap.com/bp_bblibrary/600/Documentation/G20_BB_ConfigGuide_EN_US.doc&lt;/A&gt;&lt;EM&gt;table&lt;/EM&gt;maintenance&lt;EM&gt;events&lt;/EM&gt;and&lt;EM&gt;trigger&lt;/EM&gt;a&lt;EM&gt;workflow&lt;/EM&gt;by&lt;EM&gt;checking&lt;/EM&gt;the+data.&amp;amp;hl=en&amp;amp;ct=clnk&amp;amp;cd=10&amp;amp;gl=in&lt;/P&gt;&lt;P&gt; view as  DOC . &lt;/P&gt;&lt;P&gt;Might be useful&lt;/P&gt;&lt;P&gt;Mohinder Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jul 2008 04:55:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-17T04:55:51Z</dc:date>
    <item>
      <title>Table Maintenance Generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156919#M993816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt; I hav one scenario where i have to implement the table maintenance events and trigger a workflow by checking the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 04:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156919#M993816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T04:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156920#M993817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Manu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have gone through with this scenario....&lt;/P&gt;&lt;P&gt;You Can follow these steps..........&lt;/P&gt;&lt;P&gt; Let us take an example to create customer information in Z table with following fields. And, if user will enter Country as u2018INu2019, in that case workflow should get trigger. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on Utility -&amp;gt; Table Maintenance Generator &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Provide authorization group, function group and screen numbers and Save it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on Back button. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, click on Environment -&amp;gt; Modification -&amp;gt; Events &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on New Entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select u201905 u2013 Creating a new entryu2019. &lt;/P&gt;&lt;P&gt;Provide a Form routine as u2018CREATE_CUST_INFOu2019 and click on Editor Button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select the u2018New Includeu2019 and continue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write the following code in the include program. Activate it. Activate your function group as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM CREATE_CUST_INFO.  ZCUST_INFO-CR_DATE = SY-DATUM.&lt;/P&gt;&lt;P&gt;  ZCUST_INFO-CR_TIME = SY-UZEIT.&lt;/P&gt;&lt;P&gt;  IF ZCUST_INFO-COUNTRY = 'IN'.    DATA: W_OBJTYPE TYPE SWETYPECOU-OBJTYPE,&lt;/P&gt;&lt;P&gt;          W_OBJKEY  TYPE SWEINSTCOU-OBJKEY,&lt;/P&gt;&lt;P&gt;          W_EVENT   TYPE SWETYPECOU-EVENT.    W_OBJTYPE = 'YH355_BO'.&lt;/P&gt;&lt;P&gt;    W_OBJKEY  = ZCUST_INFO-CUSTNO.&lt;/P&gt;&lt;P&gt;    W_EVENT   = 'SENDEMAIL'.    CALL FUNCTION 'SWE_EVENT_CREATE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        objtype                       = W_OBJTYPE&lt;/P&gt;&lt;P&gt;        objkey                        = W_OBJKEY&lt;/P&gt;&lt;P&gt;        event                         = W_EVENT&lt;/P&gt;&lt;P&gt;              .    COMMIT WORK.  ENDIF.ENDFORM.Step 11: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE11. Click on Utilities -&amp;gt; Table Contents -&amp;gt; Create Entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter the details except Date and Time. &lt;/P&gt;&lt;P&gt;In result, Date and Time will get populated and event will get trigger. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please award me points if  this will help you a lot...........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 04:53:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156920#M993817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T04:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156921#M993818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link ,&lt;/P&gt;&lt;P&gt;&lt;A href="http://209.85.175.104/search?q=cache:D0uXQjUjrhkJ:help.sap.com/bp_bblibrary/600/Documentation/G20_BB_ConfigGuide_EN_US.doc" target="test_blank"&gt;http://209.85.175.104/search?q=cache:D0uXQjUjrhkJ:help.sap.com/bp_bblibrary/600/Documentation/G20_BB_ConfigGuide_EN_US.doc&lt;/A&gt;&lt;EM&gt;table&lt;/EM&gt;maintenance&lt;EM&gt;events&lt;/EM&gt;and&lt;EM&gt;trigger&lt;/EM&gt;a&lt;EM&gt;workflow&lt;/EM&gt;by&lt;EM&gt;checking&lt;/EM&gt;the+data.&amp;amp;hl=en&amp;amp;ct=clnk&amp;amp;cd=10&amp;amp;gl=in&lt;/P&gt;&lt;P&gt; view as  DOC . &lt;/P&gt;&lt;P&gt;Might be useful&lt;/P&gt;&lt;P&gt;Mohinder Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 04:55:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156921#M993818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T04:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156922#M993819</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;Maintaining the Workflow for Automatic Customizing &lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this step, you can finish the customizing for the workflow automatically. Workflow automatic customizing carries out the basic settings in the workflow required for IDoc processing. The workflow customizing settings made earlier are not overwritten.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The settings are not transported. This means that you also have to carry out this step in the productive system. The following steps are carried out within workflow automatic customizing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Configuration of a client-dependent RFC destination ("WORKFLOW_LOCAL_$&amp;lt;Client$&amp;gt;") &lt;/P&gt;&lt;P&gt;Scheduling of a background job for deadline monitoring &lt;/P&gt;&lt;P&gt;Setting of an active plan version &lt;/P&gt;&lt;P&gt;Classification of single-step tasks as general tasks &lt;/P&gt;&lt;P&gt;Maintenance of a system administrator for the workflow &lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Access the activity using one of the following navigation options: &lt;/P&gt;&lt;P&gt;SAP ECC Menu Tools u2192  Business Workflow u2192  Development u2192   Utilities u2192   Automatic Workflow Customizing &lt;/P&gt;&lt;P&gt;Transaction Code SWU3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the screen Automatic Workflow Customizing, select Perform Automatic Workflow Customizing (F9) on the toolbar. Ignore any error message appearing on the screen. &lt;/P&gt;&lt;P&gt;Choose Back. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you get an error message, such as RFC password must be synchronized, run the following activities to fix it. Otherwise, you can ignore the following steps for the remainder of this activity. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a user named WF-BATCH with transaction SU01. &lt;/P&gt;&lt;P&gt;On the screen User Maintenance: Initial Screen, enter the following: &lt;/P&gt;&lt;P&gt;Key field Value (description) &lt;/P&gt;&lt;P&gt;User WF-BATCH &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose Create. &lt;/P&gt;&lt;P&gt;On the Maintain User screen, on the Address tab, enter the following: &lt;/P&gt;&lt;P&gt;Key field  Value (description) &lt;/P&gt;&lt;P&gt;Last Name WF-BATCH &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the screen Maintain User, on the Logon data tab, enter the following: &lt;/P&gt;&lt;P&gt;Key field Value Description &lt;/P&gt;&lt;P&gt;Initial password init You can use your own password here, but you need to enter the exact same password in the field Repeat password. &lt;/P&gt;&lt;P&gt;Repeat password init   &lt;/P&gt;&lt;P&gt;User type System You must select the system user type here, since this user is only used by the system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the screen Maintain User, in the Profile tab, enter the following two profiles:  &lt;/P&gt;&lt;P&gt;SAP_ALL  &lt;/P&gt;&lt;P&gt;SAP_NEW &lt;/P&gt;&lt;P&gt;Choose Save. &lt;/P&gt;&lt;P&gt;A message appears on the status bar: User WF-BATCH was saved. &lt;/P&gt;&lt;P&gt;To synchronize the RFC password, use transaction SWUB. &lt;/P&gt;&lt;P&gt;On the screen Configure Workflow RFC Destination, enter the following entry: &lt;/P&gt;&lt;P&gt;Key field Value Description &lt;/P&gt;&lt;P&gt;RFC user WF-BATCH   &lt;/P&gt;&lt;P&gt;RFC password init Enter the same password you created for RFC user WF-BATCH &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose Synchronize Passwords on the application toolbar. &lt;/P&gt;&lt;P&gt;A message appears on the status bar: RFC destination password and user password synchronized successfully. &lt;/P&gt;&lt;P&gt;Restart the workflow automatic customizing. Follow the activities described in the section procedure above. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make sure that automatic workflow customizing was successful, run the following activity: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Access the activity using the following navigation option: &lt;/P&gt;&lt;P&gt;Transaction Code SWU3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the screen Automatic Workflow Customizing, expand item Maintain Runtime Environment. &lt;/P&gt;&lt;P&gt;Mark all entries below item Maintain Runtime Environment with a green check flag. If these selections are not available, re-run steps 1 through 3 of the procedure described above. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 04:58:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-generator/m-p/4156922#M993819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T04:58:32Z</dc:date>
    </item>
  </channel>
</rss>

