Assistance with importing FM autonumbered lists appreciated

Hi. I have an issue whereby when I import an unstructured FM (v12) document into RH (v11) project, autonumbered lists in the FM files don't have correct numbering after the import.
The following describes 2 import tests I've done. (In the FM doc, lists start with a paragraph that have ListNumber1 style (<n=1>) and the remaining list items have the ListNumber+ style (<n+>).)
Import test 1:
I configure the import for ListNumber1 and ListNumber+ paragraphs to Convert autonumber to Multilevel list.
I leave the Robohelp Style mapping to the default ([Source]).
Perform the import.
RESULT: All items in the list in the output are numbered "1.".
Import test 2:
As in test 1, I configure the import for ListNumber1 and ListNumber+ paragraphs to Convert autonumber to Multilevel list.
For the RoboHelp Style mapping, I map ListNumber1 and ListNumber+ to BodyLevel1 (a built-in option).
Perform the import.
RESULT:None of the paragraphs in the output have any numbering at all.
Your help with this issue would be greatly appreciated.
-Kurt Euler

Hmmm. OK I'll try these.
But first a dumb question: What do you mean by your second suggestion "run your FM content through a FM template first before coming over to RH". Do you mean importing the styles (paragraph, character, table, etc) of a standard FM file that I've created that has all the styles I might use in a document? This I've done, and it includes the aforementioned ListNumber1 and ListNumber+ paragraph styles. I should think these 2 styles would be all I need to set up an (importable?) autonumbered paragraphs.
Thanks.
-kt

