B1iSN output Filename ?

Hi ,
I'm exporting XML files via b1iSN.
is it possible to change the file name to a relative path in my b1 document ? (DocNum) ?
Thank you,
NC.

Hi,
<b1im_filename> should be the second element after your root element, e.g.
<root>
   <b1im_filename>MyName</b1im_filename>
</root>
If you just copy your inbound message in your BIU, please create an additional root element around it and replace ... in the given example with your copy-of message.
The root element needs not necessarily named root, it can have any name.
Best regards
Bastian

Similar Messages

  • ADF - Component File Download Listener - Setting the output filename

    Studio Edition Version 11.1.1.2.0
    Hi, I would like to learn how to set the output filename as current data + filename. I have a button with the component File Download Listener that has theses parameters
    Content/Type: application/pdf
    Filename: test.pdf
    Method: fullReportPDF()
    I needed that when the user clicks the button, that he return the current date + filename statically defined.
    How i may to make this?

    In a bean you implement a method which return the filen ame date and static part concatenated and set it as EL into the af:fileDownloadActionListener
    // on the page
    <af:fileDownloadActionListener contentType="application/pdf"
                                             filename="#{XYZBean.filename}"
                                             method="#{XYZBean.fullReportPDF}"/>
    // in the bean
        public String getFilename()
            String fn = (new Date()).toString() + "static_part.xyz";
            return fn;
        public void fullReportPDF(FacesContext facesContext, OutputStream outputStream) { ... }where XYZBean is the bean where you have implmented the method fullReportPDF.
    Timo

  • PDF Printer stopped prompting for output filename

    I use the Adobe Acrobat PDF Printer to create PDFs from a variety of applications. My version of Acrobat Pro is 10.1.6. The printer is configured to prompt me for the output filename, but never does. It used to work, but I can't figure out what has changed. I have done a repair of Acrobat, and even went so far to uninstall and reinstall.

    Turns out to be an OS problem. I cannot print to my HP printer either! (And this is after rebooting.) Oh well. Off to the Mac forums for assistance. Thanks anyway for those of you who looked at this.

  • Date Extension on Crystal Output Filename in Scheduler

    Post Author: mek
    CA Forum: General
    We use Crystal Reports 10. When we schedule reports through the CMC scheduler we add the date to the output filename by selecting the DateTime option from the variable properties list ( ex. ExpoSalesSummaryReport_%DateTime%.xls generates a file named ExpoSalesSummaryReport_2007-04-25-10-46-33.xls).  The date format that is automatically concatenated onto the filename by Crystal is not what we need. We do not want the time in the date extension and we want the date format simplified, without dashes.
    Our team needs to have additional values available in the variable properties list of the report scheduler that would allow us to select a specific date format to be concatenated to the filename when we schedule reports. For example, we would like to have the following selections in the picklist (new options that we want to add and use are bolded), ex:
    Title
    ID
    Owner
    DateTime
    FileExtension
    DateMMDDYY
    DateMMDDYYYY
    DateMONDDYY
    DateMONDDYYYY
    Is it possible to create new parameters for the scheduler picklist that can add a date extension to the filename in the format we want? I would think that there must be some way to customize the file extension mask behind the scenes in Crystal 10.
    Thanks in advance for your help.

    Hi Raafje,
    Like I've already discussed in my Blog ,Using Date Expressions on Filenames of Burst Query has its own limitations. This date expression that you have tried for sysdate-1 (%d-1%m%y) will not hold good to the requirement. Anyways you can resolve the issue using other work arounds.
    Method I (Using CAST and DATE Functions)
    1.Previous Day -> CAST(DAYOFMONTH(TIMESTAMPADD(SQL_TSI_DAY, -1, CURRENT_DATE)) AS CHAR)
    2.Month of Previous Day -> CAST(MONTH(TIMESTAMPADD(SQL_TSI_DAY, -1, CURRENT_DATE ) ) AS CHAR)
    3.Year of Previous Day -> CAST(YEAR(TIMESTAMPADD(SQL_TSI_DAY, -1, CURRENT_DATE)) AS CHAR)
    Sample Code
    +'ReportName'||'-'||CAST( DAYOFMONTH(TIMESTAMPADD(SQL_TSI_DAY, -1, CURRENT_DATE)) AS CHAR)||'-'||CAST(MONTH(TIMESTAMPADD(SQL_TSI_DAY, -1, CURRENT_DATE ) ) AS CHAR)||'-'||CAST( YEAR(TIMESTAMPADD(SQL_TSI_DAY, -1, CURRENT_DATE)) AS CHAR)||'.pdf'+
    Method II (Using Server Variables)
    1. Create a Dynamic Repository Variable like Previous_Date(Non-System Session variables can also be used)
    2. Create a Initialization blocks
    In Data Source Section - Edit Data Source and place the below query
    Select TO_CHAR(SYSDATE-1,'MM/DD/YYYY')
    FROM Dual (you can use any date format as required)
    3. In Variable Target Section
    Edit Target -
    Give the Name as Previous_Date (as you created in Step1) and Enable the Radio Button as Dynamic
    Place date in Default Value like '9/22/2010'
    4. Now use this Repository Variable in the filename parameter of the burst query as VALUEOF("Previous_Date") for Repository Variable
    and VALUEOF(NQ_SESSION.Previous_Date) in case you have created a session variable for the query
    Thanks & Regards,
    Goushalya
    http://obiee-bip.blogspot.com/2010/05/dynamic-delivery-file-naming-in-bi.html
    Edited by: Goushalya on Sep 29, 2011 7:09 AM

  • Change Build Output Filename for SSIS Project

    I have a Visual Studio 2010 solution (TxMExtractLoad) with two SSIS projects: TxMExtractLoad.Discovery and TxMExtractLoad.Contract1.  The project name (in project properties) is set to the proper two-part name in each project.  However, when I
    do a "Build", the generated .ispac file loses the second part of the project name: both projects build to "TxMExtractLoad.ispac" (in different directories, fortunately).
    I can see where I can change the output *path* for the build, but not the output *filename*.
    Any help, anyone?
    Thanks in advance...

    Came across this post whilst encountering the same issue and thought i would post the solution i discovered
    The ispac will get its name from the Name defined in the project properties minus whatever is following the final name part
    Therefore, your SSIS package of TxMExtractLoad.Discovery will become TxMExtractLoad.ispac 
    If you change the name in project properties to something like TxMExtractLoad.Discovery.myProject
    or TxMExtractLoad.Discovery..ispac then when you build it it will build as TxMExtractLoad.Discovery.ispac 
    Hope this helps

  • Getting Output filename and extension same as the incoming filename and extension

    I need to create a SFTP send port where I should get the output file name and extension same as that of the incoming filename
    I had set the filename in the send port as "%SourceFileName%" but this did not work.
    I have also assigned the input filename (without extension) in a variable in orchestartion. Is there any way i could get the output filename and extension same as that of the incoming message?
    Any help would be much appreciated

    Hi,
    The %SourceFileName% macro maps to the context property BTS.ReceiveFileName that travels with your message in the context. So in order for this macro to work in a send port the message that is going out needs to have this BTS.ReceiveFileName property on
    the context. You probably creating a new message in your orchestration and sending that out. The new message does not have the property on its context which makes it fail. Use a message assignment shape in your orchestration to set the context property for
    the message going out:
    MyMessage(BTS.ReceiveFileName) = OrigMessage(BTS.ReceiveFileName);
    Then %SourceFileName% macro will work at send port.
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Determine output filename based on input filename content with RFC lookup

    Hello Guys,
    I have this sitaution which needs your ideas/sugestion.
    1)  PI system picks up text file from FTP server folders.
    2)  Within PI system,  we need to dynamically determine output filename , logic to determine output filename will be :
              2a)  Read content of the input file particular line number  (Fixed)
              2b)  Pass the value got from step 2a)  to the Remote function module passing value read in step 2a) to get response
              2c)  Use response received from 2b) to construct output filename.
    Please let me know if you have any qeustions on my problem,  appreciate your ideas/suggestions.
    Thanks,
    Krishna

    Hello Priyanka,
    THanks for your response to my post.
    My input  TEXT filename has following contents
    :20:CHASGB2LXXX
    :25:24803501
    :28:11264/01
    :60F:C110921USD85410,88
    :61:110921C12307,00NTR NONREF//5311802
    :86:TR ?
    ?20IV.2000199238 FR.26.08.11 IV.2000198595FR.22.08.11
    ?23AZMAT20091123183
    Now  I would like to read second row of this TEXT file containing   ":25:24803501"   and would like to read only text
    24803501.
    Hope this additional info will provide me more info on my requirement.  Appreciate your response.
    Regards
    Krishna

  • Specify Output Filename in Frame Document

    WebWorks provided a clever way to specify the name of the
    HTML output file within the source FrameMaker file; it involved
    using a 'filename' marker type and specifying the name of the file.
    Does RoboHelp offer an analogous approach?

    This is not supported in RoboHelp 7.

  • FAX and Output Filename

    Does anyone know if it's possible to output the actual OutputFileName from the transformation builder?
    I want to print a document in PDF and sent it by FAX. I have a fax machine which is able to scan a directory, picking up a txt file, and it expects to read in the txt file the filename of the PDF file.
    I'm able to generate a PDF file named, for example, xyz.PDF and a txt file called xyz.PDF.txt.
    I'm unable to write "xyz.PDF" in the xyz.PDF.txt file.
    Thanx a lot.

    You suggestion is good and, before writing a program to do that, I was wondering if that approach would be possible even with Transformation Builder, since that is the program I'm using to generate the txt file.
    I'm using the Transformation Builder because I need to extract some data from the spool file to be printed, before converting it to PDF. These data will drive the fax machine.
    I have a job with these steps defined:
    1- jftrans: Trasformation of spool file from legacy system
    2- jfmerge: PDF Creation with unique filename
    3- jftrans: same as (1), but I will extract data for the fax machine
    Unfortunately, in step (3) I don't have the filename available which Control Central is generating in step (2).
    If there's no chance to have it available in Trasformation Builder for step (3), then I need to add a step 4 to append this information to the same file of step (3) using a custom program.
    Do you think this should be the way?
    Thanx,
    MDI

  • Csv output  filename &item.

    hello,
    i have a report and enabled csv output.the filename-help say:Specify a name for the export file. If no name is specified, the region name is used followed by the extension .csv.
    ok,filename is not specified,and my region-name is
    Kundenrechnung Nr. &P35_X_RECHNR.
    P35_X_RECHNR is an hidden item and works fine in regionsname,as example regionsname looks like Kundenrechnung Nr. 719
    but when i downlaod the file,the filename is Kundenrechnung Nr. &P35_X_RECHNR..CSV
    how can i use my hidden item in csv filename ?
    [email protected]

    Hi Christian,
    in your case there is a timing problem: The substitution for the region title is part of the region rendering process as is the filename. There is no double-substitution at that point. Imagine the current state to be filename:=NVL(substitute(filename), region_title) where region_title has the value that is handed to the rendering process.
    We reference a hidden page item as filename directly, e.g. "&PX_FILENAME..csv"
    The item value is calculated by a page process that is executed "On Submit - After Computations and Validations", and that works fine. You could try to set the filename to be "Kundenrechnung Nr. &P35_X_RECHNR..CSV" since P35_X_RECHNR should contain the appropriate value at that time.
    -Udo

  • XML Report output filename

    At the moment the report filename is generated and incorporates the template name and the request ID. I am wondering if it is possible to have any control over the filename. This is more for the flat file output from etext templates where we might want a date included in a BACS filename.
    Thanks,
    Dave

    Hi David
    If you are running via the conc manager then you cannot change the assigned name during generation. Other folks have changed the name after the generation via the CM using a shell script.
    You could wrap the process up in a java concurrent program, that way you would be able to control the final output name.
    Regards
    Tim

  • PLEASE help me with Batch Output Filenames

    Hi All,
    I batch output hundreds of clips every day. And I'm stuck having to rename all of my files because Compressor appends the destination folder's name to the filename after Batch output. Can someone help me figure out how to retain the ability to output to my destination, but not have the destination folder name added to the file name. I spend more time renaming files than working!!!
    Please help!
    Thanks.

    Prior to loading the batch, create a Custom Destination. In the process of creating your Custom Destination, you'll be given the option (in the Inspector) of what Compressor will call the output files, so make sure to use something like Source Media and nuke any appendages.
    When you know choose the Destination for your Encodes, so long as you set a pre-defined destination - that is, something that is set prior to the import of your files - you won't have all that junk added to your file name.
    Another handy thing that I do when I do mass encodes to to use Compressor's Default Setting and Default Destination settings - available under Preferences - to speed things up. With a default setting and destination set, I simply import my files (Compressor automatically adds the setting and destination for each file), save my batch, if necessary, then submit. I then adjust the Preferences settings for the next batch, then import those files. And so on...
    Basically, as much as possible, the idea is to setup your targets (Destinations and Settings) ahead of time.
    But be mindful: All this won't work without pre-set (usually Custom) Destinations and Settings. Thinking you can do this after you've imported your files is not the way to go...

  • Excel output filename

    I am outputting data from reports to excel using mimetype=application/vnd.ms-excel
    but when it opens the file/sheet is called rwservlet.
    If I try to open another report which uses the same method at the same time it wont let me becuase it says already one document called rwservlet open.
    How can I give the file a name. I have tried adding &DESNAME=myfile but it does not make any difference.
    Any ideas ?
    Thanks in advance,
    Russell

    hello,
    since what you are opening in excel is actually a live stream, and not a file, your browser decides to use some part of the URL, in this case the last string before the parameters, as the file name.
    there's nothing you can do about that from reports.
    thanks,
    ph.

  • AE appends my filename when setting up a render queue output filename via scripting

    I wrote a script that imports quicktimes and creates comps from them and adds them to the render queue. I'm running into an issue where files with certain names get appended when adding them to the queue. I believe it has something to do with the "." in the name. For example a quicktime named "filename_v25.140504.mov" is used to create a comp named "filename_v25.140504_test_01". This comp is then add to the render queue using the script below.
    var myRQItem = proj.renderQueue.items.add(renderComp);
    var myFile = new File(renderLocation.toString() + "/" + renderComp.name);
    myRQItem.outputModules[1].file = myFile;
    The filename it becomes "filename_v25.mov". It appears to be stripping everything after the last ".". This becomes a problem when I have several comps with names like: "filename_v25.140504_test_01", "filename_v25.140504_test_02", "filename_v25.140504_test_03" etc... since they all get added as "filename_v25.mov".
    Has anyone ran into this issue? Any solutions? Thanks!
    BTW I'm using CC on a mac running 10.9

    I haven't run into that particular issue, but what code are you using to create the comp based on the QuickTime file?  Can you replace the "." with a "_" when the comp is created?  If you can get ahold of the file name as a string, you could split it on the "." character then join the returned array with the "_" character. 
    --Arie

  • XSL-FO Report Query / Named Layout - Dynamically set the output filename

    Does anyone know if it is possible to dynamically set the name of the PDF file which is created via FOP?
    Thanks
    Paul

    John
    Thanks for the quick reply, apologies, I should have been more explicit.
    I am calling apache FOP via a report query and a named column layout using xsl-fo to format the PDF report.
    The call is done via a javascript function which determines which report to print and then submits the approproate REQUEST. The request is picked up by conditional branches and calls the PRINT_REPORT
    The PRINT_REPORT names the PDF file as same as the report query name.
    BTW the long term goal is to store the resultant output as a blob back in the database but I can put that off to phase II of the project as I'm not sure that this is possible. Would be nice though!
    Thanks
    Paul

