'need help'
9 TopicsRefresh Error
Hello Everyone, I am facing and shcedule refresh error. I am getting an below message. Could you help me undertsand and resolve the issue. Thanks. An error occurred while processing the data in the semantic model. Refresh failed: Pricing Trend has failed to refresh. Failure details: The last refresh attempt failed because of an internal service error. This is usually a transient issue. If you try again later and still see this message, contact support. {"error":{"code":"DM_GWPipeline_Gateway_MashupDataAccessError","pbi.error":{"code":"DM_GWPipeline_Gateway_MashupDataAccessError","parameters":{},"details":[{"code":"DM_ErrorDetailNameCode_UnderlyingErrorCode","detail":{"type":1,"value":"-2147467259"}},{"code":"DM_ErrorDetailNameCode_UnderlyingErrorMessage","detail":{"type":1,"value":"<ccon>The given credential contains a property with a null value. Data source kind: SQL. Property name: Username. </ccon>"}},{"code":"DM_ErrorDetailNameCode_UnderlyingHResult","detail":{"type":1,"value":"-2147467259"}}],"exceptionCulprit":1}}} Table: Pricing Trend.Solved1.7KViews0likes3CommentsNeed to fix issue in Create Semantic Layer by providing sql query
Hello community, Currently i am creating semantic layer based on SQL query and database details i have. for this i am using below API POST : https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/semanticModels RequestBody : { "displayName": "SalesModel1", "description": "SalesModel1", "definition": { "parts": [ { "path": "model.bim", "payload": "<base64>", "payloadType": "InlineBase64" }, { "path": "definition.pbism", "payload": "<base64>", "payloadType": "InlineBase64" }, { "path": ".platform", "payload": "<base64>", "payloadType": "InlineBase64" } ] } } For "model.bim" part i am converting below JSON into base64 { "name": "Cognos Semantic Model", "compatibilityLevel": 1550, "model": { "culture": "en-US", "dataAccessOptions": { "legacyRedirects": true, "returnErrorValuesAsNull": true }, "defaultPowerBIDataSourceVersion": "powerBI_V3", "sourceQueryCulture": "en-US", "tables": [ { "name": "product_category", "partitions": [ { "name": "Applications", "mode": "directQuery", "source": { "type": "query", "query": "SELECT id, name, quantity FROM product_category", "dataSource": "SqlDataSource" } } ], "annotations": [ { "name": "PBI_ResultType", "value": "Table" } ] } ], "dataSources": [ { "name": "SqlDataSource", "type": "structured", "connectionDetails": { "server": "<server-endpoint>", "database": "<databse_name>", "authentication": { "type": "Basic", "username": "<username>", "password": "<password>" } } } ], "cultures": [ { "name": "en-US", "linguisticMetadata": { "content": { "Version": "1.0.0", "Language": "en-US" }, "contentType": "json" } } ], "annotations": [ { "name": "PBI_QueryOrder", "value": "[\"Applications\"]" }, { "name": "__PBI_TimeIntelligenceEnabled", "value": "1" }, { "name": "PBIDesktopVersion", "value": "2.137.1102.0 (24.10)" }, { "name": "PBI_ProTooling", "value": "[\"DevMode\"]" }, { "name": "TabularEditor_SerializeOptions", "value": "{\"IgnoreInferredObjects\":true,\"IgnoreInferredProperties\":true,\"IgnoreTimestamps\":true,\"SplitMultilineStrings\":true,\"PrefixFilenames\":false,\"LocalTranslations\":false,\"LocalPerspectives\":false,\"LocalRelationships\":false,\"Levels\":[\"Data Sources\",\"Shared Expressions\",\"Perspectives\",\"Relationships\",\"Roles\",\"Tables\",\"Tables/Columns\",\"Tables/Hierarchies\",\"Tables/Measures\",\"Tables/Partitions\",\"Tables/Calculation Items\",\"Translations\"]}" }, { "name": "__TEdtr", "value": "1" } ] } } but i am getting below error { "status": "Failed", "createdTimeUtc": "2025-02-10T07:38:03.1846582", "lastUpdatedTimeUtc": "2025-02-10T07:38:20.4501583", "percentComplete": null, "error": { "errorCode": "Dataset_Import_FailedToImportDataset", "message": "Dataset Workload failed to import the dataset with dataset id 00000000-0000-0000-0000-000000000000. Failed to save modifications to the server. Error returned: 'Power BI does not support query partition sources that reference structured data sources. In table '<oii>product_category</oii>', the partition '<oii>Applications</oii>' uses a query partition source that references the structured data source 'SqlDataSource'. To fix this issue, either replace the query partition source with an M partition source or modify the query partition source to reference a provider data source instead of the structured data source.\r\n'." } }Solved2.5KViews0likes4CommentsAssistance Required for Resolving URL Character Limit Issue in Paginated Report
Hi Team, I hope this email finds you well. I am reaching out for assistance in resolving an issue I am encountering with a paginated report. The report is designed such that, after selecting multiple parameters, clicking on the Reject column record redirects to a child report. However, an error is displayed: "The report parameter list exceeds the limit of 2040 characters. Please reduce the selected values for Zone 1, 2, 3 WO# dropdown." To provide more context, I have attached the expression currently being used to achieve the functionality: =IIF(LEN(Globals!ReportServerUrl + "?%2fBRS+Singapore%2fPA+Reports%2fTIJ4%2fSGP_Falcon%2fProduction+Reports%2fReject_Pen_summery_yield&rs:Command=Render&rc:Toolbar=False&StartDate= " & Parameters!parstartdate.Value & "&EndDate= " & Parameters!parenddate.Value & "&ShiftList= " & Join(Parameters!parshiftinclude.Value, ",") & "&moduleky= " & Fields!MODULE_DIM_KY.Value & "&pruntype= " & Join(Parameters!paruntype.Value, ",") & "&Zone1Wo= " & Join(Parameters!Zone1Wo.Value, "&Zone1Wo=")) <= 2083, "javascript:void(window.open('" + Globals!ReportServerUrl + "?%2fBRS+Singapore%2fPA+Reports%2fTIJ4%2fSGP_Falcon%2fProduction+Reports%2fReject_Pen_summery_yield&rs:Command=Render&rc:Toolbar=False&StartDate= " & Parameters!parstartdate.Value & "&EndDate= " & Parameters!parenddate.Value & "&ShiftList= " & Join(Parameters!parshiftinclude.Value, ",") & "&moduleky= " & Fields!MODULE_DIM_KY.Value & "&pruntype= " & Join(Parameters!paruntype.Value, ",") & "&Zone1Wo= " & Join(Parameters!Zone1Wo.Value, "&Zone1Wo=") + "'))", "") The main concern is ensuring that even after selecting "Select All" for the parameters, the report does not exceed the character limit and continues to function without errors. If this issue cannot be resolved due to known limitations, I would appreciate any suggestions for alternative approaches. Specifically: Is there a way to handle this within the report itself, avoiding the need to jump to a child report? After publishing to Power BI Service, can any modifications be made to overcome this limitation? Are there any other workarounds to ensure that selecting "Select All" does not lead to an error? Looking forward to your valuable suggestions and assistance! Thank you. Best regards, Heena Kousar2KViews2likes6CommentsCan we build a table in calculated filed like attached image?
Hi, I need to build the like below: Can we build the above table? How can we build the fileds at Left Side like Gross Sales, REBATE, RXs etc?means Left Side columns are measures, and should show under PRODUCT SET DESCRIPTION collumn. So, can we create column like this?Solved731Views0likes2CommentsHow Connect User from One server to another server for viewing Report
As In our work place we have 2 server as in one server has Bi reporting service and the other server has active directory where the groups and users are So intially want to connect the other server to first server by the same domain name as it replicate the active directory in first domain so other server people where they are added in active directory can see the report using there credentials is it possible Thanks in AdvanceSolved1.7KViews0likes6CommentsIssue parameters in report builder from PBI semantic model
Hi, I'm connecting my dateset from a sematic model published in PBI workspace, I have set the dataset in report builder using Query Design (DAX) and set the parameters as well as below: and by default for the parameters, it selected available Values to Get value from query but when I run it, it shows as dropdown and I don't want that, I want as textbox .. so after I search it says select default values instead of available values: However, when I run it shows other parameters Grey, and I must fill the first one then click on view report so I can fill the next parameter: How can I avoid that and let the user fill all parameters at once? Also, is there possible way to let the integer parameter to be blank (not required to be filled) ? Because (Allow Blank Value) is only for text data type.1.3KViews0likes4CommentsHow to sort SSRS report in column group?
Hello all, I came across one issue with one of my SSRS report. I need to sort the fileds on column groups based on a 'Sort' column values but I am not able to do so. Can someone please help me. On this screen shot below, these are fields in column group (single column), and I need to sort based on values present in 'sort' column (AAA,BBB,.....HHH). Appreicate your help. pthapaSolved2.7KViews0likes3Comments