top of page
Typ
Kategorie
110 Ergebnisse gefunden für „“
- Hi we are working on live connection which is connected through SSAS , ..In Ask Questions·October 26, 2023Hi we are working on live connection which is connected through SSAS , we are having multiple tables which contains columns and measures also. How do we extract the list of column names of each table. Please guide113
- Are you getting Microsoft mashup engine1 error, odata version 3 and 4 error, error 404 not foundIn Tech Talk·July 20, 2023The errors you are encountering ("Microsoft Mashup Engine 1 error," "OData version 3 and 4 error," and "Error 404 Not Found") typically indicate issues with the data source or the connectivity between Power BI and the data source. Here are some possible causes and solutions for each error: Microsoft Mashup Engine 1 Error: This error often occurs when there is a problem with the Power Query (M) code or the transformation steps in the Power Query Editor. Check the Power Query steps and ensure that there are no syntax errors or unsupported operations. OData Version 3 and 4 Error: This error indicates a compatibility issue with the OData version used by the data source. Power BI supports both OData v3 and v4, but some data sources may only support one version. Try changing the OData version in the data source connection settings to match the version supported by your data source. Error 404 Not Found: The "Error 404 Not Found" indicates that Power BI couldn't find the requested resource (e.g., file, folder, or data endpoint) at the specified URL. Verify that the URL you are using to connect to the data source is correct and that the resource you are trying to access exists.057
- One quick question please : Do we need to install any gateway to connect post GRE SQL database to connect to Azure.In Ask Questions·October 27, 2023One quick question please : Do we need to install any gateway to connect post GRE SQL database to connect to Azure.0524
- Are you getting Microsoft mashup engine1 error, odata version 3 and 4 error, error 404 not foundIn Tech TalkJuly 20, 2023General troubleshooting steps for connectivity issues: 1. Double-check the Data Source URL: • Verify that the URL you are providing is correct and points to the right location of your data source. 1. Check Firewall and Proxy Settings: • Ensure that there are no firewall or proxy settings blocking the connection to the data source. Work with your IT team to allow access if necessary. 1. Verify Data Source Accessibility: • Check if the data source is accessible from the machine where Power BI is running. Try accessing the data source directly through a web browser or other tools to ensure it is reachable. 1. Test Connection with Different Tools: • Attempt to connect to the data source using other OData clients or web-based tools to verify if the issue is specific to Power BI. 1. Clear Credentials and Reconnect: • In Power BI Desktop, go to "File" > "Options and Settings" > "Data Source Settings." Find the data source connection, select it, and click on "Clear Permissions." Then, try reconnecting to the data source and re-enter the required credentials. 1. Update Power BI: • Make sure you are using the latest version of Power BI Desktop to ensure compatibility with data source connectors.04
- Are you getting Microsoft mashup engine1 error, odata version 3 and 4 error, error 404 not foundIn Tech TalkJuly 20, 2023It works only share point list not with web option right0
- I want to ask for a project recommendation related to data science/ML/AI/Cloud related for a portfolio made?In Ask Questions·October 19, 2023I want to ask for a project recommendation related to data science/ML/AI/Cloud related for a portfolio made?027
- One quick question please : Do we need to install any gateway to connect post GRE SQL database to connect to Azure.In Ask QuestionsOctober 28, 2023Thankyou for the quick response.i will paste the error that I am facing.if I use this error and search the web it is saying that u need to install a V Net gateway i will paste the video link that the situation iam in. Please go through and provide me inputs . Error snap shot : https://youtu.be/IhQVOS34QKA?si=RLGCYAjsxeWLC7Jr02
- Are you getting Microsoft mashup engine1 error, odata version 3 and 4 error, error 404 not foundIn Tech TalkJuly 20, 2023That's correct. The "SharePoint Online List" connector in Power BI is specifically designed to connect to SharePoint lists, and it won't work with other SharePoint resources like files and folders. If you want to connect to files stored in SharePoint, you need to use the "SharePoint Folder" connector instead. The "SharePoint Folder" connector allows you to access files and folders within a SharePoint document library. Here's how to use the "SharePoint Folder" connector to connect to files stored in SharePoint: 1. Go to "Home" tab in Power BI Desktop. 2. Click on "Get Data." 3. Choose "SharePoint Folder" from the list of data sources. 4. Enter the URL of your SharePoint site where the files are stored. 5. Click "OK." With the "SharePoint Folder" connector, you can access files and perform data transformations on the files before loading them into your Power BI report. Remember that when using the "SharePoint Folder" connector, you need to provide the correct URL of the SharePoint document library that contains the files you want to access. Additionally, you need to ensure that you have the necessary permissions to access the files and folders in SharePoint. If you encounter any issues, double-check your SharePoint URL and verify your permissions with your SharePoint administrator.0
- please help with the formula of “% of Parent Row Total”for Multi-level Hierarchy in BI, like we do have in Excel Pivot.In Ask Questions·October 14, 2023please help with the formula of “% of Parent Row Total”for Multi-level Hierarchy in BI, like we do have in Excel Pivot. I have tried various formulas but none of them works the way Pivot does, for multilevel parent row headers.014
- I am trying to install FullStory to record sessions on SF. The script is uploaded as a static resource into SFIn Ask Questions·September 29, 2023I am trying to install FullStory to record sessions on SF. The script is uploaded as a static resource into SF, properly loaded, but then only the component that loaded it has access to it. The instalation of FullStory is very similar to most analytics tools, you just include a code snippet to your page header and it just works. However SF places it inside shadow dom and its not accessible globally, this prevents FS from capturing the screen because its not properly setup. this is how my component looks like import { LightningElement } from 'lwc'; import fsScript from "@salesforce/resourceUrl/local-fullstory"; import { loadStyle, loadScript } from "lightning/platformResourceLoader"; export default class FullStoryTest extends LightningElement { connectedCallback() { console.log("in connect " + fsScript); loadScript(this, fsScript) .then(() => { console.log("Loaded"); console.log("FS obj " + FS); // here FS object is available }).catch((err) => console.log(err)); } } } Inside I have access to FS object, but I have to be albe to access FS in the browser console once I open the page. Is there a way to achieve this in SF?016
- How to increase the intelligence of interaction between a chatbot with an llm model through the processing of information from pdf documentsIn Ask Questions·September 29, 2023I am working on a chatbot connected to the OpenAI API that is responsible for answering questions related to documents that have previously been processed and finally saved in a vector database. The process that the PDF documents have followed consists of dividing the entire document into chunks and finally vectorizing them and saving them to a vector database that also connects to the interface where the user asks about the information of said document. I am also using python for the web interface and langchain as the framework to connect to the OpenAI APIs. However, when a user asks a question on the interface they sometimes get confused and give a very similar answer. This is because the PDF document has subtopics and among them some concepts are similar. So the question the user asks must be very specific. But what happens if the user doesn't know the topic and starts asking general questions? you will get wrong answers (Although for the model they will be fine) So now I want to improve the quality of my chatbot's responses. I want him to be smarter. I am thinking that the PDF document should be pre-treated, organized or divided into each subtopic. So that it is saved in an orderly manner in the vector database. Or maybe another tool is what I should modify? like python code. Some of you have had the same problem of poor quality answers due to many overlaps in various sections of the PDF document, and would like better quality and specific answers. Maybe you can comment and share a solution to this problem. I appreciate it very much.012
- help me to making Purchases Requisition and Purchase Order in SAP. Today I bought server access but I am unable to make PR and POIn Ask Questions·October 19, 2023help me to making Purchases Requisition and Purchase Order in SAP. Today I bought server access but I am unable to make PR and PO012
bottom of page