Help for this page

Select Code to Download


  1. or download this
    values $ARGS{LineItem}
    
  2. or download this
    values %{ $ARGS{ LineItem } }
    
  3. or download this
    my @lineitems = $ARGS{"LineItem"};
    
  4. or download this
    my @lineitems = @{ $ARGS{ LineItem } }