<?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 How to block Report or program ?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625498#M603241</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;&lt;/P&gt;&lt;P&gt;How to block Report or program ??&amp;lt;b&amp;gt;which tcode&amp;lt;/b&amp;gt; i can use to temporary suspend the report or program to exexute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jul 2007 12:50:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-24T12:50:39Z</dc:date>
    <item>
      <title>How to block Report or program ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625498#M603241</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;&lt;/P&gt;&lt;P&gt;How to block Report or program ??&amp;lt;b&amp;gt;which tcode&amp;lt;/b&amp;gt; i can use to temporary suspend the report or program to exexute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 12:50:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625498#M603241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T12:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to block Report or program ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625499#M603242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure of your requirement, but see this document... it might help you.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, let&amp;#146;s start with creating an order. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function that we are going to use is CLOI_CHANGES_UPL_31.There is one important point that you have to keep in mind when working with the function: you are given just one call per session. That means, you can create one order or many orders, but with one call. After that, some internal state data is messed up and to save us from initializing it (which has to be done with some really internal functions), we better start a new session if we need to call the function again. So, in my example code below I am going to check whether the current session is not the last one allowed for the current user and call the function in a new task. Note that we have to do the check before EACH call unless we are really sure (I do it only once in the sample code below). &amp;lt;b&amp;gt;Since it&amp;#146;s going to be an asynchronous call, we need to suspend our program until the function running in parallel finishes and get the return data into our program&amp;lt;/b&amp;gt;. This is achieved with standard SAP constructs like &amp;#147;performing &amp;#133; on end of task&amp;#148; in the CALL FUNCTION statement and &amp;#147;receive results&amp;#148; in the form that is performed. I am also using a global variable that tells me that the call is over. You can find more useful information in SAP OSS note 545860 that described those specifics about calling that function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;1. Create a production order.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_cloi_ord_exp          type standard table of cloiord,&lt;/P&gt;&lt;P&gt;      lw_cloi_ord_exp         type cloiord,&lt;/P&gt;&lt;P&gt;      lt_cloi_msg_obj_log_exp type standard table of cloimoblog,&lt;/P&gt;&lt;P&gt;      lt_cloi_methods_exp     type standard table of cloimetlog,&lt;/P&gt;&lt;P&gt;      t_cloi_messages_exp     type standard table of cloimsglog,&lt;/P&gt;&lt;P&gt;      lw_cloi_messages_exp    type cloimsglog,&lt;/P&gt;&lt;P&gt;      ls_cloi_if_par_v2       like cloiifpar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:     lt_cloi_ordu        type standard table of cloiordu,&lt;/P&gt;&lt;P&gt;          lw_cloi_ordu        type cloiordu,&lt;/P&gt;&lt;P&gt;          lt_cloi_ordi        type standard table of cloiordi,&lt;/P&gt;&lt;P&gt;          lw_cloi_ordi        type cloiordi,&lt;/P&gt;&lt;P&gt;          lt_cloi_ord_opru    type standard table of CLOIOPERU,&lt;/P&gt;&lt;P&gt;          lw_cloi_ord_opru    type CLOIOPERU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  lf_date   like sy-datum,&lt;/P&gt;&lt;P&gt;  lf_date2  like sy-datum,&lt;/P&gt;&lt;P&gt;  f_flag(1) type c,&lt;/P&gt;&lt;P&gt;  f_aufnr   like aufk-aufnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: f_act_sess like sm04dic-counter,&lt;/P&gt;&lt;P&gt;      f_max_sess like sm04dic-counter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lf_date = sy-datum + 7.   "let's try to schedule it next week&lt;/P&gt;&lt;P&gt;lf_date2 = sy-datum + 14.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: ls_cloi_if_par_v2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;those fields below are described in SAP help, but nevermind...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ls_cloi_if_par_v2-commitflg   = 'C'.&lt;/P&gt;&lt;P&gt;ls_cloi_if_par_v2-r3_version  = '40'.&lt;/P&gt;&lt;P&gt;ls_cloi_if_par_v2-metlog_req  = 'X'.&lt;/P&gt;&lt;P&gt;ls_cloi_if_par_v2-msglog_req  = 'X'.&lt;/P&gt;&lt;P&gt;ls_cloi_if_par_v2-msgobj_req  = 'X'.&lt;/P&gt;&lt;P&gt;ls_cloi_if_par_v2-ord_req     = 'X'.&lt;/P&gt;&lt;P&gt;ls_cloi_if_par_v2-ordseq_req  = 'X'.&lt;/P&gt;&lt;P&gt;ls_cloi_if_par_v2-ordopr_req  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;in case if we have external number range,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;we have to provide the future order number&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lw_cloi_ordi-extaufnr = '1234567890'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;material&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lw_cloi_ordi-field =  'MATNR'.&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-value =  'MATNUM1'.&lt;/P&gt;&lt;P&gt;append lw_cloi_ordi to lt_cloi_ordi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;plant&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lw_cloi_ordi-field =  'WERKS'.&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-value = 'W001'.&lt;/P&gt;&lt;P&gt;append lw_cloi_ordi to lt_cloi_ordi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;order type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lw_cloi_ordi-field =  'AUART'.&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-value = 'PP01'.&lt;/P&gt;&lt;P&gt;append lw_cloi_ordi to lt_cloi_ordi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;quantity&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lw_cloi_ordi-field =  'BDMNG'.&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-value = '100'.&lt;/P&gt;&lt;P&gt;append lw_cloi_ordi to lt_cloi_ordi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-field =  'GLTRP'.    "finish date&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-value = lf_date2.&lt;/P&gt;&lt;P&gt;append lw_cloi_ordi to lt_cloi_ordi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-field =  'GSTRP'.    "start date&lt;/P&gt;&lt;P&gt;lw_cloi_ordi-value = lf_date.&lt;/P&gt;&lt;P&gt;append lw_cloi_ordi to lt_cloi_ordi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;now check if we have one free session&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call function 'TH_USER_INFO'&lt;/P&gt;&lt;P&gt;     importing&lt;/P&gt;&lt;P&gt;          act_sessions = f_act_sess&lt;/P&gt;&lt;P&gt;          max_sessions = f_max_sess&lt;/P&gt;&lt;P&gt;     exceptions&lt;/P&gt;&lt;P&gt;          others       = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc  0 or f_act_sess &amp;gt;= f_max_sess.&lt;/P&gt;&lt;P&gt;  message e208(00) with 'No more free sessions'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;and finally, let it happen!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;clear: f_flag.&lt;/P&gt;&lt;P&gt;call function 'CLOI_CHANGES_UPL_31'&lt;/P&gt;&lt;P&gt;     starting new task 'CLOI_TEST'&lt;/P&gt;&lt;P&gt;     performing receive_res on end of task&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;          cloi_if_par          = ls_cloi_if_par_v2&lt;/P&gt;&lt;P&gt;     tables&lt;/P&gt;&lt;P&gt;          cloi_ordi_imp        = lt_cloi_ordi&lt;/P&gt;&lt;P&gt;          cloi_method_log_exp  = lt_cloi_methods_exp&lt;/P&gt;&lt;P&gt;          cloi_message_log_exp = t_cloi_messages_exp&lt;/P&gt;&lt;P&gt;          cloi_msg_obj_log_exp = lt_cloi_msg_obj_log_exp&lt;/P&gt;&lt;P&gt;          cloi_ord_exp         = t_cloi_ord_exp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;wait till the global variable will be set by our form&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wait until f_flag = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the form that is used to receive results and signalize&lt;/P&gt;&lt;P&gt;the end of processing:&lt;/P&gt;&lt;P&gt;form receive_res using taskname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: lt_cloi_msg_obj_log_exp type standard table of cloimoblog,&lt;/P&gt;&lt;P&gt;        lt_cloi_methods_exp     type standard table of cloimetlog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  receive results from function 'CLOI_CHANGES_UPL_31'&lt;/P&gt;&lt;P&gt;     tables&lt;/P&gt;&lt;P&gt;       cloi_method_log_exp        = lt_cloi_methods_exp&lt;/P&gt;&lt;P&gt;       cloi_message_log_exp       = t_cloi_messages_exp&lt;/P&gt;&lt;P&gt;       cloi_msg_obj_log_exp       = lt_cloi_msg_obj_log_exp&lt;/P&gt;&lt;P&gt;       cloi_ord_exp               = t_cloi_ord_exp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  f_flag = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The list of created production orders is returned back in the global table t_cloi_ord_exp. Now, let&amp;#146;s release them. (Setting, for example, technically complete status is similar). We are going to use the parameter cloi_ordu_imp instead of cloi_ordi_imp (I for insert, U for update). We populate the field FIELD with the value &amp;#147;METHOD&amp;#148; to say that we are not setting any values but we want to call a &amp;#147;method&amp;#148; of releasing the order (method in the same sense as in object programming).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;release created prod order&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: lt_cloi_ordu.&lt;/P&gt;&lt;P&gt;loop at t_cloi_ord_exp into lw_cloi_ord_exp.&lt;/P&gt;&lt;P&gt;  check not lw_cloi_ord_exp-aufnr is initial.&lt;/P&gt;&lt;P&gt;  clear: lw_cloi_ordu.&lt;/P&gt;&lt;P&gt;  lw_cloi_ordu-aufnr  =  lw_cloi_ord_exp-aufnr.&lt;/P&gt;&lt;P&gt;  f_aufnr  =  lw_cloi_ord_exp-aufnr.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Methods:&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SetTechnicalComplete&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    RevokeTechnicalCompletion&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Schedule&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Release&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SetUserStatus&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    RevokeUserStatus&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  lw_cloi_ordu-field  =  'METHOD'.&lt;/P&gt;&lt;P&gt;  lw_cloi_ordu-value  =  'Release'.&lt;/P&gt;&lt;P&gt;  append lw_cloi_ordu to lt_cloi_ordu.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: lt_cloi_methods_exp, t_cloi_messages_exp,&lt;/P&gt;&lt;P&gt;       lt_cloi_msg_obj_log_exp, t_cloi_ord_exp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: f_flag.&lt;/P&gt;&lt;P&gt;call function 'CLOI_CHANGES_UPL_31'&lt;/P&gt;&lt;P&gt;     starting new task 'CLOI_TEST'&lt;/P&gt;&lt;P&gt;     performing receive_res on end of task&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;          cloi_if_par          = ls_cloi_if_par_v2&lt;/P&gt;&lt;P&gt;     tables&lt;/P&gt;&lt;P&gt;          cloi_ordu_imp        = lt_cloi_ordu&lt;/P&gt;&lt;P&gt;          cloi_method_log_exp  = lt_cloi_methods_exp&lt;/P&gt;&lt;P&gt;          cloi_message_log_exp = t_cloi_messages_exp&lt;/P&gt;&lt;P&gt;          cloi_msg_obj_log_exp = lt_cloi_msg_obj_log_exp&lt;/P&gt;&lt;P&gt;          cloi_ord_exp         = t_cloi_ord_exp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wait until f_flag = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, as the order is created and released, let&amp;#146;s do some simple change. We are going to change the workcenter of the order&amp;#146;s operation.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;change the work center of the operation 0010&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: lt_cloi_ord_opru.&lt;/P&gt;&lt;P&gt;clear: lw_cloi_ord_opru.&lt;/P&gt;&lt;P&gt;lw_cloi_ord_opru-aufnr  =  f_aufnr.&lt;/P&gt;&lt;P&gt;lw_cloi_ord_opru-aplfl  =  0.&lt;/P&gt;&lt;P&gt;lw_cloi_ord_opru-vornr  =  '0010'.&lt;/P&gt;&lt;P&gt;lw_cloi_ord_opru-field  =  'ARBID'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;note that this is the internal ID of workcenter!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lw_cloi_ord_opru-value  =  '10000001'.&lt;/P&gt;&lt;P&gt;append lw_cloi_ord_opru to lt_cloi_ord_opru.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: lt_cloi_methods_exp, t_cloi_messages_exp,&lt;/P&gt;&lt;P&gt;       lt_cloi_msg_obj_log_exp, t_cloi_ord_exp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: f_flag.&lt;/P&gt;&lt;P&gt;call function 'CLOI_CHANGES_UPL_31'&lt;/P&gt;&lt;P&gt;     starting new task 'CLOI_TEST'&lt;/P&gt;&lt;P&gt;     performing receive_res on end of task&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;          cloi_if_par          = ls_cloi_if_par_v2&lt;/P&gt;&lt;P&gt;     tables&lt;/P&gt;&lt;P&gt;          cloi_ord_opru_imp    = lt_cloi_ord_opru&lt;/P&gt;&lt;P&gt;          cloi_method_log_exp  = lt_cloi_methods_exp&lt;/P&gt;&lt;P&gt;          cloi_message_log_exp = t_cloi_messages_exp&lt;/P&gt;&lt;P&gt;          cloi_msg_obj_log_exp = lt_cloi_msg_obj_log_exp&lt;/P&gt;&lt;P&gt;          cloi_ord_exp         = t_cloi_ord_exp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wait until f_flag = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That&amp;#146;s it! The function that we use doesn&amp;#146;t let us do anything we may need, but it can be very useful anyways....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this might help you....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 13:08:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625499#M603242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T13:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to block Report or program ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625500#M603243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use transaction SM01 to lock/unlock transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 13:13:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625500#M603243</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-07-24T13:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to block Report or program ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625501#M603244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even I have a similar requirement.&lt;/P&gt;&lt;P&gt;I am having a program XYZ which is having an  include ABC.This program XYZ is no longer in use but lies in Production.This program XYZ is not having a checkbox called psum and not used in the include ABC. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At a later date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have another program FGH which is having the same include ABC.This report is having a checkbox called psum which is used even in the include ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is when I transport this program FGH it is showing an error that program XYZ is having a include ABC where psum is in use but not declared as a checkbox in the program XYZ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best way to avoid this problem.XYZ is no longer in use and I don't want this error to be repeated in the future whenever FGH is transported.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly let me know.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 13:28:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625501#M603244</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-07-24T13:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to block Report or program ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625502#M603245</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;in the attributes of program check the &amp;lt;b&amp;gt;Editor flag&amp;lt;/b&amp;gt; checkbox &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Editor lock flag&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The editor lock flag prevents other users from making changes to the&lt;/P&gt;&lt;P&gt;    program. This includes attributes, documentation and text elements, as&lt;/P&gt;&lt;P&gt;    well as the functions "Rename" and "Delete".&lt;/P&gt;&lt;P&gt;    Only the last person to change the program can remove the flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Use&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Enables an individual user to lock the program. Also facilitates locking&lt;/P&gt;&lt;P&gt;    of the program source for PC download purposes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 13:31:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625502#M603245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T13:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to block Report or program ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625503#M603246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Comment the include instruction in the older main program (or comment all instructions) and then transport it or you can delete and transport the old program. (comment is better of course)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can check the value of sy-cprog (main program) in the include, assigning a field-symbol to the new checkbox if the include is called by the new program. (and checking again before using it)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 13:38:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-block-report-or-program/m-p/2625503#M603246</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-07-24T13:38:18Z</dc:date>
    </item>
  </channel>
</rss>

