<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: We found extra characters at the end of the JSON input in Dataflow</title>
    <link>https://community.fabric.microsoft.com/t5/Dataflow/We-found-extra-characters-at-the-end-of-the-JSON-input/m-p/3468063#M950</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625154" data-lia-user-login="jwkuper_eof" class="lia-mention lia-mention-user"&gt;jwkuper_eof&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks for using Fabric Community.&amp;nbsp;I would like to check whether your issue got resolved or got a chance to create a support ticket.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If so, it would be a great help if you can provide the details of the Support Ticket so we can track it for further information.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Oct 2023 07:04:02 GMT</pubDate>
    <dc:creator>v-cboorla-msft</dc:creator>
    <dc:date>2023-10-10T07:04:02Z</dc:date>
    <item>
      <title>We found extra characters at the end of the JSON input</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/We-found-extra-characters-at-the-end-of-the-JSON-input/m-p/3455777#M904</link>
      <description>&lt;P&gt;&lt;SPAN&gt;In an Azure blobstorage there is data with the M365 &lt;/SPAN&gt;sign-in logs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I connect to this data from a Fabric data flow, I can connect to the data and open it in Power Query. Filtering of the data of last month is showing the correct rows. After expanding the column [Content] an error is shown:&lt;BR /&gt;DataFormat.Error: We found extra characters at the end of the JSON input.&lt;/P&gt;&lt;P&gt;Details&lt;/P&gt;&lt;P&gt;Value = {&lt;/P&gt;&lt;P&gt;Position = 4407&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;section Section1;&lt;/P&gt;&lt;P&gt;shared #"insights-logs-signinlogs" = let&lt;/P&gt;&lt;P&gt;&amp;nbsp; Source = AzureStorage.Blobs("&lt;A href="https://xxx.blob.core.windows.net" target="_blank" rel="noopener"&gt;https://xxx.blob.core.windows.net&lt;/A&gt;"),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Navigation = Source{[Name = "insights-logs-signinlogs"]}[Data],&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Filtered rows" = Table.SelectRows(Navigation, each [Date modified] &amp;gt;= #datetime(2023, 9, 1, 0, 0, 0) and [Date modified] &amp;lt; #datetime(2023, 10, 1, 0, 0, 0)),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Filtered hidden files" = Table.SelectRows(#"Filtered rows", each [Attributes]?[Hidden]? &amp;lt;&amp;gt; true),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Invoke custom function" = Table.AddColumn(#"Filtered hidden files", "Transform file", each #"Transform file"([Content])),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Renamed columns" = Table.RenameColumns(#"Invoke custom function", {{"Name", "Source.Name"}}),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Removed other columns" = Table.SelectColumns(#"Renamed columns", {"Source.Name", "Transform file"}),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Expanded table column" = Table.ExpandTableColumn(#"Removed other columns", "Transform file", Table.ColumnNames(#"Transform file"(#"Sample file")))&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Expanded table column";&lt;/P&gt;&lt;P&gt;shared #"Sample file" = let&lt;/P&gt;&lt;P&gt;&amp;nbsp; Source = AzureStorage.Blobs("&lt;A href="https://powerautomatedemo.blob.core.windows.net" target="_blank" rel="noopener"&gt;https://powerautomatedemo.blob.core.windows.net&lt;/A&gt;"),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Navigation = Source{[Name = "insights-logs-signinlogs"]}[Data],&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Filtered rows" = Table.SelectRows(Navigation, each [Date modified] &amp;gt;= #datetime(2023, 9, 1, 0, 0, 0) and [Date modified] &amp;lt; #datetime(2023, 10, 1, 0, 0, 0)),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Filtered hidden files" = Table.SelectRows(#"Filtered rows", each [Attributes]?[Hidden]? &amp;lt;&amp;gt; true),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Navigation 1" = #"Filtered hidden files"{0}[Content]&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Navigation 1";&lt;/P&gt;&lt;P&gt;shared Parameter = let&lt;/P&gt;&lt;P&gt;&amp;nbsp; Parameter = #"Sample file" meta [IsParameterQuery = true, IsParameterQueryRequired = true, Type = type binary, BinaryIdentifier = #"Sample file"]&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp; Parameter;&lt;/P&gt;&lt;P&gt;shared #"Transform Sample file" = let&lt;/P&gt;&lt;P&gt;&amp;nbsp; Source = Json.Document(Parameter)&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp; Source;&lt;/P&gt;&lt;P&gt;[FunctionQueryBinding = "{""exemplarFormulaName"":""Transform Sample file""}"]&lt;/P&gt;&lt;P&gt;shared #"Transform file" = (Parameter as binary) =&amp;gt; let&lt;/P&gt;&lt;P&gt;&amp;nbsp; Source = Json.Document(Parameter)&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp; Source;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The steps in the Advanced editor:&lt;BR /&gt;let&lt;/P&gt;&lt;P&gt;&amp;nbsp; Source = AzureStorage.Blobs("&lt;A href="https://xxx.blob.core.windows.net" target="_blank" rel="noopener"&gt;https://xxx.blob.core.windows.net&lt;/A&gt;"),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Navigation = Source{[Name = "insights-logs-signinlogs"]}[Data],&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Filtered rows" = Table.SelectRows(Navigation, each [Date modified] &amp;gt;= #datetime(2023, 9, 1, 0, 0, 0) and [Date modified] &amp;lt; #datetime(2023, 10, 1, 0, 0, 0)),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Filtered hidden files" = Table.SelectRows(#"Filtered rows", each [Attributes]?[Hidden]? &amp;lt;&amp;gt; true),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Invoke custom function" = Table.AddColumn(#"Filtered hidden files", "Transform file", each #"Transform file"([Content])),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Renamed columns" = Table.RenameColumns(#"Invoke custom function", {{"Name", "Source.Name"}}),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Removed other columns" = Table.SelectColumns(#"Renamed columns", {"Source.Name", "Transform file"}),&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Expanded table column" = Table.ExpandTableColumn(#"Removed other columns", "Transform file", Table.ColumnNames(#"Transform file"(#"Sample file")))&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp; #"Expanded table column"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I connect to this data from Power BI Desktop I can connect to the data and have no error message and the columns are visible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Advanced editor in Power BI Desktop&lt;BR /&gt;let&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source = AzureStorage.Blobs("&lt;A href="https://xxx.blob.core.windows.net" target="_blank" rel="noopener"&gt;https://xxx.blob.core.windows.net&lt;/A&gt;"),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"insights-logs-signinlogs1" = Source{[Name="insights-logs-signinlogs"]}[Data],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Filtered Rows" = Table.SelectRows(#"insights-logs-signinlogs1", each [Date modified] &amp;gt;= #datetime(2023, 9, 1, 0, 0, 0) and [Date modified] &amp;lt; #datetime(2023, 10, 1, 0, 0, 0)),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Filtered Hidden Files1" = Table.SelectRows(#"Filtered Rows", each [Attributes]?[Hidden]? &amp;lt;&amp;gt; true),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Invoke Custom Function1" = Table.AddColumn(#"Filtered Hidden Files1", "Transform File", each #"Transform File"([Content])),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Renamed Columns1" = Table.RenameColumns(#"Invoke Custom Function1", {"Name", "Source.Name"}),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Removed Other Columns1" = Table.SelectColumns(#"Renamed Columns1", {"Source.Name", "Transform File"}),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Expanded Table Column1" = Table.ExpandTableColumn(#"Removed Other Columns1", "Transform File", Table.ColumnNames(#"Transform File"(#"Sample File"))),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Changed Type" = Table.TransformColumnTypes(#"Expanded Table Column1",{{"Source.Name", type text}, {"time", type datetime}, {"resourceId", type text}, {"operationName", type text}, {"operationVersion", Int64.Type}, {"category", type text}, {"tenantId", type text}, {"resultType", Int64.Type}, {"resultSignature", type text}, {"durationMs", Int64.Type}, {"callerIpAddress", type any}, {"correlationId", type text}, {"identity", type text}, {"Level", Int64.Type}, {"location", type text}, {"properties.id", type text}, {"properties.createdDateTime", type datetime}, {"properties.userDisplayName", type text}, {"properties.userPrincipalName", type text}, {"properties.userId", type text}, {"properties.appId", type text}, {"properties.appDisplayName", type text}, {"properties.ipAddress", type any}, {"properties.status.errorCode", Int64.Type}, {"properties.status.additionalDetails", type text}, {"properties.clientAppUsed", type text}, {"properties.userAgent", type text}, {"properties.deviceDetail.deviceId", type text}, {"properties.deviceDetail.displayName", type text}, {"properties.deviceDetail.operatingSystem", type text}, {"properties.deviceDetail.browser", type text}, {"properties.deviceDetail.isCompliant", type logical}, {"properties.deviceDetail.isManaged", type logical}, {"properties.deviceDetail.trustType", type text}, {"properties.location.city", type text}, {"properties.location.state", type text}, {"properties.location.countryOrRegion", type text}, {"properties.location.geoCoordinates.latitude", type number}, {"properties.location.geoCoordinates.longitude", type number}, {"properties.correlationId", type text}, {"properties.conditionalAccessStatus", type text}, {"properties.appliedConditionalAccessPolicies", type any}, {"properties.authenticationContextClassReferences", type any}, {"properties.originalRequestId", type text}, {"properties.isInteractive", type logical}, {"properties.tokenIssuerName", type any}, {"properties.tokenIssuerType", type text}, {"properties.authenticationProcessingDetails", type any}, {"properties.networkLocationDetails", type any}, {"properties.clientCredentialType", type text}, {"properties.processingTimeInMilliseconds", Int64.Type}, {"properties.riskDetail", type text}, {"properties.riskLevelAggregated", type text}, {"properties.riskLevelDuringSignIn", type text}, {"properties.riskState", type text}, {"properties.riskEventTypes", type any}, {"properties.riskEventTypes_v2", type any}, {"properties.resourceDisplayName", type text}, {"properties.resourceId", type text}, {"properties.resourceTenantId", type text}, {"properties.homeTenantId", type text}, {"properties.tenantId", type text}, {"properties.authenticationDetails", type any}, {"properties.authenticationRequirementPolicies", type any}, {"properties.sessionLifetimePolicies", type any}, {"properties.authenticationRequirement", type text}, {"properties.servicePrincipalId", type any}, {"properties.userType", type text}, {"properties.flaggedForReview", type logical}, {"properties.isTenantRestricted", type logical}, {"properties.autonomousSystemNumber", Int64.Type}, {"properties.crossTenantAccessType", type text}, {"properties.ssoExtensionVersion", type any}, {"properties.uniqueTokenIdentifier", type text}, {"properties.authenticationStrengths", type any}, {"properties.incomingTokenType", type text}, {"properties.authenticationProtocol", type text}, {"properties.appServicePrincipalId", type any}, {"properties.resourceServicePrincipalId", type text}, {"properties.rngcStatus", Int64.Type}})&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Changed Type"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I use the source in a data flow without having the error?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 10:00:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/We-found-extra-characters-at-the-end-of-the-JSON-input/m-p/3455777#M904</guid>
      <dc:creator>jwkuper_eof</dc:creator>
      <dc:date>2023-10-02T10:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: We found extra characters at the end of the JSON input</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/We-found-extra-characters-at-the-end-of-the-JSON-input/m-p/3456324#M906</link>
      <description>&lt;P&gt;when you use Power BI Desktop and you try to evaluate the full query and load it to the data model, do you get any errors?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There could be inconsistencies between how the data preview gets evaluated in Power BI Desktop and dataflows. They dont use the same mechanism behind the scenes and in most cases the Power Query Online experience (Through dataflows) can help you catch situations like this before your query gets fully evaluated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, and you get this inconsistency in full evaluations between both environments (beyond just the data preview in the Power Query Editor) then please share a sample json file or set of files that could help us replicate the issue. Alternatively, you can also go ahead and raise a support ticket so that an engineer can take a closer look at it.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.fabric.microsoft.com/support" target="_blank"&gt;https://support.fabric.microsoft.com/support&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 16:16:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/We-found-extra-characters-at-the-end-of-the-JSON-input/m-p/3456324#M906</guid>
      <dc:creator>miguel</dc:creator>
      <dc:date>2023-10-02T16:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: We found extra characters at the end of the JSON input</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/We-found-extra-characters-at-the-end-of-the-JSON-input/m-p/3468063#M950</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625154" data-lia-user-login="jwkuper_eof" class="lia-mention lia-mention-user"&gt;jwkuper_eof&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks for using Fabric Community.&amp;nbsp;I would like to check whether your issue got resolved or got a chance to create a support ticket.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If so, it would be a great help if you can provide the details of the Support Ticket so we can track it for further information.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2023 07:04:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/We-found-extra-characters-at-the-end-of-the-JSON-input/m-p/3468063#M950</guid>
      <dc:creator>v-cboorla-msft</dc:creator>
      <dc:date>2023-10-10T07:04:02Z</dc:date>
    </item>
  </channel>
</rss>

