Skip to main content
Question

'Load Records from File' on Document Templates screen is missing properties

  • 5 October 2023
  • 3 replies
  • 79 views

I have created 'Load Records from File' on Document Templates screen.

 

 

However, when I Import, the 'TemplateId' attribute is missing in Property Name

In the AUTemplateData table, there is the attribute 'TemplateId'

 


Here is my code

   ÂPXImport(typeof(AUTemplateData))]
   public PXSelectJoin<AUTemplateData,
          InnerJoin<AUTemplate, On<AUTemplate.templateID, Equal<AUTemplateData.templateId>>>,
              Where<AUTemplateData.templateId,Equal<Current<AUTemplate.templateID>>>> Items;


How can i fix it ? Can someone please help me.

3 replies

Userlevel 6
Badge +6

@phat In Acumatica Only those fields which are by default on Selected Columns, file uploader mapping is available. For those which are on Available Columns, this is not working.

Column Configuration Document Template

That field, TemplateId should be automatically set by system when the lines are added. Do you have any problem with your Uploader if you ignore mapping TemplateId?

Badge

@phatIn Acumatica Only those fields which are by default on Selected Columns, file uploader mapping is available. For those which are on Available Columns, this is not working.

Column Configuration Document Template

That field, TemplateId should be automatically set by system when the lines are added. Do you have any problem with your Uploader if you ignore mapping TemplateId?



Hi @hkabiri 

When I import without TeplateId, I cannot save the data I just imported.
 

 

Badge

@phatIn Acumatica Only those fields which are by default on Selected Columns, file uploader mapping is available. For those which are on Available Columns, this is not working.

Column Configuration Document Template

That field, TemplateId should be automatically set by system when the lines are added. Do you have any problem with your Uploader if you ignore mapping TemplateId?



Hi @hkabiri 

When I import without TeplateId, I cannot save the data I just imported.
 

 

 

In addition, I discovered that in Selected Columns there is no OrderID. 
 

 

 

 

 

Reply