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.

Similar Messages

  • 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

  • PI 7.1 : Taking a input PDF file and mapping it to a hexBinary attribute

    Hello All,
    We have a requirement which involves taking in an input PDF file and mapping it to a message type with binary attribute and sending it to an R3 system.
    Can anyone please detail the steps or point us to the correct documents for setting up the scenario.
    The scenario is file to Proxy adapter. The part which we need assitance is pulling up the input pdf and mapping it to binary field.
    Thanks.
    Kiran

    Thanks Praveen,Mayank,Sarvesh and Andreas for your  valuable help with the issue.
    I was able to successfully pick up the binary PDF file from a file server , encode it using Base 64 and post it to R3.
    I used the following code snippet and added the mentioned jar files to create a new jar file which was used as java mapping in the operation mapping.
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.*;
    import com.sap.aii.utilxi.base64.api.*;
    import java.io.*;
    import java.util.*;
    public class Base64EncodingXIStandard implements StreamTransformation{
         String fileNameFromFileAdapterASMA;
         private Map param;
         public void setParameter (Map map)
              param = map;
              if (param == null)
                   param = new HashMap();
         public static void main(String args[])
              Base64EncodingXIStandard con = new Base64EncodingXIStandard();
              try
                   InputStream is = new FileInputStream(args[0]);
                   OutputStream os = new FileOutputStream(args[1]);
                   con.execute(is, os);
              catch (Exception e)
                   e.printStackTrace();
    public void execute(InputStream inputstream, OutputStream outputstream)
                   DynamicConfiguration conf = (DynamicConfiguration) param.get("DynamicConfiguration");
                   DynamicConfigurationKey KEY_FILENAME = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
                   fileNameFromFileAdapterASMA = conf.get(KEY_FILENAME);
                   if (fileNameFromFileAdapterASMA == null)
                        fileNameFromFileAdapterASMA = "ToBase64.txt";
              try
                   while ((len = inputstream.read(buffer)) > 0)
                        baos.write(buffer, 0, len);
                   str = Base64.encode(baos.toByteArray());     //buffer);
                   outputstream.write("<?xml version=\"1.0\" encoding=\"utf-8\"?><ROOT>".getBytes());
                   outputstream.write(("<FILENAME>" + fileNameFromFileAdapterASMA + "</FILENAME>").getBytes());
                   outputstream.write( ("<BASE64DATA>" + str + "</BASE64DATA></ROOT>" ).getBytes());
              catch(Exception e)
                   e.printStackTrace();
         byte[] buffer = new byte[1024*5000];
         ByteArrayOutputStream baos = new ByteArrayOutputStream();
         int len;
         String str = null;
    I had to do the following configuration settings
    1)  Create a Sender Comm Channel with Adapter Specific message attributes and Filename checkbox checked.
    2) Use the Java Mapping in the Operation mapping.
    The scenario is working smoothly with out any issues.
    Thanks.
    Kiran

  • Problem in Creating .wsdl file and mapping.xml with ant

    hi
    i am created my .wsdl file and mapping.xml file with wscompile tool but when i run this by ant tool it show a problem.
    the command runs on command prompt but when run throught ant file it shows a following error :-
    Execute failed: java.io.IOException: CreateProces: wscompile -define -mapping build\classes\META-INF\mapping.xml -d . -nd build\.................and so on
    so if anybody have any idea then plz help me asap
    thanx

    The following Ant snippet is the way I've defined my wscompile task. I'm creating a web application and it looks like yours might be an EJB endpoint, but you can adjust where necessary:
    <taskdef name="wscompile" classname="com.sun.xml.rpc.tools.ant.Wscompile">
         <classpath refid="compile.classpath" />
    </taskdef>
    <target name="init">
         <echo message="-------- ${appname} --------" />
    </target>
    <!-- This target compiles the server components using an existing WSDL as the driving document.
           The configuration file must use the <wsdl> element giving the location (local file system
           or URL) of the WSDL document.
           Note: the fork argument is needed to over come a bug when using the mapping argument. See
           http://forum.java.sun.com/thread.jspa?threadID=592994&tstart=0
      -->
         <target name="generate-server-from-WSDL" depends="init">
              <wscompile fork="yes"
                           keep="true"
                           base="${basedir}/WebContent/WEB-INF/classes"
                           import="true"
                           features="wsi"
                           xPrintStackTrace="true"
                           verbose="true"
                           mapping="${basedir}/WebContent/WEB-INF/jaxrpc-mapping.xml"
                           sourcebase="${basedir}/src"
                           config="${config.server.doclit.file}">
                   <classpath>
                        <path refid="compile.classpath" />
                   </classpath>
              </wscompile>
         </target>
         <target name="compile-server-from-WSDL" depends="generate-server-from-WSDL">
              <javac srcdir="${basedir}/src" destdir="${basedir}/WebContent/WEB-INF/classes" debug="${compile.debug}">
                   <classpath refid="compile.classpath" />
              </javac>
         </target>Just make sure that the named destination directories exist before you run the script.
    If you'd like more details on the wscompile Ant task, I found the following pages invaluable:
    https://jax-rpc.dev.java.net/whitepaper/1.1/index-part1.html

  • Combining 2 files and mapping it to a single destination file

    hi all;
    if i am combining 2 files and mapping it to a single destination file then do we need to define 2 sender communication channels and 1 receiver communication channel

    i have done with the BPM.
    steps
    1 Block with corelation name
    2 Fork with end condition counter not equal 2
    3 fork branch 1 -- receive with corelation and container incrementing count by 1
      fork branch 2 -- receive with corelation and container incrementing count by 1
    4 transformation
    5 send
    i have source file structure during mapping:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:SenderData1 xmlns:ns1="http://multimapping.com">
             <Name>AAAA</Name>
          </ns1:SenderData1>
       </ns0:Message1>
       <ns0:Message2>
          <ns1:SenderData2 xmlns:ns1="http://multimapping.com">
             <Name>BBBB</Name>
          </ns1:SenderData2>
       </ns0:Message2>
    </ns0:Messages>
    i breaked the structure in 2 and placed it in different files
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:SenderData1 xmlns:ns0="http://multimapping.com">
       <Name>AAAA</Name>
    </ns0:SenderData1>
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:SenderData2 xmlns:ns0="http://multimapping.com">
       <Name>BBBB</Name>
    </ns0:SenderData2>
    is that all to be done

  • I installed a game, where can i find the files and maps? where does iMac store this data?

    I installed a game,Now I need to add some files however, I cannot find where iMac stores it.. where can i find the files and maps? where does iMac store this data?
    thx alot
    erik

    Depends on game, i would look first on the game file itself, right click (or ctrl click) the game file you installed (Applications?) and select show package contents, its usually a application bundle, as in basicly a folder where the application and the required files and subfolders are.

  • Imported a .h map file, no Map IDs show

    Background: RoboHelp 10 project, linked to a FrameMaker 11 book, HTML Help output. No errors or missing resources on update of Fm book.
    After linking the project to a Fm book with TopicAlias markers selected for CSH, I imported a .h map file used by the developers and did a Force Update All. The imported map file shows up under the Map Files node in the Project Set-up pod. But when I double-click it, nothing displays in the Map IDs panel on the left side of the Edit Map IDs dialog box.
    I thought 1) specifying TopicAlias markers for CSH during link setup, and 2) importing the developers' .h file would map the IDs to the topics.
    Am I doing something wrong in the linking or .h import steps? I really don't want to have to manually edit the topic IDs in BSSCDefault.h--there are hundreds of them.

    Umm, if you’re using the markers from your FM files to set the mapping, why are you getting something from the developers? In your workflow I would expect you to be sending them your .h file, not the other way round ;>)

  • Map loader and map version numbers?

    ive just spent 4 hours downloading and installing western europe for my n95 8gb and maps 3
    My map loader is version 3.0.24.0 and map version 0.1.22.103
    how can I check in future that a new map version is out for my phone and western europe???
    thanks
    Message Edited by liam182 on 03-Jul-2009 03:31 PM

    unfortunately no, it does not seem that you can compare the version of map data. strange though, i wouldn't have thought it would be that difficult to include the date of maps in the software. but alas, there is no option anywhere in Map Loader or the Maps application to view this . ohwell, i personally don't see the need to update maps until at least six months/a year in the future anyway. unless the region that you live in is constantly changing and it affects your travel habits, in which case you can see the importance. but i'm happy enough updating every six months/a year (yearly in which new version of Maps is released anyway).
    personally, also i think standalone GPS units for cars such as TomTom, Navman etc are much more useful in day-to-day usage for navigation. nothing against Nokia phones, but just for convenience they are much much easier and there is the larger screen which makes things much much easier. for me, the phones are useful in Pedestrian mode or for short distance, non-complicated routes (i.e. few street directions). then again, i also use a paper street directory sometimes as well. just whatever floats your boat i guess  
    kudos, kudos   
    If you found this or someone's comments helpful or like what that person has to say, please give some Kudos to their post!

  • EDI 821 and EDI 823 field mapping file and basic IDOC type and message type

    Hi All,
    We are facing some issues regarding EDI 821 and EDI 823 file mappings.
    We are mapping EDI 821 and EDI 823 transactions into SAP using IDOCs. Currently we are using the below entries
    EDI 823 - Lock Box
    Basic IDOC type - FINSTA01
    Message type - FINSTA
    Process Code  - FINS
    The problem is we are able to get the IDOC into SAP with status red and the various errors were due to not able to create the lockbox entry in SAP and once we got yellow status also but the lock box entry was not created and the errors are like No Conversions,no header etc.
    EDI 821 -
    Basic IDOC type - PEXR2002
    Message type - PAYEXT OR REMADV
    Process Code  - PEXC OR REMA
    We are facing the same problem here also and the internal payment order is not creating in SAP and IDOC was generated with yellow status and red status.
    We are trying different combinations but nothing is working so far.
    I need the following things to proceed furthur.
    1)Are the IDOC , Message and process codes are correct that I am using now for both EDI 821 and EDI 823
    2)If those are not correct, can you please let me know the correct entries
    3) Please provide me the field mapping if any one of you have worked earlier for both the above IDOC and message type or new ones and we have one field mapping now but if you can send it to me then  I can re check it.
    4) Do we have to create any configuraion or customizing in SAP to create the IDOC in green status and if so please let me know the customizing steps and procedures for both EDI 821 and EDI 823.
    thanks in advance for all your help.
    Please let me know if my question is not clear.
    Thanks,
    Ramesh.

    Hi Ramesh,
    I believe you are using those interfaces with the business partner type as Bank, Whatever idoc type, message type and process code you have used are perfectly correct.
    First of all did you enable your bank for EDI, the house bank has to be EDI enabled first then only your idoc's can be processed, talk to your fi functional consultant and he might help you.
    Are you can give me the exact error and i can help you as well.
    Thanks,
    Mahesh.

  • Help with delimiters, input files, and mapping scheme

    A node has a name, processing power, neighbors, and cost to each neighbor
    I'm reading this data from an input file:
    node power neighbors cost to each neigbor
    A: 1.1 B, C 4, 5
    B: 2.3 A 4
    C: 3.1 A 2
    I use StringTokenizer to capture each group.
    I place each group in an ArrayList.
    The problem is mapping B,C to their cost from A, etc.
    I have a Node class
    I have a Link class
    I just don't what method to retrieve the neighbors and cost to it's src

    Ok, I'm trying to create a graph
    I'm using an arraylist for the name of nodes, an arraylist for the processing power, and an arraylist for the neighbors and cost. I just don't know how to map the neighbors and cost to name of the nodes.
    Help me!!!!!!!!!
    I created a Node class with a name and processing power, and neighbors
    I create a Neighbor class with a name and cost!
    The data is coming from an input file..............
    I uses and array to allow the user to create as many nodes and neighbors, but I need to get the information on each node. HEEEEEEEEEEELP ME

  • Hw to skip first field of input file in ctl file and map other fields- cols

    I need to write a ctl file where in my input file has 3 fields by comma separated.
    My table has 2 columns. In my ctl file I am using
    LOAD
    INFILE *
    TERMINATED BY ','
    COL1 need second field in the file
    COL2 need third field in the file
    Not sure how to skip the first field.

    Not sure abt it as
    load data
    infile *
    into table [table name]
    terminated by ','
    (COL1 has to be filled wth second field of the data file,
    COL2 has to be filled wth third field of the data file )
    i need to skip first field of the data file.

  • Problem downloading Maps application and map loade...

    I have the maps 2.0 app running fine on my E90 but wanted today to download the latest and also the map loader to save some data costs.
    When I try I get the EULA screen but the only option I get is to close it, am I doing something wrong?
    Thanks
    BigBen

    Ok so now the map loader is downloading but still not maps application ........
    Is there like maintenance or updating that takes place and temporary unavailaibility or something?

  • Map Viewer and Map Builder preview releases

    Hello,
    You promissed new preview releases of these tools after January 2006. When dou you think they will be posted on OTN ?
    I ask this because I'm starting a new project.
    Regards,
    Lucian

    There'll likely be an announcement when it's ready for download.
    At present there isn't a specific date yet. Sometime March this year is a possibility.
    Jayant

  • Query to Identify File and Block IDs

    i'm executing the following statement
    SELECT segment_name,
    file_id,
    block_id
    FROM dba_extents
    WHERE owner = 'OE'
    its executing in the case of OE owner but whn i type HR or others its showing no rows selected....
    plz suggest.

    It is not necessary that user who is in dba_users are also in dba_extents 100%. Chances are there may be some users who have only select privileges on different schema.objects. You will only find user name in dba_extents, if user is having any object in his/her schema; means empty schema will not be in dba_extents.
    Regards
    Girish Sharma

  • 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.

