Complete the steps required to create an
Enterprise Developer solution and project, import the MFDEMO IMS application into the project, set the project properties, build the application, and perform additional required steps to enable the application to run in
Enterprise Server.
Create the solution and project
- Create a working directory on your machine.
In this tutorial, we use
c:\tutorials. If you have chosen to use an alternative working directory, remember to substitute it when the instructions specify
c:\tutorials.
- Start
Enterprise Developer.
- In Visual Studio, click
.
- In the
New Project dialog box, expand
.
- Select Native.
- In the center pane, select Mainframe Subsystem Application.
- In the
Name field, type the name of the project:
IMSTutorial.
- Specify your working directory,
c:\tutorials, in the
Location field.
- Uncheck
Create directory for solution.
- Click
OK.
In
Enterprise Developer, this creates a solution named
IMSTutorial that contains one project, also named
IMSTutorial.
On disk, this creates an
IMSTutorial subdirectory to your working directory. The
IMSTutorial subdirectory contains the
IMSTutorial.sln Visual Studio solution file. In addition, this action creates an
IMSTutorial\IMSTutorial subdirectory. This is the project directory.
Add demonstration application files
- In Solution Explorer, right-click the project and then use
Add > New Folder to add each of these subfolders to the project:
- cbl
- dbd
- mfs
- psb
- loadlib
- system
This adds the project subfolders to the Solution Explorer, and creates project subdirectories on disk.
Use the following table to help you determine which demonstration files to add to which subfolder.
Subfolder name
|
Files to add
|
Comments
|
cbl
|
DEMO001T.CBL
RGHTJUST.CBL
|
|
dbd
|
DEMO03DD.DBD
|
|
loadlib
|
TRANCODE.TXT
DEMO03DD.DBU
|
Contains data files and eventually the executables required at runtime.
|
mfs
|
DEMO90.MFS
DEMO91.MFS
DEMO92.MFS
|
|
psb
|
DEMO001T.PSB
|
|
system
|
None
|
Eventually contains system files such as the resource definitions file,
dfhdrdat.
|
- In Solution Explorer, right-click a subfolder of your project and select
Add > Existing Item.
- Browse to the
%PUBLIC%\Documents\Micro Focus\Enterprise Developer\Samples\Mainframe\IMS\Classic\IVP or
IVP64 (for 64-bit) directory (default location).
- Optionally set the
Objects of type filter to show only the type of files you want to add.
- Select the appropriate files; then click
Add.
- Repeat steps
3 through
6 to add all appropriate demo files.
This adds the files to the project and creates copies of the files in the respective subdirectories of your project.
Set project properties
- In Solution Explorer, double-click your project's
Properties folder.
The Properties page lists a series of tabs on the left side.
- On the
COBOL tab, set
Configuration to
Active (Debug).
- Set
Platform target to
Active (x86).
- Set
COBOL dialect to
Enterprise COBOL for z/OS.
- Set the
Character set to
ASCII.
- Set
Source Format to
Fixed.
- Check
Compile for debugging.
- In the
Output path field, type the path to the
loadlib subfolder of your project. Because the current directory is the project directory, this can be expressed as
.\loadlib.
- On the
IMS tab, type
.\loadlib into the
Generated file path,
MFS output path,
Database path, and
Configuration file path fields.
This directs the output for all generated IMS files into the
loadlib project directory.
- In the
DBD Build Settings section, check
Generate Map for DBD.
- On the
Debug tab, select
IMS from the
Active Settings drop-down list.
- Click
File > Save All to save the changes in the project properties.
Build the project
- In the Solution Explorer, right-click the project; then select
Build from the context menu.
- Check your project directory to see the different executables and other files produced by the build such as those in the
project's
loadlib directory. For example:
- DBDGEN2.DAT
- DBDGEN2F.DAT
- PSBGEN3.DAT
- DEMO001T.ACB
- DEMO03DD.ACB
- The MFS files generation creates some
.mid,
.mod,
.dif and
.dof files. These files contain system configuration data. You should move them only if you know how to configure your enterprise
server.
- Building the DBD and the PSB files produces respectively
dbdgen2.dat,
dbdgen2f.dat,
psbgen3.dat as well as some
.acb files.