Using the contents of a Script Label to rename / export PDF pages

Hi,
I have used datamerge to create a 500 page document, with each page containing text boxes with Script Labels 'Product Name' and 'Art No'.
I am trying to create a script such that each page is exported as an individual PDF, with each filename being 'Product Name'_'Art No'_label.pdf
Any ideas and help would be much appreciated.
Thanks,
Matt

Hi Marijan,
That's a good start thanks!
However, this can only (as far as I can see) use the contents of one Script Label, where ideally I need two...
I've tried doing it via a paragraph style at the moment (only the Product Name uses that certain paragraph style)
Is there a way to do it with two variables, i.e. $_$_label?
Thanks,
Matt

Similar Messages

  • Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Good day!
    A simple Paste does not work for you?
    It should place the clipboard content as a new Layer which you can then move around.
    If there is any chance that the elements need to be scaled, rotated etc. I would prefer to place them as Smart Objects (File > Place …) and do the masking that is specific to the images themselves in those.
    Regards,
    Pfaffenbichler

  • I need this file "How to Use the Content Conversion Module in JMS Adapter"

    Can someone send me this file:
    "How to Use the Content Conversion Module in JMS Adapter"
    I am not able to find it.
    Thanks
    Antonello

    pls refer guide
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi-adapters/how%20to%20use%20the%20content%20conversion%20module%20with%20xi%203.0%20j2ee%20jms%20adapter.pdf
    Regards,
    Swetha.

  • BEX Analyzer 7.0 - Use the content of an excel cell as an input value

    Hi all,
    Is it possible to use the content of an excel cell as an input value for a bex variavel?
    Iu2019m using bex analyzer 7.0.
    Thanks in advance,
    Cátia Coelho Silva

    Hi Catia,
    Yes it is possible to import values from exel. But this will gives you "INCORRECT INPUT PARAMATERS"..
    So it is still best to use "Notepad" as your import file type.
    Just copy your input parameters on the notepad then upload it via 'import text file'.
    Please be sure to use Multiple selection type variable.

  • How to view the file using the content

    Hi all,
    I have uploaded the data from a binary file to an internal table using GUI_UPLOAD.
    Could you please suggest any way how i can view the file using the content.
    The binary content looks as follows.
    345DCC27F35A291DFD5496E0609E8ED08F3405AF5FE3DDC574166CDE0D79B7A174BC6
    D87597FA824B3E56E82E451D4C2B4D32A423279A668BB6690C7E9956E90CFE766CB37
    39E70D650300006D08000011000000776F72642F73657474696E67732E786D6C9C56D
    69B6197B7F5BDD4C58841ECC06943522630781EC71767DF5504F0B6B3C4674DEE0D46
    Thanks,
    Vishnu

    Hi all,
    Thanks a lot for the reply.
    Here, my requirement is to open the content as a file.
    I have used 'GUI_UPLOAD' FM to upload the contents & need the same file(PDF, JPG, DOC etc) to be displayed using the content.
    Eg., If i upload an Image using the FM 'GUI_UPLOAD', based on the contents & extention can i see an image?
    Please help me in the regard,
    Thanks,
    Vishnu

  • Using the font WIngdings for (J)Labels

    Hello there,
    I would like to use the font Wingdings for a Label, but when I do so it shows rectangles.
    Could someone help me solve this problem?
    hvdboorn

    Check if that font is available to you; do this:String[] fonts= GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames();... and print out all the available fonts.
    kind regards,
    Jos

  • TS1453 I had my iTunes stored on my external drive which crashed, i want to use the content stored on my 1st gen apple tv,but it won't recognize my new itunes library.

    I had my iTunes stored on my external drive which crashed, i want to use the content stored on my 1st gen apple tv,but it won't recognize my new itunes library.

    I had my iTunes stored on my external drive which crashed, i want to use the content stored on my 1st gen apple tv,but it won't recognize my new itunes library.

  • How to display the content of a BLOB column in a ADF/BC pages ?

    How to display the content of a BLOB column in a ADF/BC pages ?
    There is some image in database table blog column. And we want to display image on the screeen.
    There is some example about upload and dowload blog columns.
    (steve not yet document example page etc...)
    But We want to display blog picture in a image component...
    is there any basic way to do it ?
    Thanks a lot...

    Ali,
    You could just download the sample app... but... here is the servlet code from the demo (look at it just for technique - you'll obviously have to change it for your needs)...
    John
    package oracle.fodemo.storefront.servlet;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Key;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import oracle.jbo.domain.DBSequence;
    import oracle.jbo.domain.Number;
    import oracle.jbo.server.ViewObjectImpl;
    public class ImageServlet
      extends HttpServlet
      private static final String CONTENT_TYPE =
        "image/jpg; charset=windows-1252";
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        response.setContentType(CONTENT_TYPE);
        response.setContentType(CONTENT_TYPE);
        String detailProductId = request.getParameter("detail");
        String thumbnailProductId = request.getParameter("thumbnail");
        boolean thumbnail = true;
        String productId = null;
        OutputStream os = response.getOutputStream();
        String amDef = "oracle.fodemo.storefront.store.service.StoreServiceAM";
        String config = "StoreServiceAMLocal";
        ApplicationModule am =
          Configuration.createRootApplicationModule(amDef, config);
        ViewObjectImpl vo =
          (ViewObjectImpl) am.findViewObject("ProductImages"); // get view object (the same as used in the table)
        if (detailProductId != null)
          productId = detailProductId;
          thumbnail = false;
        else
          productId = thumbnailProductId;
        vo.defineNamedWhereClauseParam("paramThumbnail", null, null);
        vo.defineNamedWhereClauseParam("paramProductId", null, null);
        vo.setWhereClause("DEFAULT_VIEW_FLAG = :paramThumbnail AND PRODUCT_ID = :paramProductId");
        vo.setNamedWhereClauseParam("paramThumbnail", (thumbnail? "Y": "N"));
        vo.setNamedWhereClauseParam("paramProductId", productId);
        vo.executeQuery();
        Row product = vo.first();
        BlobDomain image = (BlobDomain) product.getAttribute("Image");
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[10 * 1024];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
        os.close();
        vo.setWhereClause(null);
        vo.removeNamedWhereClauseParam("paramProductId");
        vo.removeNamedWhereClauseParam("paramThumbnail");
        Configuration.releaseRootApplicationModule(am, false);
    }

  • I cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    i cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    Chester31,
    Thank you very much for sharing your file with us!  Now that we are able to reproduce the problem at our end, you may stop sharing the file on Acrobat.com.
    Do you know when this problem (for not being able to add new highlight/strikeout/underline) has started?  Did you update your iOS from 7.x to 8.0 recently?
    We will continue investigating the problem and let you know what we find.
    Thank you again for your help.

  • Using the Convert button in Adobe XI results in a pdf with check boxes containing ? marks

    Using the Convert button in Adobe XI results in a pdf with check boxes containing ? marks@

    Hi Charles,
    Are you still facing this issue. Is this issue reproducible with every file you want to convert.
    Regards,
    Ajlan Huda.

  • How to use the text module in script

    hi,
            i script how to use the text modules and how to write the code  in layout of the script?

    Hi,
    You canr use text modules in script. You have to use standard texts .
    Standard text are maintained in SO10 transaction.
    you can create translation text for other languages also . So based on logon language it will print translation text.
    go to SO10
    give textname it say Ztextname  id as ST and language as EN
    say create, then you will get editor there maintain your text and save it . then come back . Now change language (say for german DE) say create and eneter translation text and save it.
    so now you have created a text called ztextname which you can use in your script.
    Inorder to insert the texts in your script do as below
    go to any window editor and   select path
    Insert->texts->symbols->standard symbols
    then you will get popup  in which you have to mention all the parameters that you have created earlier.
    after inserting just change language EN to sy-langu
    Reward points if useful
    About text elements Sravan already given some informatiomn
    Regards,
    Nageswar

  • Why can't I use the content library in iMovie?

    I can use every other feature in iMovie except for the Content library. It is not in my side bar, and when i get it from the tool bar above the options are gray like I can't use them.

    Hello taigepeves,
    Thanks for using Apple Support Communities.
    If you're trying to get your Content Library to appear in iMovie, please make sure you have a movie project open, as it should then automatically appear.
    You can find titles, transitions, music, and maps in the Content Library. The Content Library is at the bottom of the sidebar once you open a movie project.
    If the sidebar is not already open, click Show in the toolbar.
    At the bottom of the sidebar, select an item from the Content Library.
    In the Browser, your selection appears (titles, transitions, and so on). Drag one to the timeline to add it to your movie.
    If you add a title, map, or globe, you can adjust settings in the Adjustments Bar which is located above the Viewer.

    If you add a transition, double-click it in the timeline to adjust its duration.
    To return to your video clips in the Browser, select an event in the sidebar.
    iMovie (2013): Tips For iMovie ’11 Users - Apple Support
    Take care,
    Alex H.

  • How to use the current view in script logic - %DIMENSIONNAME_SET% not work

    Hello,
    I have the requirement to use the values from the current view in the script logic. User would like to use the members which were selected from the current view in the calculation.
    We are using SAP BPC 7.0 SP06
    I have prepared the following scrpit:
    *XDIM_MEMBERSET TIME=$YEARS001$.NA
    *XDIM_MEMBERSET ACCOUNT=BAS(PLVEH_EXP)
    *SELECT(%CBU%,ID,BUSINESSAREA,[ID]='%BUSINESSAREA_SET%'")
    *SELECT(%CIO%,ID,INTERNALORDER,[ID]='%INTERNALORDER_SET%'")
    *RUNALLOCATION
    *FACTOR=USING
    *DIM BUSINESSAREA WHAT=BANA;WHERE=%CBU%;USING=<<<
    *DIM INTERNALORDER WHAT=IONA;WHERE=%CIO%;USING=<<<
    *DIM INDICATORS WHAT=INVEHPRI;WHERE=INPXQ;USING=INVEHQUA
    *ENDALLOCATION
    I have read in the sdn that it is possible to get the current values using %DIMENSIONNAME_SET% variable and use it but it returns all the members that were selected in the datapackage.
    I would like to know if there is any special consideration regarging the use of variable or if there is another way to solve it.
    Thanks in advance.

    Hi,
    If you want the code to be executed for the current view selected, you can place the code in Default logic which executes the logic for what ever current view values you send the data through Input schedule.
    The key word you have mentined is for script running through Data Manager which gets the value selected through user promt.
    Hope this helps,
    Regards,
    G.Vijaya Kumar.

  • Using the advanced telemetry Python script (unrecognized signature)

    I am trying to profile an AIR for Mobile project (using AIR 3.5) in Scout. I (apparently) cannot compile the project in Flash Builder because it utilizies CameraRoll. I'm trying to add advanced telemetry using the Python script at https://github.com/adamcath/telemetry-utils
    First, AFAICT that script has typos in it, where tabs and spaces were mixed for indentation. After fixing those (I think), I always get the error:
    "add-opt-in.py", line 158, in <module>
        raise Exception("Bad SWF: Unrecognized signature: %s" % signature)
    Exception: Bad SWF: Unrecognized signature: b'CWS'

    Hi,
       I have converted all space based indentations to tabs in the attached script and it works fine for all the SWFs that I tried.
       Could you please give this a try with your SWFs and let us know if it works ?
       Dowload link - https://docs.google.com/open?id=0B_py8ocVzd4edG51cEN3MkhPbWM
       If it still does not work, can you send us below details and a sample SWF if possible.
           1. OS : Win / Mac version
           2. Version of Python
            3. Compiler / IDE / SDK used to generate the SWF
    Thanks
    Srinivas

  • Ways to use the Content option in table sources

    how many ways we can use the (Logical table sources->Content tab).
    tell me in which situations we use the aggregation levels.are those only with detail tables?
    anybody explain me more elaborately?
    Edited by: user12077461 on Dec 31, 2010 6:16 AM

    In the content tab, you can configure in which (column or logical level) you want the aggregation to happen.
    For example you are dealing with sales, you can aggregate your results in the "sales per product level" or "sales per state level"
    In addition, you can also aggregate your results based on column summation.

Maybe you are looking for

  • Why I have to disable firewall if use laptop wlan ...

    I am using 5800. I setup a shared connection on my laptop, and then5800 could connect to Internet using the wlan through wirelessconnection. But I noticed that every time, if I want the connection could becreated, I have disable the firewall on the l

  • FC Payment  on BP Account

    Hi I want to add a FC payment on a customers account (the account is set to all currencies) But i cant figure out how do it, i thought you would just enter EUR infront of the 20 on the payment account field in the bottom right of the screen, can some

  • Multiprovider as Datasource for Open Hub Destination

    Hello, Can you pls let me know if we can used the Multiprovider as datasource for the Open Hub destination. Currently we are Bi7.0 and SP9. I am not able to see the option of Mutiprovider in the template. Appreciate the input ASAP. Thanks Gopal

  • Saving Settings for all Users

    Hi, I am searching for a Solution, how to save WD ALV View using Settings globally, which means, that this Setting is valid for all Users and not User dependent. In GUI ALV we set it as Example /TEST and after Saving it, it will be valid for all User

  • Part of screen is frozen

    Yesterday for some reason when I went to my recents folder the "clear All Recents" screen popped up and I have cleared the calls but the screen will not go away even when I press cancel!!! Very frustrating because when I make a call this pops up and