view the rule on the reference

I figured out how to view a rule over my notes.

The problem is, I don't know how to limit the rule to only show once (on the first note, when there are several notes on a page).

Thank you very much!

Steve

The rule separator must be defined in the tab layout of the dialog box Options of Document reference...

Tags: InDesign

Similar Questions

  • Why I can't view the rules?

    In design mode, when I switch to the view > menu rules, leaders menu shows the arrow indicating there is another menu, but nothing appears on. Thoughts?

    Huh, I posted a screenshot yesterday, but I guess I didn't actually post because it isn't here.

    Is not serious I think, because now this menu works! Weird. Maybe it was just a glitch in its system yesterday.

  • The reference to the table, view, or the sequence is not allowed in this context

    Hello

    I am triying to run the SP that I describe below and the OS gives me an error:
    CREATE OR REPLACE PROCEDURE DWARE.P_CSCV_AGR_MONTH_REVENUE
    (
        TBL_NAME VARCHAR2,
        START_DATE DATE,
        RESULT_ OUT NUMBER
      ) AS
      BEGIN
      
      DECLARE 
      
        v_tbl_name VARCHAR2(30);
        v_start_date DATE;
        v_result NUMBER := 0;
        
        v_select_aux VARCHAR2(32767) := ' ';
        v_temp_table VARCHAR2(30);
        v_exists NUMBER;
    
      BEGIN
        v_tbl_name := TBL_NAME;
        v_start_date := START_DATE;
      
        v_temp_table := 'temp_' || v_tbl_name;
        
        SELECT count(*) INTO v_exists FROM tab WHERE lower(tname) = lower(v_temp_table);
        IF (v_exists = 1) THEN
          v_select_aux := '
            DROP TABLE ' || v_temp_table || ' CASCADE CONSTRAINTS PURGE
          ';
          EXECUTE IMMEDIATE (v_select_aux);
          COMMIT;
        END IF;
        
        v_select_aux := 'CREATE TABLE ' || v_temp_table || ' AS 
                                  SELECT ch.date_ month_revenue,
                                       s.date_sub month_sub,
                                       s.codpromoter,
                                       u.OPERATOR,
                                       SUM (ch.total) AS TOTAL_OK
                                       FROM cscv_sub_charges_' || to_char(v_start_date, 'YYYY_MM')|| ' ch
                                       INNER JOIN cscv_subs s
                                       ON ch.id_sub = s.ID
                                       INNER JOIN cscv_users u
                                       ON s.id_user    = u.ID
                                WHERE ch.STATUS = 0
                                GROUP BY ch.date_, s.date_sub, s.codpromoter, u.OPERATOR';
                                
        EXECUTE IMMEDIATE (v_select_aux);
        COMMIT;  
         v_select_aux := '
     INSERT INTO ' || v_tbl_name || ' (
             month_revenue,
             month_sub,
             codpromoter,
             operator,
             TOTAL_0,
             TOTAL_1,
             TOTAL_2,
             TOTAL_3,
             TOTAL_4,
             TOTAL_5,
             TOTAL_6,
             TOTAL_7,
             TOTAL_8,
             TOTAL_9,
             TOTAL_10,
             TOTAL_11
          )
            SELECT 
             month_revenue,
             month_sub,
             codpromoter,
             operator,
             TOTAL_0,
             TOTAL_1,
             TOTAL_2,
             TOTAL_3,
             TOTAL_4,
             TOTAL_5,
             TOTAL_6,
             TOTAL_7,
             TOTAL_8,
             TOTAL_9,
             TOTAL_10,
             TOTAL_11
            FROM 
            (
               SELECT 
                  month_revenue,
                  month_sub,
                  codpromoter,
                  operator,
                  sum(total_ok) total_0,
                  0 total_1,
                  0 total_2,
                  0 total_3,
                  0 total_4,
                  0 total_5,
                  0 total_6,
                  0 total_7,
                  0 total_8,
                  0 total_9,
                  0 total_10,
                  0 total_11
                 FROM '|| v_temp_table ||'
              WHERE to_char(month_sub,''mm/yyyy'') = to_char(sysdate,''mm/yyyy'')
              GROUP BY month_revenue,month_sub,codpromoter, operator
              UNION ALL
              SELECT 
                  month_revenue,
                  month_sub,
                  codpromoter,
                  operator,
                  0,
                  sum(total_ok),
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0,
                  0
                 FROM '|| v_temp_table ||'
              WHERE to_char(month_sub,''mm/yyyy'') = to_char((to_date(sysdate,''dd/mm/yy'') - INTERVAL ''1'' MONTH),''mm/yyyy'')
              GROUP BY month_revenue,month_sub,codpromoter, operator
              ) 
            GROUP BY month_revenue,
             month_sub,
             codpromoter,
             operator
               ';    
        
        EXECUTE IMMEDIATE (v_select_aux);
        v_result := v_result + SQL%ROWCOUNT;
        COMMIT;
        
        v_select_aux := '
          DROP TABLE ' || v_temp_table || ' CASCADE CONSTRAINTS PURGE
        ';
        EXECUTE IMMEDIATE (v_select_aux);
        COMMIT;
        
        RESULT_ := v_result;
      END;
      END P_CSCV_AGR_MONTH_REVENUE;
    /
    ------------------------------
    BEGIN
    DWARE.P_CSCV_AGR_MONTH_REVENUE(CSCV_AGR_MONTH_REVENUE,'01/01/2010');
    END;
    /
    and the output is:
    Error at line 1
    ORA-06550: líne 2, column 32:
    PLS-00357: The reference to the table, view or sequence 'CSCV_AGR_MONTH_REVENUE'  is not allowed in this context
    ORA-06550: líne 2, column 1:
    PL/SQL: Statement ignored
    What could I do to fix the problem?

    Thanks in advance...

    Hello

    Signature of the procedure is

    CREATE OR REPLACE PROCEDURE DWARE.P_CSCV_AGR_MONTH_REVENUE
    (
    TBL_NAME VARCHAR2,
    START_DATE DATE,
    RESULT_ OUT NUMBER
    ) 
    

    either he's expecting two input parameters, tbl_name in VARCHAR2 and the other START_DATE date format format. Also you need a variable with the number data type to store the value of the PARAMETER RESULT_

    Now, look at the way you call this procedure

     BEGIN
    DWARE.P_CSCV_AGR_MONTH_REVENUE(CSCV_AGR_MONTH_REVENUE,'01/01/2010');
    END;
    /
    

    first parameter must be a VARCHAR2, so place CSCV_AGR_MONTH_REVENUE in single quotes.
    second parameter must be a date, so use to_date() function.
    Finally declare a variable with the data type of number to maintain the value of the parameter RESULT_

    Something like this:

    declare
    t_num number;
    begin
    a('CSCV_AGR_MONTH_REVENUE',to_date('01/01/2010','MM/DD/YYYY'),t_num);
    dbms_output.put_line(t_num);
    end;
    

    Vivek L

  • someone at - it else troubled hd with grid reference with indesign cc 2015? even when I go to view the baseline grid I can't see from my document

    anyone else had problems with the grid with indesign cc 2015? even when I go to view the baseline grid I can't see from my document

    Grids do not show in preview or overview of the overlay modes and may be hidden by a full framework used as a background. If it is none of these, it could be the threshold value of zoom - the grid appears if you zoom in?

  • Gmail loads fine, but when I try to view the e-mail, shows nothing below the sender's address.

    Gmail loads fine, but when I try to view the e-mail, shows nothing below the sender's address.

    Content of the entire message missing GMail (empty) after the title of the header

    In Firefox, if you have an extension "Adblock Plus".

    1. 'Ctrl + Shift + F' preferences (or right click on the symbol of the ADP and choose Preferences)
    2. 'Filters' menu > 'update all subscriptions'.

    Reference: https://support.mozilla.com/questions/896267

  • Measurement of Phase difference of audio - learning how to set the reference

    I'm trying to measure the difference in phase between two audio inputs. (Left and right channel of my sound card)

    Both are free running 1 kHz audio samples that come in and out of phase.

    When the samples are in phase, everything seems to work fine and shows no phase difference.

    However once that signals start to emerge from the +-10deg phase the result keeps jumping around.

    It seems to be the fact that it is changing the reference to determine the phase.

    When I view the phase of the output of a channel is a sawtooth waveform, from 250deg and then wraps round to-110deg

    What I want, it's an entry set to 0 degrees and see the other inputs of difference of phase against it.

    Is there a way to give a signal as being the reference or another strategy?

    Thanks in advance for any help.

    PLEASE NOTE THAT THE acquire.jpg IS ACTUALLY THE VI.

    It wouldn't download like the vi. Please rename extension to acquire.vi to see.

    Finally managed to find the problem.

    Red rooster, I tried to replace your entries simulated with audio inputs card his real world and things turned out horribly.

    It doesn't seem to be a translation between the two. (Perhaps because of my understanding of Labview garbage)

    LabVIEW uses the internal reference of the DAQ cards in order to make phase measures.

    That's what all use the phase VI of measure and which lack of cards not NI - DAQ.

    That's what I thought that missed me first place but there's no way I can see simulations your own.

    To work around the problem, I used zero crossing detectors in order to compare the time ahead or lagging behind the benchmark for the calculation of phase.

    I got the core of the detector from somewhere on the forum but have lost the actual page. (my apologies to the author who deserves the credit)

    Anyway, hope this hepls someone.

  • Should I close the reference?

    Hello

    I would ask... should I close the reference of the workbook in the following code?

    In fact, I have little idea whether to close a reference or not, because I thought that LabVIEW will automatically close all references after the execution.

    I also found that someone says that the activeX references must be closed on mine.

    Could someone correct my understanding of the closure of reference?

    In this case I'm fairly certain that cleaning screws will close these references, so I don't think that you should close your self.  One way, usually, I test this is I put the code in a while loop, or use the continuous run button.  It's basically the only time wherever I never use only and I have on small subVIs like that.  Then, I run my code over and over again and look at the Task Manager to see how much memory is using LabVIEW.exe.  After a few seconds if there is a leak of memory then memory will continue to increase.  If the memory goes up and down a bit, but overall does not continue to grow, then all the references that should be closed are closed.

    There is a white book NOR on the reference Server VI of closing which is exactly what you are doing, but has relevant information.

    http://www.NI.com/white-paper/14393/en

    And an exchange of views on this subject.

    https://lavag.org/topic/16443-closing-references-in-LabVIEW-new-documentation-published/

  • View the contents of the URL

    Hi all

    Currently I am developing an application in which I need to view the contents of the data from the URL to the screen. I mean I don't want to open the URL in the default browser of BB. I want to display the field that is added to the screen.

    Is it possible to view the contents of the URL without using browser...? Please give some suggestions.

    Thank you best regards &,.

    Craig

    Hello

    Thanks a lot for your valuable response. Now, I got the universal application. In fact, I want the limited functionality. So now reference that I can change my request.

    Thank you again...

    Kind regards

    Craig

  • How to re - activate page body after working on the reference page?

    Dear friends,

    Even now I can't reproduce the following situation in a short test script:

    1. A document is opened and the script finds the existence of a page reference 'FM-calc.
    2. If found, go to step 4
    3. If it is not found, such a reference page is copied from a template
    4. Work on the reference page: replace certain paragraphs.
    5. The user does not see that the script worked on the Ref page and call a dialoge
    6. This dialog box inserts a marker at the current location
    7. The marker is inserted in the reference page where the work has been left

    How to get back to the current page of body (which is the first)?

    Just put

    var pgf = goCurrentDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
    

    before inserting the marker will not do.

    Normally the user woud the cursor in the document at a specific location, and then call the dialog box: it works very well.

    But this dialog box remains open when the user changes the document.

    In the new document, there may be no page reference, and as a result, the script creates one.

    The user clicks outside the text frame (illegal location for insertion of marker) - this can be managed with

      if (!goCurrentDoc.TextSelection.beg.obj.ObjectValid()) {
        alert ("Please place cursor in document text flow or select something!");
      return;
      }
    

    But for switching back to work on the page Ref I have not found a solution.

    Klaus,

    I think that there are better ways to handle this. The user should not have to finish the work begun your script. Why not just save the original insertion / text selection before doing a job on the reference page? Then you can restore later. Something simple like:

    var restoreTR = targetDoc.TextSelection;

    As long as the variable remains valid (IE, stays in the scope), you can do anything you want anywhere in the file, then simply return the insertion point to this place when you are finished.  If you have actually changed the view to reference pages, you can use the CurrentPage property to switch back. So, in summary, I would do something like this:

    var restoreTR = targetDoc.TextSelection;
    
    //....  do all the wild Klaus stuff on the reference pages, then;
    
    var bodyPage = targetDoc.FirstBodyPageInDoc;
    targetDoc.CurrentPage = bodyPage;
    targetDoc.TextSelection = restoreTR;
    targetDoc.ScrollToText(restoreTR);
    

    Hope this helps,

    Russ

  • Event generated by the user 'anonymous' the host 'CIS '. Could not get the reference.

    Hello

    We have integrated our portal customized with the AAU in document taskflows webcenter application.
    We are not able to view the Soum, extracted from the Complutense University of MADRID. Here's the error to get connected UCM whenever we access the application.

    Event generated by the user 'anonymous' the host 'CIS '. Could not get the reference. Can not read the file. [Details]
    An error has occurred. The stack trace below shows more information.

    ! csUserEventMessage, anonymous, CIS! $! csCollectionUnableToGetReference! csCollectionCannotRead
    intradoc.common.ServiceException:! csCollectionUnableToGetReference! csCollectionCannotRead
    * ScriptStack COLLECTION_GET_REFERENCE
    3:getReferenceMeta, * no captured values *.
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
    at intradoc.server.Service.buildServiceException(Service.java:2260)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2254)
    Collections. CollectionUserHandler.getReferenceMeta (CollectionUserHandler.java:1765)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:600)
    at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    at intradoc.server.Service.doCodeEx(Service.java:533)
    at intradoc.server.Service.doCode(Service.java:505)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
    at intradoc.server.Service.doAction(Service.java:477)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458)
    at intradoc.server.Service.doActions(Service.java:472)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1391)
    at intradoc.server.Service.executeActions(Service.java:458)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:737)
    at intradoc.server.Service.doRequest(Service.java:1890)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
    at intradoc.server.IdcServerThread.run(IdcServerThread.java:160)
    to weblogic.work.SelfTuningWorkManagerImpl$ WorkAdapterImpl.run (SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)

    Kind regards
    Francis P

    What is the security group of your records? It is public.

  • VirtualMachine.PowerOnVM_Task how to get the reference to the returned managed object - task

    Hello

    I try to use the VirtualMachine.PowerOnVM_Task that returns a reference to the managed object - task as ManagedObject reference. (The VirtualMachine is the result of the GET's view)

    I use it in VB:

    Var refTask As Vim.ManagedObjectReference = Vim_VirtualMachine.PowerOnVM_Task (Vim_VirtualMachine.Runtime.Host)

    I can get the reftask like ManagementObjectReference, but here I don't know how to convert the managed - object task. I like to use all the properties and methods of this object.

    Looking at my result of the refTask I can't find many properties...

    Is it possible to retrieve an object just to get the reference to the taskobject somhow.

    Concerning

    Manfred

    Hello

    You can get Moref managed object is either using the cmdlet Get-View or in VB, using the VimClient.GetView method, that is to say:

    Get-View -Id refTask
    

    or

     Dim task As Vim.Task = Vim_VirtualMachine.Client.GetView(refTask)
    

    Note that each MO is the customer's property which is of type VimClient.

    Kind regards

    Yasen

  • How can I the CSS Styles Panel to view the list of styles in external style sheet?

    Hi all

    I'm having a devil of a time getting my CSS Styles Panel to see the styles of my style sheet attached. Yesterday, he worked as usual, and today it does not work. I feel that I tried all my options. Usually, I work in "All" instead of "Current" so I can see the entire list and have to do not refer to the CSS page. Does anyone know how to fix this?

    In addition, even if I have a style sheet attached, whenever I made a new style he puts it in my HTML page. What is probably related as well.

    In addition, this is the link of code which is in my HTML: < link href = "Alto.css" rel = "stylesheet" type = "text/css" / > "

    So, how can I get this Panel to view the list of styles? <-I can click on a timeline without going back to the CSS page.

    Thank you!

    Screen Shot 2013-02-15 at 9.33.24 AM.png

    Is it possible all the rules section has been reduced to the minimum?

    Mouse over the border between all the rules and properties and the pointer should turn on a top/arrow down, click and make it slide down and see if there are any properties.

  • Difficult to view the connected customer details.  The customer is able to register itself

    Difficult to view the connected customer details.  The customer is able to register on my site, but when he enters his user name and password I don't know how to display Welcome username message and pass the link to login to logout. AFTE same as the client connects it still shows login. Please look at the picture for more details.Untitled.png

    Hello

    On the page template / you use the login module tag "{module_whosloggedin}"?

    Reference KB: http://kb.worldsecuresystems.com/134/bc_1345.html#main_Web_page_Modules

    If still not able to solve it please provide the page where you experience this problem and help further.

    Kind regards

    -Sidney

  • view the prompt values in report answer?

    Hi all
    Can you tell me what is the best way to view the quick responses of the report response and how to view the dashboard prompt responses in dashboard?

    Sara

    Hi Sara,.

    You are right that this works in a dashboard. Presentation variables can only be set in several ways. Dashboard of the guests is the main method for setting & their update. A prompt response to request doesn't have the ability to update and set the variables of presentation.

    If you definitely want to do this in a request for a response, you have only a few options (not include presentation variables)
    (1) add the 'filter view' on demand. This isn't the most elegant solution, however, he accomplishes the purpose of show dates that were selected in the quick query
    (2) create 2 new logical columns to the RPD. Max (date) and MIN (DATE) based on the date that is filtered in the report. These you can reference in a narrative view to accomplish the display of dates.
    (3) create a javascript that reads the results of the query and displays the dates max. and min.

    I would recommend the method of the dashboard. Put printing shaped reports and dashboards provide more control over the display.

    To solve the problem in your dashboard. Follow these steps:
    (1) open your report
    (2) remove your existing filters on 'Time D0'. "' T00 calendar date.
    (3) CTRL + click on "D0 time." "' T00 calendar date" to add a new filter
    4) click on Advanced-> convert this filter in SQL
    (5) paste the following in: "D0 time." "' T00 calendar date" BETWEEN "@{DATEFROM}' AND ' @{DATETO}'"
    (6) save your report and test your dashboard.

    I don't have a working version of the DPR SampleSales upward, so I can't test the above syntax, but it must be correct. Just give it a shot and tell me if it works properly. I know that I said earlier that the variables of presentation work only with "is equivalent to / is in", but what I meant is that dash invite you only set you set presentation variables when the operator is "is equivalent to / is in. When you use a variable presentation, you can implement using any carrier you want. Hope that clears up any confusion.

    Good luck and if you found this post useful, please give points!

    Best regards

    -Joe

  • How to re - assign page numbers without changing all the references?

    I've built and rebuilt a lot of pages, which makes the project seem like chaos. I want to re - assign numbers page for them, but I don't want to manually change the reference to them, because it would cause an error if I forgot a few references. But I noticed that APEX will not re-name thing for us. For example, if I delete a page, create a new and assign the former tab to this new page, APEX keeps even the reference to the old page, which no longer exists.

    Thank you!

    Hello

    Yes, it's perhaps heavy.
    What might help is in the page which number you want to change, change the selection list 'View' (the one just before the OK button top left on your definition of pages page) of the definition to referenced. So, you see where the current page is referenced and what to change. Also using Page aliases will reduce the number of changes...

    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this response in marking it as useful or Correct ;-)

Maybe you are looking for