0% found this document useful (1 vote)
218 views

ZCPPC Master Recipe

The document describes a master recipe program that uploads data to create master recipes in transaction C201. The program contains various operations and phases, and allows providing operation details and process instructions for phases. It includes files for BDC, data declaration, and performs. The program uploads data, performs BDC for transaction C201, and displays an audit report in ALV format.

Uploaded by

api-3797763
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (1 vote)
218 views

ZCPPC Master Recipe

The document describes a master recipe program that uploads data to create master recipes in transaction C201. The program contains various operations and phases, and allows providing operation details and process instructions for phases. It includes files for BDC, data declaration, and performs. The program uploads data, performs BDC for transaction C201, and displays an audit report in ALV format.

Uploaded by

api-3797763
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

************************************************************************

* program name : zcppc_master_recipe create date : 21/10/07 *


* author name : talwinder singh last update : 21/10/07 *
*
*
* program title : master recipe *
* description :to upload data in create master recipe in transaction*
* c201. master recipe contains various operations and phases*
* and if it is a phase we have to give operation details and*
* process instructions for the same. if all the above *
* information is provided, then master recipe is made. *
*
*modified by talwinder singh on 21/10/07. *
*----------------------------------------------------------------------*
* includes : bdcrex1,zcppc_data_dec,zcppc_bdcperforms.

* calls : f4_filename ,
* gui_upload,
* reuse_alv_grid_display.
*-----------------------------------------------------------------------*
* change history
*-----------------------------------------------------------------------*
* mod. # | date | developer | description *
*-----------------------------------------------------------------------*

*************************************************************************

report zoppc_master_recipe
no standard page heading line-size 255.

include bdcrecx1. "include for bdc standard selection


screen.

*------------------------------------------------------------------------*
* include for data declaration *
*------------------------------------------------------------------------*

include zcppc_data_dec. "include for all data declarations.

*------------------------------------------------------------------------*
* include for all performs. *
*------------------------------------------------------------------------*

include zcppc_bdcperforms. "include for all bdc performs.

*------------------------------------------------------------------------*
* start-of-selection. *
*------------------------------------------------------------------------*

start-of-selection.
if p_pres eq 'x'. "presentation server file

perform f_upload.

elseif p_appl eq 'x'. "application server file

perform f_appl_ser.
endif.
perform f_c201_bdc. "perform bdc for transaction
'c201'.

if session <> 'x'.


perform f_alvdisplay. "perform for displaying the
audit report in alv format.
endif.

You might also like