/** Gets the helper name that corresponds to this delegator and the
specified entityName
[EMAIL PROTECTED] entityName The name of the entity to get the helper name
for
[EMAIL PROTECTED] String with the helper name that corresponds to this
delegator and the specified entityName
*/
public String getEntityHelperName(String entityName) {
String groupName =
getModelGroupReader().getEntityGroupName(entityName);
return this.getGroupHelperName(groupName);
}
/** Gets the an instance of helper that corresponds to this delegator
and the specified entityName
[EMAIL PROTECTED] entityName The name of the entity to get the helper for
[EMAIL PROTECTED] GenericHelper that corresponds to this delegator and the
specified entityName
*/
public GenericHelper getEntityHelper(String entityName) throws
GenericEntityException {
String helperName = getEntityHelperName(entityName);
if (helperName != null && helperName.length() > 0)
return GenericHelperFactory.getHelper(helperName);
else
throw new GenericEntityException("Helper name not found for
entity " + entityName);
}
[EMAIL PROTECTED] sent the following on 12/6/2007 6:10 PM:
> I am getting this error:
>
> Target exception: org.ofbiz.entity.GenericEntityException: Helper name not
> found for entity
>
>>From webtools entitymaint
>
> On this new Entity I just added:
>
> <!-- Simple entity to store a list of statements that a user wants to
> print -->
> <entity entity-name="StatementPrintList"
> package-name="org.ofbiz.accounting.ar"
> title="A list of customers that will have statements printed.">
> <field name="partyId" type="id-ne"/>
> <field name="partyName" type="name"/>
> <field name="userLoginId" type="id-ne"/>
> <prim-key field="partyId"/>
> <prim-key field="userLoginId"/>
> <relation type="one" rel-entity-name="Party">
> <key-map field-name="partyId"/>
> </relation>
> </entity>
>
> I've seen this before, but for the life of me can't remember what the cause
> it. Does anyone remember?
>
> Skip
>
>
>
>