Subscription tile Optional remote custom dialog URL

Hi All,
we have finally managed to sort out our subscription error with the infinate spinning issue.
But now we have put back in a URL to open up a newsletter signup after the subsciption has gone through. The page opens up, but it doesnt not load with the normal in app browser window, so once you filled out the details you cant get back into the app?
Is this normal?

Does this help?
Optional Library Subscription Tile URL - Specify a URL that is displayed in an in-app browser window when the customer taps the subscription tile. This webpage can include messaging that is not necessarily related to subscriptions.
Optional Remote Custom Dialog URL - This URL loads when the customer completes the subscription process. For example, you can request user information or provide additional details about your products.

Similar Messages

  • Using the Optional Remote Custom Dialog URL

    Can anybody point me to a magazine that uses the Optional Remote Custom Dialog URL (preferably with a free subscription).
    Lately, we've been testing the implementation of the remote custom dialog feature.
    As we understand, this is not be a standard web page that get's loaded to the internal browser, but a dialog that displays as an overlay, but we still didn't manage to implement it.
    Any sample or tutorial we can refer to?

    Have you tried implementing a Javascript close/cancel/ok Button?
    <html> 
    <head>
       <title>JavaScript Window Close Example </title>
    </head>
    <script type="text/javascript">
       function popuponclick()
          my_window = window.open("",
           "mywindow","status=1,width=350,height=150");
          my_window.document.write('<h1>The Popup Window</h1>');
       function closepopup()
          if(false == my_window.closed)
             my_window.close ();
          else
             alert('Window already closed!');
    </script>
    <body>
       <p>
          <a href="javascript: popuponclick()">Open Popup Window</a>
       </p>
       <p>
          <a href="javascript: closepopup()">Close the Popup Window</a>
       </p>
    </body>
    </html>

  • Remote Custom Dialog Crashes (Subscription Success Window)

    Hi everyone,
    I'm having a bug for a very long time, which I can't seem to be able to solve or understand, where it comes from.
    In Viewer Builder there is this field:
    Optional Remote Custom Dialog URL
    This URL loads when the customer completes the subscription process. For example, you can request user information or provide additional details about your products.
    When I fill this with a URL on my publications marketing page, it's pretty sure, what happens: When a user subscribes to my publication this window appears after the subscription process is finished.
    The problem is, that with every App I built for the last months, the App always stops at this window showing the content of the given url, but with no possibilty to leave this window. There is no "Finished" button whatsoever and no way to get back to the library. The only way to leave the window is by killing the App through task manager.
    Does any one else encounter this problem? The only solution is to keep the field empty in Viewer Builder and not showing a success window to the customer (though having no ability to ask him or her for his or her contact data).
    Does the URL one states in this field have to fullfill special features (like a a callback of some kind?)
    Thanks very much in advance,
    Richard

    Have you tried implementing a Javascript close/cancel/ok Button?
    <html> 
    <head>
       <title>JavaScript Window Close Example </title>
    </head>
    <script type="text/javascript">
       function popuponclick()
          my_window = window.open("",
           "mywindow","status=1,width=350,height=150");
          my_window.document.write('<h1>The Popup Window</h1>');
       function closepopup()
          if(false == my_window.closed)
             my_window.close ();
          else
             alert('Window already closed!');
    </script>
    <body>
       <p>
          <a href="javascript: popuponclick()">Open Popup Window</a>
       </p>
       <p>
          <a href="javascript: closepopup()">Close the Popup Window</a>
       </p>
    </body>
    </html>

  • Subscription Tile Error and Social Sharing Questions

    Hello,
    I recently had my free subscription DPS app rejected by Apple with the following message:
    "When the user taps "subscribe" an activity indicator is displayed for a moment and then no further action occurs. The subscription fails."
    When I go back through my work, it looks as though the problem may be linked with leaving "Optional Library Subscription Tile URL" field blank in the App Builder. Is this correct? Do I need to create a webpage specifically to complete the subsciption process? I haven't been able to find any specifics regarding this in the Adobe Publishing Companion Guide.
    Also, regarding social sharing, is there any more information you can provide regarding setting up a URL scheme to launch the viewer app? Does this need to be an actual functioning webpage?
    Thanks!
    Darin

    No, subscription failure is not because of the Optional URL scheme. Subscription failure and reason for Apple's rejection can be either or both of the following reason
    You have not copy pasted your shared secret key into the application account of your app using the Admin dashbaord panel
    Your free subscription product from the app(viewer builder) does not match the Free subscription in-app purchase on iTunes connect.
    Regarding the optional URL scheme here's a good blog post from Bob
    Message was edited by: Lohrii Alo

  • Open a custom dialog when button is pressed.

    I have a custom dialog that I want to display another custom dialog. I cannot get it work correctly. Everytime I add a function that will show the 2nd dialog It will show before the 1st one is loaded and then nothing happens when I click the dialog on the first!
    I seem to be missing something big? I have not even started to try to get the value of the 2nd dialog and return it to the first!
    Any help!!!!?
    Here is some of the code
    function showAddTokenDialog ()
        LrFunctionContext.callWithContext('showAddTokenDialog', function( context )
            local f = LrView.osFactory()
            tokenprops  = LrBinding.makePropertyTable(context)
            props.token = "val"
            -- Create the contents for the dialog.
            local token = LrView.bind('token')
            local AddTokenDialog = {
                bind_to_object = tokenprops,
                title = "Add Token",
                actionVerb = "Add Token",
                actionBinding = LrView.bind('action'),
                contents = f:row {               
                    f:static_text {
                        alignment = "right",
                        width = LrView.share "label_width",
                        title = "Token "                   
                    f:popup_menu {
                        value = LrView.bind('val'),
                        items = tokenItems,
                        width_in_chars = 15
            result = LrDialogs.presentModalDialog(AddTokenDialog)
        end)
    end
    function Mine.showCustomDialog()
        LrFunctionContext.callWithContext("showCustomDialogWithObserver", function(context)
            props = LrBinding.makePropertyTable(context)
              local c = f:row {
                                            f:static_text {
                                                alignment = "right",
                                                --width = LrView.share "label_width",
                                                title = "Caption: ",
                                                width_in_chars = 10
                                            f:edit_field {
                                                --place_horizontal = 0.5,
                                                --bind_to_object = tableTwo,
                                                value = '',
                                                height_in_lines = 2,
                                                width_in_chars = 20
                                            f:push_button {
                                                title = "Add Token",
                                                -- When the 'Update' button is clicked
                                                font = '<system/small>',
                                                action = showAddTokenDialog ()
              LrDialogs.presentModalDialog(
                    title = "Barcode Match",
                    contents = c
        end) -- end main function
         end

    See http://htmldb.oracle.com/pls/otn/f?p=24317:91
    The Toggle button does what you need.
    The button has a URL of Toggle(). The function Toggle
    is defined as
    <script>
    function Toggle()
    var txt=html_GetElement('P91_TEXT');
    txt.disabled=!txt.disabled;
    if (!txt.disabled) txt.focus();
    </script>
    I don't want to seem ignorant but where do I put this code of the function toggle. I don't seem to see a URL anywhere in the button. Maybe I'm using a different button type then you.
    Aron

  • Innput field with Select option on custom screen

    Hi,
    I need to create an Input field with Select Option(No interval) button on Custom dialog screen .
    Is there any idea how can I create it on screen ?
    Thanks
    Sachin

    create a normal inputfield and place an icon next to it. then in the pai on click of that button use the following code.
    data: wf_tab_field like rstabfield occurs 0 with header line ,
          wf_exl_opt like rsoptions .
    refresh: wf_tab_field  .
        move: 'KOSTL' to wf_tab_field-fieldname ,
              'CSKS' to wf_tab_field-tablename .
        append wf_tab_field .
        clear wf_tab_field .
        move: 'X' to wf_exl_opt-bt ,
              'X' to wf_exl_opt-cp ,
              'X' to wf_exl_opt-ge ,
              'X' to wf_exl_opt-gt ,
              'X' to wf_exl_opt-le ,
              'X' to wf_exl_opt-lt ,
              'X' to wf_exl_opt-nb ,
              'X' to wf_exl_opt-np .
    call function 'COMPLEX_SELECTIONS_DIALOG'
         exporting
           title                   = 'Select Cost Centers'
           text                    = 'Cost Center'
    *         SIGNED                  = 'X'
    *         LOWER_CASE              = ' '
    *         NO_INTERVAL_CHECK       = ' '
    *         JUST_DISPLAY            = ' '
    *         JUST_INCL               = ' '
            excluded_options        = wf_exl_opt
    *         DESCRIPTION             =
            help_field              = 'CSKS-KOSTL'
    *          SEARCH_HELP             = 'KOST'
            tab_and_field           = wf_tab_field
          tables
            range                   = r_kostl
         exceptions
           no_range_tab            = 1
           cancelled               = 2
           internal_error          = 3
           invalid_fieldname       = 4
           others                  = 5
        if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
        if not r_kostl[] is initial .
          read table r_kostl index 1 .
          if sy-subrc eq 0 .
            move: r_kostl-low to wf_t_kostl .
          endif .
        endif .
    wf_t_kostl  is the screen field name.
    Raja

  • BUG Remote Debug Dialog Problem

    When I Try open Remote Open Dialog:
    Project Properties -> Run/Debug -> Edit(Default) -> Tools Settings/Debugger/Remote
    I get this Exception:
    java.lang.NoClassDefFoundError
         at oracle.jdevimpl.runner.debug.RemoteDebugSettingsPanel$Protocol.<init>(RemoteDebugSettingsPanel.java:205)
         at oracle.jdevimpl.runner.debug.RemoteDebugSettingsPanel.<init>(RemoteDebugSettingsPanel.java:57)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.ide.panels.MetaTraversable.newTraversable(MetaTraversable.java:315)
         at oracle.ide.panels.MetaTraversable.newTraversable(MetaTraversable.java:219)
         at oracle.ide.panels.MDDPanel.getTraversable(MDDPanel.java:1061)
         at oracle.ide.panels.MDDPanel.mav$getTraversable(MDDPanel.java)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1308)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1216)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1210)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.jdevimpl.runner.RunConfigurationEditor.showDialog(RunConfigurationEditor.java:58)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:340)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:322)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.actionPerformed(RunConfigurationsPanel.java:212)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:223)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:89)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:80)
         at oracle.jdeveloper.model.JProjectStructureController.handleEvent(JProjectStructureController.java:111)
         at oracle.jdeveloper.model.JProjectStructureController$JProjectMenuListener.handleDefaultAction(JProjectStructureController.java:576)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1504)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1841)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1862)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    I use JDeveloper version 10.1.3.0.4.3679 (Build JDEVADF 10.1.3. NT 060125.0900.3673)
    and JDK: Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
    When I use JDK: Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
    I get this Exception if I try show Remote Debug Dialog:
    java.lang.ClassCastException
         at oracle.jdeveloper.ejb.BaseEjbModuleContainer.getEjbJarNode(BaseEjbModuleContainer.java:324)
         at oracle.jdeveloper.ejb.BaseEjbModuleContainer.getEjbModuleEngine(BaseEjbModuleContainer.java:704)
         at oracle.jdeveloper.ejb.EjbAppManager.getEjbModuleEngine(EjbAppManager.java:648)
         at oracle.jdevimpl.runner.oc4j.Ejb30StarterFactory.checkIsEjb30Node(Ejb30StarterFactory.java:57)
         at oracle.jdevimpl.runner.oc4j.Ejb30StarterFactory.canStartImpl(Ejb30StarterFactory.java:40)
         at oracle.jdevimpl.runner.oc4j.Oc4jStarterFactory.canStart(Oc4jStarterFactory.java:71)
         at oracle.ide.runner.AbstractStarterFactory.canStart(AbstractStarterFactory.java:35)
         at oracle.ide.runner.RunProcess.canGetStarterForTarget(RunProcess.java:588)
         at oracle.jdevimpl.runner.DefaultRunnablePanel.validateDefaultRunTarget(DefaultRunnablePanel.java:144)
         at oracle.jdevimpl.runner.RunConfigurationLaunchPanel.commitTo(RunConfigurationLaunchPanel.java:203)
         at oracle.jdevimpl.runner.RunConfigurationLaunchPanel.onExit(RunConfigurationLaunchPanel.java:170)
         at oracle.ide.panels.MDDPanel.exitTraversable(MDDPanel.java:977)
         at oracle.ide.panels.MDDPanel.mav$exitTraversable(MDDPanel.java)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1272)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1216)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1210)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:141)
         at java.awt.Dialog$1.run(Dialog.java:540)
         at java.awt.Dialog.show(Dialog.java:561)
         at java.awt.Component.show(Component.java:1133)
         at java.awt.Component.setVisible(Component.java:1088)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.jdevimpl.runner.RunConfigurationEditor.showDialog(RunConfigurationEditor.java:58)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:340)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.editRunConfiguration(RunConfigurationsPanel.java:322)
         at oracle.jdevimpl.runner.RunConfigurationsPanel.actionPerformed(RunConfigurationsPanel.java:212)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:141)
         at java.awt.Dialog$1.run(Dialog.java:540)
         at java.awt.Dialog.show(Dialog.java:561)
         at java.awt.Component.show(Component.java:1133)
         at java.awt.Component.setVisible(Component.java:1088)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:276)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:223)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:89)
         at oracle.ide.model.panels.ProjectPropertiesDialog.showDialog(ProjectPropertiesDialog.java:80)
         at oracle.jdeveloper.model.JProjectStructureController.handleEvent(JProjectStructureController.java:111)
         at oracle.jdeveloper.model.JProjectStructureController$JProjectMenuListener.handleDefaultAction(JProjectStructureController.java:576)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1504)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1841)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1862)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    But after confirm Exception, dialog will open corectly.

    I Find, that problem was in project configure file, where was incorrect path to the workspace configuration file:
    <hash n="oracle.ide.model.DependencyConfiguration">
    <list n="dependencyList">
    <hash>
    <value n="class" v="oracle.jdeveloper.library.ProjectLibrary"/>
    <url n="sourceOwnerURL" path="../WorkspaceVersion2.jws"/>
    <url n="sourceURL" path="../ejb/ejb.jpr"/>
    </hash>
    </list>
    </hash>

  • Subscription tile not working

    When on the iPad, I click on my app and now see the custom viewer or library of issues to buy/download...
    In the top right is a blue subscription tile that isnt working correctly. It links to our homepage instead of the apple store prompting to sign up for a 12 month subscription...
    How do I fix this ??
    I know the subscriptions work because there is also "subscribe" text that leads to the apple subscription prompt...

    Something definitely went wrong with the build, but I'm not sure what could have caused it. Did you specify an entitement banner as well?
    I'll try to find out what could have caused this problem. You might want to re-create the viewer from scratch and try again.

  • Viewer Builder Error - SD Portrait Subscription Tile error

    I am in the process of moving the first of our Apps to the news stand following Bob Bringhursts Adobe Developer Connection Article - Adding DPS apps to Apple Newsstand.
    At the point where I am asked to add Landscape and Portrait Subscription tiles I can locate and add the Landscape Tile - OK no problems so far
    I locate and add Portrait tile 331x180 pixels I created and select image but I dialog box is highlighted red and red pop up error - "This tile must be331 x 180 pixels and PNG format".
    I have double checked image file and it is 331x180 pixels in PNG format with PNG file extension.
    I have created using Photoshop a new 331x180 pixel PNG file and get the same error with this file.
    Can get past this point to build the App for submission to Apple
    What am I doing wrong?

    Bob,
    Got confused and had the image orientation wrong 180 x 331 pixels as
    opposed to 331 x 180 - the Portrait Tile is actually short and wide
    (landscape).
    As soon as I flipped the orientation I was able to upload the image and
    sucessfully build the App. The App is now in the Aople queue.
    Thanks for your help

  • How do I set repeating workday events in my calender? There is no option for custom.

    How do I set repeating workday events in my calender? There is no option for custom.

    The built in Calendar app has very limited repeat options. You might want to try an app like Week Cal which has a much more robust repeating event selection. As it pulls from the same calendar database as the built in, there's no reentering of information required.

  • Select Options in custom controller

    Hi,
    Any one please let me know how to put select options on custom container. I need to display select options based on the input a tree and a report should be displayed in the same screen along with input screen.
    So I planned object oriented program to split screen to display tree and report. and again I split left side container to 2 containers. Now I want put the selection screen on left top container.
    Please help.
    Chandra

    What you can do is the following:
    Define a Container Object on one side of the screen to place the ALV Tree, and a Subscreen area on the other side, so you can place your select-options right there:
    You can define the select-options this way:
    SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
    SELECT-OPTIONS : s_ebeln FOR ekko-ebeln ,
    s_ebelp FOR ekpo-ebelp .
    SELECTION-SCREEN END OF SCREEN 100 .
    And then in the flow logic of your dynpro, assign this selection screen to your subscreen area. (Called SUB1 in this case)
      call subscreen sub1 including sy-repid '0100'.
    Regards

  • Custom Dialog Box Question

    I have a custom dialog box that uses both radio buttons and edit_text fields.  What I am trying to do is make so that when a certain radio is selected the edit_text field will be filled with a suggested answer.  Is that possible and how could it be done?

    Yes,  data is acquired from fields with the "dialog.store()" function and loaded with the "dialog.load()" function. Say that one radio button is named "Rad1" and the text box is named "Txt1".  Then this code represents the action script for the radio button, it places "New Text" into the the text field.
    "Rad1":function(dialog){
        var rslt = dialog.store();
        if(rslt["Rad1"])
            dialog.load({"Txt1": "New Text"});
    The Action script is a member of the dialog object.  You can see examples of how this can be build by downloading a trial version of AcroDialogs, which will build the correct JavaScript code for adding an action to a radio button.
    http://www.windjack.com/products/acrodialogs.html
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    http://www.adobe.com/devnet/acrobat/javascript.html
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • Select-option field in dialog programming

    hi guys,
    i need to declare field matnr as select-option range in dialog programming..how can i code it in the module program?

    This questions has been answered many times (even in february)
    - search sdn wiki (2 commented samples at [SELECT-OPTIONS on Dialog programming screen|http://wiki.sdn.sap.com/wiki/display/ABAP/SELECT-OPTIONSonDialogprogrammingscreen] and [Select-Options in Module Pool Programming|http://wiki.sdn.sap.com/wiki/display/ABAP/Select-OptionsinModulePoolProgramming])
    - search abap online help ([SELECTION-SCREEN - AS SUBSCREEN |http://help.sap.com/abapdocu_70/en/ABAPSELECTION-SCREEN_SUBSCREEN.htm] with sample at [Selection Screens as Subscreens |http://help.sap.com/abapdocu_70/en/ABENSEL_SCREEN_SUBSCREEN_ABEXA.htm])
    Regards,
    Raymond

  • How to continue transition rendering with custom dialog open

    Hi,
    I'm working on a plugin for some custom transitions (currently for CS6/CC on Windows).
    I'm using a custom dialog (hasCustomDialog in PiPL) during esSetup to set the transition parameters. While the dialog is open the execution of Premiere is halted until the dialog gets closed.
    The problem is, while I'm fiddling with the parameters I can't see changes in the program monitor and I don't get any feedback from Premiere.
    I tried to make the dialog non-blocking but then Premiere didn't rerender the frames when I changed something in the dialog.
    Does anybody know if it is possible to keep the dialog open and still have Premiere actively updating the rendered view?
    Regards,
    Philipp Stelzer

    Hi Zac,
    thanks for your answer.
    Currently I'm using a modal dialog to set up my parameters and the parameters are corretly applied after I close the dialog.
    But I'd like to keep the dialog open to see the changes directly without reopening the dialog each time I want to tweak a value. Is that possible with a custom dialog?
    I'll take a look at the new transition extensions, but I'm already working on this plugin for a few month and my dialog and the transition effects are already quite extensive. So, I don't know if it is possible to port everything to the new extensions (at least not in reasonable time).
    Regards,
    Philipp

  • Adding images in custom dialog box

    Hi!
    Do  you know if it's possibile to insert an image in a custom dialog box? I mean during the custom dialog box design (during the .dre file creation).
    Thanks to all!

    Hi Stemens,
    I'm hesitant to answer your questions anymore because somebody always comes behind and shows everybody how much I don't know   Anyway, I do not know of a way. I remember that there have been other developers discussing this and I think everybody just gave up. I have never seen an image in a dialog box, so that tends to indicate to me that no one has found a way.
    Russ

Maybe you are looking for

  • Sync issues with Google Calendar and e-mail alerts

    Hello, I'm experiencing a lot of problems with iCal while I'm trying to sync it with Google Calendar. I have correctly inserted my Google account information into iCal, but: when I create a new event and I disable the e-mail alert and save it, it aut

  • Difference between SAP BI 7.0 and SAP Business objects

    Dear All,     I would like to know what is the difference between SAP BI 7.0 and SAP Business objects.What Advantage will we have if we implement sap business objects rather then SAP BI 7.0.WOur management wants to implement

  • Attachments in DOE 1:n

    Hi, I read the article http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f06f0dc5-f6a9-2c10-f691-821eccc1b198 which was a good starting point for binary data in the DOE. Now I have the challenge, that I have to implements a 1:n relation between

  • What is the difference between Action & Workflow?

    hi, What is the difference between Action & Workflow? regards, babu

  • Emails sent multiple times

    OK, Ipad 4 and when we send an email from the ipad the recipients are getting 10-15 copies in their inbox. These are emails via our gmail account and they have pics attached. Ideas? Fixes? Thanks