Conversion tables and the entries in the table

I'm working on a conversion table for our former products of FM unstructured to DITA. I understand the basic concepts, but I'm having a problem with the table cells.

I have P:CellBody in my conversion table, in the first row, mapped at the entrance with a cellbody qualifier.

I also TC mapped at the entrance.

The same applies to P:CellHeading, and Th.

Therefore, my text is wrapped in two input elements. The context tab to show the item says:

entry

entry

line

TBODY

tgroup

Table

body

NoName

NoName

I'm sure it should be the same as above with the input only one element (and of course with the fixed NoNames which I think I know how to do; I just have not had here yet).

How to avoid get my cells wrapped in two input elements?

Thanks in advance,

Marsha

Marsha,

I don't understand what you're trying to do, or what is exactly in your conversion table. Be aware, however, that FrameMaker will always create elements for the basic elements that occur in your tables. The table of conversion that you give little control of how these items will be marked, but not question whether elements will exist.

If your conversion table contains lines such as:

P:CellBody entry cellbody
TC: entry

You will get the nested input elements. External is the cell of the table itself and inside is the paragraph. FrameMaker does not have a valid document to use the tag of the element itself to a cell and a container, so aside from the results is not what you wanted, they are not correct in FrameMaker.

If your table cells contain simple paragraphs and you don't want the elements for cells and paragraphs, your conversion table didn't even need to mention paragraph CellBody and CellHeading tags. Indeed, if your table formats using CellBody as paragraph format for cells in the body of a table and CellHeading as the paragraph format for the cells in the table, your ESD header didn't even apply the paragraph formats.

Another alternative is to include a paragraph tag in a table row of conversion for a table cell by combining TC: and P: to match table cells containing such paragraphs. For example:

TC: P:CellBody entry

creates items named cell entry of table cells containing paragraphs tag CellBody. The paragraph in such a cell is not encapsulated in an extra element.

One final note is that TH: in a conversion table refers to the position of the entire table. his children are header lines. The analogue of table of TH body: to:, not TC.:

-Lynne

Tags: Adobe FrameMaker

