in reply to Direferencing problem

If you want help instead of $ctf->PlanningAp post the output of  Data::Dump::dd( $artfList )

That way we can run the program, and fix it, and you can run this short program and believe it :)

Replies are listed 'Best First'.
Re^2: Direferencing problem
by David92 (Sexton) on Jul 30, 2014 at 07:47 UTC

    I would gladly do that, but unfortunately, I am a student working for a firm and I dont have the priviliges (rights) to install CPAN modules.. and the Data::Dump is not pre-installed with it. So I'd have to ask someone with right, but my boss is on vacation.

    Will see what I can do about that. But in the meantime, I posted the output of $artfList:

    #Outpus of $artfList: #ArftifactInPlanningFolderSoapList=HASH(0x27d8630)

    Hope, this will be helpful enough

      As an alternative, Data::Dumper is unlikely to be removed and will also give you an overview of your data structure.

      Hi,

      Data::Dumper is part of the perl core and should be available for you to solve the same problem.

      use Data::Dumper; ... print Dumper($element), "\n";

      Regards
      McA

        Updated my first post with DATA DUMPER output.