Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

add a program unit from a hdu

Status
Not open for further replies.

masoud12

Technical User
Jul 27, 2012
16
US
i have a hdu(1) that does not EDH program unit, and have a hdu(2) that consist EDH program unit and is reserve.
so i replace hdu(2) with hdu(1) .
how can EDH remind in hdu(1)?
 
Are the HDU's equal? If yes, load the system from the HDU2, then DUPUI:UNIT=EDH,LIM=1;
Then LAPUL:UNIT=EDH,LIM=1; SFCEI; SFPUI:UNIT=EDH,LIM=1;
If not, you might need an INL or at least EDH.P and EDH.D.

fcpli
 
hi fcpli
now system worked with HDU original that dos not EDH program unit.
i want replace HDU original with HDU that have Program unit EDH.
so for this do step as follow:
Uninstall the original HDU:
BLEQI:EQU=X-X-X-0;
FIMOE:SUBFS=SYSSUBFS11;
FIMOE:SUBFS=SYSSUBFS21;
IOSIE:NODE=SYSN,IODEV=SYSDISK1;

Switch off the original HDU.

Install the new HDU:
Switch it on.
IOSII:NODE=SYSN,IODEV=SYSDISK1,SIPOS=3,SUBFS=SYSSUBFS11&SYSSUBFS21;
FICRI:SUBFS=SYSSUBFS11,SIZE=64;
FICRI:SUBFS=SYSSUBFS21,SIZE=64;
FIMOI:SUBFS=SYSSUBFS11;
FIMOI:SUBFS=SYSSUBFS21;
BLEQE:EQU=X-X-X-0;

now What should I do؟
 
sorry
correct this section:
Install the new HDU:
Switch it on.
IOSII:NODE=SYSN,IODEV=SYSDISK1,SIPOS=3,SUBFS=SYSSUBFS11&SYSSUBFS21;
FIMOI:SUBFS=SYSSUBFS11;
FIMOI:SUBFS=SYSSUBFS21;
BLEQE:EQU=X-X-X-0;

now What should i do?

 
Code sequence:
LAPUL:LIM=1,UNIT=EDH;
SFCEI;
SFPUI:UNIT=EDH,LIM=1;
 
All steps should I do:

Uninstall the original HDU:
BLEQI:EQU=X-X-X-0;
FIMOE:SUBFS=SYSSUBFS11;
FIMOE:SUBFS=SYSSUBFS21;
IOSIE:NODE=SYSN,IODEV=SYSDISK1;
Switch off the original HDU.

Install the new HDU:
Switch it on.
IOSII:NODE=SYSN,IODEV=SYSDISK1,SIPOS=3,SUBFS=SYSSUBFS11&SYSSUBFS21;
FIMOI:SUBFS=SYSSUBFS11;
FIMOI:SUBFS=SYSSUBFS21;
BLEQE:EQU=X-X-X-0;

LAPUL:LIM=1,UNIT=EDH;
SFCEI;
SFPUI:UNIT=EDH,LIM=1;



 
Kill LIM1 (hit the LPU key twice or LALRL:LIM=1;). the system laods from that HDU(2?). DUPUI the EDH. Now, you can copy the unit from sysn/usr1/ses/dr/add/p and /d to your PC (ficpi or mddt) - just in case the data in these HDU's are different. If not, just proceed as described before. If yes, replace the original HDU back, load LIM1 again, and you should have the latest data back.
Then create a folder (in the original HDU) sysn/usr1/ses/de/add/p and sysn/usr1/ses/de/add/d with fidii, or just dupui e.g. adp from LIM1, the folder will be created by the system. When ready, copy the EDH.P and EDH.D from the PC to the folder. After that, lapul, sfcei, sfpui. Note that EDH resides in LIM1 only.
During the reload of LIM1 you'll loose most of the traffic in the system for ca. 5 minutes.

Good luck!
 

I want the program unit EDH to its INL in original hdu.

LAPUL:LIM=1,UNIT=EDH,PATH=SYSN/USR1/SES/DR/INL/P; :It performs :The program unit EDH will move from HDU to LIM1.
 
It performs :The program unit EDH will move from HDU to LIM1." No, because you don't have the unit in the INL, it is located in ADD, and in this case the path /sysn.... is not necessary.

EDH should be in all original INL's. But do as described, then copy the EDH.P and .D from /ADD to /INL. If you don't have an INL in the HDU, run DUSII after performing the before mentioned.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top