Import data from transaction CKIS - sap-erp

Does anybody have any knowledge of how to extract data from SAP system through VBA?
I would like to extract data from eg. CKIS (product costing).
It would be helpful with any kind of code, that would connect me to SAP system.

You should have a look at SAP Gui Scripting. Check the link VBA pulling data from SAP for dummies for some useful information.
SAP Gui Scripting can be used with VBA to pull data from the SAP System

Related

SAP BW data integration with Snowflake

Is there anyway to get the data and connect directly to Snowflake without any third party or open source software?
Our current setup is getting the data from SAP BW into DATAMART and then it is used by PowerBI.
We have a client request to do assessment for moving the data from SAP BW to Snowflake directly cause after research I found that Snowflake doesn't allow a direct connection with SAP or OData data sources.
Is there any recommendation or concerns in going with this approach?
Thank you.
The only data ingestion capabilities Snowflake has is to bulk load from files held on a cloud platform (S3, Azure Blob, etc.).
If you can't, or don't want to, get your data into one of these file stores then you'd need to use a commercial ETL tool or "roll your own" solution using e.g. Python

is there a way to write Salesforce Devoloper Console like scripts on a mysql database?

in salesforce I was able to create scripts that could filter and manipulate data and then export a result. I'm new to mysql and I was wondering if there was a similar tool that uses some programming language to do the same?
here's an example of a salesforce script written in apex just to know what I mean:
Salesforce implements a non relational database and a especific language to access to it called Salesforce Object Query Language (SOQL), very similar to SQL
APEX es a Java-like language to call that kind of queries (and more things). The advantage is that the same server hosts the db and the APEX server.
In mysql you have the freedom to choose any language (PHP, Java...) to access the data, but you have to install your own application server (apache, nginx...) to deploy your
scripts.
Hope it helps

Populate excel data on html page

I'm newbie to the tech world. I need some information on how to do this.
1) We have data in excel sheet(where actively data changes are done like edit, delete, input data )
2) We have html page where when we enter login of a employee all the information about that employee should be shown on webpage with the information from above excel sheet.
I don't know php, .net etc. Simply I can do html and a little java script.
Please help me with this.
I read you problem, and here is my help.
First you have to know that excel files are difficult to use in other programs.
They are maybe APIs out there like google docs or microsoft office that can help you extract data from an excel file but this is not easy and not a long term solution.
I assume you are using excel because it is an easy way to input data and see that data. You should consider creating a database with access, that has a similar interface. In the options you should chose sql as format. You should learn a bit about sql.
Once you have a sql file that contains all the data that previously was in your excel file, go learn the basics of a server side language like node(node is javascript with server functionality) for instance.
Then write a html template that works for a employee.
When server is requested information from an employee you populate that html template with data found in the sql database. To find data in sql it is very easy once you know the basics of sql.
Forget the excel and enter new data exclusively in the sql database file(s).
You can do that with access or other tools.

Graph Database neo4j connectivity with HTML form

how do I connect my graph database with my HTML form so that the data from my form enters the database.I have just started using Graph Database.
You have to query your graph via on of the offered apis as described at http://www.neo4j.org/develop/drivers (Java, PHP, ..)
Nice starting-lecture is the book offered (for free) at http://www.neo4j.org/learn

generate html or excel or pdf document for mysql database

I have a database schema and i want to generate a document in any format(html or pdf or excel) of all the tables,stored procedures ,triggers for mysql .Please suggest a suitable tool which can provide all the documents
Following these steps should help:
connect to the database and retrieve data
use an appropriate module in your programming language of choice which is able to handle formats such as HTML/PDF/XLS(X)
organise the retrieved data in a presentable form and write to file using the module that you chose in step 2