PLL File not working.

Hello,
Welcome again, well i have an issue. i started a new project in oracle forms, we have Template forms
having common buttons like Add, Modify, Delete, Exit, Clear and Print which comes in all the forms as a
Standard.
So for this We use .PLL Files having different functions for performing this above functions(Add, modify etc)
so in this new project we are using this same pre defined .pll files.
but while running this .pll libraries in the New scheme errors arises but when running the .pll files in existing
schemas it works fine.
my query is how to use the older pll files in this new schema i have created in the Oracle Forms.
Pls Reply ASAP.
Stalin Ephraim.

I agree with spilgrim, we need to know what errors you are getting!
my query is how to use the older pll files in this new schema i have created in the Oracle Forms.Also, what do you mean by older pll files? Are these older files from a different (older) version of Oracle Forms? If so, you must recompile them in the version of Forms you are using now.
Craig...

Similar Messages

  • Application files not working...please help.

    I have an imac g3 400MHz when i start it up it goes through its normal starting phases but without any error messages and when the color screen pops up , it freezes so the only way i can start the computer is with extensions off. Once their any application file i try to open does not work but i do get messages that read for example:"The application "Apple DVD Player" could not be opened because "ControlStripLib" could not be found". Other messages read similiarly. Can you offer any suggestions or do you require further information about my problem?
    Thanks.
    Rob Arrona
    imac g3 400mhz   Mac OS 9.0.x  

    Open the Servers folder inside the System Folder and throw away anything that you don't recognize, and restart your computer normally. If the issue persists, open the Extensions Manager control panel, turn off half of your extensions, and restart the machine. Repeat the process of turning off half of the remaining extensions and restarting until you've narrowed down the extension causing your issue.
    The messages about items not being found are due to the extensions not being loaded.
    (11587)

  • Edge.oam animation file not working in Muse

    Anybody tell me what I'm doing wrong?
    I've created an edge animation, published an .oam file and placed it on a Muse wepage (no prob).
    Preview in Muse works beautifully.
    Preview in browser from Muse works beautifully.
    Export Muse to HTML and Edge animation not displaying – looked at the code, shows an iframe with link to edge html, but just not working.
    ...help please

    Someone please help me with this... I dont understand where the src path should point to when updated? Can you give an example path. I am not using edge animate but instead HYPE 3 which is relatively the same thing, exports html animations as an OAM or html file. When I use the OAM in muse it previews fine in browser and in Muse. But when I publish it shows a blank box. I looked at the code and see the iframe pointing to assets/example/example.html.
    I've tried exporting the Muse file as HTML after I've placed the OAM widget in Muse.. Then I navigate to the assets file and open the HTML file and try and locate the iframe code line but it does NOT exist. But if i Publish the site with Muse and OAM widget and use the developers tools I can see the iframe. After that I've tried going through filezilla to the assets folder and opening the HTML file but still NO iframe code line exists. I only find src for .js code.
    PLEASE HELP... would really like to integrate these animations into my projects.
    Thanks

  • Sharepoint 2013, event receiver to rename files not working

    I coded an event receiver (ItemAdding) that renames for example a .txt file to a .text file (it does not matter the extensions, it is just an example). In my code what I do is to an SPFile.MoveTo operation. It works fine in SP2010 but when I execute
    the same code in SP 2013, when the operation is done using IE I get the text "Sorry, something went wrong" and then "File Not Found".
    In the logs this is what I see:
    12/23/2013 15:48:49.16  w3wp.exe (0x17B0)                        0x0AC8 SharePoint Foundation        
     General                        ai1wu Medium   System.IO.FileNotFoundException: The system cannot find the file specified.
    (Exception from HRESULT: 0x80070002), StackTrace:    at Microsoft.SharePoint.SPWeb.GetFileOrFolderProperties(String strUrl, ListDocsFlags listDocsFlags, Boolean throwException, SPBasePermissions& permMask)     at Microsoft.SharePoint.SPFile.PropertiesCore(Boolean
    throwException)     at Microsoft.SharePoint.SPFile.get_Length()     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadPage.OnSubmit(Object o, EventArgs e)     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadExPage.OnSubmit(Object
    o, EventArgs e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessReque... f72b639c-77b1-5045-c3a2-b23f24ae71c0
    It's clear that the Sharepoint upload code tries to do things with the original name and it does not realize that it was renamed.
    Can I do something from my event receiver code like using the AfterProperties to bypass this error?
    Thanks

    Hi Dennis,
    The issue still persists. Here is the code:
            public override void ItemAdded(SPItemEventProperties properties)
                SPSecurity.RunWithElevatedPrivileges(delegate()
                    try
                        OutputDebugStringA("Inside ItemAdded");
                        string szHttpUrl = properties.WebUrl + "/" + properties.AfterUrl;
                        SPWeb openedWeb = properties.Web.Site.OpenWeb(properties.Web.ID);
                        SPFile spf = openedWeb.GetFile(szHttpUrl);
                        EventFiringEnabled = false;
                        string szUrl = properties.AfterUrl;
                        szUrl = szUrl + ".renamed";
                        string szNewFileName;
                        if (szUrl.LastIndexOf('\\') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('\\') + 1);
                        else if (szUrl.LastIndexOf('/') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('/') + 1);
                        else szNewFileName = szUrl;
                        if (properties.ListItem != null)
                            properties.ListItem["Title"] = szNewFileName;
                            properties.ListItem.Update();
                        spf.MoveTo(szUrl);
                        EventFiringEnabled = true;
                        base.ItemAdded(properties);
                        OutputDebugStringA("Renaming to " + szUrl);
                    catch (System.Exception exception)
                        OutputDebugStringA("ItemAdded ERROR: " + exception.ToString());

  • Delete Dataset File not working

    Hi All,
      I am trying to delete file from application server (AL11) directory after processing using DELETE DATASET FILE is not working , after processing also file still exists.
    My code is like this,
    *&      Form  backup_file
          The file has been processed.  Go ahead and copy it to the
          backup directory and delete it from the processing directory.
    FORM backup_file .
      DATA: lv_oldfile TYPE string,
            lv_backup TYPE string,
            l_rc TYPE i.
      IF p_appl = 'X'.  "Unix file
        lv_oldfile = wa_files-filename.
      Replace the directory name with the backup directory.
        REPLACE p_dir IN wa_files-filename WITH p_back.
      Tack date/time onto the end of the file name to avoid duplicate
      files
        CONCATENATE wa_files-filename
                    sy-datum
                    sy-uzeit
                  INTO wa_files-filename.
        OPEN DATASET wa_files-filename FOR OUTPUT
                                       IN TEXT MODE
                                       ENCODING DEFAULT.
        IF sy-subrc NE 0.
          f_backup_error = 'X'.
          EXIT.
        ELSE.
        Write the file contents to the new backup file.
          LOOP AT itab_input INTO wa_input.
            TRANSFER wa_input TO wa_files-filename.
          ENDLOOP.
        ENDIF.
      Close the backup file.
        CLOSE DATASET wa_files-filename.
      Delete the original file from the processing directory.
    if sy-subrc = 0.
        DELETE DATASET lv_oldfile.
    endif.
    endform.
    Thanks Everyone!

    HI,
    You have to check the value of Sy-subrc after the delete statement,
    and the value present in the variable lv_oldfile that if there is correct
    value in the variable populated or not.
    Moreover after assigning the value to variable lv_oldfile in the step 
    lv_oldfile = wa_files-filename.
    then you should use this variable lv_oldfile only for open dataset and close dataset also.
    Hope ir helps
    Regards
    Mansi

  • Calendar Alarm Open FIle not working in Mountain Lion

    Recently upgraded my mac mini server to 10.8.2 Mountain Lion. I need it to open a particular Filemaker file every morning, and close the application every night. Used to have a simple alarm in iCal set to do this with Open File and then a very simple Automator script to close the program at a scheduled time, also in iCal. Worked fine. Now, in trying to recreate this, it doesn't work - I make the scripts, and if I set them for a time I can test them (ie. 5 minutes from now), they work as planned, but they will not function on their own at the scheduled time. I thought it might be going to sleep, so I set Energy Saver to Never go to sleep, unchecked "Put hard disks to sleep when possible", and checked "Wake for network access". Still not working. Any thoughts? Any idea how to even troubleshoot this?

    I thought I was on to something, but then I re-read your post and saw that you've successfully tested your scripts in Calendar.  So, all I've got left to offer is a silly question: has the calendar been set to ignore alerts?  I ask because just within the last few days I created an Automator calendar alarm, tested it successfully (in the same fashion as you), and set it off to run on its merrily-scheduled way, only to discover it wasn't firing on its own.  Like you, I double-checked my Energy Saver settings and it looked like things should work just fine.  What I finally found was that at some point during all my testing and fiddling I'd ticked the "Ignore alerts" box for the calendar,  and that's what was keeping my script from firing.

  • Animated gif files not working in FF5 ok in every other browser

    Hi .
    I am having problems getting animated gifs to play in firefox 5 i am using a photo gallery script to show these files it works in every other browser i have access to (most of them on Linux and windows Xp and win7 ) if i use FF5 as a file manager and navigate to the files they run but not from a web page this is only with firefox 4 and 5 not got previous to 4 to test .

    Right . this looks like it may be a problem with the way FF5 is handling various methods of viewing images i use the following code .
    <pre><nowiki><a class="thumbnail" href="#thumb"><img src="photos/IMG_7039 EOS-1D Mark III copy.jpg" width="100px" height="75px" border="0"><span><img src="photos/Animations/IMG_7039 EOS-1D Mark III copy.gif"></span></a></nowiki></pre>
    along with css .
    <pre><nowiki>(
    .gallerycontainer{
    position: relative;
    /*Add a height attribute and set to largest image's height to prevent overlaying*/
    .thumbnail img{
    border: 1px solid blue;
    margin: 0 5px 5px 0;
    .thumbnail:hover{
    background-color: transparent;
    .thumbnail:hover img{
    border: 1px solid blue;
    .thumbnail span{ /*CSS for enlarged image*/
    position: fixed;
    background-color: lightyellow;
    padding: 5px;
    left: -600px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    .thumbnail span img{ /*CSS for enlarged image displays the large image*/
    border-width: 4;
    padding: 12px;
    .thumbnail:hover span{ /*CSS for enlarged image*/
    visibility: visible;
    top: 0;
    left: 230px; /*position where enlarged image should offset horizontally */
    z-index: 50;
    )</nowiki></pre>
    to create the gallery now if i navigate directly to the dir with the gif images in they work ok but if i use the gallery method they fail .
    Tried safe mode no addons no change ..

  • Y Generate to File not working?

    Hai,
    V are facing some probelms with reports6i.
    1.we are calling the report using the command line method not
    run_product.for these reports 'Generate to File' menu is not working.It shows
    an error like Umimplemented Error (rep-0999).How to solve this problem.
    2.In one report we are using CLOB field.but when we take the print output of
    this field some of the characters are missing in print out.the problem what
    we think is that, there is no entre key padding when a word wrap is
    occuring.We have to give it manually which is not applicable in all
    cases.Please give some methods to solve these probelms.
    Please treat this as an urgent matter.
    thanking you,
    dilip

    hai,
    regarding the 1st point there is one default printer attached to my m/c.but still the same error is coming. is it bcoz v r using command line arguments.but there should not be any link how u r calling the reopt.do v need to to pass any argument for doing this operations.my generate to file menu is enabled any way.pls help me to solve this problem.
    regards,
    dilip

  • Generate to File not working

    Hai,
    we are calling the report using the command line method not
    run_product.for these reports 'Generate to File' menu is not working.It shows
    an error like Umimplemented Error (rep-0999).There is one default printer attached to m/c. and the operation system is winows nt.This is working when running the report in report builder.it is not working when called through menu.Pls help me to solve this problem.
    dilip

    Hi,
    I am not sure what do you want to convey here - "It is working with Reports builder and not working with menu". From Report builder, only way to generate the otput to file is to go through menu, there are no other shortcut or toolbar icon present. Do you want to say, it works when you run to previewer but is failing when you generate to a file. To give you a hint:
    1. Does the problem exist with only this report or with all the reports?
    2. If the problem is with all the reports, then there is a setup problem.
    3. Try running PRINTER DRIVER TEST against your printer, to check it is ok?
    4. Check that the login under which you are trying to run the report, has the priviledge to print with this default printer.
    5. Try changing the printer driver?
    If this does not solve the problem, please contact Oracle support to resolve this issue.
    Thanks,
    Rohit

  • LocalLAT.txt file not working in Windows 7

    hi,
    i want to exclude few ip addresses from tmg client installed on a host and want it to be routed through another gateway placed on a router. I used to do this via locallat.txt file placed in all users directory with windows xp. but it is not working with
    windows 7.
    i have placed the file in: %ProgramData%\Microsoft\Firewall Client 2004
    thanks

    Hi,
    As the issue is specific with Forefront TMG , you may contact Microsoft Forefront TMG Forum for further assistance on the issue:
    Contact - Forefront TMG support:
    https://social.technet.microsoft.com/Forums/forefront/en-us/home?category=forefront
    Please revert for any clarification on this or any Windows issue. We will be glad to help you.
    Roger Lu
    TechNet Community Support

  • JRE7Update25 Deployment Properties File Not Working And Cant Disable Next Gen Plugin

    Good Day
    Our organisation needs to deploy JRE7U25 to over 4000 workstations. Our desktops are running the following Windows and IE combinations:
    WinXP 32 Bit/IE7
    WinXP 32 Bit/IE8
    Win7 32 Bit/IE8
    Win7 32 Bit/IE9
    Win7 64 Bit/IE8
    Win7 64 Bit/IE8
    We use the 32bit JRE installer across all environments and all IE browsers use 32Bit IE. On all of our environments the Deployment.properties and config files no longer work due to what appears to be a bug in the JRE7U25 installer. Our deployment files are as follows:
    Deployment.config
    deployment.system.config=C:\WINDOWS\Sun\Java\Deployment\deployment.properties
    deployment.system.config.mandatory=true
    Deployment.properties
    deployment.security.level=MEDIUM
    deployment.security.level.locked=
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    deployment.security.mixcode=HIDE_RUN
    deployment.security.mixcode.locked=
    deployment.console.startup.mode=HIDE
    deployment.console.startup.mode.locked=
    Both files are being copied to the following location:
    C:\Windows\Sun\Java\Deployment
    After the installer runs and deployment files are copied to the workstation the deployment.properties and config files look like this:
    Deployment.config
    deployment.system.config=C:\WINDOWS\Sun\Java\Deployment\deployment.properties
    deployment.system.config.mandatory=true
    Deployment.properties
    #System Deployment Properties
    #Mon Jul 01 12:29:20 CAT 2013
    deployment.security.level=MEDIUM
    I have tried changing the deployment.config file as follows in an attempt to fix this to no avail:
    1. deployment.system.config=C:\\WINDOWS\\Sun\\Java\\Deployment\\deployment.properties
        deployment.system.config.mandatory=true
    2. deployment.system.config=C:\\WINDOWS\\Sun\\Java\\Deployment\\deployment.properties
        deployment.system.config.mandatory=false
    3. deployment.system.config=C:\WINDOWS\Sun\Java\Deployment\deployment.properties
        deployment.system.config.mandatory=true
    4. deployment.system.config=C:\WINDOWS\Sun\Java\Deployment\deployment.properties
        deployment.system.config.mandatory=false
    5. deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    None of the above mentioned works. So all our required settings in the deployment.properties file are being overwritten when opening the Java console? Our other major problem is that Changing the registry key to 0 in order to disable the next generation plugin does not disable the next generation plugin in Jre at the usual location as it worked for us machine wide (across multiple profiles for JRE6U29):
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\10.25.2]
    "UseNewJavaPlugin"=dword:00000000
    ^^I have observed on a fresh install of JRE7U25 that the above mentioned registry key no longer exists in this version so a computer wide disablement of this option is no longer possible via the registry.
    On our 32Bit and 64bit machines running the 32 bit JRE 7U25 client when we disable the next generation plugin it keeps enabling itself again. Even when we run the javacpl.exe to run as administrator by changing the compatibility settings and disabling the next generation plugin it enables itself again. This is a huge problem for us because our company Oracle web based applications need this plugin to be disabled in order to run the apps properly.
    These are major obstacles for our deployment as we desperately require assistance or any advice in addressing these issues as there appear to be numerous bugs with the JRE7U25 release. Thank you in advance.
    Update 7 July 2013:
    I have observed that if you have the following options in your Deployment.config file it doesn't allow our java webstart apps which use jnlp extensions to run.
    1. deployment.system.config=C:\\WINDOWS\\Sun\\Java\\Deployment\\deployment.properties
        deployment.system.config.mandatory=true
    2. deployment.system.config=C:\\WINDOWS\\Sun\\Java\\Deployment\\deployment.properties
        deployment.system.config.mandatory=false
    3. deployment.system.config=C:\WINDOWS\Sun\Java\Deployment\deployment.properties
        deployment.system.config.mandatory=true
    4. deployment.system.config=C:\WINDOWS\Sun\Java\Deployment\deployment.properties
        deployment.system.config.mandatory=false
    The jnlp file association is also broken on Windows XP workstations with JRE7U25. We are having to manually associate the .jnlp file extension with javaws.exe on workstation for Web start apps or else users cannot lauch JRE whn clicking on .jnlp links.
    The only Deployment.config syntax which allows our Webstart applications to run is as follows:
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    What a mess!

    I don't have an answer to the problem, but I am having problems with the system level deployment.properties file and IE9 on Windows 7 32/64bit.
    Starting with version 13, the IE plugin seems to igonore the system level deployment.properties file in favor of the user level deployment.properties file. When I open the Java Control Panel, the settings are correct per the system deployment.properties file. Currently to get the Java Plugin to work reliably in IE9 I have to set the following:
    _JAVA_OPTIONS = -Djava.net.preferIPv4Stack=true
    Disable caching
    Set the proxy to Direct Connection.
    If I set the _JAVA_OPTIONS as an environment variable and the other two in the system deployment.properties file, Firefox works fine, but IE wont load either of the Java tests. If I removed the system deployment.properties files and configure the user deployment.properties file, both IE and Firefox work fine.
    I find it interesting that if I set the configuration through the control panel, then apply the system deployment.propteries file, the user deployment.properties file reverts to defaults when the system file is removed.

  • A link to other pdf files not working in only Android OS. How Can I fix it ?

    If there is many folders and pdf files in there  and a pdf file is at root and the root pdf file has many link to pdf files.
    In Windows OS links work well. but In Android OS, not working. when I click links, there is no difference. How can I fix it?

    Hi,
    Are you trying to open a portfolio or a pdf with attachments on Adobe Reader on Android or a pdf file with links(in form of text) to other pdfs? Would it be possible for you to share the pdf with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Writing to file not working, might be 1.4 problem

    Hi:
    I am trying to writing the content of a JTextArea onto a file. The content is pretty big, has newlines. I have been struggling with this in 1.4 and it just doesn't write to the file I specified. In 1.3, it works great. Here is the rough code:
    public void loadDisplayFrame()
         JMenuItem save = new JMenuItem("Save");
         //Save Action Listener
         save.addActionListener(new ActionListener()
            public void actionPerformed(ActionEvent ae)
               String filePath;
               //Save the  gsgl sample file
               if(filePath!=null && filePath.length()>0)
                  try
                  int state = saveChooser.showSaveDialog(null);
                  File f;
                  f = saveChooser.getSelectedFile();
                  if(f!=null && state==JFileChooser.APPROVE_OPTION)
                        savedName = f.getPath();
                        if(!savedName.endsWith(".gsgl"))
                           JOptionPane.showMessageDialog(null, "Invalid file name", "error", JOptionPane.ERROR_MESSAGE);
                        }else
                           processSaving();
                        }catch(Exception e)
                            e.printStackTrace();
                    }else
                        JOptionPane.showMessageDialog(null, "Please load a file first", "error",
                            JOptionPane.ERROR_MESSAGE);
              myMenu.add(save);
              JMenuBar displayMenu = new JMenuBar();
              displayMenu.add(myMenu);
      public void processSaving()
             try
                 System.out.println("Saved Name is " + savedName);
               PrintWriter out
               = new PrintWriter(new BufferedWriter(new FileWriter(savedName)));
               //name of TextArea is <display>
               String saveCode = display.getText();
              System.out.println(saveCode);                 
                 out.print(saveCode);
              out.close();
            }catch(Exception e)
              System.out.println("Exception in writing" + e.toString());
         Anyone knows what is going on? I am hoping to use 1.4 for my project. But this thing is not working. Any way around it? Thanx

    Try putting in this line before your close:
    out.flush();
    PrintWriter buffers the data and won't send it until you exit or enough data gets into the buffer to cause a flush. I assume that you are getting a zero byte file. You can also construct a PrintWriter with a boolean to indicate if it should auto flush the buffer.
    Hope that it helps.
    Paul

  • WebLogic 9.0 - HTC files not working when specified as a part of cascading

    Same problem as described in:
    http://support.bea.com/application?namespace=askbea&origin=ask_bea_answer.jsp&event=link.view_answer_page_clfydoc&answerpage=solution&page=wls/S-10511.htm
    but resolution does not work for me.
    I have created a mimemappings.properties file in BEA directory BEA\user_projects\domains\myDomain\config\mimemappings.properties with following content:
    htm=text/html
    gif=image/gif
    jpg=image/jpeg
    htc=text/plain
    png=image/png
    CSS file:
    .calendarClass {behavior:url(calendar.htc)}
    Web.xml:
    <mime-mapping>
    <extension>htc</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    I also tried htc=text/x-component.
    Stop / Start of server, Redeploy of War, this does not work.
    Any idea ?

    Thanks Ben!
    That helped. I also was using that
    from the examples, and it did not play well in the HTMLPanel.
    I appreciate the quick assistance, as I am pretty new to Spry. I have been creating version 2 of my website code, and one of the conversions has beenfrom JQuery to Spry for almost everything. Spry is a lot easier to conceptualize, except I completely missed the setting you gave me.
    One of my problems is lack of knowledge on how to see what is happening, or not ahppening with javascript on a page.  I have firebug, and that seems to give me some info.  But when I tried to look at stuff with scripts running on the HTMLPanel, I was unable to see anything.
    Thanks again,
    Jamie

  • TCS2 - Cross References between linked Frame files not working

    Hi,
    All the cross-references in my linked in FrameMaker 9 files work when output in PDF, however, when outputting WebHelp from RoboHelp 8, FrameMaker cross references that reference another FrameMaker file (i.e. not Current) do not work. The format is correct, they appear blue and underlined like every other link/cross-reference, but when moused over in the browser, there's no link to click.  The HTML created by RoboHelp does not point to a file.  For example, here's the HTML for one link not working as shown from within RoboHelp:
    <p class="FM_Bulleted"><span style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span>•<span
         style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span><a><span
         class="FM_Link">Create Supported App from
    Install</span></a><span class="FM_Bold">.</span>
    RoboHelp appears to partially convert the link as <span class="FM_Link"> appears in the HTML  but I think there should be more information in the <a> definition, such as in the HTML created for a link that references a topic created from the same FrameMaker file.
    <p class="FM_Bulleted"><span style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span>•<span
         style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span><a
         href="#XREF_17096_Creating_an">Creating an App</a></p>
    I've ensured all the cross-references in each framemaker file in the book have the same format and are mapped to <$paratext> in the project settings. I've also tried importing the FrameMaker book instead of linking it and the same problem persists.
    Any ideas on how to make RoboHelp create the link correctly?   Any help you can offer would be greatly appreciated.
    Thank you,
    Jacquie Finney

    Most of the major cross reference issues have been resolved in TCS 2 with further improvements in TCS 3.
    Please ensure that you have all the patches of TCS 2 installed on your system.
    If the issue is still there, there could be an altogether different reason for cross reference not working or the issue might have been fixed in TCS 3.
    The reason or workaround can be analysed once the sample files with the issues are provided.
    It will be great if you could share a small sample FM document containing the cross reference and target having the issue. If the cross reference is across documents, then a FrameMaker book along with its FM files can be shared in a zip format.
    You can mail the documents to me at magrawalATadobeDOTcom
    Mayank

Maybe you are looking for

  • Parallels and disk utility problem

    ok i have parallels installed and using the boot camp partition, however the disk utility keeps changing the disk id (e.g. disk2s2) and everytime this has happens I need to edit the pvs file. Now this is a real ball ache. Can anyone tell me if there

  • Sending email with attachments

    Hi, I want to sent an email with more than one attachments (for example word and pdf documents). I have attached and sent the mail with pdf document but i couldn't attach the other file. Can anybody tell me the way to do this? thanks

  • Is Mac iPhone Data Recovery system support on Mozilla?

    There are many different iPhone Rescue software out there. 321Soft's iPhone Recovery for Mac specializes in recovering photos, videos, and other files that have been deleted on iPhone and iPad, even without these iOS devices.Overall, it does a great

  • Failed email attempts are not being updated in sysmail_event_log or sysmail_faileditems

    Hi, My apologies if this isn't in the right section. I currently inherited a stored procedure to work on which is calling sp_send_dbmail. The sp executes without any errors and I'm able to see entries in sysmail_allitems as well as receive emails. Th

  • Why is BT sport not free via Youview?

    Though Bt has made BT sport totally free for BT broadband users via Sky if you want to watch via Youview you have to subscribe to a BT TV package. Why is this?