Newbie Map File question

I have inherited a huge project in RoboHelp which contains
multiple map files. One of the map files is the custom map file
that was apparently imported. This is the only one I need, yet
there is also a BSSCDefault.h. When I right click to delete, it is
greyed out. There are no map IDs in it, but it's still there. There
is also the "All Map IDs" file which appears to be identical to my
custom file. I'm guessing that one has to stay? I've managed to
delet all the rest of the old map files.
Each time I assign a map ID I feel that I have to make sure
that I select my custom map ID from the drop-down box, and that's
just one more step that I could accidentally forget. I'd rather do
away with everything else so I'll know that I'm always using only
my custom map file. Is this possible?
Thanks so much in advance for your help.

Welcome to the forums.
I don't think the "All Map IDs" is a file in itself, but
maybe a combination of all files' IDs displayed together. I don't
know for sure, as I always use only one map file for a project, and
I leave BSSCDefault empty. The BSSCDefault file seems like it is
forced on us, but we don't have to use it, as you know.
I think you mean that you are selecting your custom map file
name from the "Map File" dropdown box. You can skip that step by
clicking on your map file's name in the Project Manager. For
example, I have a map file called "cshmap.h." In the Project
Manager, I expand Context-Sensitive Help, then Map Files, then
double-click "cshmap.h," which has a page icon with an "h." The map
ID dialog opens with cshmap.h selected in the dropdown, so all the
changes I make will be in that file.
Hope this helps,
Ben

