Custom Post type Query post is not working

As of @cybmeta word’s, I answered my question here.

Thank you for all of your effort. In future, if someone comes to read this article, just remember, default arguments also affecting your results. So my final working code it.

 global $post, $paged, $current_user;
get_currentuserinfo();
if(empty($paged)) $paged = 1; 
    $args = array(
                'post_type' => 'tickets',
                'post_author' => $current_user->ID,
                'post_status' => 'any',  
                'paged'=> $paged
            );  
    $myposts = get_posts( $args );
    foreach( $myposts as $post ) :  setup_postdata($post);
            echo "test echo"; // testing purpose
            echo "<tr><td>".the_title()."</td><td>".the_excerpt()."</td><td>".$post->post_status."</td></tr>";
     endforeach; 
   wp_reset_postdata();