Separate programs

Sometimes, some programs are needed to be prevented to run with other related programs such as local UPDATE programs without lock or ones using temporary interface tables.

So programmers need to separate those programs but HOW? Here is one solution for checking running programs each other.


  data : th_opcode(1) type x,
        with_cpu    type x value 0.


constants: opcode_wp_list like  th_opcode value 1.

 data: begin of wp_tabl occurs 10.
         include structure wpinfo.
 data: end of wp_tabl.

 free : wp_tabl.

 call 'ThWpInfo' id 'OPCODE' field  
                     opcode_wp_list
                 id 'TAB' field 
                     wp_tabl-*sys*
                 id 'CPU' field 
                     with_cpu.

loop at wp_tabl.
  if   wp_tabl-wp_report = 'SAPMZTAD'. 
    or wp_tabl-wp_report = 'ZMXZT52' .
     message e100(zi)
        with 'Other related programs   
              are running now.'.  
   endif .
 endloop.

    Requires Free Membership to View

This was first published in March 2001

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.