Similar Messages

  • CGI map file questions, help !!!

    I am trying to use the CGI map file to open web reports. I got two questions at this time.
    1. How to refresh the report to reflect resent edits ? I used the CGI map to open a report. Later, I made some edits to the report and opened it again. However, the browser showed the report before the edit. I had to save the report to different file name and edited the key in the map file to show the edited report. This should not be the right way.
    2. How to open a report on a separated screen which is on top of the original one ?
    Any suggestions? Thanks!
    null

    Hi Kate.
    As far as a find and replace tool is concerned, most of us
    here prefer using some tool such as FAR or BkReplacem as they offer
    more features to help in this kind of scenario. The simple answer
    is however that these tools, as indeed does the inbuilt tool, bases
    it's search on the HTML. Therefore if there are specific instances
    of HTML strings you will have to analyse carefully them before you
    replace anything. It sounds like you are already some down down
    this line. Take a backup of your project and test out your theory.
    As far as your map file question is concerned, you can safely
    reimport your map file PROVIDED that no changes have been made to
    the mapids in the meantime. Personally I wouldn't do this unless
    you are 100% sure of this. If it is a case of having 100s of topics
    that are not mapped and never have been but could be, I'd just
    create a new map file and map away.

  • Newbie Library file question

    I have an application that fails 50 -60% of the time. The author wants me too remove the Library file that allows me to see AVI movies from my Casio Elxim digital camera. This call to that file allows the use of Quick time to view my camera avi movies and it works flawlessly.
    However I read in David Pogues Missing manual for Tiger OSX that he reccomends not moving or deleating Library files.
    So what I was wondering, is there a way just to comment out this library entry so I can see if this is the culprit the author of my failing application claims it may be with out deleating the Library entry?
    Thanks in advance for your time.

    763/3209
    Hi Da Brain,
    Your backup is up-to-date, as always, isn't it?
    So,
    yes, do not delete the file, but you can simply drag it off the Library, put it on the Desktop, restart your computer, verify that it is not anymore at its Library location, and try now, see if your system really works better without it.
    As soon as you would need the file again (or if it causes an unexpected problem), you would take it back from the Desktop, drag it back to its Library location.
    What file is it exactly? If it was not installed by Mac OS X itself, trying the Desktop move should be perfectly safe.
    HTH
    Axl

  • How to Rename a Topic ID in Map File to Avoid Conflict with Another Program?

    Robo 8 HTML:
    Can somebody assist me in understanding how to rename a topic ID in my map.h file?
    An application programmer informs me there are nine topic IDs (shown below) in my project map file which conflict with predefined names of constants/functions from the Visual Studio Libs program and, is requesting I change the names of the topics listed below to resolve topic ID conflict in order to enable F1 call for these topics.
    #define Open    59
    #define Save    60
    #define Print   63
    #define Cut     72
    #define Copy    73
    #define Paste   74
    #define Clear   75
    #define Status  81
    #define Substructure  139
    Can I simply alter the topic names and retain their associated map numbers in <Create/Edit Map ID> dialog to resolve the map file conflict with Visual Studio Libs program functions? Or, is there more work involved in changing a topic name in a map.h file?
    Any assistance with this question is greatly appreciated.
    Thanks,
    robert

    Hi,
    Simply renaming the TopicID's in the .h file won't work. The TopicID is used in the alias file (projectname.ali) to link a map number with a topic. Also, you can use either TopicID's or map numbers to call the help. (Using TopicID's only works for WebHelp afaik.)
    If you use map numbers to call the help, you can rename the TopicID using the mentioned dialog. No problem.
    If you want to change the ID from the files, you have to change both the .h file as the .ali file. No changes to topics needed.

  • How can I instruct SqlMetal to exclude the 'storage' attribute of all the columns on a mapping file when converting a .dbml file to a mapping file?

    Hi,
    I'm trying to use LINQ to SQL with a top down approch using my own POCO classes. I'm using a XML file for the external mapping but in order to avoid typing a long file by hand I found that I could use the O/R designer to create the .dbml and from there I
    could use SqlMetal.exe to generate the map file from the .dbml. The only thing is that, by default, SqlMetal generates a map file which includes the 'storage' attribute for all the columns of the database. For example:
    <
    Column
    Name="Ticker"
    Member="Ticker"
    Storage="_Ticker"
    DbType="NChar(20)
    NOT NULL"
    CanBeNull="false"
    />
    However, in my code I only use automatic properties (Ticker, in this example) and not properties with the corresponding private field. Basically, I don't have any field "_Ticker" in my class. I found out that this the reason why I'm getting the error
    "Bad Storage property: '_Ticker' on member 'TTS.Domain.Asset.Ticker" when trying to add an entity to the database. However, ff I delete the all the 'storage' attributes from my mapping file everything works fine.
    Is there a way so I could use SqlMetal to generate a map file from a .dbml file but in which it never includes the 'storage' attribute?
    Thanks.
    Best,
    Miguel T.
    This is reason why I'm getting the error.

    Hi Serguey,
    I was expecting that answer but I still had some hope that it could be possible! I checked those 2 links before sending my question.
    Currently, I'm deleting the storage attributes everytime that I generate a mapping file. The issue is that I will have to do this eveytime that I need to add data in my O/R designer which happens quite frequently since I'm working with iterations in my project.
    It's not very practical but it's still better than write the additional data by hand.
    I don't know how I could create my own mapping validation in order to exclude the 'storage' attributes everytime that I generate a mapping file from a .dbml file with SqlMetal but I will check that option too.
    Thanks for your helps.
    Best,
    Miguel.

  • Nio ByteBuffer and memory-mapped file size limitation

    I have a question/issue regarding ByteBuffer and memory-mapped file size limitations. I recently started using NIO FileChannels and ByteBuffers to store and process buffers of binary data. Until now, the maximum individual ByteBuffer/memory-mapped file size I have needed to process was around 80MB.
    However, I need to now begin processing larger buffers of binary data from a new source. Initial testing with buffer sizes above 100MB result in IOExceptions (java.lang.OutOfMemoryError: Map failed).
    I am using 32bit Windows XP; 2GB of memory (typically 1.3 to 1.5GB free); Java version 1.6.0_03; with -Xmx set to 1280m. Decreasing the Java heap max size down 768m does result in the ability to memory map larger buffers to files, but never bigger than roughly 500MB. However, the application that uses this code contains other components that require the -xMx option to be set to 1280.
    The following simple code segment executed by itself will produce the IOException for me when executed using -Xmx1280m. If I use -Xmx768m, I can increase the buffer size up to around 300MB, but never to a size that I would think I could map.
    try
    String mapFile = "C:/temp/" + UUID.randomUUID().toString() + ".tmp";
    FileChannel rwChan = new RandomAccessFile( mapFile, "rw").getChannel();
    ByteBuffer byteBuffer = rwChan.map( FileChannel.MapMode.READ_WRITE,
    0, 100000000 );
    rwChan.close();
    catch( Exception e )
    e.printStackTrace();
    I am hoping that someone can shed some light on the factors that affect the amount of data that may be memory mapped to/in a file at one time. I have investigated this for some time now and based on my understanding of how memory mapped files are supposed to work, I would think that I could map ByteBuffers to files larger than 500MB. I believe that address space plays a role, but I admittedly am no OS address space expert.
    Thanks in advance for any input.
    Regards- KJ

    See the workaround in http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4724038

  • Web Service mapping file

    You will be greatly appreciated if you can help me on following question:
    In a web service mapping file, under <java-xml-type-mapping> element, either <anonymous-type-qname> or <root-type-qname> is valid element according to schema. My question is which one should be used under which situation?
    Thanks,
    Michael
    ===========
    Mapping file
    ===========
    <java-wsdl-mapping xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd"
    version="1.1">
    <package-mapping>
    <package-type>test</package-type>
    <namespaceURI>http://test/</namespaceURI>
    </package-mapping>
    <java-xml-type-mapping>
    <java-type>test.Status</java-type>
    <anonymous-type-qname>{http://test/}Status</anonymous-type-qname>
    <qname-scope>complexType</qname-scope>
    ==========
    Schema
    ==========
    <xsd:sequence>
    <xsd:element name="java-type" type="j2ee:java-typeType">
    <xsd:annotation>
    <xsd:documentation>The java-type element is the fully qualified class name of a Java class, primitive, or array type.</xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    <choice>
    <xsd:element name="root-type-qname" type="j2ee:xsdQNameType"> <xsd:annotation>
    <xsd:documentation>The root-type-qname identifies the WSDL QName of an XML type.
    </xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    <xsd:element name="anonymous-type-qname" type="j2ee:string">
    <xsd:annotation>
    <xsd:documentation>The anonymous-type-qname identifies the WSDL QName of an anonymous XML type.
    </xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    </choice>

    I am stuck here with the same problem - don't know what to do with the (required) Mapping File.
    Has anyone found out?
    Please let me know.
    Best,
    Philipp
    [email protected]

  • Map ID question

    I found a few posts on Map IDs, but none of them exactly answer my question, at least not that I can tell. My apologies if this is a duplicate.
    I'm using RoboHelp 9.
    I am working on a HTMLHelp project with a .chm output.  I want to implement dialog-level help. That is, there will be a help button or icon on the window and the user will click that to get help on the window itself.
    Let's ignore the question of whether the developers reuse a window, changing the output with variables, which is something I read about on a post I found. Let's assume for a second that the developer will be able to "hook up" the help button to a topic as long as I give her a map file.
    As someone noted in a previous topic, auto-map works well the first time you use it, but the question is, how do I automatically get a map ID for a topic I've added?
    For example, today I added 20 placeholder topics. The only way I know to get map IDs for a new topic is this:
    1. Open Topic Properties (I'm right-clicking on the topic in the Topic List pane and selecting Properties).
    2. Click the Advanced tab.
    3. Click the Edit Map IDs button.
    4. Select the Map File at the top.
    5. Make sure that the correct topic is highlighted in the right pane (it's hard to see).
    6. CLick the Auto-map button.
    Isn't there any way to configure RH so that whenever I create a new topic, RH automatically gives it a map number without me doing anything?
    (And am I imagining it, or did RH at one time used to do this? I've used it sporadically since 1995, and I don't remember having to re-open the Properties window. Maybe the window for creating a new topic had a checkbox?)
    Colum, I read your article and comments on manually adding the new map IDs.  As you can probably tell by the fact that I'm creating placeholder topics, this help file isn't complete yet. Should I just delete the map file, wait until I've finished adding topics, and then auto-number as if I was just starting out?

    Hi,
    Currently, there is no way to assign a map number automatically to a topic when they are created but you can manually select multiple topics and auto-map them in one-go by doing the following steps:
    1. Open the Edit Map IDs dialog by doing one of the following:
    (a) Open the Project Set-up pod and navigate to the Context-Sensitive Help > Map files folder and double click on a map file to edit it.
    (b) Open Topic Properties, click on Advanced tab and then click on Edit Map IDs button.
    2. Select the Map File from the Map File drop-down in the Edit Map IDs dialog.
    3. Now select all the required topics by pressing Ctrl button and clicking on the topics.
    4. Click on Auto-map button.
    Thanks,
    Aditi

  • Subfolders in Map Files and Baggage?

    Using Robo 6 to create webhelp. This is one of many issues I'm seeing since inheriting this help project that had not been updated in 2+ years.
    Today's question is, why are the topic folder names that I use to organize my content being re-created under Map IDs and Baggage? I have 5 folders under HTML Files (Topics) and these same folder names show up under Map Files and Baggage files, and they are empty. Also one HTMLPages folder is showing up that isnt' even in my help project. I have 5 other stand-alone help pages that I use Robo to maintain but they are in a completely different folder, outside of the Help project fodler.
    I only have one map ID file and no baggage files. But it won't let me delete these "extra folders under Map Files and Baggage fiels so clearly it thinks they are needed.
    thankyouverymuch...

    Hi there
    You have to understand the way RoboHelp works with these. Note the folders have icons on them. The Baggage and Image folders. This means they aren't true folders you will see in the Windows file system. This means RoboHelp is simply presenting what it knows about in that category. So when you create a folder in your project, you are creating a true folder in the Windows File System. It is then visible in the other "pseudo-folders" presented by RoboHelp.
    Perhaps this link will help. Click here
    Does that make more sense? Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Using map file from Mercator in ECXpert

    Hi all,
    I am using the Mercator map file in the Mercator example (<Mercator install dir>\Examples\XML\XML2EDI\ XML2EDI.mms) and convert the map file to Solaris platform map file (XML2EDI.sun) using Mercator Map Designer.
    After that the .sun map file is used in ECXpert. The input file is poin.xml. The transaction is not succesful and error occurs as the require stylesheet base directory not found.
    The stylesheet directory can be set in the /<install dir>/NS-apps/ECXpert/data/stylesheet/ecxstylesheet.xml, but the problem is for this map file (.sun), the stylesheet is not used.
    Question:
    1.Does map file (.sun) need a stylesheet?
    2.Does this stylesheet need to be created?
    3.What are the requirements to use the .sun map file (that is converted from.mms for xml input file)?
    Do appreciate your response. Thanks.
    Regards,
    Mei Ling

    Mei Ling,
    See inline for comments...
    Regards,
    Saket
    Hi Saket,
    Thanks for ur reply.
    I have change the partnership type to normal type
    (Application to Apllication), but still having the
    same problem which it always looking for a
    stylesheet.
    Seems like i am using the ECXpert XML capabilities as
    well even though i have change to Application to
    Application in the partnership.You probably need to describe what you are doing in greater detail here. Looks like a configuration issue to me. Also, what version of ECX are you using? And what is the version of the Mercator Design Studio (including the patch number/build number)?
    If you can provide me with more details of the steps you are doing to set this up, I may be able to help you better.
    >
    Question:
    How do i use Mercator in ECXpert? Is this the right
    way by simply convert a Mercator map file to (.sun)
    and put it into the map file path of ECXpert and
    creating partnership and services for it?That is correct. Don't see anything obviously wrong here. You have to watch out for the version of your Design Studio and the Mercator runtime though. Have you opened a case with Sun Tech Support for this? If not, I suggest you do so.
    >
    Appreaciate for ur response.
    Regards,
    Mei Ling

  • Map files - php application

    Hi Everyone,
    The software I am documenting is created in php (and my help
    output is WebHelp (RoboHelp 6)) - is there any way I can create map
    files with the extension .php instead of .h?
    Thanks

    Hi eagleowl1. I may be showing my ignorance of PHP but why
    would you want to? The map file is not actually used by the
    application. Instead it is used by your developers to code the CSH
    call. Does PHP act differently? Anyway to answer your question, no
    it can't from inside RH.

  • Map files and map IDs

    This question was posted in response to the following article: http://help.adobe.com/en_US/robohelp/robohtml/WS5b3ccc516d4fbf351e63e3d11aff59c571-7ff9.ht ml

    Typo in this section:
    Remove an unused map ID
    Your map files must be unlocked to use this option. To remove unused map IDs:
    Expand the Context-Sensitive Help folder in the Project Set-up pod.
    Right-click the Map Files folder.
    Select Edit.
    Do the following:
    Map Files Select the map files from which to remove unused map IDs.
    Select All Click to remove unused map IDs from all map files.
    Clear All Click to deselect all map files and not remove unused map IDs.
    The third point should read "Select Remove Unused Map IDs..." instead of "Select Edit"; then the rest of the topic makes sense.

  • AD OID mapping rule questions

    Hi,
    Can someone please tell me how to map the first and last names from AD to OID in the mapping file. Currently I have the following and wanted to make sure if it's correct:
    sn,SAMAccountName: : :person:sn: :person:sn|SAMAccountName
    givenName: : :person:givenName: :person
    # Map the userprincipalname to the nickname attr by default
    #userPrincipalName: : :user:uid: :inetorgperson:userPrincipalName
    # Map the SamAccountName to the nickname attr if required
    # If this rule is enabled, userprincipalname rule needs to be disabled
    sAMAccountName: : :user:uid: :inetorgperson:sAMAccountName
    The other question I have is why we need to disable userprincipalname rule when the following is enabled. As I am also trying to enable WNA/SSO too, what other rules I need for that in my mapping file.
    sAMAccountName: : :user:uid: :inetorgperson:sAMAccountName
    Thanks

    I have these first two rules here and they seem to be working fine. But I think you will have trouble with the third one with WNA authentication.
    About the two last rules for uid, the reason you can only have onle one of these is that both are storing a value on the uid attribute. You need to choose wether you want to use the samaccountname or the userprincipalname on it.
    I remember seeing somewhere that for WNA authentication to work the uid should be in the format [email protected], so you would need to map userprincipalname to uid instead of samaccountname, I am not absolutely sure about this since I have never setup WNA.
    And also you would need to populate the krbprincipalname. I think this one is automatically copied to the orclsamaccountname attribute, which is required. I have a rule like this here:
    userPrincipalName: : :user:krbPrincipalName: :orcluserv2:trunc(userPrincipalName,'@')+'@'+toupper(truncl(userPrincipalName,'@'))
    There are some walktroughs on Oracle By Examples that I found very usefull. This one is for WNA:
    http://www.oracle.com/technology/obe/obe_as_10g/im/wna/wna.htm
    Regards,
    Luis

  • Making a .EVO and .MAP file using DVD studio Pro..............

    I am trying to make a .EVO and .MAP file using DVD Studio Pro. Please dont respond to this if you have no idea what this is. Dealing in real HD situaiton....trying to find a quick and dirty way to make these files as placeholders, was hoping DVD studio Pro could do it. Thanks.

    you cant make them using DVD Studi pro, since they are for TRULY 1080p (23.98fps) projects using vc1.
    funny thing is if you know about these files, you would also KNOW that DVDSP does not do this!
    i have seen this files on the toshiba GUI but have not seen them with the blu-ray authroing compile.
    also, i am going to have to say that if you are TRULY "Dealing in real HD situaiton." you wouldnt NEED DVDSP.
    so ease up with the chip and if you have a REAL question ask it, if yo uare just here to show your feathers.. not interested!

  • How to .map files with OS X?

    The title is basically the question. I am about to start work on an RPG and the python module I am going to use requires .map files for many functions.
    I found 1 or 2 programs for Windows machines, but none for OS X.
    If you know any programs or suggestions please respond. If I have to program my game on MS it will never get done.

    Yes, you can install OS 9 onto the same volume.  However, when you initially formatted the drive you had an option to install Mac OS 9 drivers.  If you did not choose that option then you can only use OS 9 through the OS X Classic emulator.  You cannot boot directly into OS 9 unless the OS 9 drivers were installed when the drive was formatted.
    To install the Mac OS 9 drivers you would need to re-partition the drive which is a destructive process that will remove all the data currently installed.
    There is afirmware update needed for your particular model.  The update must be installed while booted directly into OS 9.1 or higher.  You may want to check with your sister to find out if the update has already been installed.

Maybe you are looking for

  • Access AM in Model from a different project inside the same applictaion

    Hi I am using JDeveloper 11.1.1.6.0 I am tryiing to create an AM instance in a java class which is inside the a project The structure of my APP is as shown below MYAPP |___Model |___MyProject |___ViewController the Java class is inside the MyProject

  • Provisioning user to AD failing after upgrading AD Connector

    Hello, I am facing issue while provisioning user to AD after i upgraded AD connector from 9.1.1.5 to 9.1.1.7, upgradtion successfull message was shown & when i tried to provision a user to AD it shows CreateUser task is rejected & following is the re

  • Mac keeps losing wireless network

    This has been happening on and off now for a few weeks but has got much worse recently. My mac suddenly doesn't recognise my BT broadband network name. It often takes up to half an hour before it suddenly comes back on again. Any suggestions? I'd be

  • Deleted it and cannot restore it

    I downloaded ask.com when ever I booted up this box came up upper left when I closed it I was back to my task bar so I removed mozilla firefox from my progroms and now can't restore it it is gone completely when I try to download it anew nothing happ

  • How can i fix my iphone 4

    how can i fix my iphone 4 if it got stuck on the apple icon while rebooting after i downloaded ios6 if my power button is stuck? because ive tried everything and nothing works it wont let me restore...im very dissatisfied about this apple, i thought