cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

No current header for value line

Former Member
0 Kudos
2,686

Given the following item:

             <itemtype code="CartPageConfig"  jaloclass="de.hybris.platform.jalo.config.CartPageConfig">
                 <deployment table="CartPageConfig" typecode="21033" />
                 <attributes>
                     <attribute qualifier="code" type="java.lang.String">
                         <modifiers unique="true" optional="false"/>
                         <persistence type="property" />
                     </attribute>
                     <attribute qualifier="shipToStores" type="AllowedStoresList">
                         <description> List of stores where the notification should be shown </description>
                         <persistence type="property"/>
                     </attribute>
                 </attributes>
                 <indexes>
                     <index name="code" unique="true">
                         <key attribute="code"/>
                     </index>
                 </indexes>
             </itemtype>

And the following item to insert data for the above item:

 CartPageConfig;code[unique=true];shipToStores;baseStores(uid)
 ;cartPageConfig;US;en-US-PT02

I get the following error when trying to import the above impex:

 CartPageConfig,,,,;code[unique=true];shipToStores;# no current header for value line
 
 ,,,,;cartPageConfig;US;# no current header for value line
 
 
 23.07.2019 16:12:06: ERROR: de.hybris.platform.impex.jalo.ImpExException: Can not resolve any more lines ... Aborting further passes (at pass 2). Finally could not import 2 lines![HY-123]




Accepted Solutions (1)

Accepted Solutions (1)

arvind-kumar_avinash
Active Contributor
0 Kudos

Hi - You need to add one of INSERT, INSERT_UPDATE, UPDATE, REMOVE with the header e.g.

  INSERT_UPDATE CartPageConfig;code[unique=true];shipToStores;baseStores(uid)
  ;cartPageConfig;US;en-US-PT02

Answers (0)