EAGenerateDraftEntityFromEntityActionNoFlush
This document was generated using Claude.ai Visit Field Values Calculator to know more about fields map and the available features
Overview
Same as EAGenerateDraftEntityFromEntityAction but without automatic database flush for batch processing optimization.
When This Action Runs
Batch draft entity creation where database flush timing needs to be controlled for performance optimization.
How It Works
- Validates parameters and identifies target entity type for generation
- Creates draft entity in memory using source entity data and field mappings
- Applies field mappings without database persistence
- Defers flush operation keeping changes in memory for batch processing
- Returns generated entity ready for manual flush when needed
Parameters
Same parameters as EAGenerateDraftEntityFromEntityAction
Database Tables Affected
- Target Entity Tables - Creates draft entities in memory (not flushed to database)
- Source Entity Tables - May update source entity based on inverse mapping
Important Warnings
⚠️ Manual Flush Required
- Changes are NOT automatically saved to database
- Must call manual flush to persist changes
- Risk of data loss if system fails before flush
Module: core
Full Class Name: com.namasoft.infor.domainbase.util.actions.EAGenerateDraftEntityFromEntityActionNoFlush
Related Actions:
- EAGenerateDraftEntityFromEntityAction - Standard draft entity generation with auto-flush
- EAGenerateEntityFromEntityActionNoFlush - Standard entity generation without flush
- EAAutomaticGenerateEntityFromEntityAction - Automatic entity generation
- EAGenerateEntityFromEntityActionNoFlushWithApproval - Generation with approval, no flush
- EAGenerateEntityFromEntityActionWithApproval - Generation with approval process
- EAAutomaticGenerateEntityFromEntityActionWithApproval - Automatic generation with approval