For some reason, when executing the following code, the result of the query is not shown by the output of dbms. The same code has been tested on another PC and it works. For the script output shows that everything went well:
PL / SQL procedure terminated correctly.
BEGIN
For x IN(SELECT SECONDARY_INVENTORY_NAME FROM MTL_SECONDARY_INVENTORIES WHERE ORGANIZATION_ID=203)LOOP
DBMS_OUTPUT.PUT_LINE(x.SECONDARY_INVENTORY_NAME);
END LOOP;
END;
I have no more information to explain this. What can I be going through and not let the result come out of the DBMS output?