Frame 11 conditional hypertext not handled by Webworks

Hi all,
I realize this forum is not about Webworks -- sorry in advance is this post is against guidelines...but I think a number of us probably do use Webworks for conversions, so it seems useful to cross post this here.
After upgrading to Frame 11 two weeks ago, our hypertext markers are not creating links in our Webworks-generated HTML The hypertext markers are conditional text in Frame so that they are visible only in the HTML and not in the PDF.
The hyperlinks resolve in Frame. If we remove the cond settings, Webworks creates the link. If we put it back, no link is created, although "HTML" is set to "visible" in our Webworks project.
Has anyone else seen this? It seems that something changed in Frame 11 regarding conditional text and linking, and Webworks is not yet handling it. Does anyone know if any other related tools are affected by this change?
Thanks for any help,
Shelley Hoose
Rogue Wave Software

Exactly. We are hiding the links in the PDFs so they don't appear to be broken -- because they don't work.  :-)  But they do work in the HTML, so we have them visible there.  This is a design that has worked fine with Frame 9 and Webworks and now does not work with Frame 11.
I'll check the frameusers list -- good idea.

Similar Messages

  • Custom alaw encoder does not handle media time

    Hi All,
    I'm trying to create a custom alaw rtp packetizer but not succeeding.
    I read all the rtp/alaw related forum topics and found a great help in implementing it but the time of the media is not handled with the current code.
    I created custom multiplexer, packetizer, encoder based on JMF source, but the time of the media decreases 1 by every packet, and not increases 160 as it is with good 20 ms ulaw packets created by AvTransmit2.
    Can you plese help me?
    Thanks
    Attila

    OK, I found a solution: I wrote my own MyAudioFormat class extending the original and put duration calculation for "alaw/rtp" type of stream into computeDuration method. Then I return this new MyAudioFormat class in the getMatchingOutputFormats method of the CustomALAWPacketizer packetizer. This solved the problem and took 3,5 days to figure out.
    Attila
    * Implements an ALaw Packetizer.
    public class CustomALAWPacketizer extends com.ibm.media.codec.audio.AudioPacketizer {
        // Methods
        public CustomALAWPacketizer() {
            packetSize=160;
                supportedInputFormats = new AudioFormat[] {
                 new AudioFormat(
                        AudioFormat.ALAW,
                        8000.0,
                        8,
                        1,
                        Format.NOT_SPECIFIED,
                        Format.NOT_SPECIFIED,
                        8,
                        Format.NOT_SPECIFIED,
                        Format.byteArray
            defaultOutputFormats  = new AudioFormat[] {
                /------------------ The importand part is here -------------/
                      new MyAudioFormat (
                        MyAudioFormat.ALAW_RTP,
                        8000.0,
                        8,
                        1,
                        Format.NOT_SPECIFIED,
                        Format.NOT_SPECIFIED,
                        8,
                        Format.NOT_SPECIFIED,
                        Format.byteArray
            PLUGIN_NAME="A-Law Packetizer";
        protected  Format[] getMatchingOutputFormats(Format in) {
             return defaultOutputFormats;
        public void open() throws ResourceUnavailableException{
            setPacketSize(packetSize);
            reset();
    * @(#)MyAdioFormat.java     1.40 02/08/21
    * Based on Sun AudioFormat.
    * Contains correct ALAW_RTP duration computation.
    import javax.media.format.AudioFormat;
    import javax.media.Format;
    public class MyAudioFormat extends AudioFormat {
         static final long serialVersionUID = 0x12345678;
         public static String ALAW_RTP = "alaw/rtp";
         * For computing the duration of the sample.
        double multiplier = -1f;
        int margin = 0;
        boolean init = false;
        public MyAudioFormat(String encoding, double sampleRate,
                     int sampleSizeInBits, int channels,
                     int endian, int signed,
                     int frameSizeInBits, double frameRate, Class dataType) {
              super (encoding, sampleRate, sampleSizeInBits, channels, endian, signed, frameSizeInBits,
                        frameRate, dataType);
         * Returns the duration of the media based on the given length
         * of the data.
         * @param length length of the data in this format.
         * @return the duration in nanoseconds computed from the length of
         * the data in this format.  Returns -1 if the duration cannot be
         * computed.
        public long computeDuration(long length) {
         if (init) {
             // We don't know how to compute this format
             if (multiplier < 0)
              return -1;
             return (long)((length - margin) * multiplier) * 1000;
         if (encoding == null) {
             init = true;
             return -1;
         } else if (encoding.equalsIgnoreCase(AudioFormat.LINEAR) ||
                 encoding.equalsIgnoreCase(AudioFormat.ULAW)) {
             if (sampleSizeInBits > 0 && channels > 0 && sampleRate > 0)
              multiplier = (1000000 * 8)/sampleSizeInBits/channels/sampleRate;
         } else if (encoding.equalsIgnoreCase(AudioFormat.ULAW_RTP)) {
             if (sampleSizeInBits > 0 && channels > 0 && sampleRate > 0)
              multiplier = (1000000 * 8)/sampleSizeInBits/channels/sampleRate;
             } else if (encoding.equalsIgnoreCase(MyAudioFormat.ALAW_RTP)) {
                /------------------ The importand part is here -------------/
             if (sampleSizeInBits > 0 && channels > 0 && sampleRate > 0)
              multiplier = (1000000 * 8)/sampleSizeInBits/channels/sampleRate;
         } else if (encoding.equalsIgnoreCase(AudioFormat.DVI_RTP)) {
             if (sampleSizeInBits > 0 && sampleRate > 0)
              multiplier = (1000000 * 8)/sampleSizeInBits/sampleRate;
             margin = 4;
            } else if (encoding.equalsIgnoreCase(AudioFormat.GSM_RTP)) {
             if (sampleRate > 0)
              multiplier = (160 * 1000000 / 33) / sampleRate;
            } else if (encoding.equalsIgnoreCase(AudioFormat.G723_RTP)) {
             if (sampleRate > 0)
              multiplier = (240/24 * 1000000) / sampleRate;
         } else if (frameSizeInBits != Format.NOT_SPECIFIED &&
                 frameRate != Format.NOT_SPECIFIED) {
             // We don't know this codec, but we can compute the
             // rate by using the frame rate and size.
             if (frameSizeInBits > 0 && frameRate > 0)
              multiplier = (1000000 * 8)/frameSizeInBits/frameRate;
         init = true;
         if (multiplier > 0)
             return (long)((length - margin) * multiplier) * 1000;
         else
             return -1;
    }

  • If condition statement not working in jsp scriptlet

    <%
    String hostName = java.net.InetAddress.getLocalHost().getCanonicalHostName();
    if(hostName.endsWith("dinesh.com"))
    System.out.println("it works");
    else {
    System.out.println("it doesn't work");
    %>
    I am getting output as it works & it doesn't work. It seems the If condition is not working. Pls help with this issue.
    Thanks

    Dinesh_Nala wrote:
    Even the condition in if is returning true, the x value i am get as "/user2/"How did you knew that it returns true? Or did you just expect that? Do you trust yourself more than Java? Too bad.
    Just debug it:
    System.out.println("Actual hostname value: [" + hostName + "]");
    System.out.println("Does it end with dinesh.com? " + hostName.endsWith("dinesh.com"));

  • Pricing: New condition type not getting listed in options in product master

    Hi,
    I have created a new pricing procedure and also created a new condition type for it. I am trying to create a condition record in the product master for this  condition type but the condition is not there in the list of conditions. How can I inlcude it in the condition list?
    Even the new condition type I have created by copying 0PR0 is not getting listed in the options, whereas 0PR0 is getting listed.
    Regards,
    Meenakshi
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:27 AM
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:29 AM

    Hi Meenakshi,
    you need to enhance the condition maintenance group in the customizing, which is assigned to the product master. Please check: IMG: Customer Relationship Management -> Master Data -> Products -> Special Settings for Sales Operations -> Assign Condition Group to Application CRM and IMG: Customer Relationship Management -> Master Data -> Conditions and Condition Technique -> Condition Technique: Basics -> Create Maintenance Group.
    Best Regards,
    Michael

  • Price and Pricing conditions are not copied to PO for a line item !!

    Hi
    I have created a PO w.r.t a PR which has only one line item.
    Now, I add another line item to this existing PO, i get an error message that the Price and Pricing conditions are not copied.
    How do i rectify this error !!
    Where might be the link for this Price and Pricing conditions to get copied in to this PO ??
    MaruthiRam

    What kind of PR and in the PO same material you enter for new line or new material and do you have any funcitonal authorization assigned o your user id
    please reply

  • Sales Condition, but not totalling to net value in SO

    Hello,
    We have costs which we need to post to certain GL accounts, to do this I created new condition type (not have statistical ticked in procedure). This is for royalty process, whereby every SO which we sell to every customers, we will pay 3% of sales to another party.
    - Problem, if dont tick statistical, wrong values get posted to customer because we're adding 3% to credit customer.
    - If tick statistical, values dont get transfered to accounting.
    Is there any better way we can use to not allow values to be totalled into net value in SO, but still be able to bill and post to accounting?

    You can achieve this requirement by creating New Condition Type ( suppose XYZ ) with Calculation Type as Percentage & Plus/minus as -ve . Add this Condition Type below the Condition Type for Royalty Process (suppose ABC ) with Step Number as the one of  Condition Type ABC in From Column in the Pricing Procedure.
    You would have to mention the Account key for Condition Type ABC & maintain 100 % Condition Record for Condition type XYZ & no Account key should be assigned against Condition Type XYZ.
    Best Regards,
    Ankur

  • Crystal Report: irregular error not handled by the application component

    Hi all,
    The error message u201Cirregular error not handled by the application componentu201D comes up when I run any of the Crystal Report in the SAP Business One.
    But this error happens only in the client Machines, from the Server I can run the report normally.
    Thanks and Regards,
    Alberto Franç

    Hi,
    It seems installation and registration problem, have you tried to other client computers? Try to reinstall  the Crystal Report in client.
    Regards,
    Clint

  • Cross-frame scripting is not working in Safari 3.0.4. Minimal example code.

    Hello,
    I've found that cross-frame scripting is not working in Safari 3.0.4, as it worked
    ok on Safari 3.0.1, and in other browsers I tried: Firefox, Mozilla, IE.
    document.domain property is set to "ds2ps.net", correctly to the best of my knowledge
    in the frameset and in both frames. Both frames and frameset are loaded
    from subdomains of the same domain "ds2ps.net"
    Please have a look at this mimimal example:
    http://frameset.ds2ps.net/frames-test/frameset.html
    Press buttons to get alert with value of a variable defined in the frameset
    and in the first frame.
    This gives "undefined" in Safari 3.0.4, and give following message in Safari
    JavaScript console:
    Unsafe JavaScript attempt to access frame with URL http://frameset.ds2ps.net/frames-test/frameset.html from frame with URL http://frame2.ds2ps.net/frames-test/frame2.html. Domains, protocols and ports must match.
    Works ok in all other browsers and in earlier versions of Safari.
    Apperently, I'm doing something incorrectly.
    I would appreciate if Apple Safari developers have a look at this problem and suggest solution.
    My company is developing web application which depends on cross-frame scripting,
    and we would like to continue supporting Safari browser.
    Thank you,
    John

    Thank you, iBod,
    We've submitted this bug at http://bugs.webkit.org
    Bug 16444: Cross-frame scripting not working in Safari 3.0.4 despite proper document.domain set in all frames
    Thank you for your suggestion!

  • TS4425 when trying to access photo stream on Apple TV, I am getting the error message terms and conditions have changed, but when I go into iCloud on my Mac the new terms and conditions are not appearing - How can I manually agree to them ?

    When trying to access photo stream on Apple TV, I am getting the error message terms and conditions have changed, but when I go into iCloud on my Mac the new terms and conditions are not appearing - How can I manually agree to them ?

    Welcome to the Apple Community.
    The following article(s) may help you.
    Photo Stream ToU's

  • Condition type not visible in billing document

    Hi
    We are currently in the process of making some changes to the pricing procedures.
    While processing an IC order, we find the following discrepancies,
    In VA03, when we enter the order details, the price shows the expected value and so do the condition details.
    However, in the billing document for the same, in VF03, we find that one of the condition types are missing, hence the value in the sales document and the billing document are different.
    I have checked the details in the condition types, pricing procedures and the access sequences, everything appears to be configured correctly.
    Please advice as to how this can be corrected.
    Thanks
    sap10

    Hi
    Check in pricing procedure (tcode V/08) if you have any Reqt.
    Other possibility, but I think that it doesn't matter in your case. See SAP Note 105621 - Authorization check for the condition screen, that it is used to hide conditions, but not for delete them.
    I hope this helps you
    Regards
    Eduardo

  • VA00 condition type not getting determined for the returns order

    Hi All,
    I have a case where VA00 condition type not getting determined for the returns order that has been created with respect to the billing document.
    When the pricing conditions are being copied from invoice it is getting copied but later it is getting deleted in the include LV61AA42.
    Note:VA00 condition type is getting deleted from the  internal table tkomv[].
    If any one came across  this scenario can you please help me.
    Request your valuable inputs

    Hi,
    Please check the copy control setting in VTAA.
    Maintain the pricing type as "D" at item category level for the respective document type .
    Hope this will resolve your issue.
    Regards,
    Krishna O

  • Condition type not coming in sales order

    Hi,
    we have a condition type Z026. The issue is that  it is not set in the order but the condition records exists. The pricing analysis shows that condition reocrd is missing but the fact is the condition record is there. The acess seq is Z026 and there are many tables in the acess sequence.
    The first table in the access seq is 906 and the condition record exists but still the system says that the condition record is not found using  cond preliminary step (header fields like customer/sales org/div). the cond record is maintained for  relevant sales org/dist channel/customer/material. cond preliminary step means that system first looks for the header fields but everything is there.
    The condition is active and the conditon is created on 21.7.10 with validitity from 21.7.10 to 31.1.2010 and the pricing date in sales order is 27.7.10. so everyhting is fine but yet the condition is not coming in sales order
    what could be the issue.
    regds

    Hi,
    Now try creating a sales order with 20.07.2010 as the pricing date. It will work. Create another order with 21.07.2010 and it will not work. If so, it is due to the validity date. When you give 21.07.2010 as validity date and there is already another record which was valid on that date, the gap of one day can happen and we have experienced this. There is even an OSS note explaining this concept, which makes sense business-wise.
    However you check the scenarios I have mentioned. If the behaviour is as I have mentioned, then you have to change the pricing date of your problamatic sales order to one day earlier, or move the validity date one day earlier.
    If the behaviour is different, pls lemme know

  • Discount condition type not appearing in sales order but in invoice

    Hi,
    I have two discount condition types (MPDI,ZSDI) in my pricing procedure,at the time of sales order creation one discount condition is not appearing.
    On analyzing the condition type MPDI,system throws message "Access not been executed due to previous access",what would be the reason.
    In the billing ,i could see the condition type appearing.I have checked this,but i could not understand why it is happening.Even the condition catergory of condition is empty not L.
    Also please find the screen shots below,
    Pradeep

    Pradeep,
    Am sure user might have deleted the condition type in sales order, the same condition type woudl have entered manually in invoice.
    Please check my testing, i have done the same entered ZA09 manually and after saving have deleted again in sales order, after dilivery and when i created invoice here i have entered manually the same condition type.
    So in your case also the same thing could have happend, check the change log and also in invoce condtion tab check the condtion type in analysis ( Invoice analysis not order). so that you can udnerstand whether it was entered manully or not.
    On analyzing the condition type MPDI,system throws message "Access not been executed due to previous access",what would be the reason.
    This is because in the condtion tyoe the abvoe key combiantion was found with records hence the below key combition was ignored. this you observe in your screen shot with with 5.00
    So my guess is the condtion records was deleted in sales order.
    thanks,
    srinu.

  • Condition Type  not displaying on the pricing procedure

    Hello We are copying a sales order contract with reference to a sales order but we want a condition on the contract pricing procedure to be determined. Now I know I could redetermine pricing by selecting these option but we can't do that as there could be  a year difference so we need the old pricing. B    Carry out new pricing C    Copy manual pricing elements and redetermine the others e.g. Sales Order  Pricing Procedure XXXX                         Conditions ZPR0                          Conditions ZHD1 Create Contract with reference to sales order    Contract  Pricing Procedure yyyyy                         Conditions ZPR0                          Conditions ZHD1                         Conditions ZNEW In the analysis the condition ZNEW has the "Condition without condition record (not relevant)" As I mention in new pricing it appears   

    Hi Roy,
    Trust you are doing good,
    I have gone through the question which you have asked but its not clear what do you want to exactly do.
    Pricing Procedure XXXX                         Conditions ZPR0                          Conditions ZHD1 Create Contract with reference to sales order    Contract  Pricing Procedure yyyyy                         Conditions
    Here you talking about two different pricing procedures..or you talking in terms of pricing values.
    Please highlight.
    Thank you,
    Regards
    SRT

  • HT201457 I have a mid 2011 iMac and have installed windows 8.1 on it  I costantly get system thread not handled and kernel security check failure and the Mac restarts

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

    I Have a mid 2011 iMac with windows 8.1 on it and constantly get system thread exception not handled and kernel security check failur

Maybe you are looking for

  • How to create a specific  master detail

    hi, my problem is that i have 3 tables(tab1,tab2,tab3); tab1 is master of tab2. tab 2 is master of tab3. i would like to make a master detail page between tab1 and tab3 without using tab2. i am using jdev10.1.3.2 and ADF BC Swing. can you help me. 7r

  • How to change the Size of a Column in TimesTen

    I have a Column of type VARSHAR2(32). I would like to increase the size to 255; Is the only to do this is to drop the table and add it again?

  • Connecting a web script with JAVA

    Hi I am Trying to connect a php script from a java program. But I don't wan to implement a socket capability in the PHP script. My Main aim is to just measure how long it takes for the Entire PHP script to run. so my code might just look like this va

  • An old apple id is on my iPhone how do i remove and put in my new one

    my iPhone has an old Apple ID on it and I need to remove it from my iPhone so I can update my phone with new Apple ID

  • Launch Concurrent through Personalization with default parameters

    Hi, I have one requirement as follows: Through personalization -> Buil-in -> Launch SRS from, I want to call one concurrent program with parameters. This concurrent should run as backround process. I like to use "Launch SRS form" or "execute a Proced