cancel
Showing results for 
Search instead for 
Did you mean: 

Am not able to modify loginDisabled attribute for my b2bCustomer via impex.

Indumati_Patil
Discoverer
0 Kudos
176

I am attempting to modify the 'loginDisabled' attribute for customer records using the HAC impex import console and have also experimented with including it in the impex header for hotfolder implementations. While importing valid customer files via hotfolder successfully updates other attributes, the 'loginDisabled' attribute remains unchanged.

I am seeking guidance on how to successfully modify this specific attribute through impex, or if such modification is indeed feasible.

View Entire Topic
samuelyang
Product and Topic Expert
Product and Topic Expert

Hi @Indumati_Patil 

What specific issues or errors are you facing? If the Impex script failed in HAC, it should guide you how to resolve the issue/error. 

I tried it on my end, and OOTB it worked fine, unless you implemented some logics like interceptors around the field. 

insert_update Customer;uid[unique=true];loginDisabled[allownull=true];
;zohan@customer.com;true;

 

Indumati_Patil
Discoverer
0 Kudos

Hi samuelyang
Am trying to run the below impex. 

insert_update B2BCustomer;uid[unique=true];loginDisabled[allownull=true];
;zohan@customer.com;false;

But the loginDisabled attribute remain unchanged as true. The same will be running as part of hotfolder impl. 

Indumati_Patil
Discoverer
0 Kudos

Resolved:
I was missing modifier [allownull=true] It worked