partial paragraph reference period as delemeter?

I am trying to create a reference part paragraph, which stops at the first paragraph period referenced.

I know how to make cross references, but has problems to get into character for the delimiter. So far, I've followed the instructions in the help file:

When you insert the partial paragraph building block, you must do two things. First, specify the delimiter between the quotation marks. The delimiter is the character that ends the paragraph. Common delimiters include semicolons (Chapter 7: Granada), periods (Chapter 7. Granada) and dashes (Chapter 7 - Granada). To insert special characters such as cadratins (^ _), em spaces (^ m) and characters (^ 8), choose an option from the menu that appears when you click the special characters icon.


dy_Dynamic_xref_partial.png


I am able to create a partial x - ref, which ends at the em dash. But when I create the building blocks for an x - ref, which puts an end to a period, I get the following:


delimeter error.png


And I'm unable to save or use this definition for the x - ref. I also tried a delimiter of "^." but who doesn't either. I can't believe that the x - ref for a period is broken.

Hi Sandee. I was able to make it work using the following statement . It is hard to tell in the screenshot, but is there a chance that those are quotes? Try to copy the mine and see if it works.

Tags: InDesign

Similar Questions

  • Cross reference incorrect syntax

    Try to create a partial cross reference text using the suggested code:

    "< fullPara delim =".:” includeDelim=”false”/>

    However, InDesign (DC) gives me a message "invalid syntax".

    Ideas?

    Thank you.

    Uwe,

    You are right that the quote thing is confusing. There are actually two types of quotes in the definitions for the x - Ref.

    The quotes around are regular quotes and can be curly, or German, or guillumets or anything like that. In fact, they do not have to be quotes.

    These quotes are indicators that you want some characters around the text of the full paragraph.

    "But the citations in the delim = building block": "don't go to insert citations in the text. They are in the code of the markers that indicate that what is between the markers (quotations) is the element that will stop to pick up all the text in the partial paragraph.

    It is these quotes that cannot be curled.

    Does make sense?

  • Apply the style of paragraph 1 above and the style of paragraph 3 below all paragraphs containing only the italics?

    Hello

    I need a script that can find the paragraphs in italics only glyphs (maybe we can change all that pretty color) and apply the style of paragraph 1 above, the style of paragraph 3 below and this paragraph in italics to paragraph style 2

    Some paragraph of text (for the 1 paragraph style)

    some italic text (for paragraph style 2)

    little text (for the 3 paragraph style)

    After you run the script, I have something like this in 3 styles different points

    a text

    some italic text

    a text

    Lost link!

    /*

    Fixing paragraph style combinations

    Version: 1.2.B

    Script by Thomas Silkjaer

    http://indesigning.NET/

    Minor version b: Bruno Herfst

    + Add any style to replace paragraphs

    + Can cancel

    */

    var the_document = app.documents.item (0);

    Create a list of paragraph styles

    var list_of_paragraph_styles = [];

    var all_paragraph_styles = [];

    the_document.paragraphStyles.everyItem () .name;

    for (i = 0; i< the_document.paragraphstyles.length;="" i++)="">

    list_of_paragraph_styles.push (the_document.paragraphStyles [i]. (Name)

    all_paragraph_styles.push (the_document.paragraphStyles [i]);

    }

    for (i = 0; i< the_document.paragraphstylegroups.length;="" i++)="">

    for (b = 0; b< the_document.paragraphstylegroups[i].paragraphstyles.length;="" b++)="">

    list_of_paragraph_styles.push (the_document.paragraphStyleGroups [i] .name + ' /' + the_document. paragraphStyleGroups [i] .paragraphStyles [i] .name);

    all_paragraph_styles.push (the_document.paragraphStyleGroups [i] .paragraphStyles [i]);

    }

    }

    var list_of_replace_paragraph_styles = list_of_paragraph_styles.slice (0);

    list_of_replace_paragraph_styles.unshift ("[no paragraph style]" "");

    That the dialog box to select the paragraph styles

    var the_dialog = app.dialogs.add ({name: 'Paragraph style pairs Fix'});

    {with (the_dialog.dialogColumns.Add ())}

    {with (dialogRows.Add ())}

    staticTexts.add({staticLabel:"Find:"});)

    }

    {with (borderPanels.Add ())}

    var find_first_paragraph = dropdowns.add ({stringList:list_of_paragraph_styles, selectedIndex:0});})

    staticTexts.add ({staticLabel: "monitoring of"});

    var find_second_paragraph = dropdowns.add ({stringList:list_of_replace_paragraph_styles, selectedIndex:0});})

    }

    {with (dialogRows.Add ())}

    staticTexts.add({staticLabel:"Change:"});)

    }

    {with (borderPanels.Add ())}

    var change_first_paragraph = dropdowns.add ({stringList:list_of_paragraph_styles, selectedIndex:0});})

    staticTexts.add ({staticLabel: "monitoring of"});

    var change_second_paragraph = dropdowns.add ({stringList:list_of_paragraph_styles, selectedIndex:0});})

    }

    }

    {if (the_dialog. Show())}

    Define paragraph styles

    var find_first_paragraph = all_paragraph_styles [find_first_paragraph.selectedIndex];

    anyStyle var = false;

    If (find_second_paragraph. SelectedIndex == 0) {}

    anyStyle = true;

    }

    var find_second_paragraph = all_paragraph_styles [find_second_paragraph.selectedIndex - 1];

    var change_first_paragraph = all_paragraph_styles [change_first_paragraph.selectedIndex];

    var change_second_paragraph = all_paragraph_styles [change_second_paragraph.selectedIndex];

    Set preferences for grep to find to find all the points with the first selected paragraph style

    app.findChangeGrepOptions.includeFootnotes = false;

    app.findChangeGrepOptions.includeHiddenLayers = false;

    app.findChangeGrepOptions.includeLockedLayersForFind = false;

    app.findChangeGrepOptions.includeLockedStoriesForFind = false;

    app.findChangeGrepOptions.includeMasterPages = false;

    app.findGrepPreferences = NothingEnum.nothing;

    app.findGrepPreferences.appliedParagraphStyle = find_first_paragraph;

    app.findGrepPreferences.findWhat = ' $';

    Search current history

    var the_story = app.selection [0] .parentStory;

    var found_paragraphs = the_story.findGrep ();

    var change_first_list = [];

    var change_second_list = [];

    Browse the paragraphs and create a list of words and mark them as index words

    myCounter = 0;

    {}

    try {}

    Create an object to in paragraph reference and the following

    var first_paragraph is found_paragraphs [myCounter].paragraphs.firstItem ();.

    var next_paragraph = first_paragraph.paragraphs [-1] .insertionPoints [-1] .paragraphs [0];

    {if (anyStyle)}

    change_first_list.push (first_paragraph);

    change_second_list.push (next_paragraph);

    } else {}

    Check if the next paragraph is equal to the find_second_paragraph

    if(next_paragraph.appliedParagraphStyle == find_second_paragraph) {}

    change_first_list.push (first_paragraph);

    change_second_list.push (next_paragraph);

    }

    }

    } catch (err) {}

    myCounter ++;

    } While (myCounter<>

    Apply paragraph styles

    myCounter = 0;

    {}

    change_first_list [myCounter] .appliedParagraphStyle = change_first_paragraph;

    change_second_list [myCounter] .appliedParagraphStyle = change_second_paragraph;

    myCounter ++;

    } While (myCounter<>

    Alert ("fact pairs fixation!");

    }

  • InDesign CS 5.5: Reference Custom and style for ePub

    Hello

    I wonder if he is away from:

    1. create custom, so instead of normal number note I want InDesign to create with parentheses.
    2. When I paste the text for the note at the bottom of the page, InDesign adds an extra space between the number and the text, is there a way to reduce the space
    3. I have a book that has so many chapters and InDesign keeps count as note (1,2,3,4... 66) and so on, it is possible to control the note then each chapter begins with the (1)?

    concerning

    Omar Saleh wrote:

    Hello

    I wonder if he is away from:

    1. create custom, so instead of normal number note I want InDesign to create with parentheses.
    2. When I paste the text for the note at the bottom of the page, InDesign adds an extra space between the number and the text, is there a way to reduce the space
    3. I have a book that has so many chapters and InDesign keeps count as note (1,2,3,4... 66) and so on, it is possible to control the note then each chapter begins with the (1)?

    concerning

    Hi, Omar:

    In Type > Options of reference Document, you can define a parenthesis or another character prefix and suffix. Adjust the space after the reference number by choosing a separator; If you choose a tab, set the position of the cleat for the paragraph reference style. Create a paragraph reference style if you don't have one and specify the area of reference of formatting of the note Options dialog box.

    Google search for words like 'InDesign reference formatting' without the quotes for more details.

    I don't know how much of the formatting will be retained in an ePub.

    HTH

    Kind regards

    Peter

    _______________________

    Peter gold

    Know-how ProServices

    Post edited by: peter knowhowpro

  • Formatting of note not fully applied after importing text

    Hello.

    After importing a .doc file (including the notes) in a document InDesign CS 5 with already defined reference Options, the imported notes appear with the correct styles assigned, but only partially applied, which means, the real appearance differs, indicated by a sign + next to the paragraph in the palette style name paragraph styles when setting the text tool in one of the actual notes.

    The differences seem incompatible; Lately, he has been very large tabs. They only disappear after option choose the field of paragraph style in the palette. They do not disappear by disabling the replacements in general.

    Because in addition to this, by fully applying the style must be done individually for each reference in a document with a few notes of hundreds, forwarding InDesign seems unusable. If someone knows how to bypass or avoid this problem?

    Thank you

    You can search your paragraph reference style and replace it with the same. Will erase all replacements the.

    Be warned: it will erase all replacements the.

  • Install Win8 on new HARD drive using disks of recovery on HP Envy M6

    Okay, so I have my hard drive crashed a few months. So, I ordered a set of HP recovery disks. I finally get around to retrieve Win8 on the new HARD drive. However, I follow these instructions and it does NOT work. I get to the Boot Manager and nothing is there - at all. So, I went back to the BIOS and disabled secure boot (just in case). Yet, nothing. After several hours, I dropped...

    Flash forward to today. I have enabled the legacy starts, moved DVD player y up in my order of start and stuck in a Win7 disc, I have here. One immediately recognizes the disc.

    I finally decided to try to install recovery using USB thought which may help. So, I had on my desktop and tried to rip an .iso of the disks. Both PowerISO and IMGBurn rise "IO error" partially through the period of inquiry.

    I'm starting think that the discs are bad... That would not explain why can't I see my optical drive in the Boot Manager however.

    Thoughts?

    It was records. I downloaded a copy of Win8 and it began immediately.

  • Extended warranty covering past damage

    Hello

    Firstly, I would quickly ask if it is possible to extend the warranty of your laptop by Satellite X 200 half a year after the expiration of the original warranty. So far, I was unable to get the information about this through my local dealer. I live in Norway, if it matters in any way.

    On the subject in question though. I wonder if an extended warranty will cover the damage to the laptop that could occur while its guarantee was more active, that is, in the deadband between the guarantee of origin and extent. Note that this requires a yes answer to my original question about the extended warranty.

    Specifically, I wonder if this extended warranty will cover the service charge for fans of dusty / does not work properly, which is probably a damage and the problem that occurs over time. Whereas a deadband between the two guarantees of six months, such a pity (has at least partially) developed in period-valid warranty. Would it still be under warranty if service were made immediately after the warranty has been extended?

    Thanks in advance!

    > First of all, I would quickly ask if it is possible to extend the warranty of your laptop by Satellite X 200 half a year after the expiration of the original warranty.

    I think that it of not possible to extend the warranty if the warranty has expired.
    But you should visit these pages of Toshiba could check if an extended warranty is available for you.
    http://EU.computers.Toshiba-Europe.com-> devices & Services-> Services
    http://EU.computers.Toshiba-Europe.com-> Services devices &-> & warranty registration

    Here you will find the [warranty available Extensions: 0918 http://eu.computers.toshiba-europe.com/innovation/services_search.jsp?service=EU&oldOptionCategory=6 & selOptionCategory = 1070696 & search =?]

  • Wireless connection problem - "could not contact the primary DNS server.

    Hello. As of today, I had an interesting problem with my connection wireless home.

    I have DSL, and my router (an Actiontec GT704-WG, for reference), periodically decides to abandon the internet connection throughout the entire family. This includes our parent unit, as well as my lap top which relies on a wireless connection.

    Today, I noticed that my laptop was switched to 'Access Local.' only I went to check my modem, only to find all the lights on the side were, and the computer was working fine. I tried to reset the wireless connection, activating / disabling the wireless and switch off, Plug and reconnect to the network without wire, as well as re-booting my computer. None of these things worked.

    I also received and error message that tells me it: "could not contact the primary DNS (fe80::341b:6831:1247:6707 11%).

    I don't know what this means, although I checked to make sure that my ISP address connects well, and as far as I can tell it is. I also checked everything that Microsoft suggested troubleshooting guides, nothing helps.

    I don't know if that makes a difference, but I noticed to my lap top more close to the router, the connection would come periodically power on and off. Also, these problems started occurring after that I installed and then uninstalled Firefox. I use Internet Explorer, but I wanted to try Firefox.

    Also, my computer is an application of Toshiba Satellite L305-S5944, running Vista Home Basic, I believe.

    I hope I've provided enough information.

    Go to the website of the manufacturer of your router > make sure you have the latest Firmware in Vista for it.

    Go to the website of the manufacturer of your computer/notebook > drivers and downloads Section > key in your model number > look for it last network adapters Vista drivers > download/install the.

    Try without commitment TCP/IPv6:

    If you still have internet connection probs, one thing to try is the separation of the TCP/IPv6 (which is done by going to network connection > right click > properties > it uncheck > OK.)

    http://digitalmediaphile.WordPress.com/IPv6-how-to-unbind-from-a-NIC-in-Windows-Vista/

    See you soon.

    Mick Murphy - Microsoft partner

  • Rule below refers

    Hello

    Can someone help me create a rule UNDER a group of notes? I'll have to apply to many documents 200-300 pages, so it needs to be automated.

    I don't want a rule below in the paragraph reference because style if there is more than one reference, the rules would show under each note that I don't want.

    I don't want to apply a rule to the lower part of each block of text as on some pages, there are has no references, so no rules are necessary.

    I use the GREP search to find all the notes "~F\t.+". I'm not very adept at GREP expressions, but is it possible to change this GREP to select the last note on a page/text frame? Then I can apply a different paragraph style these last notes that includes the rule below.

    Or I am open to other ideas (GREP, Scripts or other) to automatically apply a rule at the end of my notes.

    Any help would be greatly appreciated.
    Kate

    Ok!

    Willi was wrong! You can do it! Completely automatically with just the paragraph reference style!

    Willi seems to ignore something essential to the para rules: rule of Pará "above" is technically "in front of" the State of Pará "below!

    So, the rule 'below' a para para is "behind" the State of Pará 'above' of the next para!

    So, if you only need a rule of Pará on the last line of the last note, simply superimpose the para ' white/yellow' above rule and the State of Pará 'blue '. Of course, in the transaction, the 'green' race is managed by the global settings of "Notes"!

    That's the thing!  I changed the 'white paper' in color 'yellow' color to show you it:

    No more no less! All simple!

    (^/)

    If you agree with this solution, just do as 'Correct '!

  • Conversion of the time/date STAMP backup to the DATE format?

    Hello community,

    is it possible, to convert the backup timestamp Format (which is written by RMAN in the columns titled "STAMP" in NUMBER data types) in a regular Format of DateTime?

    I can't find any data about this timeformat only this:

    'specifies that the backup the value timestamp, which is a 4-byte value derived as the number of seconds since a reference period fixed'.

    But what kind of 'fixed reference time' is it?

    I would like to show the output of the view RC_RMAN_OUTPUT of the RMAN catalog with a timestamp of humanreadable for each line of output, but there is only one column of STAMP.

    Thank you

    Tobias

    I found for myself:

    Select

    (to_date('1987-07-04 00:00:00', 'YYYY-MM-DD HH24:MI:SS') + STAMP, 24, 60, 60) log_date,.

    output

    of rc_rman_output

    order by recid;

  • OIM 11 g - get disabled user date

    Hello

    Can I know how can I get the date at which a user is disabled in IOM?, thank you.

    There are 2 options.  If there is a configuration to go on you will need and be able to reference periodically you can set up a new field of UDF and create an eventhandler on the activity of persons with DISABILITIES of the user option and fix the date when disabled.

    If you do not need to be available from the user interface, you can also reference check dashboards and reports for them that are STANDARD for the history of user profile.  You can also write your own report based on the name of the field, when USR_DISABLED is set to 1.

    Here is an example query assuming that you treat your audit events:

    Select usr.usr_login, upa_fields.update_date from upa_fields, usr, upa_usr

    where upa_usr.upa_usr_key = upa_fields.upa_usr_key

    and upa_usr.usr_key = usr.usr_key

    and upa_fields.field_name = 'User Users.Disable' and upa_fields.field_new_value = '1'

    -Kevin

  • Use Insert all but want only to insert records for non-null values

    Hi, New here and could use some help with my sql statement.  I have a portfolio with denormalized data table that has been inserted via .csv file.  It is a contract with a base, options and extensions.  I need to create a contract record, then a separate record in the table for each base/option/extension contract Details.  I use INSERT ALL so I maintain the CONTRACT_ID for the secondary table.  My problem is that my statement puts a line in the table of details for the null records, that I don't want.  (i.e. 123 contract has a Base, Option 1, Option 2 and Option 3, but I'm getting a line for these lines with dates more null for Option 4, Ext 1, Ext 2, Ext 3 and Ext 4).  I want to insert only when the % CTRT_STRT_DT is NOT NULL.  It will be different for each contract.  Where should I put the IS NOT NULL statement?  Here is my complete insert statement:

    -Contract data

    INSERT ALL

    IN LRTC)

    CTRT_ID,

    PRGRM_OFC_TYP_CD,

    CTRT_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    PRGRM_OFC_TYP_CD,

    SPLS_SRVS_DESC,

    SYSDATE)

    -Contract detail for another period of performance data

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    "Other."

    OTHER_CTRT_STRT_DT,

    OTHER_CTRT_END_DT,

    OTHER_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Contract detail data for the reference period of performance

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    'Base ',.

    BASE_CTRT_STRT_DT,

    BASE_CTRT_END_DT,

    BASE_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Option 1 execution time-out

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    "Option 1",

    OPT1_CTRT_STRT_DT,

    OPT1_CTRT_END_DT,

    OPT1_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Option 2 execution time-out

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    'Option 2',

    OPT2_CTRT_STRT_DT,

    OPT2_CTRT_END_DT,

    OPT2_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Option 3 lead time

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    'Option 3',

    OPT3_CTRT_STRT_DT,

    OPT3_CTRT_END_DT,

    OPT3_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Option 4 execution time-out

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    'Option 4',

    OPT4_CTRT_STRT_DT,

    OPT4_CTRT_END_DT,

    OPT4_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Extension 1 execution time-out

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    'Extension 1',

    EXT1_CTRT_STRT_DT,

    EXT1_CTRT_END_DT,

    EXT1_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Extension 2 execution time-out

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    '2 Extension',

    EXT2_CTRT_STRT_DT,

    EXT2_CTRT_END_DT,

    EXT2_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Extension 3 lead time

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    '3 Extension',

    EXT3_CTRT_STRT_DT,

    EXT3_CTRT_END_DT,

    EXT3_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    -Data contract detail for Extension 4 execution time-out

    IN CTRT_DTLS)

    CTRT_ID,

    CTRT_STAT_CD,

    CTRT_PER_NME,

    CTRT_STRT_DT,

    CTRT_END_DT,

    CTRT_CURR_AMT,

    CTRT_NO,

    CTRT_VNDR_NME,

    CREN_DT)

    VALUES)

    CTRT_ID_SEQ. NEXTVAL,

    1,

    '4 Extension',

    EXT4_CTRT_STRT_DT,

    EXT4_CTRT_END_DT,

    EXT4_CTRT_CURR_AMT,

    CTRT_NO,

    CTRTR_NME,

    SYSDATE)

    SELECT

    PRGRM_OFC_TYP_CD,

    SPLS_SRVS_DESC,

    CTRT_NO,

    CTRTR_NME,

    To_date(PER_OF_PFRM_OTHER_ST_DT,'MM/DD/YYYY') as OTHER_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_OTHER_END_DT,'MM/DD/YYYY') as OTHER_CTRT_END_DT,

    CUR_VAL_BY_POP_OTHER_AMT as OTHER_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_BASE_ST_DT,'MM/DD/YYYY') as BASE_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_BASE_END_DT,'MM/DD/YYYY') as BASE_CTRT_END_DT,

    CUR_VAL_BY_POP_BASE_AMT as BASE_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_OPT1_ST_DT,'MM/DD/YYYY') as OPT1_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_OPT1_END_DT,'MM/DD/YYYY') as OPT1_CTRT_END_DT,

    CUR_VAL_BY_POP_OPT1_AMT as OPT1_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_OPT2_ST_DT,'MM/DD/YYYY') as OPT2_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_OPT2_END_DT,'MM/DD/YYYY') as OPT2_CTRT_END_DT,

    CUR_VAL_BY_POP_OPT2_AMT as OPT2_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_OPT3_ST_DT,'MM/DD/YYYY') as OPT3_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_OPT3_END_DT,'MM/DD/YYYY') as OPT3_CTRT_END_DT,

    CUR_VAL_BY_POP_OPT3_AMT as OPT3_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_OPT4_ST_DT,'MM/DD/YYYY') as OPT4_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_OPT4_END_DT,'MM/DD/YYYY') as OPT4_CTRT_END_DT,

    CUR_VAL_BY_POP_OPT4_AMT as OPT4_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_EXT1_ST_DT,'MM/DD/YYYY') as EXT1_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_EXT1_END_DT,'MM/DD/YYYY') as EXT1_CTRT_END_DT,

    CUR_VAL_BY_POP_EXT1_AMT as EXT1_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_EXT2_ST_DT,'MM/DD/YYYY') as EXT2_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_EXT2_END_DT,'MM/DD/YYYY') as EXT2_CTRT_END_DT,

    CUR_VAL_POP_EXT2_AMT as EXT2_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_EXT3_ST_DT,'MM/DD/YYYY') as EXT3_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_EXT3_END_DT,'MM/DD/YYYY') as EXT3_CTRT_END_DT,

    CUR_VAL_BY_POP_EXT3_AMT as EXT3_CTRT_CURR_AMT,

    To_date(PER_OF_PFRM_EXT4_ST_DT,'MM/DD/YYYY') as EXT4_CTRT_STRT_DT,

    To_date(PER_OF_PFRM_EXT4_END_DT,'MM/DD/YYYY') as EXT4_CTRT_END_DT,

    CUR_VAL_BY_POP_EXT4_AMT as EXT4_CTRT_CURR_AMT

    OF CTRT_HLDG A, PRGRM_OFC_TYP_LKUP B

    WHERE UPPER (A.OFC_NME) = UPPER (B.PRGRM_OFC_TYP_NME);

    Thanks for any help.

    Chris

    You're close.  Basically, you add one when befire each Inserts lines.  Something like:

    INSERT ALL

    When the ctrt_id is not null then

    IN LRTC (PRGRM_OFC_TYP_CD, CTRT_NME, CTRT_ID, CREN_DT)

    VALUES (CTRT_ID_SEQ. NEXTVAL, PRGRM_OFC_TYP_CD,

    SPLS_SRVS_DESC, SYSDATE)

    -Contract detail for another period of performance data

    When the OTHER_CTRT_STRT_DT is not null then

    IN (CTRT_ID, CTRT_STAT_CD, CTRT_PER_NME, CTRT_DTLS

    CTRT_STRT_DT, CTRT_END_DT, CTRT_CURR_AMT,

    CTRT_NO, CTRT_VNDR_NME, CREN_DT)

    VALUES (CTRT_ID_SEQ. NEXTVAL, 1, 'Other', OTHER_CTRT_STRT_DT,

    OTHER_CTRT_END_DT, OTHER_CTRT_CURR_AMT,

    CTRT_NO, CTRTR_NME, SYSDATE)

    -Contract detail data for the reference period of performance

    When the BASE_CTRT_STRT_DT is not null then

    IN (CTRT_ID, CTRT_STAT_CD, CTRT_PER_NME, CTRT_DTLS

    CTRT_STRT_DT, CTRT_END_DT, CTRT_CURR_AMT,

    CTRT_NO, CTRT_VNDR_NME, CREN_DT)

    VALUES (CTRT_ID_SEQ. NEXTVAL, 1, 'Base', BASE_CTRT_STRT_DT,

    BASE_CTRT_END_DT, BASE_CTRT_CURR_AMT, CTRT_NO,

    CTRTR_NME, SYSDATE)

    You may need to adjust my predicates, but it should give you the idea.

    John

  • Standard rates and the entrance of the element do not allow to enroll in the NEW program

    I have a problem when creating a new program that has a weekly reference period. Currently I have age on a two-week program that must be moved in the weekly program. (NOT ALL EAS IS MOVED). I'll be the error of:

    "You cannot register a person in a plan that includes more than one rate of activity with the same element and the input value. Flat rates ADD - provider - ER and ADD - provider - ER - weekly uses the same element and input value and are attached to the subject of compensation. You must change your configuration so that these rates of activity do not use the same element, the input value and purpose of compensation or register the person in a plan that does not include participation rates with the same element, the input value and object of compensation. "

    -NOTE: the entrance of the same element and the input value are used in the same plan for different types of employees already (options) (i.e. service provider, hourly, salary)

    Standard rates use the same element and input value, but the object of compensation called a different program and is not the same combination. (EITHER 1. Weekly program-ADD-Service Provider-ER 2. Benefits of the program - service provider of ADD - ER). I need assistance or advice to fix this problem. I'm trying to enroll individuals in the current program so that it will not draw the same entry element but without success. I tried to register for a 'new' employee so that has not already been registered in any program and still receive the same error. Any suggestions?

    Hello

    Either way, I got the same error today and here is what happened in my case: in some sort eligibility has failed and the life event gave eligibility for both options using the same rate. This is why the error message.
    The error message is misleading and makes you look to the configuration of the rate.
    However, the central question is if employee is faulty (in my case) for the two options (Oipls in my case) including standard rates are atatched to a single item, then obviously the system think, you assign the same employee element twice.

    Check if it is the case with you as well.
    To do this, you can do the rates involved as 'dormant' at an earlier date - run an event admin and test. Making inactive will decouple the rate to the eligibility/electability.

    Let me know if this helped.

    Kind regards

  • SCORM 2004 in AS3

    I have a file in flash (SWF) needs to talk to an LMS (SCORM 2004). I have the FLA that I can publish with SCORM 2004 followed. I need the syntax for the provision of the SGA with the student's progress through courses, results of the review, students name etc. Can anyone help!

    OK, I'll try to break this down piece by piece.

    Regarding the ADL test suite, you are right that it is probably not installed correctly, or there is a problem with its configuration. Its rather notorious as being difficult to operate. Once the work however, its very useful. Whatever it is, it really should not have any impact on your flash content. In terms of being able to test your content, I suggest that you take a look at cloud.scorm.com. even if you are not intending to set up a 'cloud' course, it's a great test environment (100 meg test acct is free) and really easy to use. Simply download your package and it will notify if you any scorm errors and warnings to be fixed in the manifesto and you can test all the courses you like.

    On your flash content:

    Just to check, you have a wrapper for an user interface that you load your interaction/read SWF files. Your flash content should have absolutely 0 impact on time or not, you can get your toolkit to run. So, all you really have to worry here is send and receive varying information from your LMS. When you test here, usually, I add another layer to my content with a few predefined text fields. to track changes made to variables scorm, I work on during a test/debugging.

    Most of the code for your SCORM course should probably be handled in your UI wrapper as opposed to your content slides.

    If you end up going the road of pipworks (I highly recommend this course all by scratch it management), then you just need to set up some features reporting.

    in general,.

    I use one for the initial load of the user interface. This is where I put all status and get all the values that I need (like the name the student, current progress as your bookmarking information, etc.)

    Can I use another function to update my progress to the lms

    And finally have another that updates the data required for the marking of the quiz or other content received you can have.

    So to call the latter, (with the possible exception of the initial report, which should be called the one based on the configuration of your user interface). I just use a custom event and possibly check for a lable of frame on the last frame of your content to call the function you need.

    Once you have tested it at the local level (i.e. by ensuring all the side flash works, and things like your quiz data are actually reports to your user interface handler). You can then watch actually test in the ADL package or something like scormcloud.

    For details: do a search for «scorm» 2004 reference PERIOD It will be invaluable for you long term.

    "For bookmarking, take a look at" ""cmi.location '. Basically when you load your course you want to get this value and say your user interface to start at this slide.

    The principle is the same for the learners name of the lms.  See 'cmi.learner_name '.

    Now, quizes can get a little complex depending on how and how much information you want to communicate to the LMS.  What I consider the key those who are 'cmi.score.min', 'cmi.score.max', 'cmi.score.raw' and 'cmi.score.scaled' as cmi.success_status. I run usually by making the content of your files "cliché" to your user interface and then have the user interface of the LMS report.

    I hope this starts you off in the right direction. If you're still stuck, I'm willing to help trouble shoot of specific questions, or if you need clarification on something, let me know.

    M.

  • Number exhibitor at the bottom of page

    Our model company requires that each note number exponent - not only in the body of the text, but in the note itself. Is there a way so that InDesign can make automatically exposing? I can do it manually, but I guess that there is a way for the numbers to be automatically exposed.

    I use CS4 and am new with the program. I do not search the forum, but the only related responses did not say how to apply it to the number in the reference area, only the number in the body of the text.

    I was going to say that it was quite easy, but actually turned out be super easy!

    I'll assume you have a paragraph reference style dedicated - you don't want your notes to resemble your text.

    1. In this paragraph style definition, call the GREP Style Panel.
    2. Click on the button 'New GREP Style'
    3. A new item will appear in the GREP list; Click on the text [no] next to "Apply a Style" - it's actually a drop-down list.
    4. If you already have a character with just exposing style, you can select it here. otherwise, first make a by choosing "new character Style...". "downstairs, name it 'exposing' and have it only apply"exposing ".
    5. Click in the field next to "text" - its default value is '\d+', which means that the style would be applied to all numbers. Now tended to want to be exhibitor numbers, but... not all in the entire note! So, you'll have to imagine a way "only apply to numbers that are at the beginning of the note"... (which is, in fact, quite possible! And I'd be a Jongware happy to tell you how to remove this particular thing - but I digress. Sorry). The "super-easy" is because if you the do try to use '\d+', all the numbers at the bottom of page will be Exhibitor except reference numbers themselves! So why the "super easy"? Reference numbers have a unique code that is clean, so InDesign can follow and update when you insert or remove a note; GREP code for these is "~ F". So just delete the text that is in the 'text to' field and enter "~ F" inside (you mind, without the quotes - those who are just to indicate here the text to be inserted is just "~ F".) Oh Lordy now I did once again. No quotes needed).

    ... and all that's left for the Point #6 is to click OK to close the paragraph definition.

    There you go: reference numbers superior automagic.

Maybe you are looking for