Ericsson BSC cell deletion

Dear Experts,

Can anyone guide me how to delete a sector from EVO Ericsson BSC , I need the entire command and procedure.

Thanks In Advance

BR/

Hi, @Sebastiansilver, here is the procedure:

!halt cell!
RLSTC:CELL=XXXX,STATE=Halted;

!block RXOTG!
RXBLI:MO=RXOTG-5,FORCE,SUBORD;
RXESE:MO=RXOTG-5,SUBORD;
! or RXSTG!
RXBLI:MO=RXSTG-5,FORCE;
RXESE:MO=RXSTG-5;

!detach cell from TRX and TX in case RXOTG!
rxmoc:mo=RXOTRX-5-0, cell=all;
rxmoc:mo=RXOTRX-5-1, cell=all;

rxmoc:mo=RXOTX-5-0, cell=all;
rxmoc:mo=RXOTX-5-1, cell=all;

!detach channel groups from TG!
rxtce:mo=rxotg-5,cell=XXXX,chgr=0&1;
!or!
rxtce:mo=rxstg-5,cell=XXXX,chgr=0&1;

!shut off supervision!
RLVLE:CHTYPE=TCH;
RLVLE:CHTYPE=SDCCH;
RLSLE:CELL=XXXX,PERM;
RLVLE:CELL=XXXX,CHTYPE=TCH;
RLVLE:CELL=XXXX,CHTYPE=SDCCH;

!delete cell!
RLDEE:CELL=XXXX;

!enable supervision!
RLVLI:CHTYPE=TCH;
RLVLI:CHTYPE=SDCCH;

let me know if this helps or any question. Good luck!

Thanks a lot , I appreciate . I will do it and let you know .

BR/

Hi

I am unable to block the TG and it is showing as format error

image
image
your support please
BR//

These are my commands to delete a cell from BSC.
Change {cell} to your sector and {mo} to 664:

!---------------------------------------!
## BSC, Cell, Delete
RLDEP:CELL={cell};
RLSTC:CELL={cell},STATE=HALTED;
RLVLE:CHTYPE=TCH;
RLVLE:CHTYPE=SDCCH;
RLVLE:CELL={cell},CHTYPE=TCH;
RLVLE:CELL={cell},CHTYPE=SDCCH;
RLVLI:CHTYPE=TCH;
RLVLI:CHTYPE=SDCCH;
RLSLP:CELL={cell};
RLSLE:CELL={cell},SCTYPE=UL,PERM;
RLSLE:CELL={cell},SCTYPE=OL,PERM;
RATTP:CELL={cell};
RLNCP:CELL={cell};
RLMFP:CELL={cell};
RXTCE:MO=RXOTG-{mo},CELL={cell},CHGR=0&&2; ! modify as needed !
RXBLI:MO=RXOCF-{mo},FORCE,SUBORD;
RXESE:MO=RXOTG-{mo},SUBORD;
RXMOC:MO=RXOTRX-{mo}-{tru},CELL=ALL;
RXMOC:MO=RXOTX-{mo}-{tru},CELL=ALL;
RLDEE:CELL={cell};
!---------------------------------------!

However, I see that you have a RXSTG (Logical Model G31) instead of the older RXOTG.
Change accordingly any command that needs it.
Regards,

Hi @Sebastiansilver, for RXSTG there is no subord objects, use only FORCE.

1 Like

Thanks Nezer

BR//

Ok Noted , Thanks a lot

BR//

Cell deleted, Thanks a lot . I really appreciate