Skip to main content
raulg0001
Inspiring
February 16, 2022
Question

import object with depen

  • February 16, 2022
  • 3 replies
  • 0 views

Hello ,

Is there any way to import an object even if it has a dependency not found? I can't access the application environment because it was an appian test environment and it has been removed. I only have the export package

3 replies

mikes0011
Brainy
February 16, 2022

Your interface is referring to a Record Type somewhere.  The only "officially supported" way to do this would be to find an export of that same Record Type from your project archives and import it first to the target environment.

If the record type is referenced in a superficial way in the interface, you might be able to get something to work by directly manipulating the XML in your export package, though this is unsupported methodology and recommended to try only in emergencies (if then).

The Expression Guru
raulg0001
raulg0001Author
Inspiring
February 16, 2022

I have tried to create an XML, simulating that it is the record, assigning the uuid that it should have, but it returns me a Java error. :(

mikes0011
Brainy
February 16, 2022

The edit I was thinking of was more along the lines of opening the interface XML, commenting out the reference to the record type (assuming it's used somewhere in the code in a superficial manner and not like as a rule input), then trying to import that instead.

The Expression Guru