cancel
Showing results for 
Search instead for 
Did you mean: 

Filename Concatenation with a variable in SAP BODS

naveen_vuppala2
Explorer
0 Kudos

Hi,

I want to concatenate C:\ProgramData\SAP BusinessObjects\Data Services\log with the variable {$G_JOB_NAME}.

Can't we create a path without another variable?

Can you suggest.

Accepted Solutions (0)

Answers (2)

Answers (2)

you can us e the below simple approach:

('C:\ProgramData\SAP BusinessObjects\Data Services\log'||{$G_JOB_NAME})

Regards

Akshay

former_member198401
Active Contributor

We have a function called job_name() which returns the job name.

print('Job Name is: '||Job_name()||$G_LOCATION);

Regards

Arun Sasi