Copy child Job schema inactive - schema

I'm trying to retrieve a child job dataflow output in a parent job in talend. I've read everywhere that in order to do that, you should click on "Copy Child Job Schema" in the component view of tRunJob, but that button is disabled for me. Does anyone know what should I do in order to be able to click on "Copy Child Job Schema" and retrieve the output of the child job?
Thanks!!

It seems that this option is not available on the TOS (free version). Seems to be the same case as for the joblets...

Related

How to migrate Navision Microsoft Dynamics report to SQL

I have access to the Navision SQL Server database and the corresponding Microsoft Dynamics NAV interface.
I want to migrate the 'Aged Acc. Receivable DII' report. Once I select the report and go to Tools > Designer I can see the 'DataItem' list, and when I select any of those and press F9 I see the C/AL Editor as per below.
Selecting another 'Data Item' provides another code. My initial question would be, which code from the 'Data Item' refers to the 'Preview' button in the 'Aged Accounts Receivable - IRES' window?
From the code I understand there are 3 tables joined (Customer, Cust_ Ledger Entry and Detailed Cust_ Ledg_ Entry) but I can not manage to output the same result that in the report produced in the interface. I'm guessing this is a generic report. Is there a query that could be used to generate the same output? Or documentation that would explain how the report is created?
Oh man, i don’t know where to start. MS seems to finally buried Navision 5 along with it’s documentation on msdn. But it is still should be possible for you to open local documentation with F1. Just make sure you are pressing it while your input cursor is on the code. This will open developer’s docu. You will not find there any explanations about how data is structured for output, but you will be able to find how things works.
Back to your questions. You need all the code you see in triggers. And might happen you will need code from the layout that you have not yet discovered. Preview and print buttons doing the same except for the global variable CurrReport.Preview is set to true.
To see if there is any other code open View-Sections, select any section and F9. Code will also be different per section.
The form you are asking is called RequestForm, hence the menu called View-Request page. F9 on the page and any elements on it.
Also, see the button that is third from the right on toolbar on your screen. That is Properties. Many things have properties. For example DataItem’s properties will tell you have child and parent are linked.
If you can open report in the designer then you probably have a developer’s license uploaded to database. Where is the developer then?) It should also allow you to export objects to text file. The you will be able to read every last bit of the code. When window with dataitems is active (for previously mentioned commands as well) press File-Export and select text format. Fob will produce binary output, not useful for you.

How to set multiple JNDI names in Weblogic wlst Offline

I want to add 2 jndi names to one data source.This is my code.
cd('/JDBCSystemResource/primelogDataSource/JdbcResource/primelogDataSource')
create('primelogDataSourceParams','JDBCDataSourceParams')
cd('JDBCDataSourceParams/NO_NAME_0')java.lang.String('abcDataSource','cdaDataSource'))
set('GlobalTransactionsProtocol', java.lang.String('None'))
This won't work. But if i add only one jndi name like below, it is working.
cd('JDBCDataSourceParams/NO_NAME_0')java.lang.String('abcDataSource'))
I must mention that this is offline python script. I am looking for help.
At the top in weblogic you have a 'record' button. Take a session, click the record button, do your changes, click the record button again and it will write a script to the filesystem that does the actions you recorded

How to make functions and procedures visible in intellij database source

I have configured my oracle database in intellij and I already can see the tables, views ...etc (find attached screenshot).
I miss two things procedures and functions . How to make them visible?
UPDATE:
here how it looks like in sql developer:
Have you checked the routines node? It should be there. Note that you can navigate to a table/function via Navigate | Symbol action - just make sure that the filter in Navigate popup includes SQl files:

SAP HANA "take over" option grayed out

After opening a Calculation View, SAP HANA Studio sometimes shows the warning "The object is currently opened in read-only mode. Object belongs to multiple workspaces ..."
If you need to modify the Calculation View it is often possible to take over ownership via a button. But unfortunately this time it is grayed out.
How to fix this?
Work-around / fix:
Check out the file / folder
Edit in Project Explorer view
Activate in Project Explorer view

SQL Views - How to determine underlying tables?

I have been gathering data from a view for reporting purposes quite some time related to volume, SLA, etc...
However I want to know what tables make up the view itself..I am currently using SQL Server 2012 and I have been asked some questions on the underlying data within the view...however we have hundreds of tables and I don't know where to look..
Just wondering if there is a quick way to check which tables make up a view..
Thanks.
You have a few options:
Right-click the view and click "Design" (as already mentioned)
Right-click the view. Select "Script View as" > "CREATE to" > "New Query Editor Window"
Right-click the view. Select "View Dependencies". Then select the "Objects on which depends" radio button.
Hope that helps you out.
Marius