Issue with RTL order in hyperlinks on Pages 5.2

Hello,
I am having an issue with the Arabic order when trying to add a hyperlink to a text in Pages 5.2. When I type the sentence without the hyperlink the order is perfect, however when I add the the URL link to the selected text the sentence order becomes corrupted.
Could you please let me know if there is some feature that I am missing to apply or is just that the RTL support on Pages 5.2 is not very good?
Do you have a workaround to this problem?
So far the only way to solve it that I found it was to create a transparent text box with the link over the sentence. However I would like to found a better solution to this.
Screenshots for reference:
Correct order without link.
Incorrect order with link
Thanks in advance for your time and help.
Leo

negative101 wrote:
Unfortunately I need to work on Pages 5.2 due to client requeriments. And also like you mention playing with the Text Direction is does not work since it change the whole paragraph direction and not just a specific selection.
You client insists on .pages format?
See this for other potential options regarding text direction:
http://support.apple.com/kb/PH14203

Similar Messages

  • [CS5.5] issue with stacking order on spreads when pages change

    Have recently had a situation where items on a right hand page have "disappeared" behind an item placed over the reader's spread in a layout using facing pages.
    For example,
    this spread has 3 elements: an item of type per page, both brought to front; and a green background sent to back. all fine so far.
    i have then deleted the last two pages from the file... still going great guns...
    i then delete the first two pages from the file... then the preverbial hits the fan.
    the type on page two is gone! oh no!!! the reality is that the type is now BEHIND the green background.
    I am aware that had the green background been split in two at the spine, the result would be this:
    but it's too late now.
    has anyone else experienced this phenomenon and is it safe to call this a "bug"? anyone wanting to attempt the following steps can download a PDF containing the indesign file as an attachment within the pdf from this url: http://colecandoo.files.wordpress.com/2012/06/spreadfail.pdf
    colly

    Although the green block is, for practical purposes, on both pages, to InDesign, it's really only assigned to the left page of the spread. For example, if you start with this:
    …which has a green box in the background, spanning both pages of each spread, and yellow boxes on odd pages and magenta boxes on odds…
    …and you delete page one, you get this:
    …where the yellow and magenta boxes have switched sides, but notice that the green box that had been across both pages is now only on the odd pages. That's because the green boxes were actually assigned to the even pages, which have now shifted to become the odd pages, and the box stayed with it's page.
    Now, here's what happens when you delete page 2:
    Except for page one, which hasn't moved or changed, the screen shots from removing page one and page two look the same, because I only removed one page at a time. That caused the pages to switch sides.
    Now, here's what happens when you remove pages one and two at the same time:
    This is what you are getting. As best as I can guess, the reason that the green box is above the yellow boxes is because the left page of the spread is higher in stacking order than the page on the right. My guess is that the stacking order of the objects on each page is reaffirmed when pages are deleted. And in this case, I don't think it matters whether you delete them one at a time or two. Here is a screen shot of what it looks like when I delete page one, then delete page two right afterward (actually, since page two had become page one, I had to delete page one the second time to delete the original page two, but you know what I mean):
    This screenshot looks the same as the previous, even though this one had two pages deleted one at a time, and the previous one had two pages deleted together. I can't say whether this is a bug or not, but I assume that the engineers at Adobe didn't choose this behavior on purpose. It's probably a side-effect of some other choice that probably makes perfect sense.
    I think the answer is to either  place objects that span a spread on the master, or to use layers if the master option isn't practical for the job you are doing.

  • Issue with File Download(messageDownload) on Search Page.

    Hi,
    I created a custom OAF search page which fetches values from one table. The document in getting stored in my custom table in a BLOB colums and NOT in FND_LOBS.
    The table has 3 collumns along with others:
    1st is primary key (Record_Seq) ==> number data type
    2nd to store actual file name (File1Name) ==> varcahar2 data type
    3rd to store the actual uploaded data (File1Data) ==> BLOB data type
    The reason for having the “File1Name” is so that I can display the original file name of the document that was uploaded, instead of just the “view” in the search page results .
    On the File1Data BLOB and created a messageDownload for that under query results table with following details:
    ID : File1Data
    ItemStyle : messageDownload
    FileMIME Type : pdf
    Datatype : BLOB
    View Instance : LacEmpExposureVO1
    view Attribute : File1Name
    File View Attribute : File1Data
    When I click on the "File1Name" data hyperlink, it is opening only the first document corresponding to the first record in the search page results.
    For example, If my search page returns 10 rows then when I click on the file1name on any row, It is open the first row file name only.
    I have a primary key column(RECORD_SEQ) in the Table / EO / VO which is displayed in the search page results.
    Also one weird thing is happening:
    If I try to do this more than 2 times then it is opening the update page with the first record from the search page results…
    I tried to print the context and it is nul the first time, But the second time then context is changing to "update". Dont know how this is happening????
    Any advice is greatly appreciated as it is very crucial for me to get this resolved ASAP. I have looked at several forums and did a lot of things as advised in the forums . But nothing seems to work for me.
    Thanks,
    Mir
    CO code for the search page
    ===========================
    if (pageContext.getParameter("Create")!= null)
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of CREATE");
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureCreatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    else if ("update".equals(pageContext.getParameter(EVENT_PARAM)))
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of UPDATE");
    System.out.println("LacEmpExposureCO ==> RecordSeq in PROCESS FORM REQUEST is: " + RecordSeq);
    HashMap params = new HashMap(1);
    params.put("RecordSeq", RecordSeq);
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureUpdatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO, // Do not display breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    else {           
    String strEvent = pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM);
    System.out.println(strEvent);
    System.out.println("Into the last ELSE part in LacEmpExposureCO.java");

    Duplicate post -- Issue with File Download(messageDownload) on Search Page.

  • Issue with sales order stock that is referencing a non-existing sales order

    We have an issue with sale order stock.
    Due to user error we have ended up with a negative quant of sales order stock in a bin. Further the error was due to mis-keying of sales order number. Hence this negative quant is referencing a sales order that does not exist.
    We need to get rid of this quant.
    I thought of cycling this quant off as a solution. And hence replicated the scenario in the test system. I was able to create a TO to cycle it off but cannot clear the differences from 999 . The error I get while trying to do this is "SD document not in database or has been archived" . This error is true since the sales order actually does not exist. So cycling it off did not work.
    Can anyone suggest how we can get rid of this negative quant of sales order stock ?
    Thanks

    Hi,
    You said that your user mistyped the SO number and it resulted in a -quant. In which transaction was it possible? If I give a non existing no. SAP doesn't allow me to book.
    If I were you I would check both in WM & IM what the user had done...step-by-step...
    Negative quant comes to existance in interim storage type if we book e.g. a GI. It should have started in IM...how was your user be able to do that??? If it was possible cannot you reverse the IM booking?
    (...if all else fails...cannot you create a SO document with external number assignment with the same number?...)
    BR
    Csaba
    Edited by: Csaba Szommer on Jun 24, 2008 8:31 PM

  • Issues with Purchase order change documents

    Hi Gurus,
    I have some peculiar issues with Purchase order. The PO line item has deletion indicator set but I can't find who set the deletion indicator. The PO change documents doesn't show anything related to deletion indicator.
    Please help to fix the Issue.
    Regards,
    Senthil

    Hi
    Check it in Tcode SE16
    Table Name CDHDR and CDPOS
    Regards,
    Raman

  • Issues with my Macbook pro, the current page disappears and it goes back to the desktop.  I can't figure out what's wrong.

    I have been having problems with my Macbook ever since I had it in for service to replace the battery.  The issue is when I am surfing the page disappears and goes back to the desk top, and I have to reload it again.  This happens quite often while I am online, and is a definite glitch.
    Please help.
    Sam Oliverio

    String[] message = {
        "One, two, buckle your shoe",
        "One, two, buckle your shoe",
        "Three, four, shut the door",
        "Three, four, shut the door",
        "Five, six, pick up sticks",
        "Five, six, pick up sticks",
        "Seven, eight, lay them straight",
        "Seven, eight, lay them straight",
        "Nine, ten, this is the end",
        "Nine, ten, this is the end"
    if(n>0)
        System.out.println(message[n]);
    else
        System.exit(0);

  • Freegoods issue with internal order CO

    Dear Experts,
    I am facing a Problem with free goods issue,
    When I am doing sales order VA01 I am entering internal order number, once I complete the process flow it is crediting stock account (24240000) and debiting the COGS FG (50014000) account.
    When I am doing sales order VA01 without internal order once I complete the process flow it is crediting Stock account (24240000)  and Debiting the Free goods expenses account(60014010) (as per business process it is correct)
    With internal order also it should post to free goods expenses account.
    Kindly help me on this I am not able to trace.

    Hi
    Please check item category TANN settings.Also check in VTLA copy control  there is a feild "Update Cost", tick the feild.
    Please go through the links which may help you
    PGI accounting
    Regards
    Srinath

  • SCM Issues with Sales Orders Created through CRM

    Hi All,
    I'm trying to ascertain any issues with ERP processing that will not update orders created through CRM, i see there was a OSS Note some time back informing that the backorder reschedule program would not update orders created in the CRM system. Is this still the case and are there any other process that we should be marking as an issue?
    Thanks

    Hi Sirisha,
    The solution depends on the exact issue you are facing.
    The CRM Sales Order is created OK, but you only see the error when you open the Sales Order?
    If this is the case, then you can follow the steps below:
    1. Find the Message ID and Message No for the error message
    2. Use Program - CRM_MESSAGES_DELETE to delete error messages from the error producing Sales Orders.
    Let me know if this is not the issue you are facing.
    Regards,
    Nelson

  • Issue with flipping of strings in jsff page

    We are facing the following issue with strings of type A:B in Arabic language.
    In the UI, all A:B strings are supposed to be shown as B:A in Arabic, where A is a TOKEN value and B is a TRANSLATABLE STRING. But this is not happening in the UI.
    So a String that is shown as ORG4-V1:Segment Values in English,we expect it to be shown as Segment Values : ORG4-V1 in Arabic, but it is displayed as ORG4-V1:Segment Values in Arabic also.
    Following expression is used for displaying the string :
    <af:showDetailHeader text="#{bindings.ValStructureCode}#{(bindings.ValStructureCode.inputValue==null) ? null:':'{CstCoreSetupGenBundle['Header.CostingAttributes']}"
    This is shown as ASSET Default: Costing Attributes in the UI while it should be Costing Attributes : Asset Default (Here 'Asset Default' is the ValStructureCode)
    For further details please refer to bug#11934853

    I apologize for the above and the thread has been posted here as I was unable to access the correct category due to some technical issues with Oracle forums. Also, the mentioned issue is in critical state and has a deadline so thought of posting to get it resolved as soon as possible. Specific categorization will be surely taken care in future.
    Moving the thread to below location:
    http://myforums.oracle.com/jive3/thread.jspa?threadID=1023776
    Edited by: 931435 on Jun 6, 2012 12:25 AM

  • Problems and Issues with Internal Order Transactions

    Hello I have a couple of problems with Internal Order Transactons.
    Its strange really, when I simulate in the development server. I do the following process:
    Assign Asset with IO -> Create PR with account assignment to an Asset -> Create PO with Reference to PR -> Create GR.
    Once this occurs, the transaction seems to reflect in particular reports such as List: Order by Cost Element, List: Budget/Actual/Commitments, etc.
    But when another user does a similar process in PRD, it doesnt seem to reflect in these reports.
    Also while, I cant seem to pass the GR if the Internal Order has not been released. The user was able to create a GR whose IO has not been released yet.
    These problems are quite striking to me. Does anyone know the possible causes of the situations at hand? Any feedback will be most helpful.
    Thank you all and good day.

    Ok never mind, seems I found the culprit (though the reason gives more questions than answers)! Thanks anyways

  • Issue with the import of hyperlinks from FM to Robohelp

    Hi,
    I am trying to produce online help (WebHelp) using RoboHelp 9 based on FrameMaker files (FM8). Previously I was working with WebWorks ePublisher (which was way easier to use since there wasn't much to customize...). I'm linking (not importing) the book to the RH project.
    Now I'm having trouble with the following points:
    1. Table of contents: the TOC imported from FM to RH does not work properly, some sections should be converted into a book, but are ignored by RH, so I had to create a TOC manually. If everyone know where this can come from, please help me . Of course, I checked the styles, and the TOC in FM perfectly reflects the title levels...
    2. Hypertext links: this is the biggest issue. I have around 3000 pages, so I can't recreate each hyperlink manually.. In FM, I use the "Hypertext" marker and then I put "openlink myfile.fm:firstpage", which works perfectly fine in the PDF output. However, in RH, the marker is totally ignored, and there is no hyperlink in the output file. I checked the source code of the htm file, but there is absolutely nothing that suggests a link (no <a href="...">).
    I tried to update the project, and tried other markers like URL myfile.fm, but it did change anything...
    Also, I tried generating the online help directly using FM10 (trial version of the TCS, until I can confirm that it is worth it), but the TOC in the online help didn't correspond to the one in FM, so I gave up and used RH to create the TOC manually...
    Thanks in advance for your help.
    PS.: I'm not a native English speaker, so sorry if the language is a little messy...

    Hi,
    Thanks for your answers.
    I tried generating the help using FM10 then File > Publish, but the TOC and the hyperlinks aren't working any better. I also tried converting the book into FM10 format, then linking it to a RH9 project, but the results were the same.
    The titles which are ignored in RH have the same styles as the titles which are not ignored, only their names are different, and the ignored titles are numbered.
    Also, these titles corresponds to a file in FM (which contains a small chapter TOC), and the file is totally ignored as well.
    Does anyone create links between files of a same book? I also tried using FM10 then RH9, but the results are the same as well
    Thanks in advance.

  • Issue with online ordering

    Well this is going to be a bit long given my issue.
    I've got a family member who is willing to pay full retail to upgrade their phone and we were going to place the order online and pick it up at the store since the store is listed as having in-store pickup.
    For whatever reason the website doesn't allow for different billing and shipping addresses.  Which I find really strange when every other online shopping site I've dealt with allows one to have a billing address and a shipping address if they are different.  Add to that I was going to make use of in-store pickup for the website purchase but that address is also different then either my shipping or billing one and since I was told by a sales rep that my Verizon and credit card billing addresses must match I'm unable to order anything from the website.  Mind you I fall to see the point in needing my shipping address anyways since I had selected in-store pickup which the website was able to find without any trouble outside of the fact I had to change the zip code to match the store.
    I've talked to a sales rep and not totally sure why but wasn't able to help, did give me the 800 number for customer service but it was down for some reason, believe it was maintenance related. Sent my issue to the Twitter feed for tech support but they are gone for the day.

    Just an update.
    After talking with VZW Tech support via twitter I was able to order my phone and do in-store pickup.  It seems after I brought the original issue to their attention they tweaked the way the ordering site works.  What they did is add a second zip code box on the credit card information page which allows one to use different zip codes at least for in-store pickup though I would think it would work if one has a P.O. Box and street address with different zip codes as well.

  • Issue with same order being modified in multiple sessions upon simultaneous multiple login.

    Hi,
    I am facing a issue in the following scenario.
    1. User logs into the site from firefox and chrome browsers with the same login credentials simultaneously.
    2. From Firefox session, the user removes some items from his cart.
    3. Now the user refreshes the cart page in chrome. The console throws a "RemovedItemException" and the page breaks.
    Reason:
    This issue occurs since both the user sessions are referring the same order object. The session scoped ShoppingCart component object holds the references to the commerce items that have been modified / removed from the order in other session. Now when it tries to access these objects, it throws a "RemovedItemException". In our site the error gets thrown from the mincart page fragment which first tries to access the removed items. I can put a <c:catch> tag to wrap and catch the exception but how can this be gracefully handled?
    Please provide any ideas, solutions or suggestions if you have encountered a similar issue.
    Below is the stack trace of the error:
    Caused by: org.apache.jasper.JasperException: An exception occurred processing JSP page /cart/json/cartItems.jsp at line 16
    13: <c:set var="itemsQuantity" value="${0}"/>
    14: <c:forEach var="item" items="${items}">
    15: <dsp:param name="item" value="${item}"/>
    16: <dsp:getvalueof var="commerceItemClassType" param="item.commerceItemClassType"/>
    17: <c:if test="${commerceItemClassType != 'giftWrapCommerceItem'}">
    18: <c:set var="itemsQuantity" value="${itemsQuantity + item.quantity}"/>
    19: </c:if>
    Stacktrace:
    at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:498)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:411)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:543)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:480)
    at atg.servlet.WrappingRequestDispatcher.include(WrappingRequestDispatcher.java:116)
    at atg.servlet.ServletUtil.invokeInclude(ServletUtil.java:3858)
    at atg.taglib.dspjsp.IncludeTag.doEndTag(IncludeTag.java:812)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_dsp_005finclude_005f1(cartContentsData_jsp.java:701)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_c_005fotherwise_005f1(cartContentsData_jsp.java:673)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_c_005fchoose_005f1(cartContentsData_jsp.java:585)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_dsp_005fpage_005f1(cartContentsData_jsp.java:528)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspService(cartContentsData_jsp.java:121)
    ... 178 more
    Caused by: atg.repository.RemovedItemException: Attempt to use an item which has been removed: commerceItem:ci2126000003
    at atg.adapter.gsa.ItemTransactionState.<init>(ItemTransactionState.java:385)
    at atg.adapter.gsa.GSAItem.getItemTransactionState(GSAItem.java:2358)
    at atg.adapter.gsa.GSAItem.getItemTransactionState(GSAItem.java:2301)
    Thanks,
    Tejas

    Hi Nitin,
    Thanks for the approach. However, this is an OOTB issue in CommerceReferenceStore module (was able to reproduce the same behavior in a OOTB CRS application as well) . The issue can occur not only when accessing a removed commeceitem but also during the checkout stages if user modifies the cart in a different session during checkout, the application would throw similar errors.
    Is there a way using which i can reload the order object (something like refreshOrder pipeline) whenever i see a similar error? I did not find any OOTB droplet that can reload the order object from the DB.
    Please suggest.
    Thanks,
    Tejas

  • I have an issue with a script that places multiple page PDF files...

    I'm using a version of "PlaceMultipagePDF.jsx" that I modified to use Media Box when placing the PDF file pages.
    That part was easy and works perfectly.
    The issue I'm having it that every time it places a PDF page, InDesign pops up a dialog saying that it's Importing pages from "file" and Creating preview with a progress bar. This dialog pops up once for each page, and the UI time it takes to do this is slowing down the import.
    So is there any way to turn off this feedback dialog?
    Note: I still need to see the dialogs to choose the PDF file and pick the document and page to start placing. I just want the one that displays for each page to not display...

    I found this in the Developer KB.
    But I can't find any of the functions in the Scripting Ref...
    How To: Suppress the progress bar when processing a command.
    Summary
    You can suppress progress bar display by turning it off before processing the command.
    Issue
    I use the IImportFileCmdData interface and pass kSuppressUI (do not display any UI) as UIFlags. When processing the command, I get a progress bar, which is called "Adobe InDesign Tagged Text Import Filter", whereas I expect no UI.
    Solution
    To suppress progress bars you should explicitly turn them off before you process the command (or commands).
    1. Get the interface IProgressBarManager (it's on kAppBoss, which you can get from gSession).
    2. Use IProgressBarManager::SuppressProgressBarDisplay() to turn off the progress bars.
    3 .Process the place command(s).
    4. Turn the progress bars back on when you're done.
    In InDesign 2.x and above, you can also use the SuppressProgressBarDisplay class (ProgressBar.h) class to achieve this. In order to use this class you just need to create an instance of the class on the stack as shown here:
    SuppressProgressBarDisplay suppress(kFalse);

  • Issue with production order linked to quote instead of sales order

    Hi Gurus,
    I did a lot of digging through SAP notes and accross the internet. Before I contact SAP, just wanted to give a shot @ SDN. Please help.
    Background- for ATO (VC assemble to Order):
    i) Created a quote
    ii) Created a sales order with reference to a quote
    iii) MRP created a planned order and the planned order is linked to the quote
    iV) Production order created and it is also linked to a quote
    v) All reports, MD04/COOIS shows that the plnd order/prd order is linked to the quote
    My issue - print a shop paper or a customer specific product ID label....guess what 'it prints the quote number everywhere'.
    Everything is tied to a quote - which is not a real demand. All purchase orders are tied to the quote. THIS IS STUPID.
    I refered to SAP Notes - 181685 and 459734. But I need details of what config settings I should do and where?
    I'm a pure PP guy, getting into SD requirement type & account assignement settings. Please help me with details.
    http://scn.sap.com/message/8018953#8018953
    This guy also had the same problem and his issue was never resolved.
    Thanks,

    Hello
    Take a look on the following note where this scenario is described:
    16658 - Generate sales order stock based on quotation
    The note proposes the following setting as a workaround to this issue:
    "As of 3.0, when the requirements type is assigned to the transaction
    during requirements type determination, it is possible to assign a
    requirements type to the quotation that does not represent make-to-order
    production."
    Therefore, please check your customizing settings and make sure that a requirement class/type (transactions OVZG and OVZI) without MTO is assigned to the quotation item category (transaction OVZI).
    On transaction OVZI, there is a field called "Origin of requirement type in requirement type determination". Please take a look on the information provided on the F1 help of this field:
    ========================================================================
    Origin of requirement type in requirement type determination
    In the standard release, the requirements type is determined according
    to a certain search strategy depending on the strategy group of the
    material.
    In this field you can select an alternative search strategy (source):
    Source 0 = Material master strategy, then item category and MRP type
    Source 1 = Item type and MRP type strategy
    Source 2 = Item type and MRP type strategy (as for source 1) with
    additional check of the allowed requirements type
    ========================================================================
    Therefore, my suggestion is to set this field to 1 for the quotation item category and assign an MTS requirement type on OVZI.
    BR
    Caetano

Maybe you are looking for