Maybe you are looking for

  • Create a new user for oracle 10G ASM instance with sysdba system privilege

    Hi, In our Golden Gate Project, we require the SYS user credential to connect to the Oracle 10g  ASM instance to read the database transaction logs.But our client is not providing the SYS user credential to  connnect to ASM instance. I'm getting the

  • Starting a new project - JDeveloper 11.1.2.1.0 or 11.1.1.6.0 ?

    Hi, I am a little bit unclear as to which of the latest JDeveloper releases (i.e. 11.1.2.1.0 and 11.1.1.6.0) to use when embarking on a new project. I understand that the SOA development extensions are not part of the 11.1.2.1.0 release, but then the

  • Upgrade from 4.0B to ECC 6.0

    Hi I have few questions related to upgradation from 4.0B to ECC 6.0 (wrt HR) To wat extent it is possible, if yes then how simple or difficult it is ? Time Factor (Duration)?  ?(assuming the size of the company close to 1000) Do we have any set of st

  • Background color missing

    I'm a newbie just working on the Adobe Dreamweaver tutorial. It instructs me to go to modify>page properties> click on the background color box and select black (#000000). I did this and the background color is still without color. When I open the pa

  • Use of variables in cross tab

    Hi experts, Can anyone tell me how to use a variable in cross-tab? I am populating the crosstab from the columns of a table. I want to use a variable (say percentage of averages) which calculates for each month for any number of months the data has b