Asi es. corregi esa parte del procedimiento:
CREATE OR REPLACE PROCEDURE mientras (v_cuenta cobranza.CUENTA%TYPE)
IS
v_rut cobranza.rut%TYPE;
BEGIN
select rut into v_rut from cobranza where cuenta = 'v_cuenta';
END mientras;
cuando hago:
select rut from cobranza where cuenta = '123456';
me envia el dato, pero al ejecutar el procedimikento me envia un error
ora-01403: no se han encontrado datos
ora-06512: en "MGONZALEZ.MIENTRAS" LINEA 5
ora-06512: EN LINEA 7
Y sigo invesigando.
Atte
Mauricio