no debug information for types

lost

Member²
In my code I have a variable of user-defined type T_CREATE_DOC_REQUEST

SQL:
CREATE OR REPLACE TYPE T_CREATE_DOC_REQUEST UNDER T_REQUEST_BASE (
  SGUID              VARCHAR2(32)
, SPARENT_GUID       VARCHAR2(32)
, SDOCUMENTTYPE      VARCHAR2(30)
, SDEPARTMENT        VARCHAR2(254)
, RECGROUPDOC        T_GROUPDOC
, RASPLITACCOUNTS    T_SPLITACCOUNTS
, RECPAYMENT         T_PAYMENT
, S_SWIFT_MT         VARCHAR2(100)
, RECCASH            T_CASH
, RECPROCESSDOC      T_PROCESSDOC
, RECUZVO            T_UZVO
, RAPROPS            T_PROPS
, RAENUMS            T_ENUMS
, RADESCS            T_DESCS
, RATYPES            T_TYPES
, RAADDITIONAL_ATTRS T_ADDITIONAL_ATTRS
) NOT FINAL INSTANTIABLE
/
CREATE OR REPLACE TYPE T_REQUEST_BASE AS OBJECT (
  SSUBSYSTEM   VARCHAR2(30)
, NDEPARTMENT  NUMBER
, RECOPERATOR  T_SIGNATURE
, RATRANSPROPS T_PROPERTIES
, SDST_SYSTEM  VARCHAR2(30)
, SMESSAGEID   VARCHAR2(32)
) NOT FINAL INSTANTIABLE

While debugging, PLSD show values only of SSUBSYSTEM and NDEPARTMENT type fields, and (No debug information) for the others: either in watches list or when I hover mouse cursor over the variable/variable.field.
Now I using version 14.0.1 and don't remember if it works in previous versions.

s!AlBrUAujigVUhHJAw1sXhnP76KCy

P.S. How to attach an image here to illustrate this?
 
In the screenshot I can see that (for example) the recoperator attributes are displayed as "No debug information". The recoperator attribute is of type T_SIGNATURE. Can you right-click on the T_SIGNATURE object type in the Object Browser, select "Add debug information", and try again?
 
I added debug info, nothing changes.
By the way, at the moment of screenshot, type T_REQUEST_BASE hasn't debug info, and fields SDST_SYSTEM and SMESSAGEID have values. But, this values not displayed!
It seems, that PLSD debugger breaks on field of record type (T_SIGNATURE in that case).
 
Can you send the creation DDL for all object types involved to support@allroundautomations.com, so that we can try to reproduce this?
 
Back
Top