FDTA Customizing of the filename

Hi.
We are using transaction code FDTA to download files to a server. The files are genereted with classic RFF* programs in TC F110. We find two problems with the downloading:
The lenght of the proposed filename on RFF* variants is only 38 where we would need around 100 (field RFPDO2-FORDNAMD )
We would also like to put a timestamp, and the total amount of the file in the filename, in order to do this we would like to know if there is any available BTE / BADI we could use.
I would really appreciate any help you can provide, specially on point number 2, as with a BTE we could surely solve point 1.
Thanks for your help.
Ignacio.

We have solved it creating a ZFDTA

Similar Messages

  • JS scripted needed to add custom text plus filename to file info in document title

    Would greatly appreciate any help with this one...
    JS script to add custom text plus filename to file info in document title
    many thanks

    Super :O)
    I have a folder of say 50 images and I want to run a JS script batch
    example in the document title :  image Nr 81205
    custom text is "image Nr" +  file name "81205"
    activeDocument.info.title =" image Nr" + decodeURI(activeDocument.name);
    would this be correct without seening the file ext
    many thanks

  • "There was an error opening this document. The filename, directory name, or volume label syntax is i

    "There was an error opening this document. The filename, directory name, or volume label syntax is incorrect."
    I tried different versions, no avail.
    I think it has to do with the password somehow, but I do not know. I can copy the files from the web folder to my desktop and they open fine (after entering the password AGAIN), but I can not open them directly form the web folder - it does not ask for the password again, just pops up the error.
    Adobe's support really upset me (insert explicative here) by keeping me on the phone for 20 min, collecting all sorts of information about me (not the problem) with some lady who barely spoke English, just to tell me to go to the website. No surprise they need to charge for tech support, customer service is doing everything but "service". I hate companies that do this. I am thinking of using another PDF reader, I have heard good things about them. Check
    http://en.wikipedia.org/wiki/List_of_PDF_software
    Has anyone ever been able to find a fix? I can not find anything on this site.

    Howdy, Moritz!
    Thanks for the suggestion, but this is not an issue of filename and language conflicts, at least in my environment. I highly doubt that's the root cause of this issue.
    The PDF files in my tests have all had very simple names, such as 123.pdf and test.pdf, as well as more complicated names with spaces in them. Nothing about the files contains anything outside of the English language, including the content and filenames.
    From everything I've been able to determine, this is a WebDAV-related security issue that affects programs like Acrobat Reader. I know for a fact that MS's KB892211 WebDAV patch doesn't create the issue, however MS's update to that 892211 patch DOES create the issue. As I've outlined earlier in this thread, my extensive testing has proven this more than once.
    At this point, I haven't been able to accurately uninstall the update to 892211 after the update has been installed. And, as far as I can tell, the update to 892211 comes down from MS as a Office and/or Windows Update component. So, everyone has it, the uninstaller doesn't work, and there's no documentation detailing what registry entries are being changed when the update to 892211 is installed.
    My ultimate goal is to bring a test machine to the point just before the update to 892211 goes on, fire up the Registry, Process, and File monitors on my test box, and install the 892211 update. This should give me an accurate picture of what I need to restore in order to rid the machine of the update to 892211.
    Until Microsoft officially fixes the issue, I am not totally sure how this will be resolved. I've ceased my work on the issue for now since copying the PDF file from the WebDAV share to the user's desktop gets the user what they wanted in the first place - the ability to open the PDF file!
    Maybe, once some other projects slow down a bit, I might get back to creating a solution, but it's going to be a "hack" no matter which way you slice it. I'd much rather MS spend their time creating the solution. If I have to do it, my fee to MS will be quite HIGH! :*)
    George B.

  • Consolidating MSP Files using a variable as the filename

    Hi All
    I am trying to consolidate a number of MSP Files without having to hardcode the filenames.  Here is what I have so far and it is falling over on the Application.ConsolidateProjects..... line.  Any help/advice would be appreciated:
    Sub ImportWorkstreamPlans()
    Dim objFSO As Object
    Dim objFolder As Object
    Dim objFile As Object
    Dim i As Integer
    Dim Path As String
    Application.DisplayAlerts = False
    'Create an instance of the FileSystemObject
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    'Get the folder object
    Set objFolder = objFSO.GetFolder("D:\Delivery Assurance\CPP Build")
    i = 1
    'loops through each file in the directory and prints their names and path
    For Each objFile In objFolder.Files
    'FName = objFile
    Application.ConsolidateProjects Filenames:=objFile, NewWindow:=False, AttachToSources:=False, HideSubtasks:=True
    ViewApply Name:="CPP View"
    GroupApply Name:="No Group"
    SelectRow Row:=1, RowRelative:=False
    Next objFile
    FilterApply Name:="All Tasks"
    OutlineShowAllTasks
    SetAutoFilter FieldName:="Flag3", FilterType:=pjAutoFilterIn, Criteria1:="Yes"
    GroupApply Name:="Sub Project"
    Application.DisplayAlerts = True
    End Sub
    Thanks in anticipation.
    Tony
    TKHussar

    Tony,
    I think you made a typo when you say your individual plans are stored in "D:\CPP Build Template\CPP Plans" because your code is looking for the files in "D:|CPP Build Template\CPP
    Build Plans". Maybe that's your runtime error right there.
    However, I have to take back something I said previously. The FileName parameter of the ConsolidateProjects Method can, and should in this case, be a full path. I did a little further testing to simulate your configuration. I have a "Y" drive with
    a desktop folder. I created a blank Project 2010 template file and a simple test file and placed both of those on the "Y" drive desktop. I am running Project 2010 on the "C" drive of Windows 7 on a virtual PC. The macro code below is in
    the Global file. I open the template file and then run the macro. Everything works fine until it attempts to invoke the autofilter. Then it fails and I didn't have time to figure it out so I use a normal custom filter instead.
    Sub ImportWorkstreamPlans()
    Dim objFSO As Object
    Dim objFolder As Object
    Dim objFile As Object
    Dim i As Integer
    Dim Path As String
    Dim FName As String
    Application.DisplayAlerts = False
    'Create an instance of the FileSystemObject
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    'Get the folder object
    Set objFolder = objFSO.GetFolder("Y:\Desktop")
    i = 1
    'loops through each file in the directory, determines if they are a project file, and then inserts them into a static master
    For Each objFile In objFolder.Files
        If InStr(1, objFile.Path, ".mpp") > 0 Then
            FName = objFile.Path
            Application.ConsolidateProjects Filenames:=FName, NewWindow:=False, AttachToSources:=False, HideSubtasks:=True
            ViewApply Name:="Gantt Chart"
            GroupApply Name:="No Group"
            SelectRow Row:=1, RowRelative:=False
        End If
    Next objFile
        OutlineShowAllTasks
        FilterApply Name:="All Tasks"
        FilterEdit Name:="TKH", taskfilter:=True, create:=True, overwriteexisting:=True, _
            FieldName:="Flag3", test:="equals", Value:="yes", ShowInMenu:=False, showsummarytasks:=True
        FilterApply Name:="TKH"
        'SetAutoFilter FieldName:="Flag3", FilterType:=pjAutoFilterFlagYes
        GroupApply Name:="Sub Project"
    Application.DisplayAlerts = True
    End Sub
    John

  • During checkin read the filename in oracle ucm

    During Checkin content from Profile I want to read the filename. Can we do this using Java filter?How?

    Hi Srinath,
    1) Whatever given code I placed in rule side effect and checkin content to content server and verified in the console output, could not find the trace log.
    2) I placed code in custom placed checkin  content and got below error
    Caused by: java.lang.IllegalArgumentException: !csDynHTMLArgumentMessage2,3,<$if &lt;$trace("content id side effect"\, "#0023console")$&gt;
    services/3 04.21 00:06:43.026 IdcServer-427 [[% start with original filename\, which may include path and/or extension %]]
    services/3 04.21 00:06:43.026 IdcServer-427 &lt;$filename=#0023local.primaryFile$&gt;
    services/3 04.21 00:06:43.026 IdcServer-427 [[% replace any backslashes with normal slashes %]]
    services/3 04.21 00:06:43.026 IdcServer-427 &lt;$filename=strReplace(filename\,"\\\\"\,"/")$&gt;
    services/3 04.21 00:06:43.026 IdcServer-427 [[% remove any leading text up to last slash %]]
    services/3 04.21 00:06:43.026 IdcServer-427 &lt;$filename=regexReplaceFirst(filename\,"^.*/"\,"")$&gt;
    services/3 04.21 00:06:43.026 IdcServer-427 [[% remove any trailing text starting with a dot and followed by anything other than a dot %]]
    services/3 04.21 00:06:43.026 IdcServer-427 &lt;$filename=regexReplaceFirst(filename\,"\\.[^.]+$"\,"")$&gt;
    services/3 04.21 00:06:43.026 IdcServer-427 &lt;$trace(filename\, "#0023console")$&gt;
    services/3 04.21 00:06:43.026 IdcServer-427 &lt;$dpPromote("dDocName"\, AutoNumberPrefix & "_" & filename)$&gt;$> <$isActive=1$> <$endif$>!csParserUnableToFindClosingElement,\s
    services/3 04.21 00:06:43.026 IdcServer-427        at intradoc.common.DynamicHtmlMerger.createArgumentException(DynamicHtmlMerger.java:2118)
    services/3 04.21 00:06:43.026 IdcServer-427        at intradoc.common.DynamicHtmlMerger.evaluateScriptToWriter(DynamicHtmlMerger.java:1907)
    services/3 04.21 00:06:43.026 IdcServer-427        at intradoc.common.DynamicHtmlMerger.evaluateScriptNoErrorHandling(DynamicHtmlMerger.java:1866)
    services/3 04.21 00:06:43.026 IdcServer-427        at intradoc.common.DynamicHtmlMerger.evaluateScriptReportError(DynamicHtmlMerger.java:1841)
    services/3 04.21 00:06:43.026 IdcServer-427        at intradoc.server.DocProfileStates.computeIsRuleActivated(DocProfileStates.java:642)

  • Specifying the filename for outbound FTP transport in OSB

    I want an OSB based service that will send via FTP a file with a specific name to a remote ftp location.
    It appears OSB can't do this because the FTP transport on a business service only allows you to specify the prefix and suffix and then generates a big long file name for the midlle parts.
    Does someone know how to override this and specify the name that you want teh remote file name to be called?

    mdsrobbins wrote:
    Your response was helpful but being new to OSB I'm still not quite there because I want to pass a "variable" to the file name. Now given I want to ftp a CSV file I've specified a proxy messaging service in an MFL format behind a jms queue. The business service underlying this is the ftp service again using the MFL format. This all works but in the message flow I for the proxy I can't seem to get access to a user defined property which contains the filename which I could then pull out and stuff into the "filename" header as suggested above.
    Doe anyone have any ideas how I can get access to a filename property from a JMS message?From what i understand
    JMSQ--- JMS PRoxy (MFL)----Pipeline ----->BS (MFL/FTP)---FTP server
    So you would like to set the filename that is contained the JMS message custom headers?. While creating your JMS Proxy you have to follow these steps
    1) While creating JMS Proxy in Transport Configuration page select Get All Headers =Yes
    2) If file name is set as user defined property in JMS message then use $Header in you pipeline/message flow. This variable will hold your user defined properties. If the user defined property is part of JMS message then use $body.
    thanks
    Manoj

  • How to make the FileName TextField in JFileChooser uneditable.

    I'm trying NOT to allow the user to edit the filename but yet I also want them to see files in the current directory. Currently I have created an extended BasicFileChooserUI class that allows the user to traverse through any directories and the user may click on a file, but filename that is original set has not been edited. But that doesn't help if I can't restrict the textfield box. The filename textfield box is editable by default and I can't seem to find a way to disable it. Anyone with an answer plz help me. I'd greatly appreciate ur help.
    John

    I just searched the java-api and found nothing useful. So, this would be my way:
    You should search through file .../javax/swing/JFilechooser.java (you have the zipped code for the API (?)) and look for our JTextField name. You can modify the file by adding e.g. a setFieldDisabled() method (or whatever you want) and add the new file to your package. Then you will just use your custom ...yourPackage.JFileChooser (or MyFileChooser), which will be an extension of the swing's one.
    If you think it is unusual or complicated, don't, just try it.
    bye, thanasis

  • Crawl Log Error: "The filename or extension is too long."

    Hello All,
    I get this error for some files on my SharePoint 2010 error log. The fix suggested
    here does not work as its for earlier versions of sharepoint 2010. I have verified the files in question have a title lenght of 120 characters and Name(Link) with character lenght of 71.
    Whats weird is sharepoint indexes some similarly named files but exempts the other. These files are basically the same just named different as they belong to different users.
    Any help?

    It could be because of this also:
    Assume that a custom list in a Microsoft SharePoint Foundation 2010 site or in a Microsoft SharePoint Server 2010 site contains a multiline text column. If the data size of the custom column is more than 100 kilobytes (KB), only the first 100 KB of the data
    is indexed when you perform a crawl on the SharePoint site. Additionally, you receive the following error message:
    The filename or extension is too long.
    RESOLUTION : http://kbalertz.com/2288793/filename-extension-error-message-crawl-perform-crawl-SharePoint-Foundation-SharePoint-Server.aspx

  • Change the filename of an uploaded file.

    I have created a web app so that users can login to a secure zone and upload a file to a specific folder in my business catalyst site.  I would like to append the user's credentials to the filename.  I can see how to capture the user's firstname and lastname but I am not sure how to make it part of the filename.
    The filename at the moment is named liked this 4628132_311455_New Text Document.txt with a timestamp and id auto appended to the original uploaded filename.  I would like to add some kind of user identifier to this name at form submission.

    Hi,
    I cannot see a workaround and doesn't appear possible as the system will only append the unique ID which cannot be customized at this stage. 
    Kind regards,
    -Sidney

  • IBOT - can we put the Repository Variable in the filename

    Hi,
    In an IBOT i use the Advanced - custom script option to export the extract to a server. instead of altering the javascript, i was hoping to add the timestamp to the filname by including a Repository dynamic variable in the 'Other Parameters' fields when contructing the name, is this possible
    e.g. can anything like this work... file_@{biServer.VARIABLES['sTodayDate']}.xls
    thanks
    Edited by: SQhell on Jan 16, 2013 11:15 AM

    I'm not sure about your approach but going with batch file or shell script is more easy. Look for the file created with system date then change the filename as needed.

  • Grabbing the filename of the document a dynamic stamp is being placed into.

    I need to get the filename of the "parent" document a stamp is being placed into to put into one of the stamps textfields. This was what I was hoping would work inside of stamps textfield custom calculation:
    event.value = app.activeDocs[0].documentFileName;
    Thats a no go. For some reason activeDocs is always empty, despite the fact I have 3 pdfs open. Does anyone have any ideas on why this is not working? Have a better idea to do the same thing?
    Thanks for your help.

    Thank you! Works great.
    And for those looking for the quick answer in the future:
    event.value = event.source.source.documentFileName;

  • Automating the filename prefix in Layer Comps to files...

    Hi All
    I'm hoping someone can help me with some automation. I have no real clue about scripting, I just know that clever things can be done, hopefully someone could point me in the right direction!
    I'm superimposing some t-shirt designs onto images of blank t-shirts.
    Each different colour T-shirt (15 colours) is on an individual layer, so I have 15 layers.
    So to create 15 images of a given t-shirt design (one image for each colour shirt) I need to:
    1) Import a design onto the top layer
    2) Update all 15 layer comps
    3) Hit the 'Layer Comps to Files' button
    4) Put a unique identifier into the filename prefix field
    5) Go to 1)
    So I guess my question is this:
    Can I automate any more of this? For example can I have the filename prefix pulled in from the Layer name? So I'd just name the top layer (with the design on) and PS would pull that layer name into the filename prefix field?
    And can I update all those layer comps automatically (when I put the next design on) rather than selecting each one and updating manually?
    Any help appreciated from a scripting novice!
    Kind Regards
    Mark

    If you turn the top layer with the design into a smart layer then manually update the layer comps once and save the file as a template you can then use the menu item Layer-Smart Object-Replace Cotents... to change out the design in a way that would no longer require updating the layer comps. Changing the content of a smart object does not effect the layer comp status like adding a new layer would.
    In the Layer Comps to Files.jsx if you find the line
    var fileNameBody = exportInfo.fileNamePrefix;
    and replace it with
    var fileNameBody = app.activeDocument.layers[0].name;// top layer name
    The script will no longer use the prefix from the dialog and instead use the top layer's name as the prefix.
    To automate the whole process would require creating a custom script. The Layer Comps to Files script was not written to be called from another script.

  • [b]HOW TO:[/b]  Copy and Paste THE Filename AND its PATH from Finder

    HOW TO DO THIS: Copy and Paste THE selected Filename AND its entire PATH from Finder to another application as in document footer reference, or document database which has a path field to aid in locating the file later.
    Finder, Spotlight and File Info (can be used to display Path) or using Command F, command I, etc. but user is not allowed to copy the path to clipboard.
    This is rudimentary, yet the word Path, is unknown to Mac Help.
    Message was edited by: jbov

    AJ,
    Isn't it amazing....There is no Command Key for this action? Apple Care was confounded too. And thanx, it'll be a help....
    Jim
    its tedious, but this should work:
    open a terminal window.
    Drag and drop the icon for the file in the terminal
    window.
    This will put the full path including the filename on
    the command line.
    Copy the path from the command line, and paste
    (wherever).
    Close the terminal window.

  • How do I add the filename as an overlay on a PDF file compiled from images?

    I am creating pdf files from digital camera images and want to add the filename as a visible overlay (ie either in Header/Footer or as a watermark).  I can find all other alternatives eg Bates numbering, customised Header/Footer etc), but cannot find a solution to adding each image's filename to the image.  I can do it in Bridge but not Acrobat.

    Acrobat does not preserve the original filename information of images.
    You should it in another application (Photoshop?) and then import the final
    image into Acrobat.

  • Is there a way to automatically insert the filename in the footer of a spreadsheet using iWork's numbers 3.2?

    Is there a way to automatically insert the filename of a spreadsheet into the footer when using iworks numbers 3.2?  iworks 09 had this feature and I can't find this feature in the new version of numbers.

    Hi rhyolite,
    In Numbers 3.x, The Print View and Layout View have gone (for now at least). Page Headers and Footers can only be reached under Menu > File > Print... to open Print Preview. Hover the cursor to reveal the Page Header and Footer fields.
    The only inserts that I can get to work in Print Preview are Page Number, Page Count and Date & Time. Filename is no longer in the Insert menu.
    Regards,
    Ian.

Maybe you are looking for

  • Help Locked out of iPod because we don't know password

    My daughter accidentally entered her password incorrectly when she was creating it.  (Not sure how she did it twice, but.....) So, now she doesn't know her password.  She is locked out of the ipod and we've tried everything that Apple says to do. We

  • How to calculate a rolling 12 months to date calculation?

    Hi there We have a business requirement to calculate a rolling 12 month to date value. That is, for any month, sum up the last 12 months of data. E.g. for June 2011, its May 2010 -> June 2011. We have the standard Year and Period dimension, and the m

  • Scripting pl/sql from unix

    I am wondering if there is a way to do this with certain restrictions. If not, I can do it another way. 1. I have a list of values in a unix .txt file of the form VALUEA VALUEB VALUEC I know how to read a list in unix using a loop. 2. I want to call

  • Computer shuts down unexpectedly

    I bought my MacBook early 2009 and recently my computer just turns off out of the blue. I'm in the middle of a Skype conversation and boom my computer is turned off. I plug it back in to charge it and the battery life says over an hour but before it

  • How to unmix audio layers?

    I'm doing a video editing project in Premiere Pro, I think the imported files come with one compressed video source and one compressed audio source. It was recommended to me that I use Audition to edit the audio, so that's what I'm doing. The problem