Edit the database that RH10 uses to generate the CPD file

Is it possible to edit the database that RH10 uses to generate the CPD file? I've got one weird entry in the topics list in the Project Manager pod. I've deleted the CPD file and let RH10 rebuild it but the entry is still there.  My team leader would like me to get rid of the entry before we send the project to translation. Thanks.

Dang, I saw that same problem occur with a project I was trying to fix but eventually I had to start over on a fresh copy of the broken project and did not create the problem again.
If you are using an agency that translates and uses RoboHelp, the last thing I would have done is delete the snippet. They would have translated that once instead of everywhere it is used thus keeping costs down. That is an aside though.
Do you have a backup of the project so that you can recreate the Snippet in the hope that the project is good with that in and you can then delete again to check you used the right option?
See www.grainge.org for RoboHelp and Authoring tips
@petergrainge

Similar Messages

  • What's the detailed GPS protol used to generated GPS bin file?

    I encountered a problem recently.
    ) When we used actual GPS signals instead of simulated signals generated from the PXI-5671, the receiver functioned normally.
    2) When we streamed bin file to generate signals repeatedly using the PXI-5671, the receiver could receive correctly for the first time, while at the rest of it the receiver couldn't receive the signals nor display how many satellites there were and what the signal strengths were.
    The R&D engineers of the receiver in German want to know the detailed GPS protocol used to generated GPS bin file. They want to find the differences between the receiver and NI GPS generator.
    Could you give me the detailed GPS protocol? thanks!

    Hello,
    In the ni GPS bin file ther header is is stored as following.
    Of the first 8 bytes the first two bytes are version of GPS toolkit it was use to save the data, the next 4 bytes will be IQ rate, the next 4 bytes will be peak power in dBm and then rest 488 bytes will be just buffer data or 0 padding. Here is the screenshot of that. The actual data is stored as I16 format as I and Q data block. Hence the actual offset from the starting of the file is 512 bytes. 
    Hope this helps. For reference you can look at the  niGPS Streaming From File.vi located in C:\Program Files\National Instruments\LabVIEW 2009\examples\RF Toolkits\GPS\Programming
    Thanks
    NI-khil 
    Message Edited by NIyer on 05-14-2010 12:40 PM

  • Can I edit the rpt file & change the datasource before loading the report?

    We are an ISV and our application has a lot of reports.  Our reports use a SQL Server database as the data source and each SQL Server at our customer sites has a different name.
    In our testing we have determined that ReportDocument.Load tries to connect to the SQL Server that is saved in the RPT.  If it can't fine the SQL Server saved in the RPT the load take about 60 seconds while it is waiting for the SQL Server Connection to time out.
    We are using the Visual Studio 2008 version of Crystal Reports.  This did not seem to be a problem with VB6/CR8.5.
    We would like to edit the RPT and change the data source to the appropriate SQL Server before we call ReportDocument.Load.
    Is it possible to edit the rpt file and change the data source before loading the report?
    Or is there some way to tell Crystal not to try connecting to the DB
    during the report.load?
    In our case we will NEVER use the data source that is saved in the RPT, we will always change the data source using ApplyLogOnInfo.
    Thanks

    HI Todd,
    You Can Not edit the report document before ReportDocument.Load() because if you dont load the report then you dont have anything to Edit
    But as far as changing the datasource is concerned you can change that at runtime.
    For changing the datasource following code will help you if both databases have a same schema :
    Code for changing the database
    ConnectionInfo crConnectionInfo = new ConnectionInfo();
    crConnectionInfo.ServerName = "SERVER";
    crConnectionInfo.DatabaseName = "DATABASE";
    crConnectionInfo.UserID = "USERID";
    crConnectionInfo.Password = "PASSWORD";
    // Loop through the ReportObjects in a report and find all the subreports
    foreach(ReportObject crReportObject in crReportDocument.ReportDefinition.ReportObjects)
         // Check the kind of the ReportObject, if it is a subreport
         // proceed. If not skip.
         if(crReportObject.Kind == ReportObjectKind.SubreportObject)
              // Get the SubReport in the form of a ReportDocument
              string sSubreportName = ((SubreportObject)crReportObject).SubreportName;
              ReportDocument crSubReportDocument = crReportDocument.OpenSubreport(sSubreportName);
              // Use a loop to go through all the tables in the main report
              foreach(Table crTable in crSubReportDocument.Database.Tables)
    // Get the TableLogOnInfo from the Table and then set the new
    // ConnectionInfo values.
    TableLogOnInfo crLogOnInfo = crTable.LogOnInfo;
    crLogOnInfo.ConnectionInfo = crConnectionInfo;
    // Apply the TableLogOnInfo
    crTable.ApplyLogOnInfo(crLogOnInfo);
    // Set the location of the database. This value will vary from database to
    // database.
    crTable.Location = "DATABASE.OWNER.TABLENAME" or crTable.Locations;
    The sample for doing this is available on support site.
    Thanks,
    Prasad

  • To open & Edit the XLS file in edit mode after Extracting SAP data into it

    Hello Experts,
      I have a requirement to open and edit the xls file imidiately after downlaoding the SAP data into this XLS file. The XLS file is getting saved on presentation server (e.g. Destop/C: drive).
      I have used function module "GUI_DOWNLOAD" OR "DOWNLAOD" to download the data from SAP table to XLS file. But now I need this XLS file to be get opned automatically after finishing the Download, so that user can make changes into XLS file and can save the changes into it. After saving I have to upload this modified Data into SAP table again.
    For this I am really not aware how to get it done..but I believe you experts will definately help me out..waiting for your reply.
    Thanks,

    HI,
    did you ur problem was solved if not check this code once.
    now only i tried it my system , it opens xl file and save all data in it.
    DATA: ZKNA1 LIKE STANDARD TABLE OF KNA1 WITH HEADER LINE.
    SELECT * FROM KNA1 INTO TABLE ZKNA1.
    CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
      EXPORTING
        FILE_NAME                       = 'C:\Documents and Settings\rajesh.NACL\Desktop\XLSSDSDS.XLS'
      CREATE_PIVOT                    = 0
      DATA_SHEET_NAME                 = ' '
      PIVOT_SHEET_NAME                = ' '
      PASSWORD                        = ' '
      PASSWORD_OPTION                 = 0
    TABLES
      PIVOT_FIELD_TAB                 =
       DATA_TAB                        = ZKNA1[]
      FIELDNAMES                      =
    EXCEPTIONS
      FILE_NOT_EXIST                  = 1
      FILENAME_EXPECTED               = 2
      COMMUNICATION_ERROR             = 3
      OLE_OBJECT_METHOD_ERROR         = 4
      OLE_OBJECT_PROPERTY_ERROR       = 5
      INVALID_PIVOT_FIELDS            = 6
      DOWNLOAD_PROBLEM                = 7
      OTHERS                          = 8
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    thanq,
    rajesh.k

  • Can I edit the system file Manifest.XML in Word for Windows? (there's a reason for doing this)

    I renamed a file directory containing several PDFs. Consequently, Adobe Digital Editions says these files are missing when I try to open them and look at notes I made. There seems to be an obvious solution, but I'm unfamiliar with XML and don't want to screw things up. The file locations and a lot of other information for Digital Editions is in an XML file called Manifest. If I can edit the XML file to show the correct directory, I expect I'd be able to see these files and recover my notes. I'm unsure what Word for Windows may do (e.g., add or delete characters) when I edit and save the new Manifest.  That might corrupt the Manifest and be extremely counterproductive.
    Is editing the file locations in Word for Windows safe, so long as Digital Editions isn't open when I do my editing? 

    I can confirm that Notepad++ can happily edit manifest.xml files, but as Jim_Lester says, make a backup (especially if you are not used to XML).
    You may well find that if you Open the .epub files from their new location explicitly from ADE (ctrl-O) that you will both be able to read documents and see the notes.
    I can't vouch for that; but if it works I'd recommend it over editing the manifest file.

  • How to edit the nbu file when the mobile device is...

    How to edit the nbu file when the mobile device is not connected?
    That software that is available in the nokia site “nokia phone browser” is not useful! Why?
    It is not working unless the mobile device is connected (attached)
    It is quite slow when editing the contacts! (attached)
    Then why the nokia doesn’t offer a simple software that enable us to edit and explore the content of our nbu files?
    Is there some workaround in this regard?
    Is there some software the can edit the nbu files?
    Thank you for the help,
    Best
    Jamal
    Attachments:
    Clip_774.jpg ‏166 KB
    Clip_775.jpg ‏127 KB
    Clip_773.jpg ‏243 KB

    when serializing the DOM, use this: transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, scrReg.dtd");
    Merry Chrasmas too ;-)

  • [Keyboard Shortcuts] Editing the indk.-file

    Hi.
    I'm working in a newspaper and we have upgraded our advertisement software. With this software a plugin is installed to InDesign to save and export.
    On the last version you had the possibility to assign a keyboard shortcut in Edit > Keyboard Shortcuts to the feature AdPoint > Save and Export PDF.
    In the new version the menu is stil present and being used to "Save and Export" every advert produced. However, the menu does not appear in Edit > Keyboard Shortcuts.
    Ive been trying to edit the .indk-file, but with no luck.
    I copied the .indk-file from when the last version that was used. It didnt work, but this is the part in the .indk-file:
    <shortcut>
         <action-id value="0xe9600 + 5" name="KBSCE Other:0xe9600kAPP_ExportPDF_MenuItemKey"></action-id>
         <context>DefaultContext</context>
         <string>Shift+Ctrl+E</string>
    </shortcut>
    Anyone know how to make this work?
    Version: InDesign CS5
    OS: Windows 7

    The best way to add a +1 would be for everyone to file a feature request. Those are officially tracked by Adobe (unlike this user-to-user forum) and the more people that ask for something, the more likely it is to be implemented.

  • I can't change shortcuts editing the shortcut file in preferences (mac) with After Effects CC. I Edi

    I can't change shortcuts editing the shortcut file in preferences (mac) with After Effects CC. I Edit the file, but when i open AE, it still the old same keys.
    How to have this working? And why until now, we don't have a GUI for shortcuts?
    I use the Apple Wireless Keyboard, and need to change the preview keys to a suitable ones, because this keyboard don't have the num pad.
    Until CS6, i was using ? and Shift+?, in the place of some kind of Zoom.
    But this time, i edit the file, in a sort of way i tried, and non of then change at all.
    WE NEED A GUI in AE Preferences to CHANGE THE SHORTCUTS!
    Thank You!

    The best way to add a +1 would be for everyone to file a feature request. Those are officially tracked by Adobe (unlike this user-to-user forum) and the more people that ask for something, the more likely it is to be implemented.

  • RV220W - DHCPv6 Prefix Delegation - Edit the configuration file?

    I am trying to configure this router to obtain an IPv6 address from my ISP who offers a dual stack IPv4/IPv6 DHCPv6 Prefix Delegation service.
    I did a WAN packet capture to see the type of DHCPv6 packets the router sends to the ISP in order to obtain an IPv6 address and I saw that the router is sending DHCPv6 solicitation packets of type IA_NA i.e. for Identity Association for Non-temporary Address. However, most ISPs that offer a dual stack IP4/IPv6 service, they use DHCPv6 Prefix Delegation in which case the router is expected to send DHCPv6 solicitation packets of type IA_PD i.e. for Identity Association for Prefix Delegation.
    I then downloaded its configuration file and saw the following:
    dhcpv6c = {}
    dhcpv6c[1] = {}
    dhcpv6c[1]["renewTime"] = "3600"
    dhcpv6c[1]["statelessMode"] = "1"
    dhcpv6c[1]["prefixDelegation"] = "0"
    dhcpv6c[1]["preferredAddress"] = ""
    dhcpv6c[1]["LogicalIfName"] = "WAN1"
    dhcpv6c[1]["requestPreferredAddress"] = "0"
    dhcpv6c[1]["requestDNSSearchList"] = "0"
    dhcpv6c[1]["requestPreferredPrefix"] = "0"
    dhcpv6c[1]["preferredAddressPrefixLength"] = "0"
    dhcpv6c[1]["requestDNS"] = "1"
    dhcpv6c[1]["sendRapidCommit"] = "0"
    dhcpv6c[1]["isEnabled"] = "1"
    dhcpv6c[1]["preferredPrefix"] = ""
    dhcpv6c[1]["_ROWID_"] = "1"
    dhcpv6c[1]["preferredPrefixPrefixLength"] = "0"
    So, the option for the DHCPv6 client to perform a prefixDelegation request is disabled. Does that mean that if I set this flag to "1" it is going to work? Well, I edited the configuration file and changed this flag but the router refuses to load it! It complains about the file being changed. How does it know that? Is it computing some type of checksum? Does anyone know how can I manually edit this flag and update the router's configuration?

    I can't help you because our ISP doesn't support native ipv6.  I suggest you call Cisco Small Business technical support.  All you need is your serial number and your Cisco username to get support.  Tori is awesome to work with.

  • How do I edit the hosts file in Lion

    I tried to edit the hosts file in Lion with: sudo nano /private/etc/hosts. Then entered Password. The window came up blank evev though I know there is data there.

    Thanks BD for your response. I have looked at Youtube where they are demonstrating how to do this by using sudo nano /etc/hosts. After entering the Password it shows a screen with the text of the hosts file. On the bottom of the screen it shows the number of lines read. When I do the same thing I get a blank screen and on the bottom it says no file. I am either doing something wrong or this does not work. I even tried changing the permissions of the hosts file to R & W for system, wheel, and everyone. This also did not work. I have not tried Hostal yet but if I can't find a simple way to text edit the hosts file I will give it a try.

  • Edit the Excel file which i have uploaded in my blob domain.

    Hi,
    Am using jdeveloper 11.1.1.6.0.,
    I have dragged and dropped my VO as af:form in which uploadFile is a blobdomain.
    This is the code which i have used for upload and download my excel document.
    public void uploadFileValueChangeEvent(ValueChangeEvent valueChangeEvent) throws IOException,
    SQLException {
    // Add event code here...
    // The event give access to an Uploade dFile which contains data about the file and its content
    UploadedFile file = (UploadedFile)valueChangeEvent.getNewValue();
    // Get the original file name
    String fileName = file.getFilename();
    long filesize = file.getLength();
    long fkb = filesize/1024;
    // get the mime type
    String contentType = file.getContentType();
    //ContentTypes.get(fileName);
    // get the current roew from the ImagesView2Iterator via the binding
    DCBindingContainer lBindingContainer =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding lBinding =
    lBindingContainer.findIteratorBinding("XFilesView1Iterator");
    Row newRow = lBinding.getCurrentRow();
    // set the file name
    newRow.setAttribute("FileName", fileName);
    // create the BlobDomain and set it into the row
    newRow.setAttribute("FileContent", createBlobDomain(file));
    // set the mime type
    newRow.setAttribute("FileType", contentType);
    newRow.setAttribute("FileSize", fkb);
    private BlobDomain createBlobDomain(UploadedFile file)
    throws IOException, SQLException {
    // init the internal variables
    InputStream in = null;
    BlobDomain blobDomain = null;
    OutputStream out = null;
    try
    // Get the input stream representing the data from the client
    in = file.getInputStream();
    // create the BlobDomain datatype to store the data in the db
    blobDomain = new BlobDomain();
    // get the outputStream for hte BlobDomain
    out = blobDomain.getBinaryOutputStream();
    // copy the input stream into the output stream
    * IOUtils is a class from the Apache Commons IO Package (http://www.apache.org/)
    * Here version 2.0.1 is used
    * please download it directly from http://projects.apache.org/projects/commons_io.html
    IOUtils.copy(in, out);
    catch (IOException e)
    e.printStackTrace();
    catch (SQLException e)
    e.fillInStackTrace();
    // return the filled BlobDomain
    return blobDomain;
    public void Download(FacesContext facesContext,
    OutputStream outputStream) {
    // Add event code here...
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    // get an ADF attributevalue from the ADF page definitions
    AttributeBinding attr = (AttributeBinding) bindings.getControlBinding("FileContent");
    if (attr == null)
    return;
    // the value is a BlobDomain data type
    BlobDomain blob = (BlobDomain) attr.getInputValue();
    try
    {   // copy hte data from the BlobDomain to the output stream
    IOUtils.copy(blob.getInputStream(), outputStream);
    // cloase the blob to release the recources
    blob.closeInputStream();
    // flush the outout stream
    outputStream.flush();
    catch (IOException e)
    // handle errors
    e.printStackTrace();
    FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, e.getMessage(), "");
    FacesContext.getCurrentInstance().addMessage(null, msg);
    My Scenario :
    I need to edit the uploaded file and save it back to the same location.
    How can i achieve this?

    By edit you mean changes the cells of the excel file?
    For  this you have to download the file to the client, let him make the changes and upload it again.
    You may want to look into Desktop integration
    Or if you want to change it in java you can use POI to change the file. However you first have to get it out of the blog, change it and put it back into the blob.
    Timo

  • Relocate SYSTEM  TS and edit the control file in oracle10g !

    Friends ,
    I want to change my SYSTEM and SYSAUX tablespace's lcation as well as rename the filename in oracle10g database . is it possible to do ?
    And also I want to edit the control file and rebuild a new controlfile . is it possible ?
    Plz inform me ....
    Waiting for ur reply ......

    Here below I just rename the file (with host command line), but the Oracle commands are exactly same if you move the files.
    SQL> select file_name from dba_data_files where tablespace_name in ('SYSTEM','SYSAUX');
    FILE_NAME
    /data/oracle/cdev10/system01.dbf
    /data/oracle/cdev10/sysaux01.dbf
    SQL> startup force mount
    ORACLE instance started.
    Total System Global Area 1002438656 bytes
    Fixed Size                  2088832 bytes
    Variable Size             469762176 bytes
    Database Buffers          507510784 bytes
    Redo Buffers               23076864 bytes
    Database mounted.
    SQL> !mv /data/oracle/cdev10/system01.dbf /data/oracle/cdev10/system_01.dbf
    SQL> !mv /data/oracle/cdev10/sysaux01.dbf /data/oracle/cdev10/sysaux_01.dbf
    SQL> alter database rename file '/data/oracle/cdev10/system01.dbf' to '/data/oracle/cdev10/system_01.dbf';
    Database altered.
    SQL> alter database rename file '/data/oracle/cdev10/sysaux01.dbf' to '/data/oracle/cdev10/sysaux_01.dbf';
    Database altered.
    SQL> alter database open;
    Database altered.
    SQL> select file_name from dba_data_files where tablespace_name in ('SYSTEM','SYSAUX');
    FILE_NAME
    /data/oracle/cdev10/system_01.dbf
    /data/oracle/cdev10/sysaux_01.dbf
    SQL>What's the need to rebuild the ctlfile ?
    Nicolas.

  • Image shows both NEF +JPEG, how do I know I'm editing the RAW file?

    In the Library module I have images that show NEF+JPEG.  When I click on the image and go to the Develop module, how do I know that I'm editing the RAW file?

    When you go to the develop module  (a.) The file type should be displayed and (b.) In the basic panel you will have the option to select the White Balance, if the file were jpeg or tiff i.e. an already rendered image it would only show embedded.  See screen capture.

  • Reg: not able to edit the property file.

    Hi,
    I have imported the track and in one of the DC i am not able to edit the properties file. What could be the reason.
    Thanks in advance.

    Hi
    Since you are in Track.
    Which propertyu file ???
    Best Regards
    Satish Kumar

  • How do I edit the host file in ipad

    I would like to test our site and would like to point the URL to a different server. Is there a way to edit the hosts file similar to how you would do it on other computers?

    iPhoneView will let you get at your system files.
    Check out the new remodeled MacOSG website! 24-hour Apple-related news & support.
     MacOSG: An Apple User Group  iTunes: MacOSG Podcast  Follow us on Twitter: MacOSG

Maybe you are looking for

  • Mac mini 2012 - Video Problem (Not HDMI Flickering)

    Hello guys, I have a problem with video, it causes to shut down the monitor while is playing Chefville in facebook, i had no idea why would to turn off monitor. It doesn't present any "beep" sound, it seems Intel HD4000 is a defective. I waited like

  • Export itunes to memory stick - to be used in Ford Synch

    I have two questions maybe somebody can answer either or both. I am getting a Ford with MS Synch installed. I think plugging a ipod or into the usb port and leaving it is a $$ waste since I can control it using voice recognition and do not need to to

  • Error digital signature

    I signed a document and chose lock after signing. I then saw I had more to fill out in the document and couldn't get back in so filled out another copy of the same document and now cannot sign.  I get the error message "creation of this signature cou

  • Adf data page problems

    I'm traying to create a data page to display the result of a view in JDev 10g. when i run the page....i got a page not found! what can be the problem?

  • Stopwatch continues to Run in the background

    Took awhile for this to develop, but the stopwatch resets itself to zero now after just a half hour of running. That's what alerted me to the underlying problem. I've left the stopwatch running for several days in the past. I don't know if that's the