Maybe you are looking for

  • Hyperlinks in Web Admin Client not working | BPC 10

    Hi all We are running: BPC10 SP 13 IE9 Office 2010 2 of our admin users have been haviing problems with the 'Launch' menu on the homepage of the BPC web interface homepage. This happens several times per day and in different environments. but there d

  • Shared Reviews in Acrobat 9 Never End if File Kept Open

    It appears that an Acrobat Pro 9 shared review does not really end until everyone has closed the document, even if the deadline has already passed. Here are the details: 1. Using Acrobat 9 Pro I created a shared review that is hosted on a local netwo

  • Extended classic purchase order tax calculation

    We are running extended classic on SRM 4.0.  We are connecting to our R/3 backend version 4.7.  The backend is utilizing Vertex for it's tax calculation.  We have confirgured SRM to use the backend for tax calculation.  We have a 5% state sales tax a

  • Need  to  know  how  can  i  make this in InDesign

    this image from indesign,  it  is  for  text but isn't editable, but  the  problem is this text integration with the around box  where it (text) is transparent , mean if  i  move it  on red background it  will have red color for (features), and so if

  • IPhone 5S Finger Print not working, locked out

    I recently bought an iPhone 5S and input the finger print access.  It is not working and is requiring my 4 digit code which apparently I can't remember.  After each incorrect number it takes longer before I can try again.  I am up to over an hour.  I