How to extract the results of UX UY UZ real and image value of specific nodes on each sector?

I have a single sector cdb file and I did the following with it in apdl:
1: Apply cyclic symmetry:
cyclic,nsector,360/nsector
/cycexpand,,oN
2: Apply asymmetric forces on different sectors:
*do,i,1,nsector
CYCOPT,LDSECT,i.
*do,j,1,5
f,ffnode(j,1),fx,realvalue,imagvalue,.
*enddo
*enddo
3: Impose harmonic response analysis:
/solu
antype,3 ! Set up a harmonic response analysis
hropt,full
harfrq,f,f, !
Problem: I have the numbered nodeid of some specific nodes on the base sector, how should I extract the results of the displacement response of the nodes at the position corresponding to the nodeid on each sector? I want to extract the real and imaginary parts of their UX UY UZ. I tried to use CYCOPT,LDSECT,i, to locate the sectors and extract them, but I am at a loss as I find that other sectors generated by cyclic do not seem to be able to determine their node numbers. -----thank u for help !