Why substitution strings are keeping old value in translated application even after seed/publish?

Hi,
Recently I have notice a small but from the point of view of our customer "big" issue. We have defined in our application some substitution strings to keep more detailed information about the version of the application. They are later used in page templates to show mentioned info to the end users. Recently I had to update value of one of the substitution strings. The change is immediately visible in main application. Unfortunately it is not the case for the translated application. For some reason old value is kept. Even after doing "Seed" -> "Apply translation file" -> "Publish". It is still preserving the old value. I have tried to use "Translatable" checkbox in the template. In the translation file it is showing properly substitution string in the "source" and "target" tags but still it is resolved to the old value.
We are using APEX 4.2.2.00.11 running on 11g.
Waiting for any suggestions as maybe it is me forgetting about ticking somewhere additional "checkbox". Thank you in advance.
Greetings,
kempiak

It was my mistake. Value of the substitution string is included in the translation file. I have changed it there and it works perfectly.
Greetings,
kempiak

Similar Messages

  • TS4147 I keep finding old contacts on my iPhone even after I delete them off iCloud.  What's up?

    I keep finding old contacts on my iPhone even after I delete them off iCloud.  What's up?  Why do they keep appearing?

    Have you cleaned out the dock connector of any fluff or junk in there?

  • Check old value of MM42 characterisitcs Tab after change

    Hi Guru,
      is there any way to Check old value of MM42 characteristics Tab after change?
    i had tried using CDHDR & CDPOS table to check any updates in MM42, but it only store the date of update, not the actual value/old value of i changed.
    Regards,
    Howard

    any idea?

  • Why do I keep getting the windows messenger error even after disabling it?

    Hi,
         I am trying to download the flash player 10 on my windows XP computer. I get the error(s) close "Internet Explorer" and close "Windows messenger" during download. I closed Internet Explorer ok, but still keep getting the Windows messenger error even after stopping it and disabling it. I also have IT on medium and firewall and antivirus disabled.
       How do I fix this problem. Please help. I need a flash player for work...Thanks
    Nitrowizard88

    ok, Here is whats listed
    flash10l.oxc active x control
    flashinstall, log
    flashutil10l_activex.dll
    flashutil10l_activex.exe
    genuist.exe
    kb923789.inf
    install.log
    I think I am running IE7
    32 bit..not sure on this...

  • Old X-Fi Platinum unrecognized even after installing drivers

    Old X-Fi Platinum unrecognized even after installing drivers? I've got an old X-Fi Platinum card I bought more than 2 years ago (Model SB0460). When I first installed it a couple years ago (on Windows XP), it worked fine for a few months, then I started having issues about every 5th bootup where the card wasn't recognized. Simply restarting the computer would usually work. But after awhile, it finally quit being recognized. I thought maybe it was a problem with the drivers, which were old and buggy, so I took the card out and shelved it for a year and a half. I re-installed it today using the new drivers (2.8.0008), and everything installs fine until I reboot. Then I get the same old "Found new Hardware: Multimedia Audio Controller" popup every time, and the X-Fi drivers (that were there before the reboot) are nowhere to be found in the device manager list. ?
    Is this a hardware problem or a software problem? This is a fairly new XP installation, and I spent weeks doing new installs and reformats a couple years ago when I had the original problem and that never helped, so I'm thinking it must be either the card is dead or a hardware conflict. FWIW, I'm using a Dell XPS 40 with the onboard audio disabled in the bios. Thanks.

    I have the same problem! Running 32-bit XP SP2, Core 2 Duo with ASUS P5B Deluxe, with a MIDI keyboard plugged into the Li'veDri've of my X-Fi Platinum. Driver version 5.2.6.87 from 8/7/2006. Everything else on my computer works after I come back from standby, but not MIDI input. Most infuriating. The worst part is I know this will never be fixed...

  • The "Install Flash Player.app keeps popping up on my desktop even after ejecting it -MacOS10.9

    The "Install Flash Player.app keeps popping up on my desktop even after ejecting it - I'm running MacOS 10.9 and a registered user of Creative Cloud. The install app is an older version and won't install because I'm already running a newer version. How do I get rid of this installer?

    Test your flash by going to this link, http://www.adobe.com/software/flash/about/

  • Why are old PIR's not deleted even after doing MD74 & MD75??

    Hi All,
    In few materials; i am not able to delete old PIR's??
    Even though i have performed MD74 & MD75 (which covers 2 days) i.e. whenever i do this; PIR's which are old than this limit are deleted, but there are few materials of 6-8 months still showing in MD04. Because of which there are major issues in MRP calculations..
    I think in this case PIR's are seemed to be partly consumed...but i am not able to relate this.......please clarify and how can this problem be solved permanantly
    Rgds

    Hi Vicky Khabrani,
    You can check with t code MD73 to see how the PIRs are related with sales orders. In the case of strategies like 40, 50 & 60 when SO is entered the SO consume the PIRs.
    Subsequently if any of these SO are canceled or If the SO qty reduced, still the PIR will have  the link with the SOs.
    With the re-organisation function we can  delete only those PIRs which are not linked with any SOs....
    Regards,
    Ramasamy

  • Value not getting maintained even after maintain in some situations

    hi experts,
    we work on service contracts.
    when a line item is entered, a value( iv_eos_i.) is set Yes/No depending on  some custom logic in the line item level
    this value is then maintained in the crmd_customer_i table using crm_customer_i_maintain_ow
    but to my surprise, sometimes this value is blank even after maintain. This is not replicable while debugging
    i tried commit work and wait , but client does not want this approach
    Please suggest alternatives
    Please anything...
    please find the code
    DATA: lt_input_fields          TYPE  crmt_input_field_names_tab,
             ls_customer_i            TYPE  crmt_customer_i_com,
             ls_input_fields          TYPE  crmt_input_field_names.
    *--Fill in CUSTOMER_I
       ls_customer_i-ref_guid           =  is_orderadm_i-guid.
       ls_customer_i-zzew_lg_eos_date   =  iv_eos_date.
       ls_customer_i-zzew_lg_eos_i      =  iv_eos_i.
       ls_customer_i-mode               =  gc_create.
    *--Fill in Input Fields
       ls_input_fields-fieldname    =  gc_eos_i.
    *  ls_input_fields-changeable   =  gc_x.
       INSERT ls_input_fields INTO TABLE lt_input_fields.
       CLEAR ls_input_fields.
       ls_input_fields-fieldname  =  gc_eos_date.
       INSERT ls_input_fields INTO TABLE lt_input_fields.
       CLEAR ls_input_fields.
       CALL FUNCTION 'CRM_CUSTOMER_I_MAINTAIN_OW'
         EXPORTING
           is_customer_i_com          = ls_customer_i
    *   IV_EXTERNAL_CALL           = gc_x
         CHANGING
           ct_input_field_names       = lt_input_fields
      EXCEPTIONS
        item_change_error          = 1
        item_create_error          = 2
        error_occurred             = 3
        OTHERS                     = 4
       IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    Thanks,
    Sangeetha

    Hi sangeetha ml,
    Can you please let us know what the client doesnt want?
    Only Commit work or any sort of commit FM?
    Regards,
    Ankita

  • Ipad keeps freezing .... Even after hard reset . . . Reset back to factory . . Etc.    is it dead?

    Ipad keep freezing up ?? Even after all the resets . .  Etc.  am I toast ?

    "so I did a hard reset, tried to restore it. But not I cannot not even open my iPad"
    Just to reiterate what Tedfixit said - I would book an appointment at the Genius Bar as well. If you restored it and it is still acting up, the device should be evaluated.

  • HT201209 Whenever I hit redeem it keeps prompting me to sign in even after I have signed in it just keeps popping up. What do I do?

    Whenever I try to redeem my itunes gift card on my ipod it keeps prompting me to "hit continue and sign in" Even after I sign in the same "sign in" screen keeps popping up. What do I do?

    I am having the same issue when on my Macbook pro. However when i access the iTunes store from my iPhone and click "Redeem" it prompts me to sign in and works no problem. But when I do the same on my laptop the sign-in popup just keeps appearing and I never get to the redeem page. It's very strange.
    If anyone has figured this out please reply.

  • Why can't I play AVI movies using quicktime?  Even after downloading a apple app to do so.  I only get audio.

    Why can't I play an avi extension movie in quicktime even after I downloaded an app from the app store?  I only get audit no video.

    http://perian.org

  • [Photoshop CC (Win7 64bit)]  Adjustment Layer keeps old value when I made undo.

    Undo in Adjustment layer in Photoshop CC doesn't work well.
    When I made undo, the photo would go back, but "Properties Panel" doesn't go back. It still keeps the same value before undoing.
    Properties Panel would go correct value, after I select a another layer and select adjustment layer again.
    I checked all of adjustment layers, and I found that most of them has the same behavior. (Between Brightness/Contrast... and Selective Color...)
    Are there any solution?
    What version of Photoshop : 14.0
    Have you installed the recent updates?: Yes
    What operating system? : Windows7 64bit
    What kind(s) of image file(s)? : any kind
    If you are getting error message(s), what is the full text of the error message(s)? : no message
    What were you doing when the problem occurred? undo
    Has this ever worked before? no (CS6 works well)
    What other software are you running? Google Chrome
    Tell us about your computer hardware. RAM16GB Free space on C: 80GB
    Has this ever worked before? : no

    I'm moving this post from this forum for photoshop-dot-com (an online portal) to the correct forum for Photoshop pro users like yourselves, where your question can be answered.
    FYI, the correct forum URL is: http://forums.adobe.com/community/photoshop
    Since you've posted in this forum for Photoshop.com, you may receive additional posts in this forum unless you update your profile.  After signing in on these forums, go to Your Stuff > Forums, and disable any forum you don't want to watch.
    Kind regards,
    Charlie

  • Update a column keeping old values and adding new one

    I have to update a column...
    Select * from test;
    RULE_NBR TYPE_TEXT
    30     AAX,AAR,AAV,AAB,AAK
    40     BBD,WWN,AAF,AAB,AAK
    now I have to add BBB,WWW where rule_nbr = 30 and CCC,TTT where rule_nbr = 40
    so this update stmt will do...
    UPDATE TEST
    SET type_text = 'AAX,AAR,AAV,AAB,AAK,BBB,WWW'
    WHERE rule_nbr = '30';
    update test
    set TYPE_TEXT = 'BBD,WWN,AAF,AAB,AAK,CCC,TTT'
    where rule_nbr = '40';
    Just wondering is there any other way to update the same

    user1692585 wrote:
    I have to update a column...
    Select * from test;
    RULE_NBR TYPE_TEXT
    30     AAX,AAR,AAV,AAB,AAK
    40     BBD,WWN,AAF,AAB,AAK
    now I have to add BBB,WWW where rule_nbr = 30 and CCC,TTT where rule_nbr = 40
    so this update stmt will do...
    UPDATE TEST
    SET type_text = 'AAX,AAR,AAV,AAB,AAK,BBB,WWW'
    WHERE rule_nbr = '30';
    update test
    set TYPE_TEXT = 'BBD,WWN,AAF,AAB,AAK,CCC,TTT'
    where rule_nbr = '40';
    Just wondering is there any other way to update the sameYou can do something liek below..But few questions - Why are you storing data like this..It is against normalization concept..You should store the RULE_TEXT values in multiple rows.That is how you should design your data model in an RDBMS
    update test
    set type_text = type_text||decode(rule_nbr,30,',BBB,WWW',40,',CCC,TTT')
    where rule_nbr in (30,40);Edited by: jeneesh on Apr 25, 2013 2:28 PM

  • Why does my T-Bird keep showing read messages as 'unread' even after recatagorizing them repeatedly?

    Running T-Bird 24.4.0 on Win 7 PC.
    I have several 'bugs' to address.
    1) Although I've transferred thousands of old e-mails to 'Achieves', have 'compacted' every file repeatedly [see: Unable to write the email to the mailbox'], I still get the 'Unable to write...' error message requiring me to <Enter> for each individual message to download the bulk of my e-mail from my Yahoo!' mailbox.
    2) Regardless of how many times I've recategorized my saved e-mail to 'read', they continue to come up, randomly, as 'unread' every time I open T-Bird.
    3) Regardless of how often I select <View>, <Sort by>, <Descending>, my mail keeps being displayed in 'Ascending' order.
    I have many thousands (10 yrs +) of saved e-mail in my system (my T-Bird backup folder is 11.6 GB).
    Any and all replies will be much appreciated.
    Marshalldoc

    Would doubt CCleaner involved. Doesn't run continuously and I only run it about once a month. Tried 'repair state' didn't see any changes. Have been fighting the 'Unable to write...' issue over a year. Have read many pages regarding it (http://forums.mozillazine.org/viewtopic.php?f=39&t=1760715
    http://kb.mozillazine.org/Profile_backup
    http://kb.mozillazine.org/Keep_it_working_%28Thunderbird%29
    http://kb.mozillazine.org/Profile_folder_-_Thunderbird#Windows_Vista_and_7
    http://kb.mozillazine.org/Performance_%28Thunderbird%29) etc, and have tried to follow their recommendations. Have recently noted much improvement in downloads to files although I don't know why.

  • A third party app keeps showing in my podcast app even after restoring as a new phone.  Why?

    A third party app that I've used for a long time through iTunes to download a specific podcast not available through the iTunes store has gotten a bit messed up.  I've used this for 3+ years with no problem. Lately though the name of the podcast will show up as an empty folder even though I've downloaded and synced it up.  The episodes may stay for about 24 hours but then the app disappears from inside of iTunes and all the episodes are deleted.  I've removed the app, reinstalled it, etc., and the same thing happens.  I restored the phone from a back up, same problem.   I even set the phone up as new and this same empty folder was on the iPhone immediately.  That I don't understand...how is that even possible?
    I'm not sure why wiping the phone and setting up as new made the folder appear.  Not sure what role, if any, iCloud plays in seeing this sort of app?
    Thanks.

    I solved this through a combo of reinstalling the app and removing it but the real kicker is to make sure to go into the iPhone if you have any phantom podcasts and go to settings/general/usage/manage storage and see what is there for podcasts.  Delete it from this location to start over.  I found this file was larger than justified compared to what was in the podcast folder.  Somehow this had gotten corrupted.
    I'm sharing in case others need a solution.  Of course, the one respondent on here already knew this info so this is for all the other folks out there.

Maybe you are looking for