Display list items on different sharepoint portal - sharepoint

what do you think is the best way to display items from some Custom List (on sharepoint 2010) to completely different portal on SharePoint 2007 with minimum or not at all programming?
I tried with RSS and that is not what I need, so Am now stuck with IFRAME pointing some custom page on sp2010 that shows list items.

Under SharePoint 2007, you can try tu use the BDC feature (known as Business Connectivity Services(BCS) with SharePoint 2010).
It provides the ability to SharePoint 2007 to consume external datas like SAP. It is describe in msdn with complete tutorial:
Business Data Catalog

Related

GET data from SharePoint on-premise and POST data to SharePoint Online

I need to GET data from SharePoint Server 2019 (On-premise) list and then I need to add that data to the SharePoint Online list using CSOM.
I have found the below link to get data from SharePoint Server (On-premise) list.
https://www.c-sharpcorner.com/article/sharepoint-client-object-modal-csom/
I have found below link to add data to SharePoint Online list.
https://www.c-sharpcorner.com/blogs/create-a-list-item-in-sharepoint-using-csomannouncement-list
Is that correct way or do I need prefer another way?
Thanks
If you just need list data without any version history or created/modified user and time stamps - you can export the SharePoint on-premise list to excel and use this excel file to create/import a new list in SharePoint Online.
Other options are to
Use Microsoft's "SharePoint Migration Tool" to migrate content - this is a free tool provided by Microsoft - https://learn.microsoft.com/en-us/sharepointmigration/introducing-the-sharepoint-migration-tool
use CSOM code in a VS application as per the links you have - note that you don't need to create 2 separate applications for it, just create one app and create separate instances of the ClientContext for SP on-prem and SP online
use PnP PowerShell to get all list items and then loop over each item and create each item in target SPO site OR use SharePoint Powershell module to do the same. Here is an example of a script that migrates documents but with some minor modification you can get it to work with list data - https://github.com/alimughalx/CopySharePointFilesWithMetaDataAndVersionHistory

SharePoint as presentation layer for Azure SQL and Blob

We currently have a simple requirement to present our users with a table of records. Each record has link to a PDF stored within Azure storage. We need to have our users be able to click on a record and be able to view (in line) the associated PDF.
We currently use SharePoint Online and cannot store the data within SharePoint itself (organisational policy).
Is it possible to create a SharePoint site/web part etc to do the above? We are scoping out options.
Yes, SharePoint has several ways to do that.
Your best bet may be a custom list with a custom URL column for the link to the PDFs. Then you can insert a list web part on a page.
This approach works with modern pages and with classic pages.
If you use a classic interface, you could also create an out of the box links list, but that list type does not have a web part for the modern experience, so it will only work on classic pages.
SPFx webpart can be inserted into modern page or classic page.
And you could call AD-secured APIs(custom service) in SPFx, so you could create a custom service host in Azure and consume from SPFx webpart.
Connect to Azure AD-secured APIs in SharePoint Framework solutions

Can We Create SharePoint Custom Web Parts in Office 365 Online with out using Visual Studio?

I am new to SharePoint and Exploring the Office 365 Small business feature online using trial subscription.
I'm able to create 'App Parts' using Office 365 Developer Site Subscription(by using 'NAPA' SharePoint Developer tool).
Now I wanted to create SharePoint 'Custom WebPart' in Office 365 online without using Visual Studio 2010,2012,2013.
Please Guide me on this by providing some reference links for creating "Custom WebParts" in Office 365 Online and how can i use created web parts.
Edited:
Are there any online tools or sharepoint apps like 'NAPA' available for develop custom Web Parts online?
You can create sandbox solutions with SharePoint online.
But in SharePoint 2013 You can do many things just with Content Editor Web Part, javascript and REST services. And with search and display templates.
We are using such technics with our on-premise SharePont 2013. And its cover all our needs. Client Object Model and REST services cover almost all SharPoint features. For content processing you can use Content by Search Web Part with display templates. For UI you can use javascript components like JQuery UI.

sharepoint 2013 designer -programming possibilities and limitations

What are the possible functionalities that can be modified or added using sharepoint designer with sharepoint foundation 2013? In terms of programming.
SharePoint Designers main purpose is for creating or modifying Microsoft SharePoint sites, workflows and web pages.
As an example you are able to create and modify workflows but cannot compile any code or build your own custom web parts.

How to add Excel Web Access Web part into my sharepoint gallery?

please, can you help me on how to add Excel Web Access Web part into my sharepoint gallery?
I need to see an Excel sheet in sharepoint and I just can't find this feature.
Is this web part supposed to be manually downloaded?
Is my sharepoint version that might be not allowing me to have it?
I can't even see the category "business data" where Excel is supposed to be at the examples that I saw.
Excel Web Access is only available in SharePoint Server (rather than the free SharePoint Foundation).

Resources