Similar Questions

  • Page numbering and the Table of contents

    I have a book containing 23 document files. Document files contain the page numbers in the footer.

    One of the document file is a generated table of contents (TOC). Unfortunately, the generated page

    the number in the table of contents do not match the numbering of the pages in the files. Here are the details:

    • The title page, in a file by itself, is not numbered
    • The frontmatter, distributed in five cases use lowercase Roman (i - xvi)
    • The body of the text in the remaining 17 files is digital (1-243)
    • The generated TOC uses cardinal numbers of the book as a whole. For example,.
      Chapter I is numbered correctly in the footer from page 1. However, he is listed in the table of contents
      as starting on page 19, because this is the file real 19th in the book. I put the document numbering
      This file from 1 properties and properties of Page numbering for the book as a whole to
      be "continue."
    • The style of the table of contents entries is correct. In other words, the frontmatter uses a tiny Roman and the
      chapters use Numeric

    I tried to regenerate the table of contents, but this did not help.

    Does anyone have suggestions on what is the way prescribed to do?

    OK, I continued to read and this is what I found:

    Set the numbering style in the document, and not in the book that we told you. Format > Document > numbering. Choose Arabic or digital. Repeat for the various chapters.

    Save and close the chapters. In the book file, click with the right button on each chapter and choose Configure XXX. This is where tell you the book to continue the page numbering or restart at the 1.

    Once this is done, update your address. From there, if there are issues, we rely on the logic of the Fm we use every day, and each of us can help you solve.

  • How to apply the Conversion Table of file FM.

    I have a conversion table generated for a group of files that I am trying to structure. I want to be able to apply the conversion with Extendscript table. The script that I have does not save any file converted. I don't know why is it not save the file. I was under the impression that the "Structure Generator" should create the new file. If this incorrect.

    Here is the code I am using.

    var myFile = File.openDialog ("Select File to Convert"); 
    
    var myCT = File.openDialog ("Select ConversionTable"); 
    var CT = openFile (myCT.fsName, 0); 
    
    applyConversionTable (myFile.fsName, CT) 
    closeFile (CT); 
    
    function applyConversionTable(fileName, CT){ 
        var doc= openFile (fileName, 0); 
        var name = fileName.replace(/[\w\.]+$/,"test.fm")  
        CallClient("Structure Generator", "InputDocId " + doc.id); 
        CallClient("Structure Generator", "RuleDocId " + CT.id); 
        CallClient("Structure Generator", "OutputDocName " + name); 
        CallClient("Structure Generator", "GenerateDoc"); 
        closeFile (doc); 
    } 
    
    function openFile( fileName, visible){ 
         
        var i = 0; 
        var doc = 0; 
         
        var openParams = GetOpenDefaultParams(); 
        var retParams = new PropVals(); 
         
        i = GetPropIndex(openParams, Constants.FS_AlertUserAboutFailure); 
        openParams[i].propVal.ival = false; 
        i = GetPropIndex(openParams, Constants.FS_MakeVisible); 
        openParams[i].propVal.ival = visible; 
        i = GetPropIndex(openParams, Constants.FS_FileIsOldVersion); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FileIsInUse); 
        openParams[i].propVal.ival = Constants.FV_ResetLockAndContinue; 
        i = GetPropIndex(openParams, Constants.FS_FontChangedMetric); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FontNotFoundInCatalog); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FontNotFoundInDoc); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_RefFileNotFound); 
        openParams[i].propVal.ival = Constants.FV_AllowAllRefFilesUnFindable; 
         
        doc = Open(fileName, openParams, retParams); 
         
        if (doc.ObjectValid() ===1){ 
            doc.openedByScript = true; 
        } 
        else{ 
            PrintOpenStatus(retParams); 
        } 
        return doc 
    } 
    
    function closeFile(doc){ 
        Constants.FF_CLOSE_MODIFIED = 1; 
        var res = doc.Close(Constants.FF_CLOSE_MODIFIED); 
    }
    

    Ah, found the problem. I noticed this earlier, but do not think that it was important, it apparently. The other arguments must be all uppercase. Like this:

        CallClient ("Generator of Structure", "INPUTDOCID" + doc.id);
        CallClient ("Structure Generator", "RULEDOCID" + CT.id);
        CallClient ("Generator of Structure", "OUTPUTDOCNAME" + name);
        CallClient ("Structure Generator", "StructureDoc");

    I tested it and it works for me. FWIW, I think that it is a poor quality of a client API feature otherwise very slippery.

    Russ

  • In a table - looping through the rows and the stored procedure call

    APEX version: 3.2.0.00.27

    Hello

    I searched the forum and tried a few things but could not make it work.

    I have a tabular presentation, developed with the help of the ATD (Cascading LOV - method of tabular presentation - AJAX - ATD )

    What I'm trying to do now:
    -After submit and validations, loop through all the lines and
    -call a stored procedure passing 3 parameters obtained from each of the lines on the form of tables. This procedure will be an update of a database table.

    On the forum, I found that I could do the loop "* FOR i IN 1..." APEX_APPLICATION.g_f03. "LOOP COUNT *" syntax.

    Only for testing purposes, I tried just to view information with the following (On Load - after a footer) process (example of Denes Kubicek == > http://deneskubicek.blogspot.com/2009/05/execute-javascript-throuhg-plsql.html):
    declare
      v_today  varchar2 (200);
    begin
    --  :P40_test := APEX_APPLICATION.g_f03(1);
    --  :P40_test2 := APEX_APPLICATION.g_f04.COUNT;
      :P40_test2 := 100;
    
      v_today := to_char (sysdate, 'dd.mm.yyyy');
    
    --FOR i IN 1.. APEX_APPLICATION.g_f03.COUNT LOOP 
    
      :P40_test := APEX_APPLICATION.g_f02(2);
    
      HTP.p ('<script type="text/javascript">');
      HTP.p (   'alert(''Today is '
              || v_today
    --          || APEX_APPLICATION.g_f04(APEX_APPLICATION.g_f03(i))
              || '.\n'
              || 'end!'');'
             );
      HTP.p ('</script>');
    
    --    :P40_test := APEX_APPLICATION.g_f02(APEX_APPLICATION.g_f02(i));
    
    --END LOOP;
    
    end;
    The foregoing would give me a ' * ORA-01403: no data found * ' message. I tried through various variants of APEX_APPLICATION.g_f0* #*, but still can't get anything to display correctly. In commenting on all the lines referring to APEX_APPLICATION.g_f0x above, the date would be are they displayed fine.

    I tried uncomment the FOR... LOOP and play with the code (defining the process runs "On submit - after calculations" and Validations), I got was a ' * ORA-06502: PL/SQL: digital error or value: character conversion number error * "message.

    Here is the script of the form in a table:
    select 
    "V"."MSLINK",                                       -- hidden (number)
    "V"."INSTALLATION_DATE",                        -- editable date picker
    "V"."MANUFACTURER_INDICATOR",              -- editable (cascading LOV -- text)
    "V"."MODEL_INDICATOR",                           -- editable (cascading LOV -- text)
    "V"."DIAMETER_INDICATOR",                      -- editable (LOV -- number)
    "V"."PURPOSE_INDICATOR",                        -- editable (LOV -- text)
    "V"."VALVE_NUMBER",                                -- shown but not editable -- number
    "V"."MODIFY_DATE",                                  -- shown but not editable
    "V"."MODIFY_USER",                                   -- shown but not editable
    "V"."VALVES_STYLE"."FEATURE"                  -- shown but not editable -- number
    from "#OWNER#"."VALVES" "V"
    Where
      "V"."PROJECT_ID" = :P1_PROJECT_NUMBER AND
      "V"."VALVES_DFLAG" = 0
    Regarding the parameters for the stored procedure, it would the MSLINK, VALVE_NUMBER and the VALVES_STYLE. FEATURE.

    Help, please!
    (Sorry for the long post).

    Thank you

    Tan

    Hi, Tan,

    I have not seen that type of object - I've only used custom types for purposes of test years ago and have never used their within Apex!

    One possibility is that the value of checksum being is based on all of the content of these fields, rather than only the part of the FEATURE. If there are other parts of the object, you could include those items as well.

    Otherwise, as you f01 KP for a record, you will need to retrieve the values of the FUNCTION in your PL/SQL code directly from the table (because the user cannot modify these fields, you can be sure that the values in the table will be still valid).

    Andy

  • Mobile based on the size and the position of the other table

    I have the impression that there is an easy solution for this... or it there is no solution at all... but here goes:

    I want to use table 2 to indicate 'total time' as the sum of all time in table 1. Table 1 is set to automatically filter some lines (basically, it creates a dynamic playlist based on certain criteria). What I wish is to table 2 'float' a certain number of Table 1 below, so that as table 1 grows or shrinks according to the filtered content, table 2 remains the same distance from the bottom of table 1. Is - this unreasonable? It seems I've seen tables 'hustles' other tables according to size changes (not the desired effect in these cases, but what I DO want to here).

    Hi mikey,.

    This seems to be the default behavior in Numbers ' 09, but the function may not have been included in 3 numbers. I'm sure someone will test and report on it before long.

    Demo below is in Numbers ' 09.

    Coffee table is a double to the top. After positioning the lower level of the original table, I inserted two rows in the original and watched 'push' that the lowest low, keeping the space between them.

    I reformatted the cells in column B, CheckBox and verified that a few of them.

    Then I opened the Reorganize pane. and the filter rule (see the lines "... ") displayed the value:

    By clicking on "see the lines...". "box produces this result:

    Note: I had selected all the header cells in column B before starting the filter. The first image was captured after unchecking the checkbox 'display lines... '. "developing the table and leaving only the cells in the (previously) selected filtered lines.

    As mentioned, the example is in Numbers ' 09 / numbers 3 behavior may be different.

    Kind regards

    Barry

  • Table of clusters and the cluster is a bar counter, how can I change the color individually?

    Table of clusters and the cluster is a bar counter, how do I change the color of the bar individual meter for each element of the array?  I just realized that you cannot change the properties of an element of the array without changing everything.  For scale, I had to make digital for each graduation of the scale indicators so that each measure meter in the table in the cluster has individual scales.  I also had to do some calculations for each barmeter to display the correct proportions of 0 to 100% on the scale.  Now, I'm stumped on the color of the bar counter.  Basically, if the value exceeds a set value, the meter bar should turn red.  It must be in a table to be infinitely scalable.

    Thank you

    Matt

    And yet anothr approach...

    Right click on the bar of > Options to fill > maximum fill.

    The fill color of the same color as the background color, then make the background color transparent.

    Drop a box of color BEHIND the bar and the size correctly.

    He has this strange background 3D with flat bar, but what the Hey, his relatives. If its important a custom color box.

    Ben

  • Switch between the graph and the table as in the DAQ Assistant

    I was wondering if it is possible or if anyone has any success making a user interface, such as the DAQ Assistant, where you can switch between a graphical output or an array of the recorded signals.  I would like to have this feature in my code .VI.  From now on, I'm just a waveform graph in my front panel.  I'd love to be able to alternate between this waverform table and a table of output values. I have attached a few screenshots to explain what I mean.

    Hello

    Personally, I like the TAB ideas that have been validated, but you can also use property nodes and the visible value.

    Good luck.

    Steven

  • Determine which cluster and the array index element was clicked on table clusters

    Hello

    I'm overload of brain with dynamic events and references and nodes of property etc.

    I am trying to identify the cluster and the array index element that was clicked on table clusters

    This gives me the name of the element:

    Is this reasonable?  How can I get the index?

    Thank you

    Paul

    Hello

    Download the VI in this link (also attached).  It gives you the index of the array element that you clicked. Hope this will help you.

    Kind regards
    Nitz

    (Bravo to give good answers, mark it as a Solution If your problem is resolved)

  • Construction in real time of the table and the data tracing

    Hello

    I have a project in which I am waiting for a message from the chain coming to my serial port that contains two parameters of a voltage sensor compared to the position

    I will then draw two parameters for a XY chart as they arrived at my port to build a chart that is continuously updated with all the points came to the COM port (all from the position of the reading pressure readings).

    I know that to draw the two parameters against each other that I must use the XY-graph and for this, I have to insert my data in the tables first and then give them to the chart.

    The problem is that the message of the series is not at fixed intervals (for example a message now comes, the other may be after 1 minute, then another after one half minute.. .and so on). and the chart should be updated with the points once they arrive (in addition to displaying the previous points too of course).

    I don't know where to start! can someone put me on a track for it?

    Note: I have no problem with the interpretation of the data series, at the end I will have two numeric values which I'll then draw against each other

    Thank you

    One thing that I had not noticed before on your VI is that you use the wrong function when generating data in your table.  You should use table to build.  No insertion in the table which is more intended for stuff that goes in the middle of a table.  And the way you use it, you insert in fact data at the beginning and not at the end.

    I don't know what you have tried and why you think that the circular buffer is not what you want to do.

    Take a look for a function called data queue Pt by Pt that effectively does what you want.

    I will attach a Subvi I used.   I changed it to something that I found.  I think I found somewhere in LabVIEW itself, or an example, maybe the forums, but I can't find the original source.  And I don't see in the comments of the VI. (If anyone knows, please comment.)

  • How to compare the original value of table size and the changed value

    juice I took a table and then took the function of the size of the array so that it shows me the number of the elements present in it. so it'll be the original table size value. If the items in the table even changes another value, then I want to compare the original table size value and the value of table size has changed. How to compare... Please help me. you are looking for a possible solution. Thank you

    Hi stara,

    the attached picture shows the ony solution.

    It will be useful.

    Mike

  • How to export a table and the table as an image?

    My VI generates a table (formatted with different colors of text and cell), plus a text box, as well as a table (formatting with a background color).

    I can group these objects on the front panel and copy them as a single unit, and paste them into PowerPoint.

    Is it possible to do this automatically, have labVIEW group together them as a single object and export it as an image file with the name of the file in the form of control? See the example attached VI and the image below:

    Here's a way to do it.

    1. create a decoration on the FP that surrounds the controls

    2 get a reference to the decoration and the MasterBoundRect property to define a subset of the image of the public Service

    3. save the subset of the image

    You can color the transparent decoration to hide it if you wish.

    If the method works for you, there are more complex and yet robust methods to get the reference of the decoration.

  • screen flickers and the game stops, and table appears all playing the cfs3 game

    Original title: cfs3 crashes to the desktop

    Hi, a friend gave me used fcs3. It installed fine, everything works fine, but after 30 to 60 minutes, the screen flickers and the game stops, and my table is displayed. I get no error message at all and I went topics in microsoft help for cfs3 specific website if overwrite problems cfs3, which there was a huge page full of symptoms and types of accident etc but since I got no error message number refer to I have read the whole search'm thiing and the causes and resolutions , but found nothing there.

    I tried to restart and the program should run for a while then crash and return to the table.

    I tried uninstalling and reinstalling, but I got the same results.

    HP a6110n

    AMD Athlon 64 x 2 Dual Core processor 4400 + 2.30 GHz

    RAM = 4.00 GB

    32-bit operating system

    Note Windows experience 4.9

    80% of my disk space is available.

    Also the power supply 450w

    Map of Envidea 8600

    Whole body there suggestions?

    Thank you, Ed S.

    Hi P.K.

    The information and links have been informative and educational and I'll save that for a later use. However, the graphics card was the problem (I discovered) so I'm upgrading and also I move FSX on my new pc (a pc gamer VELOCITY) and it works perfectly. Thanks again for your contribution.

  • Table with fixed header and the left column

    I created a table in my application with the fixed left column (left most column is fixed and remaining columns are scrolling from left to right). is it possible to create a table with fixed position and fixed left column?

    Suppose there are 50 rows and 10 columns in my paintings, and only 3 columns and 15 rows are visiable on the screen

    (1) when the user scroll left to right left only most of the columns must be fixed. Remaining cap of the table and column scroll left to right and vice versa. also

    (2) when user scroll high high bottems single topic most must be fixed and remaining all lines (with to the left most column) should be scrollable.

    I am able to put in place a point at the top, but not both. Please suggest

    "If I repopulate the value in the cell when user scrolling, shell, I get scrolling effect correctly as it only shows half cell when the user highlight half of the cell."

    Approach using TablelayoutManager display single cells and scrolling would be cell at a time.  And Yes, you will need to override navigationMovement and n of methods appropriate TouchEvent your TableLayoutManager so that he knows when to fill the cells.

    Another alternative is to have four managers, we don't the the upper left corner (the dead angle), one to make the top row (column headings), one to make the left column (row headings), and the other to do the rest (data).  Place all these in a delicate header and line manager.  Only allow the user to scroll the data part.  Have the difficult Manager to listen the scroll events.  Then have the wily Manager add and remove the dummy column and header line managers as appropriate.  Note that these topic fields would not good passes, they would be either there or they would not be displayed. That would give you your 1/2 a scroll of the cell.  And you wouldn't have to substitute anything to detect movement, you would have left the listener do scrolling for you.

  • LOV cascading if I don't have only one table with the customer name and the name of the product in the ADF.

    Hi Please help me how to use cascade, if I don't have only one table with the customer name and the name of the product in the ADF... I use Jdeveloper 11.1.

    For the client, I used customer VO with client list to fill but to populate the product that I use bind variable PrODUCT_NAME select distinct from TABLE where client_name =: bindCustomer

    so first of all, I need to set the variable of liaison on behalf of the selected customer.

    Can you please tell me how to set this variable binding in this case.

    After you set the LOV to your product attribute, correspondting VO in the LOV will appear under view accessors.

    Change the accessor of the view, you will see the variable binding. Set its value to the customer field of the parent object.

    Visit this link: https://www.youtube.com/watch?v=nXwL2_RP7AQ

    Kind regards

    Elias.

  • How to perform an addition of column values in an insert query that would insert in the 3rd column, and the values how to insert into another table.

    I have two tables (2) RESULT TAB (1)

    CREATE TABLE TAB

    (

    NUMBER OF SNO

    A NUMBER,

    B THE NUMBER.

    NUMBER OF THE SUM

    );

    CREATE AN ARRAY OF RESULT

    (

    NUMBER OF SNO

    NUMBER OF THE SUM

    )

    my doubt is:

    (1) I want to insert a table TAB, my question is how to insert a column to the SUM using the column A AND B... Here im adding two values of the column and store result in the AMOUNT column.

    SNO   A  SUM           

    1 100 150 250

    2 300 100 400

    I want to like this, it is possible with single insert query?


    (2) at the time of the insertion TAB of values that SNO, and the values of table TAB $ insert in the table of RESULTS... is it possible these two inserts at the same time?

    in fact, im using another this table.fro TAB and easy to understand I write like that, please solve this problem

    First, you post in the wrong forum as this one is only for Oracle's SQL developer tool. So you might ask your question in the general forum of SQL.

    Second, you might solve your problems with bind variable:

    Insert tab

    (sno, a, b, sum)

    values

    (: SNO,: A: B: A + B :))

    You should not use sum as column name because it is a reserved word.

    More you cannot insert into two different tables with a single SQL, but you can use PL/SQL to do this:

    Start

    insert into tab values (: SNO,: A: B: A + B :);)

    insert into result values (: SNO,: A + B :);)

    end;

    If you meet sno from a sequence, you could do something like this:

    Start

    insert into values tab (seq_sno.nextval,:,: B,: A +: B) return sno in: SNO.

    insert into result values (: SNO,: A + B :);)

    end;

    Hope that helps,

    dhalek

Maybe you are looking for