Making hypertext work if things are NOT in the same folder?

I am writing a large doc with FM (FM 8.0p277), several appendix files, 100+pages, etc. I am using hypertext to link external PNG images with the document. This is working just fine (message openfile:filename.ext). Then, I print as PDF doc, and still keeping the PNGs and the newly created PDF in same folder- the hypertext link still works fine.
My question is: this document will be released to clients, whom we can't necessarily make keep all elements in the same folder. Is there a way, when I generate the PDF of the final version, for the hypertext link to work if things are moved out of the same folder? I'm guessing not, but I thought if anyone would know, it would be in this forum...
Thx
Adriana

If everything is in the same folder when the PDFs are created, then the links should all be relative. As long as the distributed files are all kept together when distributed, then things should continue work. However, if they move some files to different folders, then all bets are off.
Why are you making external links to the graphics files instead of importing them by reference into the FM file - especially PNGs? This doesn't make any sense to me.
If you need to keep everything separate initially (for whatever reason), then consider creating a PDF portfolio in Acrobat, that can't be split up, as the final deliverable.

Similar Messages

  • Help!!! the app Iphoto is closed marking a erros. I go back and open the application and are not photos. How can I recover them? Are not in the image folder.

    I was editing my photos and adding them to a album and suddenly the app is closed marking a erros. I go back and open the application and are not photos. How can I recover them? Are not in the image folder.

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • How to have projectname_edge.js in a subfolder? (not in the same folder as the project file)

    Hello,
    Is it possible to have the file projectname_edge.js in a subfolder? Not in the same folder with projectname.html.
    It seems that edge.5.0.1.min.js looks for dependencies only in the same place as the main file of the project. Moving projectname_edge.js to other folder (js, script, etc) causes the animation not to run. Can I store it in different folder? I would like to put it into "Content" or "Scripts" folder on the server.
    I am trying to integrate edge animation into ASP.NET MVC application, and I do not have any index.html file. I am inserting the <!--Adobe Edge Runtime--> section into the view  (the .cshtml file stored in subfolder). Having the projectname_edge.js in the main server path require to deal with security settings, so I would like to put it in 'Scripts'.
    I found the video showing the solution for the older API: http://www.edgedocks.com/content/edge-animate-publish-files-and-js-folder but it is no longer valid with Edge 5.0 API
    Any ideas how to achieve this?
    Thank you in advance!
    Eric

    Thank You! This is exactly what I looked for!
    Additionaly having runtime projectname_edge.js in htmlroot in ASP.NET MVC website, is slowing down the animation show up. Now (with subfolder) it working fast and fluid
    Many, many thanks!

  • Messages from topic to multiple consumers are not ordered the same way

    Hi,
    We have a distributed topic. The message producer is a multi-threaded/connection producer (OSB in our case).
    On the other side of the DT there are single connection consumers.
    Our problem is that the consumers sometimes recieve the messages in different order:
    Consumer A recieves message N and then N+1 (correct behaviour).
    Consumer B recieves message N+1 and then N (correct behaviour).
    This does not happen all the time. Most of the time the order is correct (99.9..%).
    We also noticed that the message timestamp for message N and N+1 is the same.
    This creates a problem for our system since both consumers must get the messages in the same order.
    We cannot use UOO.
    Any idea if this is a correct behavior for DT?
    Any idea how to make the messages get to all consumers in the same order without using UOO?
    Thanks,

    Hi,
    Hmm. You may have run into some new Bug given since "message timestamp for message N and N+1 is the same". First, let's dot our I's and cross our Ts to make sure that the system is setup in a way that will give you good ordering in the first place:
    - Always use the same producer instance for each sequential send, and ensure that the producer's connection factory has "load balance" set to false. Note that OSB may be using a pool of producers implicitly for your sending app underneath-the-covers, which could lead to out-of-order, as different producers can load balance to different servers in your cluster. (I'm not sure how to check for this - if you provide a code snippet, I may be able to tell if this is happening.)
    - Ensure that you only ever have a single thread processing the subscription - if you're using MDBs to receive from the subscription, then you need to ensure the MDB is setup to only startup a single thread (use a thread pool of size and/or set max-beans-in-free-pool to one)
    - To account for out-of-order after app message processing failures (redelivery) with async consumers or MDBs, you need to (A) never configure redelivery delays, and (B) ensure the connection factory Maximum Messages setting is tuned down to 1 (it's default is 10).
    I don't know how to do the above with OSB, which tends to layer it's own configuration on top of WL JMS configuration.
    Assuming that you've assured all of the above, then you may have run into some sort of bug and I recommend filing a request with Oracle Support. In the mean-time, you might want to explore alternatives:
    - Are you certain that you can't use UOO? It would be interesting to know why. This is a widely used feature (even by OSB itself), and it may be that you can enable it without any code change, plus, even if a code change is required, such changes tend to be isolated and small. In your use case, it looks like you may be able to configure a default UOO on the distributed topic itself (http://docs.oracle.com/cd/E11035_01/wls100/wlsmbeanref/core/index.html) - no code change needed - so that every destination member of your distributed destination will simply ensure that each new message is given the same UOO (a UOO that's particular to that member). OSB may provide some equivalent knob. Alternatively, you can code up your app so that each of your producers sets a useful UOO on each message.
    - I assume you're using a replicated distributed topic (RDT). If there actually is a bug, then it would likely have something to do with the RDT's internal forwarders. If your consumers are MDBs or the SOA RA Adapter, then a simple alternative may be to use a Partitioned Distributed Topic (PDT) instead -- PDTs have no forwarders, and the MDB and the SOA RA Adapter can work with them transparently. If your consumers are neither of these, then working with a PDT will likely require that you use extensions (an advanced path that you may not want to take the time to follow).
    Tom

  • Keyboard doesnt work . two letters are typed at the same time

    Hi everyone!
    my keyboard is working very strange. 
    When i press letter t , the w is pressed as well
    The same happens with letter g ( s)
    The same happens with letter b (x)
    The interesting thing is that these letters are in different lines and they are all separated to to the one that is also pressed by 2 keys in the middle. It seems like it was forming a pattern or a circuit.
    I took the keys out to clean them but they seem to be ok.
    Help !!!!! what should i do?
    Bety

    One possible reason is the battery is swollen and pressing up on the keys.
    (Does you Macbook have a battery you can remove easily, the kind with a slot on the bottom to release the battery? If it does, remove the battery and test the keys using the power adpater.)
    But I suspect this is a newer model, because the battery is on the left side (looking down on the computer), as are the misbehaving keys.
    Suggest you make an appointment and ask an Apple genius to take a look. Diagnostics are free. If in fact you need a new battery they will do it for you. You only pay for the battery.
    http://www.apple.com/retail/geniusbar/

  • Deleting applications that are not in the application folder

    I recently downloaded an app called Liteswitch. I didn't want it so I ctrl clicked on its icon in the System Preferences and removed the Liteswitch prefpane. But the app is still installed and working - how do I get rid of it?
    Thanks

    It's not only the Liteswitch app. It's more in general. I can't figure out if the apps are deleted when you ctrl click on their icon in the system prefs and remove it. The app still works after you have done this so it seems that it doesn't delete it. However after logging out the app doesn't work after logging back in, so maybe OSX waits to delete the app till you log out?

  • HT204406 The songs on my computer itunes playlist and my iphone playlist songs are not matching up. I do see new songs I've added on my computer playlist on my iphone playlist but the songs are not in the same order. How do I get them to match?

    Playlists matching on computer and iphone?  The playlists on my computer in itunes are not matching up with the "match" playlist on my iphone.  New songs do show up when I add them to a playlist, but the songs are all in different order.  If I edit a playlist on my computer how do I get it to match on my iphone?

    Restore them to the new computer using the bakcup of the old one. If you don't have a backup of the old computer, you can re-download music purchased from the iTunes store. If they were imported from CD's, etc. You will either have to re-rip them or purchase third party software to extract them from the phone. The iPhone is not a backup or data transfer device.

  • My sent items are not in the sent folder

    I went to Preferences and chose to have sent items in the folder but they are not there. Anyone have any suggestions?

    Looking at the .mac mail folder, there are no black triangles, I have inbox, drafts and sent (and trash) icons.
    I tested the .mac mail (I know I keep saying "this site" but I don't know what else to call it?), and using this one it does keep a copy of the sent items. BUT using the Mail (the stamp icon mail) copies of sent items are not saved.
    I want to use the Mail one, because you can choose fonts and all that other stuff, which is why I even purchased the year membership! (otherwise I would just stay with Yahoo mail).
    I really don't have a clue about this stuff and I appreciate you taking your time here.

  • FF 34 - Restoring Sessions from old folders of files recovery.bak and recovery.js that are not in the original folder. Is this possible?

    After crash all the recovery files were gone. With a recovery software I could get old versions of recovery files (recovery.bak, recovery.js). I try to implement them in the new profile folder by exchanging the files, but FF34 just ioverwrites them. Unfortunalty I could not restore the old sessionstore.js file.
    Any idea how I can restore the ols session with this 2 old files (recovery.bak, recovery.js)?

    Did you check in a text editor that the recovered files are not corrupted and only contain ASCII text?
    You would have to copy such a recovery file to the main profile folder as sessionstore.js to replace the current copy.
    If you do not use "Show my windows and tabs from last time" then you need to use "History > Restore Previous Session" and possibly "History > Recently Closed Tabs/Windows".

  • Imported photos to ipad they are not looking the same

    i had synced photos to ipad from PC(windows XP) using itunes on PC. After Syncing they are not looking similar they are looking like negatives of original images on PC..

    I BELIEVE it orders them in date taken order, not name order.
    You can look for a third party app that will allow you to choose/alter the sort order, or use a program to edit the properties of the photos to give them all the same date, which will then allow the iPad to default to name order. I found a free program that'll do that, but you may want to preserve the original dates on your photos so the other photos app might be yoru best bet. I'm not familiar with any but perhaps someone can recommend one to you.

  • TS4268 I updated my iphone 4s with both of the most recent ios updates.  After doing so I ahave been unable to send or receive any text messages(imessage) between other iphones.  everyone in my family has iphones are not experiencing the same problem.

    I have already reset the phone but still can't receive or send messages

    Your MacBook shoul NOT be too old to run Leopard. (10.5) Snow Leopard, maybe, but not Leopard.
    When you go to the Genius Bar, MAKE SURE the genius knows you are NOT up to date with your  OS. If they try to update your phone, you could find yourself unable to sync at all...
    That said, if you're nice to them, they might just give you a copy of Leopard so you can get current with iTunes and iOS. It's been known to happen.

  • All the emails in my inbox have disappeared apart from the last 2 day's worth, they are not in the deleted folder either

    I have my 3 bt email addresses linked to Thunderbird. This morning when checking emails I found that 1 of the accounts is missing everything apart from the last 2 days worth of emails. I've logged into BT and all the emails are there but not in Thunderbird, how can I get them back?

    Delete your e-mail if you are dealing with Yahoo or Google or Apple, and then add the account back in again. This will reload those e-mails. If you have the same problem, then, you may have a problem in your Mail app, and you may have to reset you iPad to factory default in iTunes to reload a fresh and clean copy of the e-mail app. Always be sure you do your backups before fiddling around with your iPad, like this.
    Back up and Restore your iOS Device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    iTunes: About iOS Backups
    http://support.apple.com/kb/ht4946
    Use iTunes to Restore your iOS Device to Factory Settings
    http://support.apple.com/kb/ht1414

  • BPC 7.5 NW - ScriptLogic working in single, but not in the same file

    Hi, we have two codes working good in ScriptLogic files differents, when each file individually is called.
    This code working good and Copy value inserted in 2010.ENE to 2010.FEB until 2010.DEC
    *XDIM_MEMBERSET CATEGORY = %CATEGORY_SET%
    *XDIM_MEMBERSET CTA_HHRR = BAS(REMUNERACIONES)
    *XDIM_MEMBERSET RPTCURRENCY = LC
    *XDIM_MEMBERSET TIME = %TIME_SET%
    *XDIM_MEMBERSET MEASURES = "PERIODIC"
    *WHEN TIME
    *IS %YEAR%.JAN
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.FEB )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.MAR )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.APR )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.MAY )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.JUN )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.JUL )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.AUG )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.SEP )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.OCT )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.NOV )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.DEC )
    *ENDWHEN
    *COMMIT
    This code working good and ajust all Accounts for all Months for Factor using name "IPC"
    *WHEN CTA_HHRR
    *IS BAS(REMUNERACIONES)
    *REC( FACTOR = ([CTA_HHRR].[PARAM_000000001],[Centro_De_Costo].[Dummy]))
    *ENDWHEN
    The problem is that when you run the code all together or in two files called from the default.lgf only performs the copy and the IPC adjustment is done only for 2010.ENE and not for the whole year.
    I try this code in one file and does not work
    *XDIM_MEMBERSET CATEGORY = %CATEGORY_SET%
    *XDIM_MEMBERSET CTA_HHRR = BAS(REMUNERACIONES)
    *XDIM_MEMBERSET RPTCURRENCY = LC
    *XDIM_MEMBERSET TIME = %TIME_SET%
    *XDIM_MEMBERSET MEASURES = "PERIODIC"
    *WHEN TIME
    *IS %YEAR%.JAN
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.FEB )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.MAR )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.APR )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.MAY )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.JUN )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.JUL )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.AUG )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.SEP )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.OCT )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.NOV )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.DEC )
    *ENDWHEN
    *COMMIT
    *WHEN CTA_HHRR
    *IS BAS(REMUNERACIONES)
    *REC( FACTOR = ([CTA_HHRR].[PARAM_000000001],[Centro_De_Costo].[Dummy]))
    *ENDWHEN
    Any idea for fix the code ?
    Is problem the code ?

    Yes we try, and not working, only using datapackage.
    *XDIM_MEMBERSET CATEGORY = PLAN
    *XDIM_MEMBERSET Centro_De_Costo = CC1AF004
    *XDIM_MEMBERSET CTA_HHRR = BAS(REMUNERACIONES)
    *XDIM_MEMBERSET Empleado = Dummy
    *XDIM_MEMBERSET RPTCURRENCY = LC
    *XDIM_MEMBERSET TIME = %YEAR%.JAN
    *XDIM_MEMBERSET MEASURES = "PERIODIC"
    *WHEN TIME
    *IS %YEAR%.JAN
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.FEB )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.MAR )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.APR )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.MAY )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.JUN )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.JUL )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.AUG )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.SEP )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.OCT )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.NOV )
    *REC(EXPRESSION=%VALUE%, TIME = %YEAR%.DEC )
    *ENDWHEN
    *COMMIT
    *XDIM_MEMBERSET CATEGORY = PLAN
    *XDIM_MEMBERSET Centro_De_Costo = CC1AF004
    *XDIM_MEMBERSET CTA_HHRR = BAS(REMUNERACIONES)
    *XDIM_MEMBERSET Empleado = Dummy
    *XDIM_MEMBERSET RPTCURRENCY = LC
    *XDIM_MEMBERSET TIME = %YEAR%.JAN
    *XDIM_MEMBERSET MEASURES = "PERIODIC"
    *WHEN CTA_HHRR
    *IS BAS(REMUNERACIONES)
    *REC( FACTOR = ([CTA_HHRR].[PARAM_000000001],[Centro_De_Costo].[Dummy]))
    *ENDWHEN
    *COMMIT

  • Requests are not always the same in IE as in Firefox

    Hi,
    I have an button among the items. With this button I want to delete data, but I need a confirmation for this.
    First I create an own button template:
    "Template class" is "Button"
    In the field "Template" I put the following:
    <a href="#LINK#" class="t20Button" #BUTTON_ATTRIBUTES#>#LABEL#</a>Then I create a page and a button ("P2_LOESCHEN") among the items on this page by using the new button template.
    "Button Request" is blank
    "Button Request Source Type" is "Always Null"
    "Attributes" is the following: onclick="javascript:deleteObject();"On the Page Header Text I put this:
    <script language="JavaScript" type="text/javascript">
    function deleteObject() {
      var confUpd;
      confUpd=confirm('Soll gezählt werden?');
      if (confUpd) {
        doSubmit('DELOBJ');
    </script>Then I create a process that has to execute in this condition:
    "Condition Type": "Request Is Contained within Expression 1"
    "Expression 1": "DELOBJ"At least I create a branch with the same condition:
    "Condition Type": "Request Is Contained within Expression 1"
    "Expression 1": "DELOBJ"In Firefox allthing is running good!
    In IE I got two Request, if I click the button. First the request "DELOBJ" and after that a blank request. Sometimes the process is executing, but never the branch is executing.
    I have the debug informations for the Firefox, for the IE if the process is not running and for the IE if the process was running and the branch not. Look for "A C C E P T: Request=", I dont understand the different outputs!
    Debug with Firefox, allthing is good:
    0.00: A C C E P T: Request="DELOBJ"
    0.01: Metadata: Fetch application definition and shortcuts
    0.01: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=de
    0.01: alter session set nls_language="GERMAN"
    0.01: alter session set nls_territory="GERMANY"
    0.01: NLS: CSV charset=WE8MSWIN1252
    0.01: ...NLS: Set Decimal separator=","
    0.01: ...NLS: Set NLS Group separator="."
    0.01: ...NLS: Set date format="DD.MM.RR"
    0.01: ...Setting session time_zone to +02:00
    0.01: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.01: ...NLS: Set date format="dd.mm.yyyy"
    0.03: Fetch session state from database
    0.03: ...Check session 7378203318791280 owner
    0.03: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.03: ...NLS: Set date format="dd.mm.yyyy"
    0.03: ...Check for session expiration:
    0.03: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.03: Session: Fetch session header information
    0.03: ...Metadata: Fetch page attributes for application 119, page 2
    0.04: ...Validate item page affinity.
    0.04: ...Validate hidden_protected items.
    0.04: ...Check authorization security schemes
    0.04: Authorization Check: "3510919994954879" User: "PinnoM" Component: "APPLICATION"
    0.04: Session State: Save form items and p_arg_values
    0.04: ...Session State: Save "P2_TEST" - saving same value: "14"
    0.04: ...Session State: Save "P2_VERZWEIGUNG" - saving same value: "10"
    0.04: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.04: ...Process "SeitecacheBeiTabbenutzungLoeschen": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) begin if :REQUEST = 'T_OBJEKTPRUEFUNG' then apex_application.clear_page_cache(150); elsif :REQUEST = 'Checkliste' then apex_application.clear_page_cache(70); end if; end;
    0.04: Branch point: BEFORE_COMPUTATION
    0.04: Computation point: AFTER_SUBMIT
    0.04: Tabs: Perform Branching for Tab Requests
    0.04: Branch point: BEFORE_VALIDATION
    0.04: Perform validations:
    0.04: Branch point: BEFORE_PROCESSING
    0.04: Processing point: AFTER_SUBMIT
    0.06: ...Process "ZAEHLEN": PLSQL (AFTER_SUBMIT) declare begin if :P2_TEST is null then :P2_TEST := 0; else :P2_TEST := :P2_TEST + 1; end if; end;
    0.06: ...Session State: Saved Item "P2_TEST" New Value="15"
    0.06: Branch point: AFTER_PROCESSING
    0.06: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: (No Button Pressed) branch: DELOBJ
    0.00:
    0.00: S H O W: application="119" page="2" workspace="" request="" session="7378203318791280"
    0.00: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: de
    0.00: alter session set nls_language="GERMAN"
    0.00: alter session set nls_territory="GERMANY"
    0.00: NLS: CSV charset=WE8MSWIN1252
    0.00: ...NLS: Set Decimal separator=","
    0.00: ...NLS: Set NLS Group separator="."
    0.00: ...NLS: Set date format="DD.MM.RR"
    0.00: ...Setting session time_zone to +02:00
    0.00: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.00: ...NLS: Set date format="dd.mm.yyyy"
    0.00: NLS: Language=de
    0.00: Application 119, Authentication: CUSTOM2, Page Template: 2590530752563296
    0.02: ...Session ID 7378203318791280 can be used
    0.02: ...Application session: 7378203318791280, user=PinnoM
    0.02: ...Determine if user "ADMIN" workspace "2588910730292471" can develop application "119" in workspace "2588910730292471"
    0.02: ...Check for session expiration:
    0.02: Session: Fetch session header information
    0.02: Saving g_arg_names=P2_VERZWEIGUNG and g_arg_values=10
    0.02: ...Session State: Save "P2_VERZWEIGUNG" - saving same value: "10"
    0.02: ...Metadata: Fetch page attributes for application 119, page 2
    0.02: Fetch session state from database
    0.03: Branch point: BEFORE_HEADER
    0.03: Authorization Check: "3510919994954879" User: "PinnoM" Component: "APPLICATION"
    0.03: Fetch application meta data
    0.03: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.03: ...NLS: Set date format="dd.mm.yyyy"
    0.03: Computation point: BEFORE_HEADER
    0.03: Processing point: BEFORE_HEADER
    0.03: Show page template headerDebug with IE, process does not run, branch not runs
    0.00: A C C E P T: Request=""
    0.00: Metadata: Fetch application definition and shortcuts
    0.00: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=de
    0.02: alter session set nls_language="GERMAN"
    0.02: alter session set nls_territory="GERMANY"
    0.02: NLS: CSV charset=WE8MSWIN1252
    0.02: ...NLS: Set Decimal separator=","
    0.02: ...NLS: Set NLS Group separator="."
    0.02: ...NLS: Set date format="DD.MM.RR"
    0.02: ...Setting session time_zone to +02:00
    0.02: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.02: ...NLS: Set date format="dd.mm.yyyy"
    0.03: Fetch session state from database
    0.03: ...Check session 483535852931230 owner
    0.03: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.05: ...NLS: Set date format="dd.mm.yyyy"
    0.05: ...Check for session expiration:
    0.05: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.05: Session: Fetch session header information
    0.05: ...Metadata: Fetch page attributes for application 119, page 2
    0.05: ...Validate item page affinity.
    0.05: ...Validate hidden_protected items.
    0.05: ...Check authorization security schemes
    0.05: Authorization Check: "3510919994954879" User: "PinnoM" Component: "APPLICATION"
    0.05: Session State: Save form items and p_arg_values
    0.05: ...Session State: Save "P2_TEST" - saving same value: "7"
    0.06: ...Session State: Save "P2_VERZWEIGUNG" - saving same value: "99"
    0.06: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.06: ...Process "SeitecacheBeiTabbenutzungLoeschen": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) begin if :REQUEST = 'T_OBJEKTPRUEFUNG' then apex_application.clear_page_cache(150); elsif :REQUEST = 'Checkliste' then apex_application.clear_page_cache(70); end if; end;
    0.06: Branch point: BEFORE_COMPUTATION
    0.06: Computation point: AFTER_SUBMIT
    0.06: Tabs: Perform Branching for Tab Requests
    0.06: Branch point: BEFORE_VALIDATION
    0.06: Perform validations:
    0.06: Branch point: BEFORE_PROCESSING
    0.06: Processing point: AFTER_SUBMIT
    0.06: ...Do not run process "ZAEHLEN", process point=AFTER_SUBMIT, condition type=REQUEST_IN_CONDITION, when button pressed=
    0.06: Branch point: AFTER_PROCESSING
    0.06: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: (No Button Pressed) branch: DELOBJ
    0.06: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: (No Button Pressed) branch: (Unconditional)
    0.06: ...Unconditional branch taken
    0.00:
    0.00: S H O W: application="119" page="2" workspace="" request="" session="483535852931230"
    0.00: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: de
    0.00: alter session set nls_language="GERMAN"
    0.00: alter session set nls_territory="GERMANY"
    0.00: NLS: CSV charset=WE8MSWIN1252
    0.00: ...NLS: Set Decimal separator=","
    0.00: ...NLS: Set NLS Group separator="."
    0.00: ...NLS: Set date format="DD.MM.RR"
    0.00: ...Setting session time_zone to +02:00
    0.00: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.00: ...NLS: Set date format="dd.mm.yyyy"
    0.00: NLS: Language=de
    0.00: Application 119, Authentication: CUSTOM2, Page Template: 2590530752563296
    0.02: ...Session ID 483535852931230 can be used
    0.02: ...Application session: 483535852931230, user=PinnoM
    0.02: ...Determine if user "ADMIN" workspace "2588910730292471" can develop application "119" in workspace "2588910730292471"
    0.02: ...Check for session expiration:
    0.02: Session: Fetch session header information
    0.02: Saving g_arg_names=P2_VERZWEIGUNG and g_arg_values=99
    0.02: ...Session State: Save "P2_VERZWEIGUNG" - saving same value: "99"
    0.02: ...Metadata: Fetch page attributes for application 119, page 2
    0.02: Fetch session state from database
    0.04: Branch point: BEFORE_HEADER
    0.04: Authorization Check: "3510919994954879" User: "PinnoM" Component: "APPLICATION"
    0.04: Fetch application meta data
    0.04: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.04: ...NLS: Set date format="dd.mm.yyyy"
    0.04: Computation point: BEFORE_HEADER
    0.04: Processing point: BEFORE_HEADER
    0.05: Show page template headerDebug with IE, process runs, branch not runs
    0.00: A C C E P T: Request="DELOBJ"
    0.00: Metadata: Fetch application definition and shortcuts
    0.00: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=de
    0.02: alter session set nls_language="GERMAN"
    0.02: alter session set nls_territory="GERMANY"
    0.02: NLS: CSV charset=WE8MSWIN1252
    0.02: ...NLS: Set Decimal separator=","
    0.02: ...NLS: Set NLS Group separator="."
    0.02: ...NLS: Set date format="DD.MM.RR"
    0.02: ...Setting session time_zone to +02:00
    0.02: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.02: ...NLS: Set date format="dd.mm.yyyy"
    0.03: Fetch session state from database
    0.06: ...Check session 483535852931230 owner
    0.06: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.06: ...NLS: Set date format="dd.mm.yyyy"
    0.01: A C C E P T: Request=""
    0.01: Metadata: Fetch application definition and shortcuts
    0.01: NLS: wwv_flow.g_flow_language_derived_from=FLOW_PRIMARY_LANGUAGE: wwv_flow.g_browser_language=de
    0.03: alter session set nls_language="GERMAN"
    0.03: alter session set nls_territory="GERMANY"
    0.03: NLS: CSV charset=WE8MSWIN1252
    0.03: ...NLS: Set Decimal separator=","
    0.03: ...NLS: Set NLS Group separator="."
    0.03: ...NLS: Set date format="DD.MM.RR"
    0.03: ...Setting session time_zone to +02:00
    0.03: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.03: ...NLS: Set date format="dd.mm.yyyy"
    0.03: Fetch session state from database
    0.04: ...Check session 483535852931230 owner
    0.06: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.06: ...NLS: Set date format="dd.mm.yyyy"
    0.06: ...Check for session expiration:
    0.06: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.06: Session: Fetch session header information
    0.06: ...Metadata: Fetch page attributes for application 119, page 2
    0.06: ...Validate item page affinity.
    0.06: ...Validate hidden_protected items.
    0.06: ...Check authorization security schemes
    0.06: Authorization Check: "3510919994954879" User: "PinnoM" Component: "APPLICATION"
    0.06: Session State: Save form items and p_arg_values
    0.07: ...Session State: Save "P2_TEST" - saving same value: "7"
    0.07: ...Session State: Save "P2_VERZWEIGUNG" - saving same value: "99"
    0.07: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.07: ...Process "SeitecacheBeiTabbenutzungLoeschen": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) begin if :REQUEST = 'T_OBJEKTPRUEFUNG' then apex_application.clear_page_cache(150); elsif :REQUEST = 'Checkliste' then apex_application.clear_page_cache(70); end if; end;
    0.07: Branch point: BEFORE_COMPUTATION
    0.07: Computation point: AFTER_SUBMIT
    0.07: Tabs: Perform Branching for Tab Requests
    0.07: Branch point: BEFORE_VALIDATION
    0.07: Perform validations:
    0.07: Branch point: BEFORE_PROCESSING
    0.07: Processing point: AFTER_SUBMIT
    0.07: ...Do not run process "ZAEHLEN", process point=AFTER_SUBMIT, condition type=REQUEST_IN_CONDITION, when button pressed=
    0.07: Branch point: AFTER_PROCESSING
    0.07: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: (No Button Pressed) branch: DELOBJ
    0.07: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: (No Button Pressed) branch: (Unconditional)
    0.07: ...Unconditional branch taken
    0.09: ...Check for session expiration:
    0.09: ...Metadata: Fetch Page, Computation, Process, and Branch
    0.09: Session: Fetch session header information
    0.09: ...Metadata: Fetch page attributes for application 119, page 2
    0.09: ...Validate item page affinity.
    0.09: ...Validate hidden_protected items.
    0.09: ...Check authorization security schemes
    0.09: Authorization Check: "3510919994954879" User: "PinnoM" Component: "APPLICATION"
    0.11: Session State: Save form items and p_arg_values
    0.11: ...Session State: Save "P2_TEST" - saving same value: "7"
    0.11: ...Session State: Save "P2_VERZWEIGUNG" - saving same value: "99"
    0.11: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.11: ...Process "SeitecacheBeiTabbenutzungLoeschen": PLSQL (ON_SUBMIT_BEFORE_COMPUTATION) begin if :REQUEST = 'T_OBJEKTPRUEFUNG' then apex_application.clear_page_cache(150); elsif :REQUEST = 'Checkliste' then apex_application.clear_page_cache(70); end if; end;
    0.11: Branch point: BEFORE_COMPUTATION
    0.11: Computation point: AFTER_SUBMIT
    0.11: Tabs: Perform Branching for Tab Requests
    0.11: Branch point: BEFORE_VALIDATION
    0.11: Perform validations:
    0.11: Branch point: BEFORE_PROCESSING
    0.13: Processing point: AFTER_SUBMIT
    0.13: ...Process "ZAEHLEN": PLSQL (AFTER_SUBMIT) declare begin if :P2_TEST is null then :P2_TEST := 0; else :P2_TEST := :P2_TEST + 1; end if; end;
    0.13: ...Session State: Saved Item "P2_TEST" New Value="8"
    0.13: Branch point: AFTER_PROCESSING
    0.13: ...Evaluating Branch: AFTER_PROCESSING type: "REDIRECT_URL" button: (No Button Pressed) branch: DELOBJ
    0.09:
    0.09: S H O W: application="119" page="2" workspace="" request="" session="483535852931230"
    0.09: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: de
    0.09: alter session set nls_language="GERMAN"
    0.09: alter session set nls_territory="GERMANY"
    0.09: NLS: CSV charset=WE8MSWIN1252
    0.09: ...NLS: Set Decimal separator=","
    0.09: ...NLS: Set NLS Group separator="."
    0.09: ...NLS: Set date format="DD.MM.RR"
    0.09: ...Setting session time_zone to +02:00
    0.09: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.09: ...NLS: Set date format="dd.mm.yyyy"
    0.11: NLS: Language=de
    0.11: Application 119, Authentication: CUSTOM2, Page Template: 2590530752563296
    0.11: ...Session ID 483535852931230 can be used
    0.11: ...Application session: 483535852931230, user=PinnoM
    0.11: ...Determine if user "ADMIN" workspace "2588910730292471" can develop application "119" in workspace "2588910730292471"
    0.14: ...Check for session expiration:
    0.14: Session: Fetch session header information
    0.14: Saving g_arg_names=P2_VERZWEIGUNG and g_arg_values=99
    0.14: ...Session State: Save "P2_VERZWEIGUNG" - saving same value: "99"
    0.14: ...Metadata: Fetch page attributes for application 119, page 2
    0.14: Fetch session state from database
    0.16: Branch point: BEFORE_HEADER
    0.16: Authorization Check: "3510919994954879" User: "PinnoM" Component: "APPLICATION"
    0.16: Fetch application meta data
    0.16: Setting NLS_DATE_FORMAT to application date format: dd.mm.yyyy
    0.16: ...NLS: Set date format="dd.mm.yyyy"
    0.16: Computation point: BEFORE_HEADER
    0.16: Processing point: BEFORE_HEADER
    0.16: Show page template headerWho can help me?
    Regards,
    Mark

    Hi Mark
    You need to change the button template to this...
    <a class="t20Button" href=#BUTTON_ATTRIBUTES#>#LABEL#</a>And amend the button attributes to this...
    "javascript:deleteObject();"The href=#LINK# was also adding a blank doSubmit because you had no request value.
    Cheers
    Ben

  • HT4236 when i transfer photos to pc they are not in the same order - how do i get them in order

    Down loading photos to Ipad4 does not place them in the same order as in my PC
    If i rename photos eg: 1,2,3,4,5, ect it still does not transfer them in order - could some one help please

    I BELIEVE it orders them in date taken order, not name order.
    You can look for a third party app that will allow you to choose/alter the sort order, or use a program to edit the properties of the photos to give them all the same date, which will then allow the iPad to default to name order. I found a free program that'll do that, but you may want to preserve the original dates on your photos so the other photos app might be yoru best bet. I'm not familiar with any but perhaps someone can recommend one to you.

Maybe you are looking for