FM import to RH: lists

Technical Communication Suite, RoboHelp HTML, WebHelp
I'm importing FM8 book into RH7 HTML.
I've done some research and I see that conversion of lists
between FM source files and RH HTML is very problematic. I'm
confused and haven't been able to resolve my particular problem
through research.
My FM bullet parragraph tag looks like:
Indent First: 18pt
Indent Left: 28pt
tab stop: 28pt L
Autonumber format:
\t
Everything lines up perfectly in FM and when saved as PDF.
When import to RH, I DO NOT select "Convert AutoNumber to
HTML list". In RH the first line is indented too much. The HTML
looks like this:
<p class=FM_Bullet>•<span style="font-family:
'Times New Roman'; font-size:
7.0pt;">   </span>
The three spaces (   ) indents too
much; two spaces (  ) not enough.
One solution I'm considering is to search for
<span style="font-family: 'Times New Roman'; font-size:
7.0pt;">   </span>
And replace with:
<span style="font-family: Times New Roman; font-size:
13.0pt;"> </span>
Manipulating the font size of a single space gets me darn
close. However, this solution is inelegant, time consuming, and
possibly prone to error in a large document (I'm working with 300+
pages). And it doesn't work well with numbered lists that go into
double digets.
Can anyone point me in the right direction?
Thanks,
Stan

If you have simple bullets and steps,
"Convert AutoNumber to HTML List" may work for you.
If you have nested lists (such as steps with bullets, bullets
with sub bullets)
the nested lists become entangled, and also tangle up
headings that follow, preventing topic breaks.
When you look at the HTML code, you can see the problems. The
</UL> (end of list) gets misplaced for the various nested
lists.
"Convert AutoNumber to HTML List" does not work for my
application.
darbyzz,
Here's what I did to make my bullets and steps work out.
- I did not use Convert AutoNumber to HTML List.
- I set up a secondary FM template, just for RoboHelp, and
use it just for my help files.
In this template, I don't use indents before the first level
bullets.
For second level lists, I use a format that includes an
empty place holder (as advised by Jain).
example: a:< ><a+>.\t
I also use a specific tag to reset a list to number 1 (I
found that was necessary).
- When mapping in RoboHelp, I left my first-level list tags
to Source,
- I map my second-level list tags to BodyLevel1, which, in
its default state,
is indented just enough for my needs.
This works pretty well for me, not perfectly, but I've
settled.

