Null Pointer Exception while filling out a text field

Certified Senior Developer

Hello! 

Does anyone know why a Null Exception Error is happening at this page? (see video) This is a form that's using a very simple logic for the text field. I checked the logs and didn't get anything there, so I tried remapping the record fields. That didn't work. The logic for this text field is very simple so I'm confused why it would give an error like this, see below. Thanks for any help in advance!

Also, let me know if you need any details on this, I'll be happy to provide them!

Code:

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer

    HI  ,

    The value property of a!textField might be null, and some operations are being performed on it without handling null cases.
    Since this rule is called by others, check if data is being passed correctly between them.

    I don't see any mistake made in code, maybe due to null data being passed into value/saveInto  parameter.

    Ensure ri!otherUser is not null before accessing .companyWebsite

    write value : a!defaultValue(ri!otherUser.companyWebsite, ""),   to avoid null values, try using "" in validations instead of {}.

    Hope this helps you!!!

Reply
  • 0
    Certified Associate Developer

    HI  ,

    The value property of a!textField might be null, and some operations are being performed on it without handling null cases.
    Since this rule is called by others, check if data is being passed correctly between them.

    I don't see any mistake made in code, maybe due to null data being passed into value/saveInto  parameter.

    Ensure ri!otherUser is not null before accessing .companyWebsite

    write value : a!defaultValue(ri!otherUser.companyWebsite, ""),   to avoid null values, try using "" in validations instead of {}.

    Hope this helps you!!!

Children
  • 0
    Certified Senior Developer
    in reply to Varun Teja Gurrapu

    Hi,

    thanks for looking into this! You're right, it is getting passed from two other interfaces. The record is being passed from the parent interface, and then all the way down to this interface. I tried doing the default value and it was giving me the same error :/ I came up with a fix where I save the value in a local variable which is getting passed down from the parent, and then on the parent level, I save that local variable on the record, which removed the error from text field, but then when you click the action button to create the account, it errors out again, which makes me think the record itself is compromised? Not sure.

    Anyway, TLDR: working on it still and will update this discussion if I come up with fix.

    Thank you so much for your help again!