DB Adapter-Are watches available for all Adapters or just transparent ones?

I'm looking at the DB Adapters and specifically the ability to "Pull for a New or Changed record in a table" in ESB.
Does anyone know if this is just available for databases' that support a transparent gateway, or is this supported somehow with generic gateways too?
Thanks for any assistance.

Also are there any changes or additional features in the 11G implementation i this area?
Has anyone used these adapters with MySQL as part of an ESB process?
Thanks

Similar Messages

  • New DSO data fields are not available for transformations in the upwardflow

    Hello,
    There are data flow from
        many source DSOs -> Target DSO -> Final DSO.
    Different transformations are defined and activated with DTPs. This works fine and provides the desired results.
    now new fields are added to the target DSO, final DSO and one of the source DSO.
    When I now try to edit the transformations, the new fields are not part of the sources at the different stage.
    The fields are available in the Data Source created out of a DSO but not directly when using a DSO as a data source.
    Have anyone faced such a problem?
    any solutions to this?
       - I cannot delete all the other transformations as this is too much work to do and there is no time for it.
    Regards
    Kannan

    We created ZMD_BS_MAT_OVP_LAYOUT. But the situation has not changed - the fields are not available for edit.

  • IPhone 4S, Mail- when in inbox, and search a term ie Macy's, click edit to delete, the option dot isn't available for all. Therefore can't delete all the required emails.

    As mentioned, when in my inbox I search for a term ie Macy's so I can find, select and delete some or all of the resulting emails. However, the option button where I select the ones I want to delete is not available for all of the emails that are in the results.
    In looking for differences in the results, I can't see any. Using the Macy's example, all the resulting emails are from the same address and yet some have the dot-option but so it can be selected to delete while others don't.
    Its a gmail and a hotmail account together.
    It's a little frustrating as I'm trying to clean out my inbox and it had a 540 badge count that's annoying me every time I look at it but I really don't want to delete individually.
    Any suggestions would be appreciated.
    Oh and if I come out of the search and try again, even Jess option-dots come up than before.

    Any help would be appreciated - even if maybe the question isnt understood so I can word it differently? Does anyone else have this issue?

  • Latest MediaSource Plugins for various Creative MP3 Players are now available for downl

    Just went to the product support site. Guess what? The latest MediaSource plugins for the various Creative MP3 Players are now available for download. I am sure the latest plugins should have fixed several problems.
    Don't forget to download the latest Creative MediaSource v3.30.2 too. Install the latest Creative MediaSource first before you install the MediaSource Plugins of your respecti've MP3 Players.
    Note: According to the download site, the latest MediaSource plugins require you to have at least v3.20.57 of Creative MediaSource.

    Thanks micromouse
    ... but there's no new plugin for the original Jukebox
    I've always had trouble connecting to MediaSource with my JB and was hoping for a new plugin to sort all my problems.
    PB

  • How to make saved IR available for all users

    Hi,
    I've created IR and saved it to several tabs based on search conditions.
    But they're only visible for developers.
    How to make these tabs available for all end-users ?
    Does version 4.0 support this option ?
    Thank you!

    Hi
    At present this feature is not included, although I believe it may be in 4.0. Many people have provided workarounds for this. None of which I have tried. I cannot find the original thread but here is a solution from a chap called Ruud
    >
    One way to share your saved reports with others is to 'Publish' your report settings to a few intermediate tables in your application and have other users 'Import' your settings from there. The reason for using intermediate tables is so that not all your saved reports need to be 'visible' to other users (only those that you've chosen to publish).
    Basically you have available the following views and package calls that any APEX user can access:-
    - flows_030100.apex_application_pages (all application pages)
    - flows_030100.apex_application_page_ir_rpt (all saved reports - inclusing defaults and all user saved reports)
    - flows_030100.apex_application_page_ir_cond (the associated conditions/filters for above saved reports)
    - wwv_flow_api.create_worksheet_rpt (package procedure that creates a new saved report)
    - wwv_flow_api.create_worksheet_condition (package procedure that creates a condition/filter for above saved report)
    The way I've done it is that I've created 2 tables in my application schema that are straightforward clones of the 2 above views.
    CREATE TABLE user_report_settings AS SELECT * FROM flows_030100.apex_application_page_ir_rpt;
    CREATE TABLE user_report_conditions AS SELECT * FROM flows_030100.apex_application_page_ir_cond;
    ( NB. I deleted any contents that may have come across to make sure we start with a clean slate. )
    These two tables will act as my 'repository'.
    To simplify matters I've also created 2 views that look at the same APEX views.
    CREATE OR REPLACE VIEW v_report_settings AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_rpt r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND r.session_id IS NULL
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    CREATE OR REPLACE VIEW v_report_conditions AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_cond r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    I then built 2 screens:-
    1) Publish Report Settings
    This shows 2 report regions:-
    - Region 1 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT apex_item.checkbox ( 1, report_id ) " ",
    page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY page_name,
    report_name
    Each row has a checkbox to select the required settings to publish.
    The region has a button called PUBLISH (with associated process) that when pressed will copy the settings from
    V_REPORT_SETTINGS (and V_REPORT_CONDITIONS) into USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    - Region 2 - Shows a list of already published reports in table USER_REPORT_SETTINGS (again filtered for your user)
    SELECT apex_item.checkbox ( 10, s.report_id ) " ",
    m.label,
    s.report_name
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user = :APP_USER
    AND ( s.page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY m.label,
    s.report_name
    Each row has a checkbox to select a setting that you would like to delete from the repository.
    The region has a button called DELETE (with associated process) that when pressed will remove the selected
    rows from USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    NB: P27_REPORT is a "Select List With Submit" to filter the required report page first.
    Table MENU is my application menu table where I store my menu/pages info.
    2) Import Report Settings
    This again shows 2 report regions:-
    - Region 1 - Shows a list of all published reports in table USER_REPORT_SETTINGS (filtered to show only other users saved reports)
    SELECT apex_item.checkbox ( 1, s.report_id ) " ",
    m.label,
    s.report_name,
    s.application_user
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user :APP_USER
    AND ( s.page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY m.label,
    s.report_name,
    s.application_user
    Each row has a checkbox to select the setting(s) that you would like to import from the repository.
    The region has one button called IMPORT that when pressed will import the selected settings.
    It does this by using the 2 above mentioned package procedure to create a new saved report for you
    with the information form the repository. Be careful to match the right column with the right procedure
    parameter and to 'reverse' any DECODEs that the view has.
    - Region 2 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY page_name,
    report_name
    This is only needed to give you some feedback as to whether the import succeeded.
    A few proviso's:-
    a) I'm sure there's a better way to do all this but this works for me :-)
    b) This does not work for Computations! I have not found an API call to create computations.
    They will simply not come across into the repository.
    c) If you import the same settings twice I've made it so that the name is suffixed with (2), (3) etc.
    I did not find a way to update existing report settings. You can only create new ones.
    d) Make sure you refer to your saved reports by name, not ID, when matching APEX stored reports and the
    reports in your repository as the ID numbers may change if you re-import an application or if you
    auto-generate your screens/reports (as I do).
    Ruud
    >
    To me this is a bit too much of a hack and I personally wouldn't implement it - it's just an example to show it can be done.
    Also if you look here in the help in APEX Home > Adding Application Components > Creating Reports > Editing Interactive Reports
    ...and go to the last paragraph, you can embed predicates in the URL.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)
    Edited by: Munky on Jul 30, 2009 8:03 AM

  • How can I know about the latest updates / versions which when available for all the CC products, without having to install and check it with the Desktoip Creative Cloud Application ?

    How can I know about the latest updates / versions which when available for all the CC products, without having to install and check it with the Desktoip Creative Cloud Application ?

    Thanks for looking into this Jeff!
    I work with an Inventory module software and is responsible for software detection across several computers. Once an updated version comes up, I update our database with latest software details to get it detected if installed on any machines.
    The problem tracking updates with Desktop Creative Cloud Software are;
    1)We have to have it installed with the CC applications in-order to get the notification of the latest updates and have to check everyday.
    2)Only relates to the latest updates, so in-between we may miss a prior update unknowingly.Hence, the remote machines having those updates may not get  detected with the software version update which would create problem in reporting.
    3)For all CC products, there is no base or previous updates available for installation if we miss one.
    I went through the Adobe Products Update pages [Product updates] which holds good when it comes to Acrobat and Reader software which I follow to track down any newer updates but this is inconsistent when it comes to CC products like in After Effects CC, Dreamweaver CC etc...
    So overall to be very specific, is there any one channel I can follow to get the notifications only for the updates on CC products and then may be I can rely on Desktop Creative Cloud for installation if not available anywhere like in product update pages of Adobe ?
    Regards,
    Subrat

  • Is it possible that theseproperties are only available for files and not f

    Hello All,
    I have created few properties like ReqNo (takes Integer) and ReqDate (accepts Date). 
    I have set the above 2 properties as manadatory. Created a Group and added his goug in 'allgroups' such that I see a tab wherein I can fill in these properties.
    My questions is:
    <b>Is it possible that these properties are only available for files and not for folders</b>. The reason being that even if I create a new folder, I need to fill some values in the above two mentioned properties.
    These properties need to be mandatory and cannot make them optional.
    Please help me solve this mystery.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu

    Hi Ritu,
    If you only want the property to be available for files and not folders you only enter data into the "Document Validity Patterns" field in the Property config.
    Regards
    Paul

  • Sharing Folio - Source .indd files are not available for this article

    when sharing a folio, and opening it up in indesign 5.5 all articles say:
    "Source .indd files are not available for this article"
    What is the point of sharing if you can't change articles and update them?

    Because you’re not sharing the InDesign files, you’re sharing the folio.
    Pretty similar to sharing a PDF but not the source files.
    That said, I’m working on a project with someone else and everything sits in a Dropbox folder. Only I can update the folios but my partner has access to the InDesign files.
    Bob

  • HT203167 My movies will not download to my iPad. And I the downloads are not available for my computer. How do I cancel or get the movies to my iPad? I am on wifi and 3 g. Not happy

    My movies will not download to my iPad. And the downloads are not available for my computer. How do I cancel or get the movies to my iPad? I am on wifi and 3 g. Not happy

    Hi,
    For all people struggling with connecting their iPad to their router, constantly getting 'Incorrect Password' even though you have entered the correct one - this may be your solution as it just resolved my issue.
    In your router settings online (usually found at 198.168.1.1) change your security from WPA2 or WEP to WPA.  For my iPad it for some reason only accepts WPA but now it is running without problems.  Let me know if this helps.
    Cheers.

  • I just bought a Mac Book Pro and the Appstore show one upgrade of iPhoto (9.2.1). I started a section with my Apple ID (the account that I have I use to iTunes) but when I try to update it says that there are upgrades available for other accounts and that

    I just bought a Mac Book Pro and the Appstore show one upgrade of iPhoto (9.2.1). I started a section with my Apple ID (the account that I have I use to iTunes) but when I try to update it says that there are upgrades available for other accounts and that I have to upgrade using the account that I used to buy iPhoto. What do I have to do to upgrade iPhoto?

    Dear Katty,
    Thank you very much for your answer! I have 2 Apple ID, and I have tried both of them and the problem continues. I founf several peolpe with the same problem in apple communities foruns and that really seems that there is some problem. I addded the links for 2 of those discussions.
    https://discussions.apple.com/thread/3374419?start=0&tstart=0
    https://discussions.apple.com/message/16628399#16628399
    Do you have an idea of how can I solve this problem?
    Thank you very much again.
    Best regards,
    Alfonso

  • Ibooks top sellers & other books are not available for us to purchase in India.

    Top seeling ibooks & other books within the ibooks store are not available for purchase in India except for some free classics.
    When will the topselleing books within ibooks store be available for us to purchase?

    No-one knows. It depends on when Apple decide to open an iBookstore for India.
    In the mean time, you could create an Apple ID in the US store without a credit card and use iTunes gift cards to buy things. Gift cards are available on eBay. (I have never done this, but heard a number of reports from people who have and were happy with this approach.)
    Michi.

  • When ios5 is going to be available for all the devices ?? ??

    hey, i been waiting for ios5  since forever and i want to know when is it going to be available for all Apple devices !! if you have any info plzz tell me even if it's some randome thoughts. i'll accept it thank you !!

    correct. And once ios5 is on a device it can be synced via wifi to both itunes and the icloud. Softwareupdates over the air. You only need that cable to charge the battery . That makes our devices real independant .

  • HT1338 Is iMovie 11 available for all mac's that can run lion?

    Is iMovie 11 available for all mac's that can run lion?

    Yes
    Edit:  If you're asking if it comes with Lion then No.  It has come standard with Macs for years.

  • Bug SDK-17114  flex.effects.Rotate - Selection Glow Is Rotated For All Objects (Not Just Effect.Target)

    Re: Bug SDK-17114 flex.effects.Rotate - Selection Glow Is
    Rotated For All Objects (Not Just Effect.Target) at
    http://bugs.adobe.com/jira/browse/SDK-17114.
    Looks like this bug was fixed as of yesterday - I'd like to know
    when there will be a patch available to users. I bought Flex 3 just
    in the last few weeks, so it would be nice if I could get a free
    patch. However, my main concern is how to do a workaround. I can't
    deliver my application with this problem, and if the patch is not
    available, I don't have an alternative. Is there a way to access
    the selection rectangle object and set its rotation
    explicitly?

    Thanks, Michel.
    I forgot to mention one point about copying shape layers into one shape layer:  when you initially use the Shape Selection tool to select a shape for cutting, make sure the option for the Shape Selection tool is set to "Add to Selection".
    MichelBParis wrote:
    The problem with Elements+ is that it has so many features you soon forget what it can give you !
    Truer words were never spoken! 
    Ken

  • Is GB 9.0.4 update today at App Store needed for all users, or just for Lion? Will it be in Software Update or is it paid update only? Please clarify

    Is the GB 9.0.4 update today at App Store needed for all users, or just for Lion? Will it be in Software Update or is it paid update only? Please clarify.

    I sure hope you are correct, Christoph. Seems one Mac site has questioned this also:
    http://www.tuaw.com/2011/07/11/iphoto-garageband-and-imovie-updated-in-mac-app-s tore/
    No iWeb updates either way so far. Not that I use it, just an observation.

Maybe you are looking for