How to navto from one article in an issue (June Issue)  to another article in a different issue (May Issue)?

I need to navto to from one of our articles in the June issue to an article in the May issue. Is this possible? If so what do I put in the URL? navto://folderName…?

Looks like my email didn't go through.  Here's what I sent:
There is an unsupported way of doing this using the URL Scheme specified in DPS App Builder. It's iOS only and works well for free folios, not retail.
URLscheme://v1/folio/folioname/articlename
Plug in your own values for urlscheme, folioname, and articlename.
See DPS Tips > Advanced Overlays > Advanced Linking for details.

Similar Messages

  • HOW TO MOVE FROM ONE JSP TO ANOTHER BY HIDING URL CHANGES

    HOW TO MOVE FROM ONE JSP TO ANOTHER BY HIDING URL CHANGES IN AN ADDRESS BAR

    Please check before posting that you have not accidentally turned on the CAPS LOCK feature of your keyboard.
    To answer your question. You can't do that. There are alterate ways to solve this sort of problem. What exactly is the nature of the problem you are seeking to solve?

  • How to skip from one list to another list in interactive report?

    Hi Friends,
    How to skip from one list to another list in interactive report that means now i am in 7 th list how to skip 4th list ?
    Or  now i am in 7 th list how to skip 9th list ?
    can anybody send sample code please.
    Thanks in advance.

    hi,
    at line-selection.
    case sy-lsind.
    when 9.
    sylsind = 4.
    endcase.
    try like this when u r in 9th list next it goes to 4 th list

  • HT5622 How to switch from one apple store to another

    How to switch from one apple store to another

    Follow this procedure:
    1. Go to Settings > iTunes & App Stores > Apple ID.
    2. Tap your Apple ID.
    3. Tap View Apple ID.
    4. Enter your password.
    5. Go to Country/Region in the popup window to change to the desired store.
    See also: http://support.apple.com/kb/HT1311

  • How GroupArt remove from one layer to another.

    hi all,
    How GroupArt move from one layer to another.
    Thanks in advance.

    Hi Vijay,
    1) To add new events you have to define a custom action, e.g. under the settings of a button you can choose custom action and define a name for this action
    2) You have to add a custom action, e.g. "next" then you must connect the two layers (drag a line from one layer to the other) and change the event name into "next"
    3) you can pass data from one layer to another like you do it from a form into a rfc/query and so on
    There is also a tutorila available in the help:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/04/80aab03df044ec995000842e77e1be/frameset.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/04/80aab03df044ec995000842e77e1be/frameset.htm</a>
    The bank example shows you how to use layers as a wizzard.
    Best Regards,
    Marcel

  • How to switch from  one Data base to another data base

    Hi,
    How to switch from one Data base to another data base if first data base server like in restoring,blocking,network disconnected state.
    Please help out for the same.
    Regards,
    Anilkumar

    Sounds like a problem for forums/support from the DB provider, as this problem is normally solved through some form of HA provided by the DB (or some cluster software, but still not Java) with, normally, a shared (virtual) IP address.

  • My 3GS will not charge. I have tried it from my computer and from a wall socket. I also have tried another computer and a different cable with no luck. My computer doesnt see the device either. I havent had any issues until now. Any ideas?

    My 3GS will not charge. I have tried it from my computer and from a wall socket. I also have tried another computer and a different cable with no luck. My computer doesnt see the device either. I havent had any issues until now. Any ideas?

    bring it to Apple for battery diagnostics.

  • TS2972 how to take itunes downloads from one portable hardrive and move it on to another itunes

    I have moved a lot of files from one portable HD to another now I want to take those files and upload their Icons to the new itunes so that I can click on them and play them on the new Itunes how do I do that?

    You have activated the CC twice it has to be deactivated from one of the computer to activate it for the third time.
    When you install it on the third computer or for the third time & when you to activate it, if it installed & activated already twice, there will be an option of deactivating it from the previous computers, please click on that.(To deactivate from preinstalled machine, Open any Adobe CC application > Help Menu > Signout.)
    Next it will allow you to activate on your new machine,
    Now you can go back to your first computer, log out & log back in of Desktopp CC App, launch any product, if there is any product to buy, in that prompt there will be an option to " license the software", please click on that & sign in.
    It will reactivate the CC on the first machine.
    You have already deactivated it from one machine, hence you can activate it on third computer.
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivat ion-products.html#deactivate-problem
    In case the is still not resolved, please contact Adobe at
    http://adobe.ly/yxj0t6
    Regards,
    Rajshree

  • How to transfer from one external drive to another?

    I am trying to move files from one external drive to another.  I can write to both drive from my Mac.  When I do a large transfer using Finder, I only get a few files and an error code 50.
    I'm using two Seagate drives, one formatted for Mac only and where I'm writing to, and one formatted for PC and Mac.  I have written and read successfully to both drives.

    I moved some movies and some seldom listened music (coped the files) into a folder on the Lacie drive. Then I reimported them to the main itunes library while holding down "option". This created a link to those files to the external. the files show up in my itunes but cannot be played unless i have the Lacie connected to them.
    See this link.
    http://www.maclife.com/article/howtos/how_split_your_itunes_library_across_multi ple_locations

  • How can I from one panel access elements on another panel ?

    I have a JFrame with 2 panels and a JMenu
    I am struggling to find a way how I can access JMenu from one of my panels ...
    Also how can I access elements on one panel from other panel ? At the moment I am passing a reference from one panel to other in the constructor but it's only one way communication now ... I can't go from second panel to first ...
    I am sure there must be an elegant way to solve this problem.
    Many thanks.
    Sergei

    OK I'll give you more details...
    I have a JFrame with multiple panels...
    Also I have a JMenu on JFrame...
    Now when user clicks a button on one of the panels I need to disable a menu item ... this is issue#1
    issue#2 is:
    how do I get two panels (they are separate classes) talking to each other ??? At the moment when I initialize a panel#2 from my Frame I pass to it reference to panel#1 and in this way panel#2 can talk to panel#1 but panel#1 can't talk to panel#2 ...
    I know there must be an elegant way to solve this problem... and I don't like having 2 classes tightly coupled like this... Can I use some kind of nice OO trick for this ? I was reading about custom listeners but I don't want to go crazy on this as I don't have time... actualy I've got only 1 day to solve this issue so any help will be greatly appreciated.
    Many thanks
    Sergei

  • I would like to transfer a playlist and associated music from one computer on a home sharing network to another without transferring the entire library.  How?

    I would like to transfer a playlist and associated music from one computer to another in a home sharing network without transfering the entire itunes library.  How would I do that?

    you can transfer playlists using home sharing but it won't copy the actual music files within to the other machine.
    however, i believe TuneRanger can do that.

  • How to EXTRACT from one PHOTO to another

    How do I extract from one photo and place in another using PSE 19
    Message title was edited by: Brett N

    You probably mean PSE10 ---Typo?
    Use one of the selection tools, e.g. selection brush, lasso tool, to select the object on picture A.
    Go to Edit>copy to put it on the clipboard
    Open picture B
    Go to Edit>paste. A will be on its own layer
    Access the move tool to position A and to resize with the corner handles of the bounding box

  • How send contacts from one group to another

    I have 2 groups ; iCloud and contacts from PC in my iPad. How do I copy contact from one group to another

    Hi,
    what you are being asked to do would be a complex task for an experienced DBA, which, judging by the way you have asked the questions, you are not, no offence intended.
    As far as I can see you have three options.
    1. Hire a consultant/contractor with the necessary skills to perform the tasks.
    2. Gain several years experience as an Oracle DBA, including Apex, backup and recovery and disaster recovery skills.
    3. Look for a new job.
    Sorry to sound facetious, but it is a ridiculous task you have been given assuming the skill and knowledge level you are coming from. Assuming you have not misrepresented yourself to your employer, this is not your fault and I think you need to seriously push back on your boss if possible.
    Regards
    Andre

  • How load data from One Infoobject to Another Infoobject?

    Hi GuRUS
    Any body has succeded in loading data from One Infoobject to Another Infoobject?
    Pls Let me kNow
    Regards
    Durai

    Hi Durai,
    Create export datasource on the info-object and then load the data to the other info-object.
    Check this link also:
    Re: How load data from Infoobject to another Infoobject?
    Bye
    Dinesh

  • How to move from one transaction iView to another without losing the info.

    Hello expert,
    Is there a way to configure multiple transaction iViews in away that when I click on another iViews and want to go back to the old one, then the information is still there?  For example, we have a customize transaction that is fetched by running CM07.  I want to create two iView (CM07 and the custom transaction) in away that a user will type in the info on the CM07 iView, then click on the custom transaction iView to view the selection from CM07.  However all the information should be there when the user going back to CM07.  Right now when we are clicking from one iView to another, we have to type in the information again on CM07.
    Thank you.

    Hi ,
    See the thread below .I hope It will resolve your issue
    passing values between two transaction iviews?
    Koti Reddy
    points are welcome if it is helpful!

Maybe you are looking for