Setting output file name in export transaction data package

Hi all,
I am running an "export transaction data" package in the data manager. I wanted to set the output file name so that it will be a constant value. I wrote the following in the package editor:
INFO(%FILE%,\ROOT\WEBFOLDERS\COLMOBIL\VEHICLES1\DATAMANGER\DATAFILES\vehicles_to_pca2.txt)
TASK(/CPMB/TD_FILE_TARGET,FULLFILENAME,%FILE%)
The system run the package and reported success but the file was not created. When i did the same with an existing file name, it was not updated.
When I run the same package with the following PROMPT command instead of the INFO command:
PROMPT(OUTFILE,,"Please enter an output file",Data files (*.txt)|*.txt|All files(*.*)|*.*)
The system works fine.
Any ideas?
TIA
Avihay

I am sad to report that apparently Adobe does not do a very good job with the PDF printer. I have just spent over an hour with support to get the answer we can not help you. I guess I will have to spend $50 for NovaPDF to handle my problem. It's a shame when a superior overall product like Acrobat is not able to keep up with the knockoffs on the small things.

Similar Messages

  • Extremely long time when executing an export transaction data package link

    Hi,
    I am working in a packagelink to export transaction data to the application server. The package which  I am currently using is /CPMB/EXPORT_TD_TO_APPL. I use it to generate an output file which I later use in a different appliation to register modifications applied in BPC.
    It has been working correctly without problems for a time. The problem is that suddenly it stopped working. Maybe because of some changes in the dimension library (is it feasible?) . I defined and scheduled again the packagelink and it began working correctly again, but the time it takes to execute the process  is really long. Approximately it takes above 10 hours, which is an extremely long time for the process. In the beginning, the packagelink was executed in an hour and a half. Could anybody tell me any idea about what can be the reason of this problem?
    Any help will b much appreciated.

    >      Database error text........: "POS(1) System error: BD Index not accessible"                    
    >      Database error code........: "-602"                                                            
    >      Triggering SQL statement...: "INSERT INTO "/BIC/SZD_PROD" ( "/BIC/ZD_PROD",                    
    >       "SID", "CHCKFL", "DATAFL", "INCFL" ) VALUES ( ? , ? , ? , ? , ? )"                            
    Hi Hari,
    looks like you are hitting a BAD index.
    Check the [DB50|http://help.sap.com/saphelp_nw04s/helpdata/en/9c/ca5bb3d729034aaf6f4cea2627c2f2/frameset.htm] or the DBMGUI - there should be warnings about this.
    To fix this issue, either use the DBMGUI -> Recover -> [Indexes|http://maxdb.sap.com/doc/7_6/30/5ada38596211d4aa83006094b92fad/frameset.htm] function or logon to dbmcli, get an SQL session ([sql_connect|http://maxdb.sap.com/doc/7_6/11/8af4411cf5c417e10000000a155106/content.htm]) and use the [sql_recreateindex|http://maxdb.sap.com/doc/7_6/30/f7c7f25be311d4aa1500a0c9430730/content.htm] command.
    Regards,
    Lars

  • Javascript code for setting output file name of emailed form in Livecycle

    I was given a task of creating a new form with livecycle. I have no knowledge of javascripting so I am struggling with one of the things I am trying to get this form to do. The overview of this form is people around my company fill out this form then hit a button to email the completed form to me. I was able to accomplish part of this task by using the following code within an up mouse event script on a button.
    oDoc = event.target;
    oDoc.mailDoc({
    cTo: ********@******.com,
    cSubject: "IB Update Request - Instance" + IBInstance.rawValue,
    This takes the form and emails it to me with the data from the field called "IBinstance" in the subject line which is what I want but the file name attached to the email is garbage. presently is says "newupdateform.pdf - Adobe Acrobat Pro.pdf"
    What I would like is some javascript code that I can take the data from the field called "IBinstance" and use it as the name of the file being sent in. Is there a simple code that i can put in this event to allow me to do this?
    Thank you

    Hi Joerg,
    I have been trying to solve this as well, but gave up. I also could not get the workaround you found to work with EFM files.
    If you do find a solution, please update your message to share?
    Thanks
    Julie

  • Export Indd to EPS/JPG and set the file name  for EPS/JPG file

    Hi,
       When I export the INDD to JPG/EPS, I want to set the file name with pageNumber  for JPG/EPS files using javascript.
    For Example
    If I set the file name as EPSFile.eps, after exporting the indd(with 2 pages) to eps
    ,files are generating in the following name EPSFile_1.eps, EPSFile_2.eps.
    but I want to set the file name as EPSFile_001.eps and EPSFile_002.eps using javascript.
    anyone knows please reply for this.
    Regards,
    Mubeen

    Hi,
      I tried the following code.
    var JPGe = new File("Applications/PDF/JPG/file.jp");
    app.activeDocument.exportFile(ExportFormat.jpg, );
    when I use this code ,exported jpg file names are
    file.jpg, file1.jpg,file3.jpg.
    but ,I want the output file names as file_001,file_002,file_003,
    Thanks,
    Mubeen

  • Dynamic file name in Export: XML

    I am generating a SQL report on a page that can be exported as XML File and It seems to me the file name come from the name of the report region by default and I 'd like use a value of an item as the XML file name.
    I tried to put &P15_ITEM. as name of report region, then the XML file name I got is: p15_item[1]..xml. But if I change the Report Template back to Standard Template, the region name displays the value of P15_ITEM.
    So, my question is, Is ther anyway we could reset the file name of the XML file, such as the value of an item, In Version 1.6.?
    Million Thanks,
    Ran

    Thank you Raj for the direction
    The way to do it is :
    1. In ID, advanced tab, put a check on the adapter-specific message attributes - file name.
    2. Put a "*" on the file name scheme
    3. In IR, create a UDF to set up target file name :
    DynamicConfiguration conf = (DynamicConfiguration) container
    .getTransformationParameters()
    .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    // set up file name for receiver adapter
    String SourceFileName = conf.get(key);
    conf.put(key, TargetFileName);
    return " ";
    4. Map the above UDF to the header level of the target structure.
    Regards,
    Idi

  • Require output file name same as input file without extension

    I am doing a POC where I require that my output file name should be same as input file name. The input is a XML and output is Flatfile. If I use %SourceFileName%,
    i am getting the output with extension. How can I remove the extension? Do I need to write a custom pipeline component?

    I don't think Orchestration or custom Pipeline can help you on this as  you are setting
    %SourceFileName% Macros at your send Handler which comes after Pipeline Processing .
    As you are converting xml file to Flat file I would suggest to use  Macros  as
    %SourceFileName%.txt 
    %SourceFileName% Macro gives the file name along with extention. This won't work!

  • Can I print to AdobePDF with a pre-determined output file name?

    I have a list of PDF files that I need to reduce in size. I have tried many combinations of Adobe's "Save As Reduced PDF", "Save As Optimized PDF", as well as several compression programs. The best results I've found have been to print the PDF via AdobePDF, using the standard quality settings.
    This leads me to my problem. It's simple to batch the print process to print multiple files to AdobePDF, however each one requires the user to specify the output file name. Is there a way to interface with the AdobePDF tool in a way that the output file name is already determined? I.e. passed into the program as an argument? Any help would be greatly appreciated.
    Thanks,
         Dan
    EDIT: Under the Adobe PDF Settings, the option for Adobe PDF OUtput Folder is set for Prompt for Adobe PDF filename. There is also an option to dump to Documents\*.pdf, which retains the original filename. Is there a way to specify a different directory, rather than Documents, while retaining the *.pdf argument? Again, thank you.

    You would probably get better results printing from Acrobat. The HTMLLoader rasterizes the image first. You could possibly add a JavaScript function inside the PDF that prints and call that from your AIR app.
    See http://www.adobe.com/devnet/air/flex/quickstart/scripting_pdf.html for information on calling JS functions in a pdf file from AIR.

  • Applescript to take a file name element to change Date Created

    This so beyond me but I have been led to believe is can be done. Can anyone help me please?
    I have thousands of archive files. ALL of these files' names start with the date in dd-mm-yy format. eg. 31-01-11 File Name.pdf or 25-12-09 Filename-02.pdf
    I would like to be able to drag a folder onto an application and for that app to search through the folder and all sub-folders, for these files and change the files' Date Created to the date at the start of the filename.
    This feels so easy to type but I fear much more complicated to do however I do thank you very much in anticipation for your help.
    Best wishes
    John

    Hello
    Here's something you might try if the problem is still open.
    It uses SetFile(1) command in Developer Tools, which you need to have intalled.
    cf.
    http://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/m an1/SetFile.1.html
    It can set creation date to any date between 1970-01-01 to 2038-01-18 inclusive.
    Simple check for date in file name is implemented so that error log is written to a log file on desktop when given date is considered invalid or SetFile raises error.
    One thing to note.
    It will process both files and directories under given directory tree in order to process package file. But it is not smart enough to leave the package contents alone, which means if a package contains a file or directory with name matching the pattern, it's creation date will be also changed.
    Minimally tested under OSX 10.2.8 at hand.
    But NO WARRANTIES of any kind. Please use it on test folder first.
    Good luck,
    H
    --SCRIPT
    on open aa
    main(aa)
    end open
    on run
    open ((choose folder) as list)
    end run
    on main(aa)
    list aa : alias list of source directories
    set logf to (path to desktop)'s POSIX path & "creationdate_error_log" & (current date)'s time & ".txt"
    repeat with a in aa
    set a to a as alias
    if (a as Unicode text) ends with ":" then -- directory
    set p to a's POSIX path's text 1 thru -2 -- posix path without trailing /
    set sh to "path=" & p's quoted form & ";
    logf=" & logf's quoted form & ";
    find "$path" -name '[0-9][0-9]-[0-9][0-9]-[0-9][0-9]*' -print0 | while read -d $'\0' f;
    do
    fn=${f##*/};
    dd=${fn:0:2}; ((d=10#$dd));
    mm=${fn:3:2}; ((m=10#$mm));
    yy=${fn:6:2}; ((y=10#$yy));
    if [[ ($d -ge 1 && $d -le 31) && ($m -ge 1 && $m -le 12) && ($y -ge 70 || $y -le 38) ]]; then
    if [[ $y -ge 70 ]]; then
    cc=19;
    else
    cc=20;
    fi
    res=$(/Developer/Tools/SetFile -d "$mm/$dd/$cc$yy 00:00" "$f" 2>&1);
    if [[ -n $res ]]; then
    echo "# $res ; failed for : $f" >> $logf;
    fi
    else
    echo "# invalid date in name : $f" >> $logf;
    fi
    done"
    do shell script sh
    end if
    end repeat
    end main
    --END OF SCRIPT

  • Use job parameter as output file name "alias" ?

    I have a Hyperion 9.3 job with a # of cycles. Is there a way to tell Hyperion to use the job parameter/filter as part of the file name? For example, if there is a filter called "division" and for one of the cycles that is set to "sales", is there a syntax like "{division}" I can use in the output file name so that it picks up the filter?

    Unfortunately, I have never seen any kind of syntax that would allow this in Hyperion. The only way I know to do it would be using the java sdk, but that is not something that can be done on the fly...

  • Configure:3955: checking for C compiler default output file name

    Hi,
    I am trying to configure oracle bsd on AIX and got the below error,
    # sh /ldap/db-4.6.21.NC/dist/configure
    checking build system type... powerpc-ibm-aix5.3.0.0
    checking host system type... powerpc-ibm-aix5.3.0.0
    checking if building in the top-level or dist directories... no
    checking if --disable-cryptography option specified... no
    checking if --disable-hash option specified... no
    checking if --disable-mutexsupport option specified... no
    checking if --disable-queue option specified... no
    checking if --disable-replication option specified... no
    checking if --disable-statistics option specified... no
    checking if --disable-verify option specified... no
    checking if --enable-compat185 option specified... no
    checking if --enable-cxx option specified... no
    checking if --enable-debug option specified... no
    checking if --enable-debug_rop option specified... no
    checking if --enable-debug_wop option specified... no
    checking if --enable-diagnostic option specified... no
    checking if --enable-dump185 option specified... no
    checking if --enable-java option specified... no
    checking if --enable-mingw option specified... no
    checking if --enable-fine_grained_lock_manager option specified... no
    checking if --enable-o_direct option specified... no
    checking if --enable-posixmutexes option specified... no
    checking if --enable-pthread_api option specified... no
    checking if --enable-rpc option specified... no
    checking if --enable-smallbuild option specified... no
    checking if --enable-tcl option specified... no
    checking if --enable-test option specified... no
    checking if --enable-uimutexes option specified... no
    checking if --enable-umrw option specified... no
    checking if --with-mutex=MUTEX option specified... no
    checking if --with-tcl=DIR option specified... no
    checking if --with-uniquename=NAME option specified... no
    checking for chmod... chmod
    checking for cp... cp
    checking for ln... ln
    checking for mkdir... mkdir
    checking for rm... rm
    checking for sh... /usr/bin/sh
    checking for a BSD-compatible install... /ldap/db-4.6.21.NC/dist/install-sh -c
    checking for C compiler default output file name...
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    and in config.log,
    configure:3955: checking for C compiler default output file name
    configure:3982: xlc_r -O2 -D_THREAD_SAFE -Wl,-brtl conftest.c >&5
    /ldap/db-4.6.21.NC/dist/configure[3983]: xlc_r: not found
    configure:3985: $? = 127
    configure:4023: result:
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME "Berkeley DB"
    | #define PACKAGE_TARNAME "db-4.6.21"
    | #define PACKAGE_VERSION "4.6.21"
    | #define PACKAGE_STRING "Berkeley DB 4.6.21"
    | #define PACKAGE_BUGREPORT "Oracle Technology Network Berkeley DB forum"
    | #define HAVE_UPGRADE_SUPPORT 1
    | /* end confdefs.h. */
    |
    Is this beacase valid c compiler not existing?
    # which cc
    which: 0652-141 There is no cc in /usr/bin /etc /usr/sbin /usr/ucb /usr/bin/X11 /sbin /usr/java14/jre/bin /usr/java14/bin.
    # ksh: which:: not found.
    # which c
    which: 0652-141 There is no c in /usr/bin /etc /usr/sbin /usr/ucb /usr/bin/X11 /sbin /usr/java14/jre/bin /usr/java14/bin.
    Thanks,
    Message was edited by:
    GK Joe

    Joe,
    I presume you are trying to build Oracle BDB and not bsd as you have mentioned.
    Yes, the error message you are getting is for not having the CC compiler in your system or the path isn't set. Check in the /usr/vac/bin directory if you have one in your system. You might find both xlc and cc compiler there. Set this directory to your path so that 'configure' can see it.
    Regards,
    -Debsubhra

  • XML Publisher - Specify Output file name

    Hi All
    I am using XML Publisher in one of our OAF pages to generate PDF reports based on some parameters. I am using the shared region which OAF has provided. On export, I see that the output file name is : template code + random number + _out.pdf. Is there anyway to specify custom output file name?? As this is little critical for me, any pointers would be greatly appreciated.
    Thanks in advance,
    Murari

    Hi Avaneesh,
    Thanks for your prompt response. I see that the logic for file name is in xml publisher utility class: DocumentHelper. I dont see any option to pass file name as a parameter to DocumentHelper. So I am not sure if extending OAF region controller : "DocumentViewerCO.java" would be of any help?? Please correct me if I am wrong. Did you ever try changing output file name from OAF page?
    Many thanks,
    Murari

  • How to set attched file name while sending email through ABAP

    Hi All- tell me how to set attched file name while sending email through ABAP.
    regards...
    Abhay

    Sure,  when you are adding your entry to the packing list,  give the name in the obj_name field.
    *File 2
      mailbin = 'This is file 2'.
      append mailbin.
      data: start type i.
      data: end type i.
      start = tab_lines + 1.
      describe table mailbin lines end.
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = start.
      mailpack-body_num = end.
      mailpack-doc_type = 'TXT'.
      mailpack-obj_name = 'TEST2'.        "<-  RIGHT HERE
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      append mailpack.
    Regards,
    RIch Heilman

  • Output file names from Premiere sequences in AME CS5

    Why, oh why, does AME not automatically names files according to their sequence names when added from a Premiere project? Instead, it auto-names them sequentially based on the project name. It is extremely annoying and confusing when trying to queue-up a project with many sequences.
    Is there a way to change this behavior (other than to simply disable "Increment output file name", which results in multiple targets of the same exact name) ?
    I really wish you could have it name the files like the sequence names.

    Just to confirm what you're saying: Premiere Pro sequences added to AME from Premiere Pro are not being named properly? Because they should be...
    However, Premiere Pro sequences added to AME from AME (File > Add Premiere Pro Sequence) are NOT named for the sequence, and there is no way around this; you get the project name with a serial digit. There is no setting to change this behavior, unfortunately--it is how it is.
    I must agree: it is a particularly annoying oversight. How to change this behavior? Like this: Adobe - Feature Request/Bug Report Form

  • Output file names

    Is there a way to keep Compressor from adding the project name and settings name to the output file name? I know I can change it but it's a PITA with lots of files in a batch. I just want the original file name to be output.

    Under Destinations, duplicate your "Source" destination. Then click on it and look at the Inspector. You will be able to eliminate the "-Setting Name" part from your Template. Then change your prferences to make to make your Source-Copy the default Destination.

  • REG: Output File Name

    Hi All,
              I have a file to file scenario where mapping is not used. My  Input file name is "XXXX.txt" and i want the output file name as "XXXX.dat". But the problem is XXXX is not a constant value but a dynamic value and i cant use a UDF because there is no mapping for this interface. Is there any other method by which this can be achived?
    Thanks,
    Siva

    Hi!
    For your input file you can work as follows:
    Put the file in a special directory and then read this directory using wildcard filename definition:
    e.g. *.txt looks for and processes all files ending with *.txt
    For your output file (receiver file adapter) you may work with os command "rename" and/or try it using this stuff:
    http://help.sap.com/saphelp_nwpi71/helpdata/en/44/6a316af5a23672e10000000a114a6b/content.htm
    Regards,
    Volker

Maybe you are looking for

  • Powerbook 17" S-Video Out to TV monitor

    Hey all, If we go out of the S-Video out on a Powerbook 17" 1.5Ghz, and in to a television's Video In, is there a way to use the TV monitor for video only? Like how you can do that on a G5 tower, take the video out and make it extend your real estate

  • Dear iWeb users with problems publishing

    I have run the gamete of error messages today, all day, and still.But I have been able to publish all I have tried to publish today. The program just seems determined to undermine my confidence. So if you keep getting error messages, please check you

  • Icons do not appear on desktop

    When I boot my computer only the Windows four colors appear. No images on the bottom either. I have tried "view" and "show icons" but it doesn't work I do not know what I am doing wrong because sometimes the icons appear after re-booting

  • Large Premiere Pro CS6 Project running very slowly

    Hi there folks. I'm about to ask a question to which I'm fairly certain the answer is "You need to upgrade your RAM and Video Card." But I thought I'd toss the question out to Adobeland just for the slightest, minesculest chance there might be a soft

  • No puedo descargar itunes 10.5

    no me daja descargarme itunes 10.5 .me da un mensaje que me falta un programa en windons