Hi Jeffrey,
Thank you for your response here and for providing us with your logs.
I tried to replicate the report for your account on my end, and I was able to generate the (PAUSED and REMOVED) records of your campaigns when I removed the segments.ad_network_type field as seen in my sample query below :
SELECT
campaign.id,
bidding_strategy.id, campaign.bidding_strategy_type, campaign.bidding_strategy, campaign.labels, campaign.maximize_conversion_value.target_roas,
campaign.name, campaign.status, customer.time_zone,
campaign_budget.id, campaign_budget.amount_micros,
campaign_budget.name
FROM campaign
WHERE campaign.status IN ('PAUSED','REMOVED')";
That being said, since these PAUSED and REMOVED campaigns have zero impressions, and when adding segment fields, and as per this
documentation, "
Zero impressions are always excluded when segmenting a report..". This is now the reason why these campaigns were initially not being returned when using your original query. Let me know if this helps.
Best regards,