Similar Messages

  • OXS server 3 with mavericks, it will not load up the assistant with open directory and will not allow me to use old open directory it was not a clean install just upgrade. any help or advise appreciated as i really need the server.

    OXS server 3 with mavericks, it will not load up the assistant with open directory and will not allow me to use old opeopen directory and will not allow me to use old open directory it was not a clean install just upgrade. any help or advise appreciated as i really need the server.

    I wonder if the disk being referred to is actually your iPod which is not plugged in. Maybe something has stuck thinking the iPod should be there.
    Try completely removing all the iTunes related programs according to this method.
    http://support.apple.com/kb/HT1923
    Restart you PC and see if startup improves.
    If it doesn't improve you need to consider the possibility that there is something else going on.
    If The problem goes away, hopefully a fresh install will be OK.

  • Used Migration Assistant to import PC files. It created second user account that won't sync with iPad.  How do I merge accounts?

    Used Migration Assistant to import PC files. It created second user account that won't sync with iPad.  How do I merge accounts?

    It's next to impossible to fully merge two accounts on a Mac easily.
    This being said, though, please take a look at "The Great Pondini's" site where this specific issue is addressed.  There should be information here you can use to get things sorted out.
    http://pondini.org/OSX/Transfer.html

  • Issues with importing word docs into robohelp 10

    I currently have an issue when I try to import a 'saved as: 97-2003' or 'MS Word' doc or docx into Robohelp 10, I receive the following error:
    Any assistance with this would be appreciated.
    In the meantime I've been converting everything from a doc/docx format to a pdf and then importing.
    However, it would be nice to know why I can't perform the task as I have shared
    PS...
    With regards to the error statement: "Please install Microsoft Word 2000 or newer"? I have Microsoft Office 2013 installed (and not the student or home version). "I'm not the sharpest tool in the shed", so to speak but I would think that Word 2013 would pacify the requirement of MS Word 2000 or newer...?
    Thanks.
    Message was edited by: Words2Technology

    The message is wrong in terms of the version specified. It is correct though that you do not have a supported version as Word 2013 is not supported.
    Subject to licencing, you can have both 2010 and 2013 installed, then run 2010 before doing anything where Rh needs to talk to Word.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Assistance with a query of the HRMS tables

    I need some assistance with a query I am trying to run. Here are the two tables I am trying to join:
    PER_ALL_POSITIONS
    PER_ALL_PEOPLE_F
    What I am trying to accomplish is to obtain the First_Name, Last Name from PERALL_PEOPLE_F table and then join that to the PER_ALL_POSITIONS table to obtain a unique listing of positions. However what I need assistance with is identifying how to join the two tables. I know the primary key on PER_ALL_PEOPLE_F is Person_ID but this value does not appear in PER_ALL_POSITIONS table. Any advice someone could give me would be greatly appreciated. :)

    you need to go from per_all_people_f to per_all_assignments_f, then to per_all_positions.

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

  • Assistance with two queries

    Could anyone assist me on how to provide a model answer to the first question and also check my response to the second question
    Question
    A Web crawler is a program which wanders around the World-wide Web looking for specific documents required by the user of the crawler, for example the user may want the URLs of all the documents which contain the words �Java� and �compiler�. What classes in Java do you think would be used in such a program? In answering this question you will need to explain your choice of classes with respect to the functions required of the Web crawler.
    Question
    A mailing list program is used to send emails to computer users who register with a particular list. This question asks you to provide the code for methods within a class MailingList. This class implements objects which associate a particular mailing list with a group of users. Assume the existence of a class User which describes users and that mailing lists are identified by a string.
    How would you implement such a mailing lists using facilities in java.util?
    Using your suggested implementation write down the code for the following methods:
    A constructor for MailingList which has zero arguments.
    A method addUser() which has two arguments: a string argument which represents a mailing list and a User object which represents a user. The method adds the user to the mailing list.
    A method removeUser which has two arguments: a string argument which represents the mailing list and an object which represents a user. The method removes the user from the mailing list.
    A method getNumbers() which has no arguments, but which returns with the total number of users registered with all the mailing lists
    A method deleteMailingList() has a string argument that is a mailing list. It deletes the mailing list and all the users associated with it.
    A method ListNumber() which has no arguments and which returns with an int which is the number of mailing lists that are currently administered.
    Do not write and code for error processing
    In order to implement a mailing list I would use the Hashtable class to map mailing lists (key objects in the hashtable) to groups of users(value objects in the hashtable)
    The key objects would be String objects
    I would have a class user which would describe a general user and then subclass this to implement different types of users.
    public class MailingList{
    private int totRegistered;
    private String ml
    private int noOfMlists;
    private User usr;
    public MailingList(){
    Hashtable mList=new Hashtable();
    String ml=new MailLst()
    public void addUser(String x, User us){
    mList=x;
    usr=us;
    mList.put(x,usr);
    public void removeUser(String ml, User u){
    mList.remove(u);
    public int getNumbers(){
    return totRegistered;
    public void deleteMailingList(String ml){
    this.ml=ml;
    mList.remove(ml);
    public int ListNumber(){
    return noOfMlists;
    Many thanks

    re: Question
    "A Web crawler is a program which wanders around the World-wide Web looking for specific documents required by the user of the crawler, for example the user may want the URLs of all the documents which contain the words �Java� and �compiler�.
    What classes in Java do you think would be used in such a program? In answering this question you will need to explain your choice of classes with respect to the functions required of the Web crawler."
    I am very interested to know how the implementation below would work-I am unsure as to how it can search through links ? perhaps with a never ending while loop-I am also not sure how StreamTokenizer actually functions and whether it would really solve part of the problem.
    My incomplete answer
    To search and cache the URLs of all the documents which contain the words �Java� and �compiler� you must first make connection to web documents, set up inputstreams to read from the URL documents and then process the text using StreamTokenizer � you can then check (with the aid of an algorithm) if any tokens in the document contain the text searched for � if they do then this URL can be flagged and cached ( added to a Hashtable)
    You would need to implement the following classes for the related functions
    Web classes in java.net - Their main functions are to allow you to access Web documents, for example they let you read the documents.
    URL and URLConnection classes(Web classes) allow you to access Web documents via their URL�s (Uniform Resource Locators); pointers to "resources" on the World Wide Web
    URL class handles connections to Web documents. A URL constructor which has a string parameter treats the string parameter as the URL eg,
    URL oldWeb=new URL(�http://info.cern.ch/hyper/old.tex�);
    sets up a URL object associated with the WorldWideWeb protocol (http), a host info.cern.ch, a directory hyper and a file old.text
    All URL constructors throw MalformedURLException if the format of the URL is incorrect, if no protocol is specified, or an unknown protocol is found.
    The abstract class URLConnection is the superclass of all classes that represent a communications link between the application and a URL. Instances of this class can be used both to read from and to write to the resource referenced by the URL
    In order to process the text within a URL object the simplest strategy is to use the method openStream() defined in URL. This opens an input stream connected to the URL object so that the input stream methods can be used to read from the object, e.g.;
    URL queryWeb=new URL(�http://infor.cern.ch/oldFin/lemor.txt�);
    try{
    InputStream is=queryWeb.openStream();
    DataInputStream ds=new DataInputStream(is);
    //code for processing the data input stream ds � the HTML and text contained in the URL object can be accessed using methods such as readChar defined in DataInputStream
    catch (IOException e){
    System.out.println(�Problem with connection�);}
    You will need to import the java.io package in order to carry out input output operations above
    StreamTokenizer class:
    StreamTokenizer splits up the characters which are read by an InputStream. The constructor for this class has one argument which is a Stream object
    StreamTokenizer st=new StreamTokenizer(is);
    sets up a StreamTokenizer based on the InputStream or Reader object is. This means that tokens can be read from this stream, with tokens being delineated by white space.
    The main method used to extract tokens is nextToken() which returns an integer which describes what token has been read
    The string tokenizer class allows an application to break a string into tokens.
    StringTokenizer st = new StringTokenizer(s, ��);
    while (st.hasMoreTokens()) {
    println(st.nextToken());
    I cant think of any related classes ? Have I missed something

  • Problems with importing Hi8 video to Final Cut Pro

    I'm using FCP 5 and trying to import video in using the Canopus ADVC110 to my imac 10.4.1. My problems are:
    1. I'm unable to capture audio.
    2. The log and capture time code runs without prompting.
    3. The log and capture controls do not control my camera - perhaps because there is an intermediary box, the canopus, that is in its way?
    I realized this is not just a FCP question but anyone with any advice would be appreciated because I have a doc ready to be edited and I need to get it digitized. Thanks,

    i have to settings on my "vhs" capture box thing
    analog and digital....
    is my hi-8 camera analog?
    its a sony ccd-trv -21....i think thats the model number...
    i set it to non controllable device....the camera seems to be recognized but i cant
    get the picture or audio to capture..but it definately detects my cam.,....
    what settings besides non controllable device should there be in my fcp (latest editiion)
    im going digital out from cam to rca in my conversion box...and then firewire to firewire on my comp....
    thanks

  • How can I access my parents iCloud account remotely to assist with photo management and printing?

    How can I access my parents iCloud account remotely to assist with photo management and printing?

    I tried that without any luck. I was hoping I could get Apple to reset it for me or delete the account so I could recreate it or at least tell me what is listed as my birth date, the security question answer.

  • Internal table with Import and Export

    Hi All,
    Hi all
    Please let me know the use of <b>Internal table with Import and Export parameters and SET/GET parameters</b>, on what type of cases we can use these? Plese give me the syntax with some examples.
    Please give me detailed analysis on the above.
    Regards,
    Prabhu

    Hi Prabhakar,
    There are three types of memories.
    1. ABAP MEMORY
    2. SAP MEMORY
    3. EXTERNAL MEMORY.
    1.we will use EXPORT/ IMPORT TO/ FROM MEMORY-ID when we want to transfer between ABAP memory
    2. we will use GET PARAMETER ID/ SET PARAMETER ID to transfer between SAP MEMORY
    3. we will use EXPORT/IMPORT TO/FROM SHARED BUFFER to transfer between external memory.
    ABAP MEMORY : we can say that two reports in the same session will be in ABAP MEMORY
    SAP MEMORY: TWO DIFFERENT SESSIONS WILL BE IN SAP MEMORY.
    for ex: IF WE CALL TWO DIFFERENT TRANSACTIONS SE38, SE11
    then they both are in SAP MEMORY.
    EXTERNAL MEMORY: TWO different logons will be in EXTERNAL MEMORY.
    <b>Syntax</b>
    To fill the input fields of a called transaction with data from the calling program, you can use the SPA/GPA technique. SPA/GPA parameters are values that the system stores in the global, user-specific SAP memory. SAP memory allows you to pass values between programs. A user can access the values stored in the SAP memory during one terminal session for all parallel sessions. Each SPA/GPA parameter is identified by a 20-character code. You can maintain them in the Repository Browser in the ABAP Workbench. The values in SPA/GPA parameters are user-specific.
    ABAP programs can access the parameters using the SET PARAMETER and GET PARAMETER statements.
    To fill one, use:
    SET PARAMETER ID <pid> FIELD <f>.
    This statement saves the contents of field <f> under the ID <pid> in the SAP memory. The code <pid> can be up to 20 characters long. If there was already a value stored under <pid>, this statement overwrites it. If the ID <pid> does not exist, double-click <pid> in the ABAP Editor to create a new parameter object.
    To read an SPA/GPA parameter, use:
    GET PARAMETER ID <pid> FIELD <f>.
    This statement fills the value stored under the ID <pid> into the variable <f>. If the system does not find a value for <pid> in the SAP memory, it sets SY-SUBRC to 4, otherwise to 0.
    To fill the initial screen of a program using SPA/GPA parameters, you normally only need the SET PARAMETER statement.
    The relevant fields must each be linked to an SPA/GPA parameter.
    On a selection screen, you link fields to parameters using the MEMORY ID addition in the PARAMETERS or SELECT-OPTIONS statement. If you specify an SPA/GPA parameter ID when you declare a parameter or selection option, the corresponding input field is linked to that input field.
    On a screen, you link fields to parameters in the Screen Painter. When you define the field attributes of an input field, you can enter the name of an SPA/GPA parameter in the Parameter ID field in the screen attributes. The SET parameter and GET parameter checkboxes allow you to specify whether the field should be filled from the corresponding SPA/GPA parameter in the PBO event, and whether the SPA/GPA parameter should be filled with the value from the screen in the PAI event.
    When an input field is linked to an SPA/GPA parameter, it is initialized with the current value of the parameter each time the screen is displayed. This is the reason why fields on screens in the R/3 System often already contain values when you call them more than once.
    When you call programs, you can use SPA/GPA parameters with no additional programming overhead if, for example, you need to fill obligatory fields on the initial screen of the called program. The system simply transfers the values from the parameters into the input fields of the called program.
    However, you can control the contents of the parameters from your program by using the SET PARAMETER statement before the actual program call. This technique is particularly useful if you want to skip the initial screen of the called program and that screen contains obligatory fields.
    Reading Data Objects from Memory
    To read data objects from ABAP memory into an ABAP program, use the following statement:
    Syntax
    IMPORT <f1> [TO <g 1>] <f 2> [TO <g 2>] ... FROM MEMORY ID <key>.
    This statement reads the data objects specified in the list from a cluster in memory. If you do not use the TO <g i > option, the data object <f i > in memory is assigned to the data object in the program with the same name. If you do use the option, the data object <f i > is read from memory into the field <g i >. The name <key> identifies the cluster in memory. It may be up to 32 characters long.
    You do not have to read all of the objects stored under a particular name <key>. You can restrict the number of objects by specifying their names. If the memory does not contain any objects under the name <key>, SY-SUBRC is set to 4. If, on the other hand, there is a data cluster in memory with the name <key>, SY-SUBRC is always 0, regardless of whether it contained the data object <f i >. If the cluster does not contain the data object <f i >, the target field remains unchanged.
    Saving Data Objects in Memory
    To read data objects from an ABAP program into ABAP memory, use the following statement:
    Syntax
    EXPORT <f1> [FROM <g 1>] <f 2> [FROM <g 2>] ... TO MEMORY ID <key>.
    This statement stores the data objects specified in the list as a cluster in memory. If you do not use the option FROM <f i >, the data object <f i > is saved under its own name. If you use the FROM <g i > option, the data objet <g i > is saved under the name <f i >. The name <key> identifies the cluster in memory. It may be up to 32 characters long.
    Check this link.
    http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm
    Thanks,
    Susmitha.
    Reward points for helpful answers.

  • Exchange 2013: Problem with Default Global Address List after migration

    I just completed a migration from Exchange 2007 to Exchange 2013.  The 2007 box has been decommissioned just last week.  I have been seeing weird issues with our offline addressbook and global address list, since the migration, but always thought
    it was related to Ex2007.  Well the issues still exist and here's what i've found so far:
    1.  If any user goes to Schedule Appointment in Outlook, and they click the Rooms button (on the Scheduling Assistant page), we get a LONG wait (about 5 mins or more) and then an error that says:  "The operation could not be completed because
    an offline address book is not available.  Download a copy of the offline address book."  When i click OK, the address book is up, with the "All Rooms" list showing blank (we have 3 rooms in Exchange currently).
    2.  Now if I go to the Address Book in Outlook it opens to the GAL and it's up to date...  I can also force an update to the offline address book after adding a new group or entry, so i know offline address books are being updated properly and
    working.  HOWEVER, if i go to any of the other address lists (besides Contacts and GAL) under All Address Lists (All Contacts, All Groups, All Rooms, All Users and Public Folders) I get the same error given above:  "The operation could not be
    completed because an offline address book is not available.  Download a copy of the offline address book." 
    3.  I went to the Exchange 2013 EAC and went to Organization -> Address Lists.  Everything under here said 'NO' under the Up-to-Date column.  When i looked at the properties on each list, and clicked save, I had to update to the new version.
     After doing this, the Up-to-Date column said 'YES'.  I could do all lists EXCEPT for the GAL.  It still says 'NO'
    4.  The last thing i did was set my Outlook to NOT be in cached mode.  This should give me a direct connection to the GAL and all lists, if I'm not mistaken...  So when i do this, I cannot even open see the GAL.  The ONLY option in the
    Address Book that comes up is Contacts (which are my personal ones).
    5.  I just now ran Get-GlobalAddressList | fl  in powershell on the Ex2013 server.  I see some things that make me wonder...   First; nothing in the RecipientFilter field, however, there is something in the LdapRecipientFilter field.
     Second; the RecipientFilterType field says "Legacy".  and Third; the RecipientFilterApplied field says "False".
    Didn't know what these should all be, but it appears maybe this is the cause of all my issues??  Can someone help me out here.. even if i have to recreate a new GAL, i'm fine with that, I just don't know all the steps to do so.  I just need it
    to work!
    Thanks
    Jeff
    -Jeff

    Hi,
    In my opinion, it is better to confirm whether the GAL is good, first.
    How about the GAL working in OWA?
    If GAL working well in OWA, it seems the issue on the Outlook Client or Connectivity side.
    Please trying to run Outlook on the safe mode to avoid some AVs, add-ins and firewall for testing.
    Please follow the steps as below to narrow down the OAB issue.
    Following are the locations that .lzx files in CAS server and BMX server:
    CAS:
    C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\OAB
    MBX:
    C:\Program Files\Micorosft\Exchange Server\V15\ExchangeOAB
    Please verify whether the .lzx files update to the latest.
    1. If the .lzx files in MBX server not update to the latest.
    It should be an issue on the OAB generation side.
    2. If the .lzx files in MBX server is latest, but CAS server not.
    It should be a distribution issue.
     1) Please run Get-OabVirtualDirectory command in EMS to verify whether at least one OAB VD exist in the org. If not, please create a new one.
     2) Please make sure whether any setup for Web Distribution. Selecting the “Enabling an Offline Address Book for Web Distribution” checkbox.
     3) Please force restart File Distribution services to distribute OAB files manually.
    3. If the .lzx files in MBX server and CAS server are all update to the latest.
    It should be the connectivity between CAS server and Client issue.
     1)Please verify the network.
     2)Please check DNS, MX, etc. configuration.
     3)Please run “Test E-mail AutoConfiguration” to check the AutoDiscover details.
       Please make sure the OAB URLs are correct.
       If the OAB URLs are incorrect, please using following command to re-set them:
       Set-OABVirtualDirectory -Identity "ServerFQDN\OAB (Default Web Site)" -ExternalUrl
    https://www.contoso.com/OAB -InternalUrl
    https://mail.contoso.com/OAB
     4)Please checking the App log and finding solutions from Microsoft Technet articles or KB, according to the Event ID.
     5)If it still not working after performing the methods above unfortunately, please trying to re-build OAB Virtual Directory.
       Article for reference:
       Remove, Re-Create, and Reconnect an Offline Address Book Virtual Directory
    http://technet.microsoft.com/en-us/library/bb123595(v=exchg.141).aspx 
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • 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

  • No Sound in Project with Imported MPEG 4

    I am new to iDVD.
    My first project is to just make a video from a short MPEG 4 movie clip.
    I imported the movie into iDVD and dropped it in. It plays fine except there is NO sound.
    When I press the select button in the on screen remote it plays the clip with sound.
    Any help appreciated.

    ... fine, you found a workaround ...
    the iLife package is a ... ehm... package, a suite of tools, which are intended to work together... therefore, iM is meant to work with firewire connected miniDV (=no mepgs), iDVD is meant to work with output of this app (=dv) ... and so on...-
    they are NOT meant as "all-purposes"-app... as many PCuser like to use Word for layouts, Excel for painting, PowerPoint for moviemaking... nooo, in the Apple World simplicity&convience is accomplished by restrictions of the app ..
    in other words: you try to teach the old dog new tricks... means: could work, could not work..
    and as mentioned above: video codecs is a VERY complicated issues.. there're ~4000 codecs swirrling thru the web...
    if you use the iApps as intended, no double-import etc are needed...
    think about investing into tools as QTpro or VisualHub (http://www.techspansion.com/visualhub/), which are "converters".. iDVD expects "dv-streams"... THEN it works like charm...
    happy editing, encoding, converting ...

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

Maybe you are looking for

  • How can I get the old Firefox back, this new one stinks

    how can I get the old Firefox back, this new one stinks

  • How do I get access to FaceTime on my iPhone 5?

    I have an iPhone 5, model #MD646LL/A, currently at IOS V7.0.2 which was purchased from AT&T 10/25/2012. I had not tried to use the FaceTime feature until last week and I find it the FaceTime button on a contact is grayed out.  My wife recently upgrad

  • Passing parameters to select query in DB link from invoke...

    I am having a DB partner link which executes the select query based on user specified parameter. Now i have created an invoke activity and specified input[this needs to be passed to query] and output parameters[this is query result]. This invoke acti

  • Apple TV -- No Signal Message

    Hi. Apple TV won't put a signal out through HDMI when it wakes from sleep. I've waited, nothing. I've switched TV inputs, nothing. I have to unplug the ATV unit to get the TV to pick up the signal, and then, ATV unpairs from the remote, so I have to

  • Non modifiable field in Purchase Requisition

    Hi, I would like to prevent users to change the material designation while creating and modifying PR, but only for few material types (all stocked material : eg ERSA materials). Only Account assigned articles should be modifiable. Item category in th