Custom scheme URL

Hi,
I'm trying to implement the custom scheme url in an app to open an article from a Web page and have followed Bob's instructions on http://blogs.adobe.com/indesigndocs/2012/06/link-to-dps-app-test.html  but the link provided by him, that is:
<a href=”com.bringhurst.dpstips://”>OPEN DPS TIPS</a>
is not working in v27. The DPS TIPS app is not opening.
However, what in fact is working perfectly is the actual link extracted from the compiled app by Johannes (http://forums.adobe.com/thread/1009059), which is:
<a href="dps.7f80a0ffed3a4ff08734bc905aac4a29://">
This opens DPS TIPS without any problems on the iPad.
My question is how can I extract the link from the compiled app, as Johannes did, or is there any other workaround to get the custom scheme url to work?

Tapping on that URL scheme link (com.bringhurst.dpstips://) on an iPad works fine for me. I don't understand why it doesn't work for you.
The string of characters that Johannes used in his link is the Publication ID. It appears in the URL of any shared article. For example, if I share the cover page of the Folios issue, you can see the same string in the URL:
http://contentviewer.adobe.com/s/DPS%20Tips/7f80a0ffed3a4ff08734bc905aac4a29/Folios/00_Folio_Cover.html
Both approaches should be the same, but for some reason the Publication ID method is working for you while the URL scheme method isn't.

Similar Messages

  • Adding drop-down list in a custom schema

    Is it possible to create a field with a drop-down list of items in a Prelude custom schema? Or, perhaps the ability is provided in the styles: (Integer, Real, Text, Boolean) and I am just not selecting or using those properly.
    I notice it is done in some Adobe-provided meta tags, like this one named >Script...
    Thanks!
    Bobby

    Hi Bobby -
    Unfortunately it is not currently possible to create an array of items for a given custom metadata field. We do have some feature backlog items in our XMP team to look at making such things possible in the future.
    Regards,
    Michael

  • Error in Including the Custom function in Custom schema ...

    Hi Experts ,
                   I developed a time custom Function through PE04 ,  Z_5RT and included in Custom Schema , ZM04, while executing in PT60 using the schema ZM04 an error coming . Any configuration required to include custom function in a schema .
    Thanks and regards
    Renjith MP

    You are just going to place the custom function in the 'Func' field of schema.
    Check the counry assignment, parameters & finally you have to activate the function. Check T52A0 for correct internal number.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/96/79bc54b27911d1a5400000e83ddb11/frameset.htm
    Regards
    N Navaneethan
    Edited by: Navaneethan on Dec 15, 2008 4:30 PM

  • Unable to create a QUEUE in custom schema

    Hi,
    I was able to create a Type & queue table in custom schema, but using them was unable to create a QUEUE in custom schema
    I'm using the following piece
    DBMS_AQADM.CREATE_QUEUE(queue_name => 'XXXXXX_QUEUE',
    queue_table => 'XXXXXX_QUEUE_TABLE'
    Whereas in APPS schema I'm able to create the same queue.
    Pls advice ...

    Hi,
    The only reason is that, we create all the custom objects (owner as custom schema), and a synonym in APPS.
    I did not get any error, but the queue, is not getting created
    Following are the scripts used
    CREATE OR REPLACE TYPE 'XXXXXX_QUEUE_TYPE
    AS OBJECT (TYPE VARCHAR2(15));
    BEGIN
    DBMS_AQADM.CREATE_QUEUE_TABLE (queue_table => 'XXXXXX_QUEUE_TABLE',
    queue_payload_type => 'XXXXXX_QUEUE_TYPE'
    END;
    BEGIN
    DBMS_AQADM.CREATE_QUEUE(queue_name => 'XXXXXX_QUEUE',
    queue_table => 'XXXXXX_QUEUE_TABLE'
    END;
    BEGIN
    DBMS_AQADM.START_QUEUE(queue_name => 'XXXXXX_QUEUE'
    END;
    Thanks.....

  • What's a good way to manage custom schema for DS  5.1?

    What's a good way to manage custom schema?
    Custom Schema for Object Class and Attributes
    The reason I ask this is because there might be a need in the future where I need to export those custome schema into different branded directory server. I just want to make this as painless as possible.
    Right now, I thought of 2 options
    1) Create my own LDIF file with my custom attributes and object classes, so if one day I need to export to another directory server, I can just copy that custom created LDIF file over. (Will this work?)
    2) Create a JAVA application using JNDI. What this Java App. will do is read through a XML file and create those object classes and attributes on-the-fly. (of course, the XML structure will be predefined by me, so that my Java App. will be able to parse through it correctly. Will this work?)
    Anymore suggestion? I would want to hear more advices and suggestions.
    Also, I assume that will work even with replication. All I need to update is the master server, and the slaves will replicate automatically.
    Thank you very much! :)

    Demo: I'm using the nul character to represent the end of the word, so that the data structure can represent that "hell" and "hello" are both in the vocabulary:
    import java.util.*;
    class Node {
        private SortedMap<Character, Node> children = new TreeMap<Character, Node>();
        //0 <= index <= word.length()
        private void add(String word, int index) {
            if (index == word.length()) {
                children.put(Character.valueOf('\u0000'), null);
            } else {
                char ch = word.charAt(index);
                Node child = children.get(ch);
                if (child == null) {
                    children.put(ch, child = new Node());
                child.add(word, index+1);
        public void add(String word) {
            if (word == null || word.length()==0)
                throw new IllegalArgumentException();
            add(word, 0);
        public String toString() {
            return children.toString();
    public class Example {
        public static void main(String[] args) throws Exception {
            Node root = new Node();
            root.add("hello");
            root.add("how");
            root.add("who");
            root.add("hell");
            System.out.println(root.toString());
    }

  • MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

    The MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..
    We are passing the required values to the ATP API.
    1) The x_return_status is showing as 'S' i.e. success but x_atp_rec.Requested_Date_Quantity is not returning any value.
    2) If there is a grant issue how to identify it.
    Regards,
        Vinod Annukaran

    Pl do not post duplicates -0 MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

  • Problem creating a form on a table from another custom schema

    Hi,
    I have a table in a custom schema that i have granted SELECT, UPDATE, INSERT and DELETE to our apex schema. I have created a synonym for this table under the apex schema but I can't build a form for it. If i try adding the form when creating the application, it gives me an error about not having a primary key on the table, which i do. If i create the application with a blank page and then try to add the form, it gives me an error that the table must contain at least one column, which it contains 12. If i view the table in the SQL Workshop, it gives an accurate count of rows in the table but doesn't provide any information about the table and doesn't display the data.
    If I login to TOAD under our apex schema and view the synonym object, i can see all of the information about the table - the columns, the primary key, etc. But I can't see it inside the Application Express app.
    Can anyone tell me why this is and what i can do to build a form on this shared table?
    Thanks,
    Troy

    Troy,
    I suggest you get rid of the synonym and then don't use the Create Application wizard for this purpose. Instead, create the application, then use a create page or create form wizard. It should first ask you for the name of the schema that contains the table. If you get that far, you should be on your way.
    Scott

  • Custom Schema in XMP

    How does LR handle custom schema or fields in XMP?
    I will have files coming in with added XMP fields. Will LR keep and make visible the custom tags? Might it erase the tags when copies to the XMP?
    Also, can I create custom tags and write them to the XMP?
    Thanks for your help!

    It stores the custom data in its database, but doesn't use it at all.
    I suggest you try this for yourself. Add some custom metadata outside LR, eg in a Bridge File Info panel, import the file into LR, and then delete those field values in Bridge. Now in LR make an adjustment and select Metadata > XMP > Export. In Bridge, you should see your custom fields again.
    John

  • Query on Custom schema table getting 'Do You want to save changes' message

    Hi all,
    I am getting the error message whenever I query from the custom table. Here is the description of the issue.
    1. I have a button on the first block. When the user clicks on this button , execute_query is called on another block. Then the user getting the message "do you want to save the changes" . Although there are no changes made on the form.
    2. The second block is based on a custom table defined on the custom schema.
    3. Created public synonym for this table and also gave the all the grants to apps schema on this table.
    4. This error was not coming before when the second block is based on Apps schema table.
    Any idea on how to fix this.
    Thanks

    I doubt the problem is related to a schema or public synonym. The message is appearing because the value for an item is being changed after your query executes.
    First check to make sure that the blocks that are not based on a table are set to No. See the Database Data Block Property.
    If that doesn't solve the problem, then run the debugger and watch to see what item is changing. You may be doing something in a trigger.

  • Gather schema stats not running for custom schema's in EBS 12.1.1

    Hi All,
    We are running Gather schema stats program periodically in our EBS system with Schama name as "ALL", but it is not generating the statistics for the custom schema. We have custom schema registered in our EBS application. Can you please let us know if there is any issue with our setup or this is standard behaviour of Gather schama stats concurrent program.
    Thanks,

    Hi,
    At how much percent ur using with Gather schema stats program like 10%,20%(in Gather schema stats program form)...I think there are no updates on the tables of that custom schema thats why the gather schema progam ignored it..can u check were there updates?
    Regards

  • OTA Update Not Querying Custom Update URL

    I built Firefox 2.0 for the Nexus 4 and it does not check for updates using my custom update URL. The phone just sits on "Checking for updates..." My webserver logs also show there is no request for update.xml. Is this functionality missing? Can it be enabled by me?

    2.0 isn't completely ready yet and obviously there are bugs... I'm not sure what's going on the issue you are having but the "Join the Firefox OS Community" at the bottom of this [https://developer.mozilla.org/en-US/Firefox_OS page] has some contact info so you can reach out to get some assistance with the issue you are having.
    I'm not sure if stackoverflow helps but you can try posting there too!

  • Updating custom schema created using RCU

    I followed the following chapter from RCU user guide to create a custom schema using RCU:
    [Extending Repository Creation Utility to Configure Custom Application Repositories|http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14259/rcu_extend.htm]
    RCU allows only two operations - 1. create a new schema OR 2. drop a schema.
    Can RCU be used to update or modify a custom schema, which has been created using RCU itself?
    The use case is: update certain rows in a few tables of the custom schema, whenever there is a fix.
    Basically we need to deliver patches (insert scripts containing the fixed or corrected data) to the custom schema created using RCU.
    Does RCU support this use case?
    Thanks,
    Mahendra
    Edited by: Mahendra Varman on Jun 8, 2011 5:10 PM

    Thanks for the suggestions. Having a bad day with this today.
    Unfortunately, it did not work. I had to re-install the whole thing with the repository in an 11g database and that didn't work either! (see OBIEE 11g: Cannot log into BI Publisher after fresh Install
    Thanks.

  • How to find custom schema?

    Hello there,
    I want to do a command line search to list all of my custom schema which we are using in the 99user.ldif file on Sun ONE 5.2Patch4.
    I know how to add/mod/del using console, but i want to list all the extended objectclasses and attributes.
    Can anyone tell me the search command? I appreciate it.
    Thanks
    SS

    There is no easy way to do this. Even if you only look at attributes and objectClasses which have "USER DEFINED" ... you'll still get out of the box 5.2 Patch 4 Directory Server schema elements.
    Here's what we did to work around the problem.
    Dump the schema in LDIF format (using the -L flag with ldapsearch to get the entries in attribute: value format) and store to a file. Do this on your existing installation / deployment (the one with the custom attributes).
    Dump the schema in LDIF format from a vanilla 5.2 Patch 4 install, with no modifications made at all to the schema, out to another file.
    Join the lines in the two files (they're in LDIF format, so they wrap lines with a leading space) ... use the following command:
    sed -e :a -e '$!N;s/\n //;ta' -e 'P;D' < myschema > $myschema.joined
    sed -e :a -e '$!N;s/\n //;ta' -e 'P;D' < sunschema > $sunschema.joined
    Sort each file.
    sort myschema.joined > myschema.joined.sorted
    sort sunschema.joined > sunschema.joined.sorted
    Find the differences in the two files. These should be your custom attributes and objectClasses, with the server schema elements removed. All you have to do is cleanup the output (the diff utility will add some "<" and ">" characters to the beginnings of the lines).
    diff myschema.joined.sorted sunschema.joined.sorted > myschema_extensions.txt
    I really hope this helps. I don't think there is any easier way to do this, but I'll watch this thread hoping I get proved wrong! :-)
    Cheers,
    sn3ak3rp1mp

  • Handling a schema URL that is also a container

    Greetings,
    I have two schema URLs, say "http://schema1" and "http://schema1/schema2". I successfully registered the first in Oracle 10g R2 XMLDB. When I attempt to register the second, I receive the following error:
    ORA-31002 Path name "http://schema1" is not a container
    It would be extremely difficult to change either schema URL. Is this Oracle XMLDB restriction? If so, any suggestions how I might workaround it without changing either URL?

    I would tend to argue that it falls into the category of if it hurts please don't do it... Having a SchemaLocationHint that is also a folder that contains another of the XML Schemas makes little or not sense to me unless I'm missing something. I don't think you could represent this model on most file systems..
    Are you prepared to modify the XML Schemas during registration in order to get past this problem...
    Are you sure you cannot change the schemaLocationHint you are using. This is not the same as changing then nanespace, which would be a real problem. Note that in the following example I changed the schemaURL passed to register schema and the value of the schemaLocation attribute in the import element of the second XML schema. I did not change the namespaces at all..
    SQL> begin
      2   dbms_xmlschema.registerSchema(
      3   'http://sample1.xsd',
      4   '<schema xmlns="http://www.w3.org/2001/XMLSchema"
      5    targetNamespace="http://sample1"
      6    xmlns:samp1="http://sample1"
      7    version="1.0">
      8    <simpleType name="departmentIdType">
      9     <restriction base="integer">
    10      <enumeration value="10"/>
    11      <enumeration value="20"/>
    12      <enumeration value="30"/>
    13      <enumeration value="40"/>
    14     </restriction>
    15    </simpleType>
    16    <element name="company">
    17    <complexType>
    18    <sequence>
    19     <element name="department">
    20      <complexType>
    21       <sequence>
    22        <element name = "id"   type = "samp1:departmentIdType"/>
    23        <element name = "name" type = "string"/>
    24       </sequence>
    25      </complexType>
    26     </element>
    27    </sequence>
    28    </complexType>
    29    </element>
    30  </schema>',
    31   TRUE, TRUE, FALSE, FALSE);
    32  end;
    33  /
    PL/SQL procedure successfully completed.
    SQL> begin
      2   dbms_xmlschema.registerSchema(
      3   'http://sample1/sample2.xsd',
      4   '<schema xmlns="http://www.w3.org/2001/XMLSchema"
      5    targetNamespace="http://sample1/sample2"
      6    xmlns:samp2="http://sample1/sample2"
      7    xmlns:samp1="http://sample1"
      8    version="1.0">
      9    <import namespace="http://sample1" schemaLocation="http://sample1.xsd"/>
    10    <simpleType name="departmentIdType">
    11     <restriction base="integer">
    12      <enumeration value="10"/>
    13      <enumeration value="20"/>
    14      <enumeration value="30"/>
    15      <enumeration value="40"/>
    16     </restriction>
    17    </simpleType>
    18    <element name="company">
    19    <complexType>
    20    <sequence>
    21     <element name="department">
    22      <complexType>
    23       <sequence>
    24        <element name = "id"   type = "samp2:departmentIdType"/>
    25        <element name = "name" type = "string"/>
    26       </sequence>
    27      </complexType>
    28     </element>
    29    </sequence>
    30    </complexType>
    31    </element>
    32  </schema>',
    33   TRUE, TRUE, FALSE, FALSE);
    34  end;
    35  /
    PL/SQL procedure successfully completed.
    SQL>

  • What to take into account to create a custom schema?

    Hello, we are going to start the process of migrating from Oracle E-business suites R11.5.10.2 to R12; we have been doing our custom applications into the APPS schema. For this upgrade, we would like to start fresh and move all our custom applications to a custom schema to have control of all the customizations. I need your feedback on what are the things we need to take into account to accomplish that.
    Please let me know anything that comes to your mind on what to consider, and if you have a good guidance on how to do it should be great.
    Thank you.

    user8969211 wrote:
    Hello, we are going to start the process of migrating from Oracle E-business suites R11.5.10.2 to R12; we have been doing our custom applications into the APPS schema. For this upgrade, we would like to start fresh and move all our custom applications to a custom schema to have control of all the customizations. I need your feedback on what are the things we need to take into account to accomplish that.
    Please let me know anything that comes to your mind on what to consider, and if you have a good guidance on how to do it should be great.Please see these docs/links.
    Integrating Custom Applications with Oracle Applications [ID 176852.1]
    Step By Step Guide to Creating a Custom Application in Applications 11i [ID 216589.1]
    Integrating Custom Objects and Schemas
    http://docs.oracle.com/cd/E18727_01/doc.121/e12897/T302934T458264.htm#4164796
    Can't Open Custom Forms After R12 Upgrade [ID 552010.1]
    How To Upgrade 11i Custom Forms To R12 [ID 563258.1]
    Accessing Custom Forms After Upgrading From To R12. [ID 451934.1]
    Do Not Compile EBS R12 Reports Using rwconverter.sh or Reports Builder from IDS 10gR2 [ID 786794.1]
    Using the OracleAS 10.1.2 Forms and Reports Builders with Oracle Applications Release 12 [ID 444248.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Iphone 5s voice garbled, breaking up

    People I call on my iPhone 5s say my voice sounds garbled and is breaking up. Is it a hardware issue?

  • Cannot generate PDF with RH10

    I have searched the forum and Peter Grainge's site and not found a solution to this problem that worked. I have a new installation of RH10 on Windows 7 sp1. It was installed as a trial and then licensed. I do not have the complete Adobe Acrobat -- on

  • How can I transfer music from iPhone to my itunes account?

    I bought music from itunes with my iPhone. Now, I would like to transfer this music from my iPhone to my iTunes account. How can I do it? 

  • Items purchased on my iPad lost when synced to MacBook Pro

    I purchased music and TV shows on my iPad which downloaded fine. When I synced my iPad to my MacBook Pro they have all disappeared. I did nothing different to what I normally do when syncing and am really annoyed. I 'reported a problem' via my order

  • We are SEVEN!

      (Illustration credit: supermod Erik - who also came up with most of the Communities' graphics and our 5th year anniversary logo.) Slightly more than three years ago I was approached about a role within the Lenovo Forums Community, and being a non-t