cannot retrieve data by internal ID in view

cannot retrieve data by internal ID in view

I have a lookup field by ID with display "Name" on the form
then I have view with This lookup filed ( it displays name) from that form. I do not want to display internal ID on the view!!
I need to opne this view from another screen and display all the  records with specific internal ID.
The only way I know of is to use openUrl  function
however, it does not work by ID field. only if I search by Name it works:
    openUrl(" https://creator.zoho.com/ito_mu/ep-tracker/view-perma/All_EP_Registrations/EP_Name=" + input.a_ep, "popup window");
(EP_Name is a lookup field selected on the view)
input.a_ep    is internal ID .
 
 
I also tried this:
void f_test_to_delete(int a_ep)
{
    openUrl("https://creator.zoho.com/ito_mu/ep-tracker/view-perma/All_EP_Registrations/EP_Name.ID=" + input.a_ep, "popup window");
}

The other solution would be select Internal ID on the view and then hide it somehow, but I could not figure out the way to hide column on the view




Please let me know if you need access application