I have a plugin plugin1 where I am performing crud operation on my AO table(table name - AO_D26215_CCDENTITY), now I’m writing a new plugin Plugin2 where I want to read that table.
I created same entity class
String sql = “SELECT * FROM AO_D26215_CCDENTITY WHERE TYPE = ?”;
CCDEntity results = ao.findWithSQL(CCDEntity.class, sql, type);
but internally it creating new AO table AO_7AF461_AO_D26215_CCDENTITY and resulting 0 record.
How can I restrict my plugin , not to create new AO table instead pull data from provided AO table of other plugin ?