Setting filenames for images sequences via scripting

Is there a good way to set the output filename for a sequence via scriping? When I explicitly set the filename and render location, the frame number is being appended to the end of the extension. (example: "filename.png002").

Did a quick test.
You can set name the way you want "Comp 1-[#].jpg" - I mean if you add [#] by hand, AE seems to respect that.
So I guess you could check how many frames you are going to render and set appropriate amount of # signs in the file name.
Looking at your example, seems that AE ads frame number after the extension. In case you want to control where AE puts those frame numbers, try this "filename-[#].png" - that should do the trick.

Similar Messages

  • Set filename of printed PDF via script

    Hi folks!
    I have a little problem with generating a PDF. First my Workflow:
    I have a InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After merging it, we have to generate a PDF file. This PDF file is opened within acrobat. Within the document, I'm searching for an ID each record has so I can split the document to 100 files (each with 6 pages) and name it by the ID I found.
    The script within Acrobat is finished and working. I thought, the InDesign script is finished ,too. But I was wrong -.-
    I merged the databasefile with the document and exported it as PDF. But after exporting, we noticed that the script within Acrobat isn't finding the adressheader where the ID is in. The script only noticed the text after that header. The result is, that Acrobat get's always "null" as ID
    If we print the PDF with our PDFprinter, the header could be read by our Acrobat script. I don't know why this is... But now I changed the script to print the files via our PDF printer. Unfortunately I can't set a name for my exported file - do you know if there is a possibility to print PDF's without prompting after each one and with a via script given name?
    Here you can see the old script for InDesign and right after it, the Acrobat sript. Maybe I made some mistake by generating my PDFexport and don't need to use the printer?
    INDESIGN SCRIPT:
      * prompts filebrowser and stores name and path of file in variable
    var sourceDocument = File.openDialog("Bitte Indesign-Dokument auswählen", "*.indd", false);
      * stores only prefix of filename for use as new filename
    var newName = sourceDocument.name.substr(0,  sourceDocument.name.length-5);
      * stores folder where file is stored
    var dbSourceFolder = sourceDocument.parent+"/";
      * prompts for databasefile where generating should begin
    var dbstartfile = File.openDialog("Bitte Start-Datenbankdatei auswählen", "*.txt", false);
      * gets basename of databasefile
    var dbstartfilename = dbstartfile.name.slice(0, dbstartfile.name.search(/_Teil+/));
      * gets number of first databasefile
    var i = dbstartfile.name.slice(dbstartfile.name.search(/_Teil+/)+5).slice(0, -4);
      * generates path name and name of first databasefile to use
    var dbSource = dbstartfile;
       *set PDF preset for generating PDF
    var PDFPreset= app.pdfExportPresets.item("GAG-PDF");
       * stops throwing of alerts
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
    // if databasefile isn't existing message will be thrown
    if( dbSource.exists == false ) {
        // restart of alert throwing
        app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
        alert("Datei " + dbSourceFolder+dbprefix+"_Teil"+i+".txt konnte nicht gefunden werden! \n\rBitte starten Sie den Vorgang erneut und geben Sie die richtige Datenbankdatei an." );
    // else process starts
    else {
        while(  dbSource.exists == true ) {
            // opens source indesign document without showing it
            mergeDocument = app.open(File(sourceDocument), false);
            // sets which databasefile should be used for data merge
            mergeDocument.dataMergeProperties.selectDataSource(File(dbSource));
            // starts merging of indesign document and database file
            mergeDocument.dataMergeProperties.mergeRecords();
            // exports generated document as PDF file
            app.activeDocument.exportFile(ExportFormat.pdfType, File(sourceDocument.parent+"/"+newName+"_Teil"+i+".pdf"), false, PDFPreset);
            // closes opened indesign document
            mergeDocument.close(SaveOptions.no);
            i++;
            // change filename of database file to get next file
            dbSource = File(dbSource.parent+"/"+dbstartfilename+"_Teil"+i+".txt");
    // restart of alert throwing
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    alert("PDF-Generierung abgeschlossen!");
    ACROBAT SCRIPT:
    * Path where files should be saved
    * Special Characters like spaces should be escaped with \
    * If you want to modify the folder, use following form:
    * "/Driveletter/Foldername/../LastFolderName/"
    * Make sure not to forget the / before and after the location
    var filepath = "/c/pdf_split_test/";
    * Number of expose pages - feel free to change
    var pageType = app.prompt("Bitte geben Sie die gewünschte Seitenzahl der Exposés an.", "");
    alert(pageType);
    * regular expression for search
    var idNumber = /08\d\d\d\d\-\d\d\d\-\d\d\d\d\d-\d\d\d-\d\d/g;
    * if possible this function extracts the searched number as string
    * @param rematch string which should be searched in document
    * @return null if rematch is not found or string if rematch is found
    function ExtractFromDocument(reMatch) {
      try {
             var Out = new Object();
             for (var i = 0; i < 1; i++)
              numWords = this.getPageNumWords(i);
              var PageText = "";
              for (var j = 0; j < 30;j++) {
                  var word = this.getPageNthWord(i,j,false);
                  PageText += word;
              var strMatches = PageText.match(reMatch);
              if (strMatches == null) continue;
          return strMatches;
      } catch(e)
          app.alert("Processing error: "+e)
    * tries to load given filename (extracted number)
    * @param filename string of file which should be checked
    * @param n number to iterate while checking for files
    * @return true if file exists or false if not
    function checkIfFileExists(filename, n) {
        var existingDoc = false;
        try {
            if( n == 0) {
                var checkDoc = app.openDoc(filepath+filename+"-000.pdf");
            } else {
                var checkDoc = app.openDoc(filepath+filename+"-000_"+n+".pdf");
            checkDoc.closeDoc();
            existingDoc = true;
        } catch (e) {
        if( existingDoc == true ) {
            n = n+1;
            n = checkIfFileExists(filename, n);
        return n;
    var pageAmount = this.numPages;
    for( i=0; i<pageAmount; i+pageType ) {
        var filename = ExtractFromDocument(idNumber);
        fileExistence = checkIfFileExists(filename, 0);
        if(fileExistence != 0) {
            this.extractPages({nEnd:(pageType-1), cPath : filepath+filename+"-000_"+fileExistence+".pdf"}); 
        } else {
            this.extractPages({nEnd:(pageType-1), cPath : filepath+filename+"-000.pdf"});
        this.deletePages({nStart:0, nEnd: pageType-1});

    Hi,
    I have a little problem with generating a PDF. First my Workflow:
    I have a InDesign document with 6 pages. This document is merged with a databasefile containing 100 records. After merging it, we have to generate a PDF file. This PDF file is opened within acrobat. Within the document, I'm searching for an ID each record has so I can split the document to 100 files (each with 6 pages) and name it by the ID I found.
    Why you don't export 6-page PDFs directly from InDesign?
    robin
    www.adobescripts.co.uk

  • Setting PREFIX for DIMENSION_TABLE using OMB Scripting

    I'm trying all day to find a way to set PREFIX for DIMENSION_TABLE
    using OMB script without success and I'm a little confused now.
    First of all Scripting Reference does not mention about PREFIX
    property so maybe there is no way to achieve what I want. Consequently
    it would mean that GUI interface is "stronger" than OMB Scripting.
    Secondly I don't understand why when I issue following command in OMB
    Plus:
    OMBDESCRIBE CLASS_DEFINITION 'DIMENSION_TABLE' GET PROPERTY_DEFINITIONS
    I get nothing (empty output, no errors) and when I execute:
    OMBDESCRIBE CLASS_DEFINITION 'DIMENSION_TABLE' GET PROPERTIES
    (STEREOTYPE, IS_ABSTRACT, DESCRIPTION)
    I get:
    class false {}
    First result suggests that there are no properties for DIMENSION_TABLE
    and second proves that there are at least three.
    Is there some type/properties inheritance here?
    Can someone explain me this and tell how can I:
    1. find all valid types (I would like to set prefix for LEVEL,
    LEVEL_ATTRIBUTE, etc. too)
    2. find all properties for these types
    regards
    Tomasz Gajewski

    You misunderstood me. I don't want to rename DIMENSION_TABLE. When creating DIMENSION_TABLE with gui I set NAME and PREFIX for each DIMENSION_TABLE and LEVEL.
    PREFIX for level is used later during deploy to distinguish attributes from different levels.
    Example. If I have a level named LEVEL_NAME with prefix LN and an attribute of it named ID than table generated for this contains column LN_ID.
    When I create DIMENSION_TABLE using OMB Script prefix is set same as name (default behaviour that I can't change) and it is to long to use.
    Scripting Reference doesn't mention about PREFIX property. Should I assume that the only way to change these values are through OWB GUI?
    regards
    Tomasz Gajewski

  • GoPro Camera Raw Lens Profile settings not working for image sequence in Photoshop/AE/Premiere CS6

    Hey Everyone,
    I'm in need of assistance in either Photoshop CS6, After Effects CS6, or Premiere Pro CS6.  I just installed the trials after seeing Russell Brown demo the GoPro Lens Profile correction feature in Camera Raw.  Basically what I'm looking to do is make adjustments (in Adobe Camera Raw) to a series of still images (shot with the time-lapse mode on the GoPro) and then either export those stills through Photoshop or Bridge to a temporary movie file that will be imported into a timeline (with other video clips), or import the JPG files (with Camera Raw settings) directly into After Effects or Premiere as an image sequence.  The latter would be preferable as it'd avoid the extra step of having to render the intermediate/temporary movie file.
    Right now, my current workflow for GoPro time-lapses is:
              - use Bridge CS4 to do basic color correction on the still images
              - save those as TIF files
              - run the TIF files through a custom script to have Hugin 2012.0.0 (open source pano stitcher) remove the fisheye distortion
              - open the new TIF image sequence into QuickTime Player 7 (Pro)
              - export the image sequence as a QuickTime movie file
              - import the movie file into Premiere Elements 10 to place on a timeline with other video clips (as Premiere Elements can't handle the sequence(s) of thousands of still images without crashing)
    If I can go directly from Bridge to a timeline, it'd save a lot of processing time (and it'd be much nicer to preview the images in Bridge without the fisheye distortion)!
    I can prepare the GoPro JPG files through Adobe Camera Raw in Bridge CS6, though when I go to import the JPEG image sequence into Premiere Pro CS6 or After Effects CS6, none of the Camera Raw settings are applied.  If I export the Camera Raw files in Bridge CS6 as DNG files (a step I'd really prefer to avoid) and then import the DNG image sequence into After Effects CS6, the Camera Raw settings are applied except for the Lens Profile settings -- I can pick other cameras but not the GoPro lens profiles when the DNG image sequence loads in After Effects.  It also appears that once I open the DNG files in After Effects CS6, I can no longer access the GoPro Lens Profile in Adobe Bridge CS6 -- the list changes to the same list I get in After Effects.  Premiere Pro CS6 doesn't let me import the DNG files at all.  I've also tried to import the JPG files (as well as the converted DNG files) into an image sequence in Photoshop CS6, though it doesn't allow me to do so (the Image Sequence checkbox is grayed out after I apply the Camera Raw settings in Bridge).
    There could be an issue going on with different Camera Raw versions.  I didn't have Premiere Pro CS6 installed during my initial testing, though now do notice that the Camera Raw dialog in Bridge CS6 only lets me choose compatibility up to "Camera Raw 7.1 and later" when I choose to export the files as DNG.  I thought Camera Raw 8.2 was an option there a couple days ago when I only had installed Photoshop CS6 and After Effects CS6 (though am not 100% certain).
    Please let me know if there is some workaround to get the GoPro lens profile Camera Raw corrections applied in an image sequence in one of the Adobe CS6 products (without having to export the files as temporary TIF or JPG files out of Camera Raw).  I'd greatly prefer to shorten my current workflow for these files.  (I just updated the CS6 trials and have tested all three programs again though I still get the same results described above.)
    Does Lightroom 5 have any option to export Camera Raw image sequences as movie files (or any other feature that might help in simplifying my current workflow)?  I can't install the trial right now as it's not compatible with OS X 10.6.8.  I'd consider upgrading OS X if I knew Lightroom 5 would do what I need, though am waiting for any potential color profile issues to be resolved in OS X 10.9.
    I can open the image sequence in Photoshop CS6 if no Camera Raw settings are applied and then use the Lens Correction Filter to apply the GoPro Lens Profile settings, though I really prefer the Camera Raw interface in Bridge for tweaking image settings.  As soon as I apply Camera Raw settings to the first image, Photoshop CS6 grays out the image sequence checkbox.
    If there isn't a way to take Camera Raw files straight from Adobe Bridge to a timeline, I may stick with my current workflow using CS4 and see what I can do to better automate some of the steps as the TIF export in Bridge, fisheye distortion removal in Hugin, and render in QuickTime Player all take quite a while.  I won't mind waiting for all the processing if I can set it and check back on it in later the next day when it's fully complete.  Is there a way to have Adobe ExtendScript execute an external shell command (i.e.: a command I could type into the bash shell in Terminal in OS X)?  If not, is there a way to call/run an ExtendScript script from the command line and pass a parameter to it that my custom script could use?
    Thanks in advance,
    Mark

    Can you zip up a few of your GoPro images, upload them to dropbox.com and post a share link, here, so others can experiment with them, or do you mean this issue is global to all camera models?

  • 3D Rotation Slider for image sequence

    I created a 3d model rotated it 360 degrees and exported it an image sequence. I would like to be able import the sequence in flash and rotate the image sequence 360 degrees by creating and dragging a slider.

    What part of what you want to do are you having a problem with?
    If you create a new movieclip symbol and try to import one of the images onto the stage while inside of it, then if the images are named as a sequence Flash should be able to detect this and ask if you want to import the whole sequence.  If you select yes then it will place the sequence along the timeline of your movieclip.
    For the the Slider, just bring one in from the components library and set it up such that its range and increments match the frames occupied by the images.

  • File Naming for Image Sequence to work properly?

    Hi,
    I shot about a 226 shot time lapse this weekend and so far having a severe pain getting it to be a time lapse movie in photoshop.
    Shots were 3 minutes apart.
    Originally I tried using the RAW images, then exported them to full size jpeg, then finally exported them to HD video resolution jpegs thinking format might be part of my issue. But it seems to be more of a naming convention problem.
    Originally tried :
    AAA-XXX-<4 digit shot #>-20100508.<ext> & AAA-XXX-<4 digit shot #>-20100509.<ext>  as it spanned over night. Once sequence was loaded I then saved as PSD before trying to export.
    That would only load the very first image, even though it would come up with the frame rate question.
    Then I shorted it to 0508-HHMMSS.jpg & 0509-HHMMSS.jpg and set the frame rate to 10 frames per second. It warned "This sequence has gaps". Once sequence was loaded I then saved as PSD before trying to export.
    This created a 36 minute timeline in CS5 but the opening image was the one I selected, and then about 36 minutes of blank, with a random image from somewhere in the middle of the scene being the last frame.
    I tried this in both CS5 and CS4 thinking it may be a bug just in CS5.. but I get the exact same results.
    What naming convention is the Image Sequencing 'open' really looking for to work properly. I would have thought that either of the above would have worked.. but so far they are not.
    Any help would be appreciated.
    Using Adobe Photoshop CS5 & CS4.
    Christopher

    I did just do a generic 1.2.3.4.5.6. export up to 226 and that seems to have worked. But I don't think I should have to do that and the image sequence function should be able to handle more agile file naming sequences.
    Christopher

  • Bug: Setting "Don't include footnotes" via scripting doesn't change the find/change dialog

    Hi,
    Small bug, but can be confusing. Whether you write this line:
    app.findChangeTextOptions.includeFootnotes = false;
    or this line:
    app.findChangeTextOptions.includeFootnotes = true;
    ... you won't see any different in the little footnotes button in the
    find/replace dialog, even though the setting does work via scripting.
    More testing is needed to see what can be done to get the UI in sync
    with the setting...
    Ariel

    The dialog isn't updated while it's displayed. But hiding the dialog and displaying it again (twice Ctrl+F) shows that the script did do its thing.
    Peter

  • Audio for image sequence

    Hi all -
    I am doing some animation for a tv pilot and need to get the movie file into separate image sequence and audio files to import into my animation software. I was able to extract segments of the movie into image sequence, so that is no problem .... what i need to do is get the audio into a separate file. I tried sound to wav and ended up with a blank file.... i am using win xp .... any help would be appreciated.... thanks....

    It "sounds" (no pun intended) like your source file is "muxed". This is the format of Flash and MPEG 1 or 2. QuickTime Pro can't export the audio portion of the file.
    You'll need third party software to convert the file to QT formats (DV Stream is best).

  • Automatice sequence creater for image sequence

    Hi Friends,
    I got doubt where there is an option for creating an auto sequence, what i mean by is in avid when we load the source in the source monitor or viewer in FCP and when we want to overwrite it in the composer window or record monitor in avid it creates an automatice untitled sequence with the content since i no need to specify the format and blah blah blah.
    I have an image sequence and i dont no the format and frame size etc and i imported the sequence thru qt ref andi want it in an sequence without redering shown in my timeline.
    I hope u understand what i want to tell.
    thanx
    g.balaji

    With image sequences, probably the biggest thing to address is the pixel x pixel sizes of the stills. For maximum performance (and quality in my book), I like to have those Scaled to match the Frame Size of the Project Sequence. The PNG format should be just fine, but size DOES matter. What are the pixel x pixel dimensions of your stills?
    I do a lot of work with stills, but not usually in image sequences. For my work, I usually just leave the stills as PSD's, and never have any issues. These are Scaled to the Project, or only slightly larger (when I need to Pan on a Zoomed out image), and my Scaling is always done in Photoshop, prior to Import.
    Good luck,
    Hunt

  • Best Premiere sequence type for image sequences

    Hi!
    Lately I have been working a lot with intermediate image sequences and I'm looking for ways to improve performance.
    The original footage is DVCProHD 1080p and when put it in a sequence created with the preset for that, everything runs very smoothly. But when I bring in intermediate files that were created with the same resolution, but that use PNG, Targa or Tiff instead, rendering becomes very sluggish. That makes me wonder if there maybe is a better sequence preset that I could use for playback of these image sequences? Or does the sequence preset even make a difference here?
    Also, I think there are differences with the rendering speeds of different image sequence formats and that's why I'm asking which ones you guys prefer? I liked PNG because the file sizes are so small compared to TIFF or Targa, but (if I'm not imagining things) the render times seems to increase with PNG.
    I welcome any discussion on the subject!

    With image sequences, probably the biggest thing to address is the pixel x pixel sizes of the stills. For maximum performance (and quality in my book), I like to have those Scaled to match the Frame Size of the Project Sequence. The PNG format should be just fine, but size DOES matter. What are the pixel x pixel dimensions of your stills?
    I do a lot of work with stills, but not usually in image sequences. For my work, I usually just leave the stills as PSD's, and never have any issues. These are Scaled to the Project, or only slightly larger (when I need to Pan on a Zoomed out image), and my Scaling is always done in Photoshop, prior to Import.
    Good luck,
    Hunt

  • 1280 x 960 overkill for image sequence?

    I am creating a sequence which consists of still photographs which will be taken over several months. I am shooting them at 1280 x 960. I would hope I could get the clip shown at a film festival, but I wonder whether it's overkill to shoot it and keep it at 1280 x 960, and whether 640 x 480 might be adequate.
    the aspect ratio is the same...can anyone envision a scenario in which larger pixel dimensions' more data would be seen or would make a difference in screening?
    thank you!
    r

    depending on how this will be screened, you may find it helpful to down-res these to video resolution before you start. It's likeley you'll screen the animation from tape or DVD, so the best way will be to batch resize the immages to a new set using photoshop. The most efficient way to do this is to resize them to 720x480, and change the pixel aspect ratio to DV NTSC in photoshop. Use the resulting images to create your image sequence in Quicktime Player.

  • Image Sequence...Cannot select multiple files for image sequence.

    When I select Image Sequence in QT7 and navigate to the folder with the images, I am no longer able to select more then one image. Is the something that 10.6 has broken?
    What am I missing?

    If you only get the first file to import then I suspect the image files are not all sized correctly or the file names are not being recognized as "sequential".
    I've done some tests to confirm this on my machine. File names with some using a _ (underscore) and others using a - (hyphen) import only the highlighted file. In another test I mixed in a single file sized just one pixel wider than all of the others and only the first file is recognized.

  • Howto: Determine Image Offset via Scripting?

    Given the screengrab, below,
    How would I go about, via scripting (js), fetching the "X+" value? Is it a calculation of other values, and if so, what are they?
    I want to get that "7.2" value.
    Thanks.

    app.selection[0].graphics[0].geometricBounds[1]-app.selection[0].geometricBounds[1]

  • SETTING PROPERTIES FOR A MAPPING VIA OMBPLUS ISN'T WORKING

    Hi, i have a problem with OMBPLUS:
    I have a script which creates a mapping and then is supposed to change properties for the mapping and seems to do so via OMBRETRIEVE. But when looking in OWB the properties aren't changed.
    If I change any of the properties inside OWB and then run the script again, then the properties are changed. Does anyone know why the behavior is like this?
    /thanx Joel
    When running the script the output looks like this:
    CREATE MAPPING 'XXX_1_IN'... DONE
    DEFAULT_OPERATING_MODE={SET BASED FAIL OVER TO ROW BASED}
    ALTER MAPPING PROPERTIES FOR 'T_A_TEST_XXX_1_IN'... DONE
    DEFAULT_OPERATING_MODE={SET BASED}
    -- ALL DONE --
    The script:
    set temp_module "TMP"
    set tmp_table1 "XXX_1"
    set tmp_table2 "XXX_2"
    set map_name "XXX_1_IN"
    puts -nonewline "CREATE MAPPING '$map_name'... "
    OMBCREATE MAPPING '$map_name' \
    ADD TABLE OPERATOR '$tmp_table1' BOUND TO TABLE '../$temp_module/$tmp_table1' \
    ADD TABLE OPERATOR '$tmp_table2' BOUND TO TABLE '../$temp_module/$tmp_table2' \
    ADD CONNECTION \
    FROM GROUP 'INOUTGRP1' OF OPERATOR '$tmp_table1' \
    TO GROUP 'INOUTGRP1' OF OPERATOR '$tmp_table2'
    OMBCOMMIT
    puts "DONE"
    set prop [OMBRETRIEVE MAPPING '$map_name' GET PROPERTIES (DEFAULT_OPERATING_MODE) ]
    puts "DEFAULT_OPERATING_MODE=$prop"
    puts -nonewline " ALTER MAPPING PROPERTIES FOR '$map_name'... "
    OMBALTER MAPPING '$map_name' \
    SET PROPERTIES (DEFAULT_OPERATING_MODE) \
    VALUES ('SET BASED')
    OMBCOMMIT
    set prop [OMBRETRIEVE MAPPING '$map_name' GET PROPERTIES (DEFAULT_OPERATING_MODE) ]
    puts "DEFAULT_OPERATING_MODE=$prop"
    puts "-- ALL DONE --"
    puts ""
    OMBDISCONNECT

    Thanks for your idea Roman, but it doesn't solve my problem.
    The problem is regardless of which property (Runtime parameters in OWB) I try to change. Before ANY property is changed via OWB (GUI) the changes via OMB doesn't come to effect (even if RETREIVE after OMBCOMMIT says so).
    Regards, Joel

  • Set filename for file download

    Hi
    i have a servlet that sends a file to the client to be downloaded. When the client requests the file the dowload dialogue pops asking if the user wants to download/open but the name of the file is always the servlet name were it originates. Is there any way to set the filename and extension in the servlet e.g ExampleResult1234.csv and send this to the client so that when the dialogue pops up it is set?
    Current Servlet Code:
    String output = "some data from database in csv format";
            response.setContentType("application/binary");
         response.getWriter().write(output);Thanks
    David

    It would be nice for the next person who needs help with this if you posted your solutions. :)

Maybe you are looking for

  • Importing file from final cut express to final cut pro

    Hello, I am taking a video I have been working on from final cut express and opening it into final cut pro on another machine. It brings footage over but completely incorrect. I am editing a music video and its basically taking the files and putting

  • Disabling Action Button for only manager in Manager Self Service

         Hi people, I have a requirement in SSHR. I created one SIT for training assessment and added this function to Manager Self Service. So, if a manager logs into the system and clicks this function, he will be able to see the subordinates reporting

  • TS3968 logic express 9 wouldn't open for me in snow leopard

    logic express 9 wouldn't open for me in snow leopard why is it doing that

  • Configuring PO screen in SRM

    I am in SRM 5.0 , I am in PO screen. I wanted disable few fields in the PO screen. How can I do the same? I wanted to disable Purchase Order Response Field.

  • Purchase Order reference

    Hi , When I am trying to create Return Order with the reference of Sales Order (OR) , the purchase order number field is  not geting copied in the target document, what needs to be done for this.I tried "Complete Reference" in VTAA & "PO Number' fiel