Was this helpful?
Master Application Example
If multiple developers are working on an application, they can develop portions of the application independently. Then they can use iiimport and iiexport to copy frames and other components into a master application as they are developed.
In this example, the master application is the "orders" application. The development team designs the overall structure of the application.
Now the developers are assigned to different pieces of the application. Developer A is assigned to modify "neworders," an Append frame called by the "orders" Menu frame.
Developer A makes the following changes to the application:
Modifies the "neworders" frame
Adds the called procedure "calctax"
Adds the child frame "addbooks"
Passes some parameters from "neworders" to "changeinfo"
Passes parameters from "neworders" to "addbooks"
Examples:
The following examples use the scenario described in the section, Master Application Example. Developer A wants to merge the revised frames and other components into the master "orders" application.
Replace the master "neworders" frame with the "neworders" frame in abc_orders:
iiexport tutor abc_orders -frame=neworders
iiimport tutor orders
After the import, the child frames "calctax" and "addbooks" do not appear in the "orders" application, or in the menu for the "neworders" frame in the target application. The "changeinfo" frame is not changed.
Copy the procedure "calctax" into the master application:
iiexport tutor abc_orders -proc=calctax
iiimport tutor orders
If the procedure uses a global variable taxamt, the variable must exist in the target application. If it does not, copy the variable by specifying it to iiexport:
iiexport tutor abc_orders -global=taxamt
iiimport tutor orders
You can also copy the procedure and the variable at the same time:
iiexport tutor abc_orders -proc=calctax - global=taxamt
iiimport tutor orders
Copy the frame "neworders" and its child frame, "changeinfo":
iiexport tutor abc_orders -frame=neworders,changeinfo
iiimport tutor orders
In this case, because the child frame "changeinfo" is specified to iiexport, the "changeinfo" frame in the target application is changed.
Copy the frame "neworders" and its child frame "addbooks":
iiexport tutor abc_orders -frame=neworders,addbooks
iiimport tutor orders
In this case, the child frame "addbooks" is specified to iiexport, so the frame is copied.
Last modified date: 01/30/2023