Similar Messages

  • How To Import Approved Supplier List  ?(do  not  create PO)

    hi,
    when i import Approved Supplier List through the Purchasing Document Open Interface (PDOI). Affter this ,a Purchase Order be created.
    i do'nt want PDOI to create Purchase Order ,how to do??
    thanks very much !!
    ==========================================
    my test data is :
    l_iface_rec po.po_headers_interface%ROWTYPE;
    l_iface_lines_rec po.po_lines_interface%ROWTYPE;
    l_iface_rec.org_id := l_org_id;
    l_iface_rec.interface_header_id := 101;
    l_iface_rec.process_code := 'PENDING';
    l_iface_rec.action := 'ORIGINAL';
    l_iface_rec.document_type_code := 'BLANKET';
    l_iface_rec.document_subtype := NULL;
    l_iface_rec.document_num := NULL;
    l_iface_rec.approval_status := 'APPROVED';
    l_iface_rec.agent_id := 61;
    l_iface_rec.vendor_id := 1;
    l_iface_rec.vendor_site_id := 1;
    l_iface_rec.interface_source_code := 'Test';
    l_iface_rec.batch_id := 987654321;
    l_iface_lines_rec.interface_header_id := 101;
    l_iface_lines_rec.process_code := 'PENDING';
    l_iface_lines_rec.action := 'ORIGINAL';
    l_iface_lines_rec.line_num := 1;
    l_iface_lines_rec.line_type_id:=1;
    l_iface_lines_rec.item_id := 1001;
    l_iface_lines_rec.unit_price := 1.01;
    Edited by: Shaowei.Zhang on 2009-11-20 下午9:39

    Hi Shaowei;
    Please follow below and see its helpful:
    [Link 1|http://www.oracleappshub.com/oracle-purchasing/approved-supplier-lists-asl/]
    [link 2|http://forums.oracle.com/forums/thread.jspa?threadID=936670&tstart=15]
    Regard
    Helios

  • Error in QP: Bulk Import of Price List

    Hi All,
    I am trying to import price list records using the concurrent program 'QP: Bulk Import of Price List'. I am facing one issue in this...below is the error detail:
    7164262/PRL/QP_INTERFACE_LIST_LINES//RAGH-L-3 A price break child line must have at least one pricing attribute.
    The header and Qualifier records are getting imported sucessfully, the issue is with the line and it's attributes. Below are the fields on interface tables whcih i m populating:
    INSERT INTO QP_INTERFACE_LIST_LINES (
    ORIG_SYS_LINE_REF,
    ORIG_SYS_HEADER_REF,
    LIST_LINE_TYPE_CODE,
    START_DATE_ACTIVE,
    END_DATE_ACTIVE,
    ARITHMETIC_OPERATOR,
    OPERAND,
    PRIMARY_UOM_FLAG,
    PRODUCT_PRECEDENCE,
    INTERFACE_ACTION_CODE,
    PROCESS_FLAG,
    PROCESS_STATUS_FLAG,
    PRICE_BY_FORMULA,
    AUTOMATIC_FLAG,
    REPRICE_FLAG
    --PRICING_GROUP_SEQUENCE
    ) VALUES
    'RAGH-L-3',
    'RAGH-H-3',
    'PLL',
    sysdate,
    NULL,
    'UNIT_PRICE',
    150,
    'Y',
    230,
    'INSERT',
    'Y',
    'P',
    NULL,
    'Y',
    'Y'
    --0
    INSERT INTO qp_interface_pricing_attribs
    orig_sys_pricing_attr_ref,
    orig_sys_line_ref,
    orig_sys_header_ref,
    PRODUCT_ATTRIBUTE_CONTEXT,
    product_attr_code,
    product_attr_val_disp,
    product_uom_code,
    interface_action_code,
    process_flag,
    process_status_flag,
    PRICING_ATTRIBUTE_CONTEXT,
    PRICING_ATTRIBUTE,
    PRICING_ATTR_VALUE_FROM_DISP,
    COMPARISON_OPERATOR_CODE,
    PRICING_ATTR_VALUE_TO_DISP )
    VALUES
    'RAGH-ATTR-3',
    'RAGH-L-3',
    'RAGH-H-3',
    'ITEM',
    'INVENTORY_ITEM_ID',
    'CM13139',
    'EA',
    'INSERT',
    'Y',
    'P',
    'ADS_PRICING',
    'COST',
    '25',
    'BETWEEN',
    '30' );
    Using the above process I am getting the error as mentioned:"7164262/PRL/QP_INTERFACE_LIST_LINES//RAGH-L-3 A price break child line must have at least one pricing attribute.".
    If I am not using the pricing attributes PRICING_ATTRIBUTE_CONTEXT,PRICING_ATTR_CODE, Pricing_attr_value_from,COMPARISON_OPERATOR_CODE, PRICING_ATTR_VALUE_TO I am able to import the line records also.
    The script provided by Oracle also uses the same columns in the interface table, kindly help me if any one have any idea regarding this issue.

    Hi Luko,
    I tried the same script given by oracle, but it is giving me the error as I mentioned earlier. When I am not using the pricing line attributes, it is working fine. The error is coming only when I am passing the pricing attribute parameter(PRICING_ATTRIBUTE_CONTEXT,     PRICING_ATTR_CODE,     PRICING_ATTR_VALUE_FROM_DISP,
    COMPARISON_OPERATOR_CODE,     PRICING_ATTR_VALUE_TO_DISP).
    I am passing the values as shown below:
    PRICING_ATTRIBUTE_CONTEXT-Code fro pricing context i.e PRICING ATTRIBUTE
    PRICING_ATTR_CODE-code for attribute i.e. FREIGHT_COST
    PRICING_ATTR_VALUE_FROM_DISP-200
    PRICING_ATTR_VALUE_TO_DISP-300
    COMPARISON_OPERATOR_CODE-BETWEEN
    Thanks!

  • How to use QPXVBLK: QP: Bulk Import of Price List?

    hi,
    i'm trying to create a script for import price lists. i've read that this concurrent program "QPXVBLK: QP: Bulk Import of Price List" is what i need. i've been able to successfully create the script to populate the interface tables:
    QP_INTERFACE_LIST_HEADERS
    QP_INTERFACE_LIST_LINES
    QO_INTERFACE_PRICING_ATTRIBS
    but i'm getting an error.
    3436374/PRL/QP_INTERFACE_LIST_HEADERS/24934 Cannot perform Insert, as record with orig_sys_header_ref 24934 already exists for the list_source_code .
    i figured it has something to do with the ORIG_SYS_HEADER_REF, ORIG_SYS_LINE_REF and ORIG_SYS_PRICING_ATTR_REF columns.
    below are values i'm currently passing.
    QP_INTERFACE_LIST_HEADERS TABLE
    - ORIG_SYSTEM_HEADER_REF = LIST_HEADER_ID
    QP_INTERFACE_LIST_LINES TABLE
    - ORIG_SYS_LINE_REF = LIST_LINE_ID
    - ORIG_SYS_HEADER_REF = LIST_HEADER_ID of parent record in QP_INTERFACE_LIST_HEADERS TABLE
    QP_INTERFACE_PRICING_ATTRIBS TABLE
    - ORIG_PRICING_ATTR_REF = PRICING_ATTRIBUTE_ID
    - ORIG_SYS_LINE_REF = LIST_LINE_ID of parent record in QP_INTERFACE_LIST_LINES TABLE
    - ORIG_SYS_HEADER_REF = LIST_HEADER_ID of parent record in QP_INTERFACE_LIST_HEADERS TABLE
    if these are not correct, what values should be passed on this columns?
    thanks
    allen

    hi all,
    ii would like to add a follow up question on this.
    what fields are required when inserting records into the interface tables for the QP: Bulk Import of Price List?
    i've been running some tests and while some price lists are imported with no issues, some are not and some only partial. i'm not receiving any errors on the import which makes this harder for me to debug.
    any thoughts?
    thanks.
    allen

  • How can I import my contact list from my pc to my ipad

    How can I import my contacts list from my pc to mu ipad?

    Have you received any replies?

  • How can I import My contact list from gmail to Icloud??

    How can I import My contact list from gmail to Icloud??

    If you have a mac or pc
    I would try to export the contact from gmail
    Import the contact to mac or pc
    And then sycronise your device with it.

  • How can i import my contact list from the Nokia Suite to my I phone?

    how can i import my contact list from the Nokia Suite to my I phone?

    Oscar, keep in mind that my suggestion could not be the best one.
    I have a copy of Nokia suite on my Windows XP partition on my Mac, just to test it.
    The second icon on the upper row explains as a syncronisation with Outlook.
    Try to do it and later you should use the iClod manager from Apple and Sync Outlook to ìiClod and to any iPhone iPod and so on.

  • How can I delete all of my contacts from my iphone? I have updated my contact list in Outlook, and need to re-import that "clean" list.

    How can I delete all of my contacts from my iphone? I have updated my contact list in Outlook, and need to re-import that "clean" list.

    There is a checkbox on the 'info' tab in iTunes that will allow you to overwrite the address book on the phone with the one from the computer on the next sync.

  • Import/Export presets list is empty

    I am using the most recent version of photoshop CC, 14.2 64-bit under Windows 7, I was optimizing the menus/shortcuts/workspaces/tools for my needs, and wanted to make a backup of my settings/presets on a flash drive to take on the go. When I go to Edit --> Presets --> Export/Import Presets, the list shows up empty and I am unable to do this.
    So as a summary:
    PS 14.2 x64 under Win7
    Changed multiple settings and presets
    Export presets list empty
    I checked inside the PS folder in Program Files, my settings (well, at least actions and brushes) are showing up as unique files, but somehow aren't picked up by "export presets"

    PLSQL_GATEWAY = WebDb
    GATEWAY_IVERSION = 3
    SERVER_SOFTWARE = Oracle-Application-Server-10g/9.0.4.1.0 Oracle-HTTP-Server
    GATEWAY_INTERFACE = CGI/1.1
    SERVER_PORT = 7777
    SERVER_NAME = ret6f001.svr.bankone.net
    REQUEST_METHOD = POST
    PATH_INFO = /wwv_flow.accept
    SCRIPT_NAME = /pls/htmldb
    REMOTE_ADDR = 172.28.176.77
    SERVER_PROTOCOL = HTTP/1.0
    REQUEST_PROTOCOL = HTTP
    REMOTE_USER = htmldb_public_user
    HTTP_CONTENT_LENGTH = 500
    HTTP_CONTENT_TYPE = application/x-www-form-urlencoded
    HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
    HTTP_HOST = reports.finone.bankone.net:7777
    HTTP_ACCEPT = image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, LL5.1.0.469, application/x-shockwave-flash, */*
    HTTP_ACCEPT_LANGUAGE = en-us
    HTTP_REFERER = http://reports.finone.bankone.net:7777/pls/htmldb/f?p=4500:3:5981935966734062333::NO:3::
    HTTP_ORACLE_ECID = 1129981032:155.180.226.114:17023:0:28697,0
    WEB_AUTHENT_PREFIX =
    DAD_NAME = htmldb
    DOC_ACCESS_PATH = docs
    DOCUMENT_TABLE = wwv_flow_file_objects$
    PATH_ALIAS =
    REQUEST_CHARSET = US7ASCII
    REQUEST_IANA_CHARSET = US-ASCII
    SCRIPT_PREFIX = /pls
    HTTP_COOKIE = ORACLE_PLATFORM_REMEMBER_UN=E009491:INFORMATION_ONE; WWV_FLOW_USER2=6B0BDED178928680; eSource40=403SPI|Jeffrey Truck|E009491|NA|CFS|AF|none|BANK1; PhoneBk=ID4=171272&ID2=750271&ID9=26009&ID15=531583&ID7=499247&ID14=491993&ID5=211422&ID13=544129&ID3=524989&ID12=542210&ID1=568789&ID8=235884&ID11=218896&ID6=571979&ID10=84550; SITESERVER=ID=6e4810d34113245334c55f6841924372; RETAILCOOKIE=; Yellow=PrevID6=&PrevID1=&PrevID8=&PrevID4=&PrevID10=&PrevID2=&PrevID9=&PrevID11=&PrevID0=1698&PrevID7=&PrevID12=&PrevID5=&PrevID13=&PrevID3=&PrevID14=

  • Authorization object to import mb51 detail list to excel

    Dear all,
    What is authorization object to import mb51 detail list to excel ?
    Able to see report material document list,but export to local file is greyed out ?
    Jeyakanthan

    Hi,
    you can export ALV using menu option List -> Export -> Local file. Icon with green arrow which is usually used for download functionality in ALV has a different meaning in MB51. I know it's confusing. It's used to get full MM documents from archive. It's active only if you set option Short Documents in the section Data Source.
    Cheers

  • Can we import a user list (CSV) into GW to create accounts?

    We are needing to add a few hundred new user accounts into GroupWise 2012. Can this be done by importing a user list in the form of a .CSV file or something similar?
    Anything would be better than single account creation. Do we need to create a template?
    Thanks for any help.

    As far as getting the accounts created in edirectory, you typically use an ldap import with an LDIF file, when i've had to bulk create accoutns in edir I normally use a spreadsheet with the accoutn details and a word doc then do a merge to create the required ldif file
    however if you already have the accoutns in edirectory, just select your post office object and add the accounts that way and it will create them all for you

  • QP: Bulk Import of Price List

    Hi All,
    I encouter this error when i run this CP.
    Program Name : ‘QP: Bulk Import of Price List’
    Erroring with the following error :
    QP_INTERFACE_LIST_HEADERS/SAMPLE_HEADER Invalid Date.
    Output :
    ------Processing Price List Entity--------
    -----------Bulk Pricelist Data Loader---------
    Paremeters
    Entity Name:
    Process Id:
    Process Type:
    Process Parent: Y
    Number Of Threads: 1
    Number Of succesfully Processed Headers: 0
    Number Of Errored Headers: 1
    Number Of succesfully Processed Qualifiers: 0
    Number Of Errored Qualifiers: 0
    Error Details
    4766507/PRL/QP_INTERFACE_LIST_HEADERS/SAMPLE_HEADER Invalid Date.
    4766507/PRL/QP_INTERFACE_LIST_HEADERS/SAMPLE_HEADER Invalid Date.
    thanks,

    Please check the date format mentioned for start_date_active
    For QP_INTERFACE_LIST_HEADERS, it is VARCHAR2 and should be inserted as a character string in the format YYYY/MM/DD
    For QP_INTERFACE_LIST_LINES, it is however a DATE field which means that you can enter a normal date there
    Regards
    Soumya

  • Bulk Import into contact list error.

    Hi,
    We are testing out the bulk import into contact list feature and we are getting an error that we can't resolve.  We followed the directions from the documentation http://topliners.eloqua.com/docs/DOC-6918
    Here's the sample request we are making:
    URL: https://www02.secure.eloqua.com/api/bulk/2.0/contacts/imports
    Request Header:
    Authorization: [our token]
    Content-Type: application/json
    Request Body:
      "name": "test",
      "fields": {
        "emailAddress": "{{Contact.Field(C_EmailAddress)}}"
      "syncActions": [
          "action": "add",
          "destination": "/contacts/lists/63"
      "identifierFieldName": "emailAddress",
      "isSyncTriggeredOnImport" : "true"
    Response Body:
        "failures": [{
            "field": "destination",
            "stackTrace": [{
                "field": "syncActions"
            "value": "/contacts/lists/63",
            "constraint": "ML Statements must have a ContactList root (see http://topliners.eloqua.com/docs/DOC-4298 for details) (when action = add)."
    Is there a step we are missing? 
    Thanks for the help.

    Hi Benny,
    In syncActions, instead of: "destination": "/contacts/lists/63", please try: "destination": "{{ContactList[63]}}".

  • I have imported all photos and videos from my iPhone 5S into Aperture ver.3.4.5 and now cannot find them. I thought I could open a panel showing all imports and merely list them chronologically, but I don't see how to do this.

    I have imported all photos and videos from my iPhone 5S into Aperture ver.3.4.5 and now cannot find them. I thought I could open a panel showing all imports and merely list them chronologically, but I don't see how to do this.  There are over 1800 photos and about 100 videos, any help to locate where they've gone would be appreciated.

    Try to search with a Smart Album for photos and videos taken with an iPhone:
         File > New > Smart Album:
    Add an EXIF rule fro the "Add Rule" drop down menu: EXIF
    and set it to "Camera Model includes iPhone".
    Set the scope of the search to "Library"
    If there are any iPhone images or videos in your library at all, this search should find them.  Then ctrl-click any of the items and select "Show in Project" from the contextual menu.
    Generally, Aperture should be showing your last import in the "Last Import" smart album in the "recent" section". And the "projects" view can be sorted by date, so you should see your recent imports.
    You may want to check all search fields, if searches are active.

  • Import customs code list I0136 - how to get .xml file

    The code list I0136 from ATLAS is in format .tsv.
    It's possible to import the code list in transaction /SAPSLL/CUSCS_VMAINT, but you have to have a .xml file.
    Does anyone know where to get the customs code list I0136 in .xml or to convert .tsv into .xml without a special program?

    Hi Renate,
    where do you get this file in .tsv format from?
    I guess from a data provider?
    First thing I would do is to ask the data provider to send the file in another GTS compatible format.
    If you have no influence on the file format which is beeing delivered to you I would just convert those files.
    Easiest tool to convert those files with might be Excel since almost everyone is using it.
    You can import the .tsv into excel and save it as a .xml file afterwards.
    If you have trouble importing the file just check google (open .tsv Excel).
    You might have to tune several options during the import process but once you know the steps it should be easy for you to handle.
    Best Regards
    Gregor

  • How do I import a long list from either exel or word into dropdown list in acrobat?

    How do I import a long list from either exel or word into dropdown list in acrobat?

    There is not a built-in method for this unfortunately, but you can use JavaScript to help out. Specifically the setItems field method.
    If you'd be interested in testing out a tool that greatly simplifies this process, feel free to contact me by email at: acroscript at gmail dot com

Maybe you are looking for

  • Apex Listener in standalone mode, how to set/reset db connection.

    Sometime ago I installed Apex Listener for testing, then I removed it. Now I downloaded last version, installed it in standalone mode and try to set the DB connection. However when I try to edit in listenerAdmin page the db connection parameters I ca

  • I have lost my hp pavilion dv4 recovery disc. how can i get original cd

     I have hp pavilion dv4 laptop with product number WP67OPA#ACJ.lost one of my recovery disc and I donot have copy in my hard disk. How can I get original recovery disc

  • Adobe Photoshop Elements 10 DVD Menu

    I read somewhere that I could make a DVD menu, in Adobe Elements for Adobe Premire Elements 10, but I am having troubling figuring out how to do so. Dose anyone know if there is a written or video tutorial for making a dvd template in Adobe Photoshop

  • Adobe Premiere CS6 doesn't open (windows 8)

    I have CS6 Premiere Pro that will not finish loading when I start it. (sorry for my little english) My computer parameters are: Intel Core i5-2500 CPU @ 3.30GHz AMD Radeon HD 6800 12GB DDR3 Windows 8 Enterprise N Drivers are updated from amd web site

  • How to Modify bottom text in notification mail

    Hi Experts, I have an issue regarding sending mails from my portal. When any Notification mail is triggered from Portal to Users mails at the bottom of the mail in the Signature place they are getting company name as below: ABCDCompany Pvt Ltd, Chenn