APEX 3.0: Different substitution behavior between 2.2 and 3.0 in HTML regio

Hi,
It looks like that I have a serious problem here, at least for me.
I have a HTML region which contains a compressed JavaScript file. It looks like that the compression produces a &b. somewhere in the code.
In APEX 2.2 that was not a problem, the &b. was not touched, because it is a non-existing application item/page item.
But in APEX 3.0 this gets replaced by <nothing>, which brakes my JavaScript code. :-(
This is quite easy to reproduce if you know what the problem is, but if you have to hunt that down in a 20.000 byte big compressed java-script code... :-)
Create a page which contains a HTML region and enter as source
This is a test:&b.Text after.
If you run that in APEX 2.2 it will output => This is a test:&b.Text after.
If you run that in APEX 3.0 it will output => This is a test:Text after.
See also http://apex.oracle.com/pls/otn/f?p=35324:1:
In the case if this is the desired new behavior, is there a workaround?
BTW, is it really useful to replace non-existing substitutions, makes it quite hard to identify typos, ...
Patrick
Check out my APEX-blog: http://inside-apex.blogspot.com
Check out the ApexLib Framework: http://apexlib.sourceforge.net

Thanks for posting this. We are working on the issue as I type.
-- Sharon

Similar Messages

  • Cloning use the different gcc version between source system and target sys

    Hi All,
    Our system is: Application tier and Database tier is split to two servers.
    We should run a cloning, but I found the different gcc version on application tier on source system and target system.
    The source application tier server is RedHat Linux ES3, gcc version is 3.2.3
    The target application tier server is RedHat Linux ES3, gcc version is 2.9.6
    There is the same gcc version on database tier on source system and target system, they are gcc 2.9.6.
    My question: Can I use the different gcc version between source system and target system when I run an erp cloning?
    Thanks & Regards
    Owen

    Not necessarily, you might get some errors if the version is higher and it is not supported by the OS. An example is Note: 392311.1 - usr/lib/gcc/i386-redhat-linux/3.4.5/libgcc_s.so: undefined reference to 'dl_iterate_phdr@GLIBC_2.2.4'
    To be on the safe side, make sure you have the same version (unless you want to give it a try).

  • Different print mode behavior between 1.5 and 1.6.

    We recently upgraded to 1.6. There seems to be some behavior that is working differently now(no other changes made).
    Here is the situation:
    I have a tabular report of projects with a link column that allows the user to go to a page of each project's detail. The column link has a passed in P50_PROJECT_ID that the detail select uses. The detail page has some general project detail information like name, project manager and this is displayed as items in an HTML region. The items are populated by a process that fires before header and selects the information INTO the item variable(:P50_PROJECT_NAME, :P50_PROJECT_START_DATE...etc). There are also two tabular reports based on SQL queries to display milestones and issues for the project. These are based on queries that have the WHERE clause using the incoming :P50_PROJECT_ID.
    On the detail page, and all other pages in the app, I have a Print navigation bar entry. This navigation entry target type is "Page in this application" and Page is &APP_PAGE_ID. Printer Friendly is checked on.
    The app was built with 1.5 and when the user went to the project detail page and clicked the Print link, it worked fine and showed all the data. After we converted the APP to 1.6, after the user selects the PRINT nav item, the page is re-invoked and the detail data shows up fine but the tabular reports show with NO DATA.
    It looks like I can fix this by changing the Print navigation bar item to SET P50_PROJECT_ID with &P50_PROJECT_ID and it works fine but I'm not sure that's the way to do it since the PRINT nav item is used on many pages(that may not use the P50_PROJECT_ID) and I'd like to know if there is a reason it's not working now and worked before?
    Any input is appreciated!
    Thanks,
    Paul

    Hi,
    I haven't used Java 6 yet, so I don't know about the performance improvements, but I don't find it strange.
    Calculations using floating points can give different results in different VM versions and on different platforms. You should declare the class to use strictfp if you want to get the same result on all implementations (that is of course slower)
    http://en.wikipedia.org/wiki/Strictfp
    Kaj

  • Different LOV behavior between SQL query data model and data template

    I have noticed different behavior when using parameters linked to list of values (LOV) of type menu with the multiple selection option enabled and a SQL query data model vs a data template. Here's the example because that first sentence was probably really confusing.
    SQL Query:
    select
    plmc.MonthCode, plmc.ModalityDim, plmc.ModalityName,plmc.RegionDim
    from
    DataOut.dbo.PatientLabMonthlyCross plmc
    where
    plmc.MonthCode = 200202
    and plmc.RegionDim = 1209
    and 1 =
    case
    when coalesce(:modalityDim,null) is null
    then 1
    else
    case
    when plmc.ModalityDim in (:modalityDim)
    then 1
    else 0
    end
    end
    Putting BI Publisher into debug mode, defining a data model of type SQL Query, defining a parameter called :modalityDim linked to a LOV that allows multiple selections, and selecting a couple of values from the LOV the output of the prepared statement is:
    [081607_122647956][][STATEMENT] Sql Query : select
    plmc.MonthCode,
    plmc.ModalityDim,
    plmc.ModalityName,
    plmc.RegionDim
    from
    DataOut.dbo.PatientLabMonthlyCross plmc
    where
    plmc.MonthCode = 200202
    and plmc.RegionDim = 1209
    and 1 =
    case
    when coalesce(?,?,null) is null
    then 1
    else
    case
    when plmc.ModalityDim in (?,?)
    then 1
    else 0
    end
    end
    [081607_122647956][][STATEMENT] 1:6
    [081607_122647956][][STATEMENT] 2:7
    [081607_122647956][][STATEMENT] 3:6
    [081607_122647956][][STATEMENT] 4:7
    [081607_122654713][][EVENT] Data Generation Completed...
    [081607_122654713][][EVENT] Total Data Generation Time 7.0 seconds
    Note how the bind variable :modalityDim was changed into two parameters in the prepared statement.
    When I use this same SQL Query in a data template the output is:
    [081607_012113018][][STATEMENT] Sql Query : select
    plmc.MonthCode,
    plmc.ModalityDim,
    plmc.ModalityName,
    plmc.RegionDim
    from
    DataOut.dbo.PatientLabMonthlyCross plmc
    where
    plmc.MonthCode = 200202
    and plmc.RegionDim = 1209
    and 1 =
    case
    when coalesce(?,null) is null
    then 1
    else
    case
    when plmc.ModalityDim in (?)
    then 1
    else 0
    end
    end
    [081607_012113018][][STATEMENT] 1:'6','7'
    [081607_012113018][][STATEMENT] 2:'6','7'
    [081607_012113574][][EXCEPTION] java.sql.SQLException: Syntax error converting the nvarchar value ''6','7'' to a column of data type int.
    Note the exception because it is trying to convert the multiple parameter values.
    Am I doing something completely wrong here? I really need to use a data template because I will need to link a couple of queries together from different database vendors.
    -mark

    This is for 10.1.3.4 - because in 11g every SQL query is automatially part of a data model.
    In 10g SQL query is for simple unrelated SQL queries.
    If you need to use advance features such as:
    a) multiple SQL queries that are joined in master-detail relation ships
    b) before/after report triggers
    Then you will need to use the data template, which is an XML description
    of the queries, links, and PL/SQL calls.
    hope that helps,
    Klaus

  • Different Browser Behavior Between enviroments.

    Hopefully someone can lend some insight on this one.
    I have an MSPS 2010 user that is having difficulties rendering pages from our non-production enviroment (basically anything with a grid control).
    Her production instance performs as intended.
    What makes this particularly puzzling is that she and I compared browser settings (IE 8) and she and I are set up the same (from what I can tell).  I am having no issues rendering in iether production and non-production.
    Any thoughts as to where I should look to further trouble shoot and resolve?  Any and all input is appreciated.
    Thank you.
    scottderd

    Also try using the browser In-Private mode and see if it behaves the same.
    And also try using Chrome or FoxFire.
    I have seen similar issues with the same browser and found out that the behavior was different because each browser had a different update version to it.  Look in the control panel and see if both are running the same patched version.
    Cheers!
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • Apex 4.1 different font text in Reports Region and Interactive reporting

    Hi everybody,
    In my APEX 4.1 page, I have two regions using the same ''Reports region" Template but font text are different. Why The first region is an interactive reporting. The second it's a report. I know that each one has his own data for sure but the same region template .Spaces between colons are different. Is it normal ?  I want to have the same font text for the two regions.
    Thanks in advance. Bye.

    Apex4.0+HTML_DB1.6 wrote:
    Theme 13 is not an APEX 4.x theme ? How I can know that is one of this serie ?
    Legacy themes are flagged with a "*" in the theme gallery. Standards mode themes are not. (I don't have access to APEX 4.1 at present to be able to identify specific themes.)
    Properties of interactive report components, is it possible to take a look on this properties or it's a "black box" ?
    You can either look in the global APEX style sheet, or (probably more usefully) use a browser web inspector to examine the CSS properties of the IR components in the page.

  • Different Exchange Rate between Daily Transactions and Tax Transactions

    Hi All,
    I would like to ask abount define Exchange Rate for tax calculation. I set our standard exchange rates (For Daily Transactions) by using exchange rate type 'M'. But I want to calculate the tax element using exchange rate type 'T'. It is because there is a different exchange rate which is used for Daily Transaction and Tax Transactions. Does anyone know a way of doing this in config to separate this exchange rate for tax calculation?
    Thanks for any help,
    John

    I think its a bit misleading...The requirement is to post an Invoice with a base taxable amount of  Exchange Rate A and a tax amount of Exchange Rate B. The Base Currency is JPY and the System Currency is SGD. So the Report S_ALR_87012357 should see the amount in SGD there. The Issue is caused by the different exchange rate on the tax amount submitted by the Vendor Invoice.
    Example: Vendor Invoice Amount: 926,413.00 JPY, then we created PO to Invoice with Base Currency JPYalso amounted 926,413.00 JPY. However, in the Vendor Invoice Amount, the Tax Chargeable is 923.00 SGD (based on their exchange rate 65.66 JPY per SGD). But our Exchange Rate (System Rate) is 63.49 JPY per SGD. How can we reflect the Tax Amount as 65.66 JPY but still the correct SGD amount is based on the Vendor Original Invoice Exchange Rate 65.66 and not the System Exchange Rate, 63.49 in the same Invoice Creation (MIRO)?

  • Different configuration issues between the DEV and QAS

    Dear friends,
    I have 2 synchronize soap-xi-proxy and proxy-xi-soap scenarios, therefore I create a business service 'customer'  and the soap communication channels.
    In the DEV environment, I have only one client (DEV_100) for the unit test, so there's no problem.
    Unfortunately in the QAS environment, we have several clients: QAS_500 for integration test, QAS_600 for UAT, QAS_700 for the end user training, as the test schedule can't be one by one in order, I have a requirement that I must support the multiple tests in the same time.
    I could transport the configuration objects with different transport targets for the proxy-xi-soap scenario and use the virtual receiver for the soap-xi-proxy scenario, but it looks like ugly and we need to have at least 3 times configuration objects when comparing to the DEV environment.
    Could anybody tell me how we design or transport the configuration scenarios better for achieving the requirement?
    Thanks and regards,
    Bean

    Hi bean,
    Please have a look at the following link and see if it helps you.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ac6de690-0201-0010-54ac-8923089dcc97
    Best Regards
    sorry, I didn't find any information which could help me in this scenario, anyway thanks so much for your kind help.

  • Different final price between apple online and email

    Order Number: W445685513
    the final price in apple online store is
    Order Total $426.93
    but in my received email is
                          $422.94
    why is different?

    You should contact the store and ask. Nobody here has access to your account and order details.

  • Very different color noise between develop module and library

    There is a marked difference in the appearance of an image when viewed in the library versus the develop module. The color noise in the library module is very bad, while in the develop module, the noise reduction is doing a pretty good job. This is strictly a view problem, because if I export from the library, the proper color noise reduction is applied and it appears as it does in the develop module. This is not the first time that I have found this problem between the two modules. Any idea why this is happening? And, is there a fix in the works? It makes it hard to view images in the library.
    If I boost the color noise reduction up to 100, the library image starts to look ok, but that doesn't account for the huge difference at lower settings.
    There is also a dramatic slow down in the develop module when trying to make any of these changes in noise reduction and more, and also in side-by-side when trying to scroll around in the image to compare areas. Things really crawl. There is a definite two or three second delay before things respond. I have 8gigs in this mac pro, which worked beautifully with LR 3.6

    And, is there a fix in the works?
    Try rendering 1:1 previews for noisy images.

  • Different billing periods between phone line and b...

    hi, can anyone  tell me why my billing periods with my phone line and broadband are different ie i took out the phone and broadband package on the same day .the end of my usage date for my phone line and calls was yesterday 19th dec but my broadband usage does not finish until the 31 dec .

    broadband usage is calendar monthly - check the usage monitor at BT.com
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Different commitment item between FI/CO and FM

    hi,
    We have defined a commitment item group 506 and two sub commitment items 70 and 90 which are Directly postable in Former Budget Structure Template. And these sub commitment items was defined in the G/L account master record.
    We park FI documents all through using commitment items 70 and 90. But I find some Funds Center only commitment item group 506 displayed in Report FMRP_RFFMTO30X.
    Our DEV system have a client copy from PRD at 2008.6.1. In DEV system I find some Funds Center displayed commitment item 70 and 90 in Report FMRP_RFFMTO30X. That mean these commitment items is right before 2008.6.1, Some operates made budget controlling changed from 70 and 90 to 506.
    I want to know, which operates could make this and how can I revert.
    Loren

    Hi,
       Please read note 429517: INFO: Currency translation Billing document -> CO-PA
       This note clearly explains how the currency translation takes place
    regards
    Waman

  • Different time zones between R/3 and APO

    Hi experts,
    Can anyone explain me which is the impact in having the R/3 in local time zone ( CDT, for example) and the APO in UTC?
    Thanks in advance,
    Regards,
    Gyo

    I believe you are mentioning about the SYSTEM TIME ZONE.
    (Use transaction- STZAC to view it.)
    Generally it is recommended that you maintain the same system time zone in APO similar to the time zone in R3.
    However I remember in one of my implementation projects-4.1 SCM, we just left the SYSTEM TIME ZONE in APO to the default value given by SAP --(CET) whereas in R3 ,it was maintained as GMT.
    (1) There were no issues as far as I remember.
    (2) However we changed it to UTC/GMT( same time zone as that of R3) in APO after Go-Live with no issues at all
    *We had our Basis Team contact SAP and they said that we could do so without any harm*
    The reason for our change was that we wanted the BAck Order Processing results to update immediately based on
    "1.1     Checking the Time Zone in SAP SCM
    Use
    This is an optional activity. Depending on your deployment of your SCM and ERP systems, the appropriate time zone should be customized in your system landscape. However, if you want to get the Backorder Processing result updated in the SAP ERP immediately, you’d better to set the two systems in the same time zones. You can get more details from the SAP note 443500.
    http://help.sap.com/bp_bblibrary/500/documentation/T12_BB_ConfigGuide_EN_ZH.doc"
    Also all the objects( Locations, Resources ..etc) should have a timezone maintained- Some of the them are automatically determined from R3 and sometimes you have to maintain.
    Regards
    Kumar Ayyagari

  • Differing Sync Schedule Between Contacts, Calendar, and Email

    On the iPhone 3G, running OS 3.1, is it possible to set up an Exchange account such that calendar or contacts changes are pushed out automatically, and email is set to "Manual"?
    Dan

    bump

  • Could i have different apple id between app store and in cloud ?

    I have problem that i have told before. I have so much redeem, but it could not be used to increase my icloud (only for credit card / debit card).
    Therefore, could i have difference apple id, the old one for appstore and new apple id for icloud ?
    Need information!! Thank you so much

    Hai Laxman,
    Sorry to disturb you again.
    Actually i am new comers for ipad, i will explain my problem.
    I have apple id (region : usa) to buy any apps from appstore. I always buy apps with redeem.
    One day,  I used the id for my icloud. But i have been informed by apple that my icloud almost full. I know i cannot buy storage with my redeem, only with credit card or debit card.
    I live in another country, i want to create new id for icloud and put my credit card in the new id for buy storage purposes.
    Is it possible ? You said i could have id for appstore and could have another id for icloud, is it mean i have 2 apple id ? One for appstore and one for icloud ?
    Sorry for asking again....

Maybe you are looking for