Adobe form translation changes do not work for second time

Hi Team,
i am translating adobe form from EN to TR and it was successful for first time and all the changes were working correctly then again i have translated all the texts and checked however then it was only translating fields which were translated in first try.
I am really confused and please help me here i am not really sure what exactly to do .
i have checked below note however not getting what to delete exactly .
i have acttached the note  data below please help <removed by moderator>.
1294146 - Problem translating rich texts in PDF based forms (Adobe)
Message was edited by: Manish Kumar

HI Lande,
There is nothing to delete. Here is what you should do:
Following procedure applies to both symptoms:
1. Open the corresponding form in the original language in change mode in Form Builder
2. Choose the Layout tab of Form Builder to open the form layout in Adobe Designer.
3. Identify and select the concerned text element in the layout so that it will be highlighted in the hierarchy tree of the Adobe Designer
4. Go to the XML Source tab of the Adobe Designer
              The XML source shows the section of the selected form element.
     5. Go to the appropriate <exData/> element and delete the occurrence of attributes
     xft-xliff:id or xliff:rid
6. Leave the XML source tab and save the changes.
7. Activate the form.
Regards,
Ashvin

Similar Messages

  • The FM "RV_PRICE_PRINT_HEAD" is not runnging for second time...

    Hi All
    The FM "RV_PRICE_PRINT_HEAD" is not runnging for second time, first time it works fine and second time it is giving the null values. Will you please solve this problem (is there any flag to recall the function ex: run the FM press f8 and come back f3 and press again f8 - first time it is showing the data & at second time f8 it is not showing any data ).
    Feilds filled in head_i structure are:
    VBTYP,
    KALSM,
    KNUMV,
    WAERK,
    KAPPL.
    Thanks,
    Ravi
    Message was edited by:
            Ravi Kumar
    Message was edited by:
            Ravi Kumar

    Hi,
    before <b>every</b> call of RV_PRICE_PRINT_HEAD or RV_PRICE_PRINT_ITEM you should call RV_PRICE_PRINT_REFRESH once - you have to pass a dummy parameter.
    No idea why this is so but SAP does it the same way
    Regards,
    Clemens

  • Dropdown of all adobe forms of mss are not working

    Hi All
    <b>Dropdown in adobe forms like</b>
    Change Employee Group and Subgroup
    Change Personnel area and subarea
    <b>are not showing any values</b>.
    When I download adobe form in xml format I can all values from backend is <b>available in xml file</b>.
    Actually when I click on down arrow of any dropdown it doesn't do anything.
    I am using EP 7.0 , NW 2004 s and Adobe 7.0.8 is installed in Fronend.
    I can observe pick list for date is working.
    Please help.
    Thanks
    Rakrim

    I fixed it somehow.
    Sent from my iPhone
    On Sep 28, 2014, at 10:55 AM, Gilad D (try67) <[email protected]>

  • Adobe form MSS PCR senarios  not working with Portal SSL

    Hi All,
    we have implemented MSS PCR  senarios Nw04 with ERP2004 system.
    every thing is working fine when use http protocal for portal acess.
    Now we try to implement ssl for portal. so started implemnation and done in portal side, after that when try access any senario forms , The adobe form is not opening for editing, its throwing  error
    <b>The initial exception that caused the request to fail, was:
       java.net.ConnectException: Connection refused: connect
        at java.net.PlainSocketImpl.socketConnect(Native Method)
        at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
        at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
        at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
        at java.net.Socket.connect(Socket.java:461)
        ... 47 more</b>
    its very urgent anybody can help out this, what settings ot be done on R/3 server and Portal and ADS server
    Thanks in advance
    Gopal

    Hello Gopal,
    You would only need an https connecion between the browser and the portal server if you are only concerned with the MSS applications. You need to have SSL configured from the portal to ADS server had you implemented some custom scenarios like certification, digital signature etc. But, considering your MSS issue, you do not need to worry about it untill and otherwise your landscape demands you to do so for any security reason.
    Well, you might have already gone through the following link, incase not, please go through the link to find out more on how to confugre SSL on the j2ee engine:
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/2de3be0382df45a398d3f9fb86a36a/frameset.htm<a href="http://help.sap.com/saphelp_nw04/helpdata/en/f1/2de3be0382df45a398d3f9fb86a36a/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/f1/2de3be0382df45a398d3f9fb86a36a/frameset.htm</a>

  • Adobe Form Exit Button does not work

    When I select a PCR from the Portal and review the Adobe Form - when I click on the exit button - it does nothing.
    How can I fix that problem?

    Hi
    are you using  standard MSS and Homepage frame work for PCR form or created your own iview in portal?
    what is ther version of Software using?
    thanks
    Gopal

  • Tabular form validation(Checkbox) is not working for Interactive report

    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.

    Saroj Nayak wrote:
    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.NO DATA FOUND usually occurs when an i mplicit select does not find anything. It can also occur when referencing a collection element that has not been defined.
    You have 2 collectinons in the code you posted, apex_application.g_f01() and apex_applciation.g_f03. Since you are looping therough the COUNT attribute of g_f01 its reference ("I") is probably okay and the value store in vRow is probably not right. You can check this by using RAISE_APPLICTION_ERROR to see the value something like
    raise_application_error(-20000,'vRow="'||vRo2||'"');Remember that working with checkboxes is tricky. If the box is not checked nothing will be sent. You may need to define a default value when no value is submitted.

  • Sync not working for long time (have tried all the usual suggestions)

    Sync stopped working for me months ago and I have not been able to get it to work again.
    I'm using Firefox 26 on two different Linux laptops and want to keep the bookmarks and history synced with them. It worked great for a long time. Then around Firefox 25 or so it stopped working. In fact, I logged into an old Linux system I hadn't used in while that still runs Firefox 24 (or maybe it's 23) the other day and it synced great with my laptop I usually use.
    I have tried all the suggestsion in the troubleshooting guide (https://support.mozilla.org/en-US/kb/firefox-sync-troubleshooting-and-tips). I tried unlinking all of my devices and linking them again. That worked to sync both laptops once, when I first relinked them, but never again. I tried creating entirely new profiles on both systems and that didn't help.
    Is Sync just broken? Why does it continue to work fine in older version of Firefox but none of the last three versions or so? Is there any way to fix this?
    Thanks.

    Thanks for the replies.
    I am not using a proxy server.
    Neither system is syncing with the other. It seems like they are both uploading (backing up) the history and bookmarks properly, but then not merging and syncing the changes from the other system. I know things are getting uploaded, because as I said, my third system that I don't use much anymore, with the older version of Firefox, does merge changes in history and bookmarks from the other two systems.
    This is what my log looks like:
    1390013173379 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1390013174376 Sync.Tracker.Addons DEBUG Saving changed IDs to addons
    1390013285398 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390013418354 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014114789 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014117199 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014130419 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014149015 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014274305 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014316857 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014467343 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014474268 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014539349 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014546079 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014574289 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014600495 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014625762 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014638218 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014665106 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014680655 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014709407 Sync.Tracker.History DEBUG Saving changed IDs to history
    1390014783940 Sync.SyncScheduler DEBUG Global Score threshold hit, triggering sync.
    1390014783942 Sync.Service DEBUG User-Agent: Firefox/26.0 FxSync/1.28.0.20131212154635.
    1390014783942 Sync.Service INFO Starting sync at 2014-01-17 19:13:03
    1390014783942 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score.
    1390014783942 Sync.Status INFO Resetting Status.
    1390014783942 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok
    1390014783945 Sync.SyncScheduler DEBUG Next sync in 86400000 ms.
    Any other ideas?

  • Custom url scheme not working (for first time) IOS applicaiton

    i have created one distribution application also register custom URL scheme. First time after I installed application, and try custom URL link, it does not work.
    However if I lunch the application manually it will prompt me below mentioned message
    Are you sure you want to open the application ... from the developer iphone distribution ... ?
    i will click on continue, and after that custom URL link works fine with my application.
    Can Custom url link launch the application directly on installation (without manually launch application and contiue)?
    is there any settings, so we can make the prompt message off. So it will not prompt message.
    also i had tried to create new application from another enterprise account, and deploy on other server; then it do not prompt that message, but unable to figure out the reason .
    Thanks

    Are you exactly following the guidance in the iOS App Programming Guide for Implementing Custom URL Schemes? Do you get the same message the first time, no matter whether app has been loaded or not? Are you really using iOS 4 per your profile?
    "If your app is not running when a URL request arrives, it is launched and moved to the foreground so that it can open the URL. The implementation of your application:didFinishLaunchingWithOptions: method should retrieve the URL from its options dictionary and determine whether the app can open it. If it can, return YES and let your application:openURL:sourceApplication:annotation: (or application:handleOpenURL:) method handle the actual opening of the URL.

  • I want to know, why the update process of firefox is not work correctly. Because of i begin update that is not work for along time(Connecting to the update server). So why should i do this problem. Please help me.

    Update process is not work

    See:
    * [[Software Update Failed]]
    * http://kb.mozillazine.org/Software_Update (Software Update not working properly)
    Remove the files in the updates and updates\0 folder.<br />
    You may need to delete active-update.xml and updates.xml as well if present.
    C:\Users\&lt;user&gt;\AppData\Local\Mozilla\Firefox\Mozilla Firefox\updates
    (%LOCALAPPDATA%\Mozilla\Firefox\Mozilla Firefox)

  • Alert is not working for mutiple times for list "select" function in sapui5 XML view

    Hello All,
    I am trying to open an alert for multiple times for list "select" function. But it's opening for only one time .
    Please find code below.
    View Part
    <List id="contactedit" select="somefunction">
        <CustomListItem id="custom1" type="Inactive" >
    <content>
    <Label text="this is label" />
    </content>
    </CustomListItem>
    </List>
    Controller Part
    somefunction: function(oEvent){
    alert("this is an alert");
    Thanks in Advance
    D.Mohanbabu

    I think I saw this question in stack overflow. And I answered it :-)
    I believe that it is because you can only one item in the list and once the item is selected, re-selecting it will not fire the event.
    Try adding more items to the list and select different items.
    Thanks
    -D

  • EPCF not working the second time

    Hi all,
    we are developing using four iViews in the same screen: one left menu, one top menu, a footer and a main view in the central part.
    We use launch a EPCM.raiseEvent by clicking in one link in the footer which causes a change in a field in the central iView by using a handlerFunction launched by a EPCM.subscribeEvent and it works properly. Then we click on a button in the central iView who changes the complete content of the iview by going to another JSP. It only changes the central part. Then by raising a different or the same event in the footer to change another field in the new central part (by using another EPCM.subscribeEvent sentence) don't work. We have detected that the second time we try to use the EPCF around the application it does not work. Only works the first time the first screen is loaded.
    What could be the problem????
    Many Thanks.

    You need to contact Adobe Support either by chat or via phone when you have serial number and activation issues.
    Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • BUG? Streaming an mp3-file does not work a second time with iPhone 4

    Hi,
    I was trying to stream a mp3-file from a server and listen to it on my iPhone. At the first time it worked all right, but when I wanted to listen a second time I got the error message "The server is not configured correctly.", after quicktime started, and nothing happened.
    I tried to reset the iPhone and again got the error message.
    This is the link: http://kunst.museumsportal.de/76/236.mp3
    Does anybody experience similar problems when clicking on the link with an iPhone 4? Do I miss something?
    Thanks for help or suggestions,
    Klaus

    There are 3 things you can try.
    Hard reset -Hold home and power button until apple logo is displayed -Release let device reboot -test it out.
    If issue persists -go to Settings>gerneral>reset>reset all settings -test.
    Issue persisting still??
    Last but not least restore and setup as new, this will erase EVERYTHING make sure contacts/calendars are in the iCloud or synced in windows Contacts/Addressbook/outlook, or Addressbook on a mac, and Calendars in Outlook, or iCal
    make sure to transfer your purchases, in iTunes windows or mac - File at top left - Transfer purchases.
    Transfer photos via iPhoto, windows scanner camera wizard, or Windows Photo Gallery
    then follow  http://support.apple.com/kb/ht1414

  • Get_selected_rows doesn't work for second time

    I have a custom screen with an ALV output and some push buttons. When I select one of the rows in ALV and click on a pushbutton, it does go the next screen. But, if I come back and select another row in ALV, the table parameter <b>ET_ROW_NO</b> returns with no entries. Couldn't figure out myself. Can anybody please help me?
    Thanks,
    Chandu

    Hi,
    In your PBO during creation of your object, maintain a flag. Consider the following :
    IF FLAG = 'X'.
    CREATE OBJECT DUMMY....
    CALL METHOD DUMMY->SET_TABLE_FOR_FIRST_DISPLAY....
    ENDIF.
    If you maintain this, the object will not be initialised every time.
    Try this and if helpful reward points.
    Courtesy : Sakthi Seithur
    Regards

  • Webdynpro for ABAP - interactive Adobe form - drop down lists not working

    Hi all,
    I'm trying to create an interactive form for a client using webdynpro for ABAP and I've viewed the demo "Create SAP Interactive Forms by Adobe with Web Dynpro for ABAP" by Thomas Jung, but when I implement it the form following similar steps the form is not interactive.
    In the properties of the "InterativeForm", I've tried clicking the "enabled" flag both on and off.  I've also tried setting the "displayType" property to both "ActiveX" and "Native".  But none of this worked.
    I though my problem might be with Adobe reader so I switched from 8.0 back to 7.0 but this didn't make any difference either.
    The system we are using is NW04s WAS 700.  Any hints would be greatly appreciated!
    Thanks,
    -tom

    Thanks for the suggestion Dezso.  I've downloaded a newer version of ACF as indicated by the OSS note and installed it.  I'm still having the same issue.
    My basic question is what options should I be using in the form and on the InteractiveForm component?  It looks like because of the evolution of the product there are multiple options available.  I recall reading somewhere that as of a certain SP level we should have ZCI (zero client install) available.  The would be our preference.  It will be a support nightmare if each user needed a manual download of ACF.exe installed.
    Should I click the "enabled" flag on the InteractiveForm object?  When I create the form should I use the "Native" drop down list or the one from the "Active X" tab?  I would like to use the "List Box" control on the form as well but it is only available in the "Standard" tab.  So does that mean I can't get the selections from a "List Box"?
    Thanks,-tom

  • Change logs not working for manual update modify/delete statements.

    Hi experts,
                     My requirement is to display the change logs for a few custom z tables.The log data changes is selected in technical settings of the table.When any changes are made to the table using sm30 the changes are logged.
    My requirement also displays an alv grid which allows the users to edit/insert/delete   entries in the table.
    In this case the change logs are not getting recorded(ie whenever the user manually updates or inserts a row into the table the change docs are not getting stored).
    My code works like this,
    Whenever the user chooses a custom table and selects the display change log button i transter the control of my abap program to the standard  rsvtprot program(sap std. pgm to display change logs).
    sample code:
    elseif sscrfields-ucomm eq c_chgdoc.
        refresh:r_seltab.
        clear:r_seltab.
        r_seltab-sign   = 'I'.
        r_seltab-option = 'EQ'.
        r_seltab-low      = w_tab.
        append r_seltab.
    Call the sap standard program rsvtprot via selection screen
    by passing the table name and display grid parameters.
        submit rsvtprot via selection-screen
                          with cusobj   in r_seltab
                          with alv_grid eq c_x
                          and return.
    Is there any way by which i can extend the change logs functionality for the changes made using the alv grid?
    Please help me out.

    Hi Anuraag,
    In TM you should open the transaction /SCMTMS/ZONE. Here you select the zone you would like to modify and you execute the changes you would like to make.
    Regards,
    Nico.

Maybe you are looking for

  • DW CC  2014 Window--- Extensions--- Adobe Exchange Option Missing from Menu Toolbar

    I discovered that this option is not listed in the menu though from reading Adobe Dreamweaver * Extensions it should be. Then, I did a search and came up with Adobe Extension Manager CC at Adobe - Exchange : Download the Adobe Extension Manager. So. 

  • Why is it taking so long to back up my Ipod

    Why is it taking so long to back up my Ipod...it's been backing up for 14 hours now.

  • When accessing some pages, it starts to download .part file and not showing the page

    When I access http://ingig.net it starts to download a .part file and doesn't show the page. I can view it the standard browser on Android 2.3 The Response Header is Cache-Control:no-cache Content-Encoding:gzip Content-Length:8760 Content-Type:text/h

  • Error with XSL Transformation

    From my application log I see an exception where it tries to call the oracle.xml.parser.v2.XSLProcessor. The servlet for the login screen (XSL transformation) takes XML and returns HTML. Actually for the xml parsing we use xerces I don't understand w

  • ITune Plus tracks not showing up

    It seems to me that in the past, if I logged into my account settings in the iTunes store, there was an area where I could select "always show iTunes Plus" or something like that. I no longer see that as an option. This concerns me, because, for exam