in reply to Re^2: can't access dn within ldif file
in thread can't access dn within ldif file

Try:
$entry->{'attrs'}{'idcreatedon'}[0] $entry->{'attrs'}{'friendlyid'} [0]
If your version of "get_value" fails, try this (ALL untested):
print $entry->get_value("idcreatedon")."\n"; print $entry->get_value("friendlyid")."\n"; # The hash index is case-sensitive, and "get_value" documentation dema +nds 'exact match'
UPDATE: Removed attempt to do $entry->{attrs}->get_value, because 'get_value" already references the has index attrs first.

                We're living in a golden age. All you need is gold. -- D.W. Robertson.