Hierarchies and Structures

Hi SDN Experts,
I have a FS Item hierarchy in BCS and am using it build an Income Statement report via Query Designer.
It is a large hierarchy with various nodes (revenues, expenses, etc.) with their sub-nodes (electricity, trading, fuel, etc.) and leaves (G/L accounts).
I am using a structure to pull in the hierarchy values at different levels of account groupings.  I am unable to make the nodes expandable during execution in Analyzer unless I manually entered each of the G/L accounts under a node.
Is there a way to configure the structure so that I don't have to essentially rebuild the hierarchy? (I need the structure to do calculated key figures and restrictions).
Cheers,
Mike

Hi,
Actually, what MIghty Mike proposed should work.
Just a few clarifications. I suppose that your nodes (to be drilldowned) contain the sets of leaf-accounts as the restrictions. In this case drilldown by accounts (from the free chars) should show all accounts beneath nodes.
In order to see under nodes only relevant leaf-accounts, tick Supress empty rows  flag in the property of the structure.
Best regards,
Eugene

Similar Messages

  • What is the best way to explore a hierarchical folder structure?

    Hallo,
    I need to access and navigate a hierarchical folder structure hosted in a MS SQL Server database. In particular there is a root folder containing several folders. Each child-folder contains further nested folders or documents.
    For each item I need to retrieve the folder's (name, path, etc) and the documents (title, author, etc.) details that are retrievable from the DB fields. Afterwards I will use these data to create a semantic web ontology using Jena API.
    My question was about which is the best way to proceed.
    A collegue of mine suggested to use the "WITH" command of SQL Server to create and use a link list to navigate easily the structure, executing just one query rather than several (one for each level of the nested loops). However in this way the solution will work only with the SMQ Server database, while my goal is to achieve a more general solution.
    May someone help me?
    Thank you in advance,
    Francesco

    My goal is to create a documents library ontology achieving, from each element of the hierarchy (folder or document), some data (title, parent, etc.) and use them to "label" the ontology resources.
    I will use a little of both approches in the following way:
    1) I make just ONE query on folder table to get, from each folder, its path (eg. root/fold1/fold2/doc1.pdf), its ID and ParentID and ONE on the Documents table to get the containerID, title, etc.
    2) I create as many Folder objects as the retrieved records and an HashTable, where the KEY = Folder.ParentID value and the VALUE = Vector<Folder>. I add then each object to the Vector relative to the same ParentID. In this way I have an Vector containing all the folders child of the same parent folder and I do the same for an HashTable keeping the documents contained in a specific folder.
    3)I extract from the HashTable the root folder (whose ParentID is always "0" and whose ID is "1") than it is invoked the method appendChild() (see code)
         public static void appendChild(int ID, Resource RES)
              Vector<Folder> currFold = table.get(ID);
              for(int i=0; i<currFold.size(); i++)
                   //Extract the child and crate the relative resource
                   if(table.containsKey(currFold.getID()))
                        appendChild(currFold[i].getID(), Resource newRES);
    In this way I go in depth in the hirarchical structure using a "left most" procedure. I made a test and the output is correct. However, such an approch must be done for about 4 level depth folders (around 30 in total) containing also documents and creating the documents library of a Project. Then I must process around 20 project to achieve for all of them such a documents library representation.
    By the way, I do not have to mantein the HashTable content after I created the docs library ontology. Hence I use just one hashTable for ALL the projects and I flush it after I finish to do the loop for one project in order to save resources.
    My question is: is right my approach or might I improve it in some way?
    Thank you for every suggesion/comment.
    Francesco
    Edited by: paquito81 on May 27, 2008 8:15 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Hierarchical treeview structure in Reports

    Hi,
    I am working with an MNC, can anybody help me out by valuable guidelines in doing an hierarchical treeview structure in Reports.
    Your early response would b helpful to me.
    Bye
    Pavan

    HI
    see this site you wil find lots of examples
    http://www.sapdev.co.uk/reporting/alv/alvtree.htm
    The ALV tree report produces uses OBJECT METHOD functionality in-order to produce a
    tree structured ALV output.
    The creation of an ALVtree report first requires the creation of a simple program to build the ALV
    details such as the fieldcatalog and to call a screen which will be used to display the ALVTree.
    The screen should be created with a 'custom control' where you wish the ALVtree report to appear.
    For the following example it will have the name 'SCREEN_CONTAINER'.
    <b>Creation of Main Program code, Data declaration and screen call</b>
    *& Report  ZDEMO_ALVTREE                                               *
    *& Example of a simple ALV Grid Report                                 *
    *& The basic requirement for this demo is to display a number of       *
    *& fields from the EKPO and EKKO table in a tree structure.            *
                             Amendment History                           *
    REPORT  zdemo_alvgrid                 .
    *Data Declaration
    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
    END OF t_ekko.
    DATA: it_ekko     TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          it_ekpo     TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          it_emptytab TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko     TYPE t_ekko,
          wa_ekpo     TYPE t_ekko.
    DATA: ok_code like sy-ucomm,           "OK-Code
          save_ok like sy-ucomm.
    *ALV data declarations
    DATA: fieldcatalog  TYPE lvc_t_fcat WITH HEADER LINE.
    DATA: gd_fieldcat   TYPE lvc_t_fcat,
          gd_tab_group  TYPE slis_t_sp_group_alv,
          gd_layout     TYPE slis_layout_alv.
    *ALVtree data declarations
    CLASS cl_gui_column_tree DEFINITION LOAD.
    CLASS cl_gui_cfw DEFINITION LOAD.
    DATA: gd_tree             TYPE REF TO cl_gui_alv_tree,
          gd_hierarchy_header TYPE treev_hhdr,
          gd_report_title     TYPE slis_t_listheader,
          gd_logo             TYPE sdydo_value,
          gd_variant          TYPE disvariant.
    *Create container for alv-tree
    DATA: l_tree_container_name(30) TYPE c,
          l_custom_container        TYPE REF TO cl_gui_custom_container.
    *Includes
    *INCLUDE ZDEMO_ALVTREEO01. "Screen PBO Modules
    *INCLUDE ZDEMO_ALVTREEI01. "Screen PAI Modules
    *INCLUDE ZDEMO_ALVTREEF01. "ABAP Subroutines(FORMS)
    *Start-of-selection.
    START-OF-SELECTION.
    ALVtree setup data
        PERFORM data_retrieval.
        PERFORM build_fieldcatalog.
        PERFORM build_layout.
        PERFORM build_hierarchy_header CHANGING gd_hierarchy_header.
        PERFORM build_report_title USING gd_report_title gd_logo.
        PERFORM build_variant.
    Display ALVtree report
      call screen 100.
    *&      Form  DATA_RETRIEVAL
          Retrieve data into Internal tables
    FORM data_retrieval.
      SELECT ebeln
       UP TO 10 ROWS
        FROM ekko
        INTO corresponding fields of TABLE it_ekko.
      loop at it_ekko into wa_ekko.
        SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
          FROM ekpo
          appending TABLE it_ekpo
         where ebeln eq wa_ekko-ebeln.
      endloop.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
    Please not there are a number of differences between the structure of
    ALVtree fieldcatalogs and ALVgrid fieldcatalogs.
    For example the field seltext_m is replace by scrtext_m in ALVtree.
      fieldcatalog-fieldname   = 'EBELN'.           "Field name in itab
      fieldcatalog-scrtext_m   = 'Purchase Order'.  "Column text
      fieldcatalog-col_pos     = 0.                 "Column position
      fieldcatalog-outputlen   = 15.                "Column width
      fieldcatalog-emphasize   = 'X'.               "Emphasize  (X or SPACE)
      fieldcatalog-key         = 'X'.               "Key Field? (X or SPACE)
    fieldcatalog-do_sum      = 'X'.              "Sum Column?
    fieldcatalog-no_zero     = 'X'.              "Don't display if zero
      APPEND fieldcatalog TO gd_fieldcat.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-scrtext_m   = 'PO Iten'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 1.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-scrtext_m   = 'Status'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 2.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-scrtext_m   = 'Item change date'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 3.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-scrtext_m   = 'Material Number'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 4.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-scrtext_m   = 'PO quantity'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 5.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-scrtext_m   = 'Order Unit'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 6.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-scrtext_m   = 'Net Price'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-datatype     = 'CURR'.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-scrtext_m   = 'Price Unit'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-col_pos     = 8.
      APPEND fieldcatalog TO gd_fieldcat..
      CLEAR  fieldcatalog.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    gd_layout-totals_only        = 'X'.
    gd_layout-f2code            = 'DISP'.  "Sets fcode for when double
                                            "click(press f2)
    gd_layout-zebra             = 'X'.
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text       = 'helllllo'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  build_hierarchy_header
          build hierarchy-header-information
         -->P_L_HIERARCHY_HEADER  structure for hierarchy-header
    FORM build_hierarchy_header CHANGING
                                   p_hierarchy_header TYPE treev_hhdr.
      p_hierarchy_header-heading = 'Hierarchy Header'(013).
      p_hierarchy_header-tooltip = 'This is the Hierarchy Header !'(014).
      p_hierarchy_header-width = 30.
      p_hierarchy_header-width_pix = ''.
    ENDFORM.                               " build_hierarchy_header
    *&      Form  BUILD_REPORT_TITLE
          Build table for ALVtree header
    <->  p1        Header details
    <->  p2        Logo value
    FORM build_report_title CHANGING
          pt_report_title  TYPE slis_t_listheader
          pa_logo             TYPE sdydo_value.
      DATA: ls_line TYPE slis_listheader,
            ld_date(10) TYPE c.
    List Heading Line(TYPE H)
      CLEAR ls_line.
      ls_line-typ  = 'H'.
    ls_line-key     "Not Used For This Type(H)
      ls_line-info = 'PO ALVTree Display'.
      APPEND ls_line TO pt_report_title.
    Status Line(TYPE S)
      ld_date(2) = sy-datum+6(2).
      ld_date+2(1) = '/'.
      ld_date3(2) = sy-datum4(2).
      ld_date+5(1) = '/'.
      ld_date+6(4) = sy-datum(4).
      ls_line-typ  = 'S'.
      ls_line-key  = 'Date'.
      ls_line-info = ld_date.
      APPEND ls_line TO pt_report_title.
    Action Line(TYPE A)
      CLEAR ls_line.
      ls_line-typ  = 'A'.
      CONCATENATE 'Report: ' sy-repid INTO ls_line-info  SEPARATED BY space.
      APPEND ls_line TO pt_report_title.
    ENDFORM.
    *&      Form  BUILD_VARIANT
          Build variant
    form build_variant.
    Set repid for storing variants
      gd_variant-report = sy-repid.
    endform.                    " BUILD_VARIANT
    <b>Creation of 'INCLUDES' to store ALVtree code</b>
    Three includes need to be created in-order to store the ABAP code required for the ALVtree report.
    Typically these will be one for the PBO modules, one for PAI modules and one for the subroutines(FORMs):
       *Includes
        include zdemo_alvtreeo01. "Screen PBO Modules
        include zdemo_alvtreei01. "Screen PAI Modules
        include zdemo_alvtreef01. "ABAP Subroutines(FORMS)
    If you are using the code provide within the ALVtree section of this web site simply create the includes by
    un-commenting the 'Includes' section within the code(see below) and double clicking on the name
    i.e. 'zdemo_alvtreeo01'. Obviously these can be renamed.
    *Includes
    *include zdemo_alvtreeo01. "Screen PBO Modules
    *include zdemo_alvtreei01. "Screen PAI Modules
    *include zdemo_alvtreef01. "ABAP Subroutines(FORMS)
    *Start-of-selection.
    start-of-selection.
    <b>Create Screen along with PBO and PAI modules for screen</b>
    The next step is to create screen 100, to do this double click on the '100' within the call screen
    command(Call screen 100.). Enter short description and select 'Normal' as screen type.
    To create the PBO and PAI modules insert that code below into the screen's flow logic. Much of this code
    should automatically have been inserted during screen creation but with the module lines commented out.
    Simple remove the comments and double click the module name(STATUS_0100 and
    USER_COMMAND_0100) in-order to create them, this will display the perform/module creation screen.
    The MODULES are usually created within two includes one ending in 'O01' for PBO modules and
    one ending in 'I01' for PAI modules(See code below).
    Please note in order for these includes to be displayed on the creation screen they need to have be
    created along with the following lines of code added to the main prog(see previous step):
                                     INCLUDE ZDEMO_ALVTREEO01. "Screen PBO Modules
                                     INCLUDE ZDEMO_ALVTREEI01. "Screen PAI Modules
    Otherwise use the 'New Include' entry and SAP will add the necassary line for you.
    Screen flow logic code
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
    ***INCLUDE Z......O01 .
    *&      Module  STATUS_0100  OUTPUT
          PBO Module
    module status_0100 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    endmodule.                 " STATUS_0100  OUTPUT
    ***INCLUDE Z......I01 .
    *&      Module  USER_COMMAND_0100  INPUT
          PAI Module
    module user_command_0100 input.
    endmodule.                 " USER_COMMAND_0100  INPUT
    <b>Define OK CODE(SY-UCOMM) variable</b>
    In order to define the OK CODE you must fist declare a variable of type SY-UCOM and then insert this
    variable into the OK code declaration within the element list (see screen shot below). If you have used
    the code contained on the iwebsite the ok code should already have been declared as OK_CODE.
              i.e. OK_CODE like sy-ucom.
    Note: there is also a variable called SAVE_OK, it is good practice to store the returned ok code into
    a work area as soon as you enter the PAI processing.
    <b>Add screen control to PAI module(INCLUDE Z......I01)</b>
    The following code adds simple screen control to the report and whenever the user presses the cancel,
    exit or back icon they will exit from the report. It also processes the ALVtree user interactions within the
    'others' case statement
       INCLUDE Z......I01                                                *
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module user_command_0100 input.
      DATA return TYPE REF TO cl_gui_event.
      save_ok = ok_code.
      case ok_code.
        when 'BACK' or '%EX' or 'RW'.
        Exit program
          leave to screen 0.
      Process ALVtree user actions
        when others.
          call method cl_gui_cfw=>get_current_event_object
                  receiving
                     event_object = return.
          call method cl_gui_cfw=>dispatch.
      endcase.
    endmodule.                 " USER_COMMAND_0100  INPUT
    <b>Create pf-status</b>
    In order to created the pf-status for the screen you need to un-comment '*  SET PF-STATUS 'xxxxxxxx'
    and give it a name.
                   i.e.   SET PF-STATUS 'STATUS1'.
    Step 1
    Now double click on 'STATUS1' in-order  to create the pf-status. Enter short text, select status type as
    'Online status' and click save.
    Step2
    You should now be presented with the status creation screen. Choose 'Adjust template' from the Extras menu
    (4.6 onwards only).
    Step 3
    Now select 'List status' and click the green tick (see below).
    Step 3
    All the basic menu bars/buttons should now have been entered. Now click save then activate. The
    pf-status has now been completed.
    Once you have the main program code in place to call the screen which will display the
    ALVtree, you now need to setup the actual ALVtree and populate it. As this is screen
    based(dialog) the display coding will be performed within the PBO screen module.
    Therefor you need to add the following processes to the PBO(STATUS_0100) module
    of the screen.
    <b>Create Custom control</b>
    Via screen painter insert 'custom control' on to screen and give it the name 'SCREEN_CONTAINER'. This is
    the possition the ALVtree will appear so align appropriately.
    http://www.sapdev.co.uk/reporting/alv/alvtree/alvtree_basic.htm
    see this site you wil find lots of examples
    http://www.sapdev.co.uk/reporting/alv/alvtree.htm
    <b>Reward if usefull</b>

  • Hierarchical and summary 2

    Hi
    In the last week I post a thread about SUM hierarchical ( sum in levels in the tree )
    Re: hierarchical  and summary and division : Query Challenge  2
    With help , I got to do , but the cost is very high, I explain again what I must to do
    I have a table (GRUPO_RELACAO) that save information about parent and child, but in this relation
    each group can to be different sectors, when I must to sum a Sector I can not to sum groups of other
    sector. look example below with respective values
                   1[3]
                /     \  nm_ciclo_fim is not null then 4 do not have parent                     
                 2[1]      4[1]
             5[3]  6[4] 8[2] 7[2]  
             |               
             |            
             11[6]
          9[5]   12[0]
             13[8]   16[4] 1,2,4,5,6,7,8,9 are in SECTOR 16
    11,12,13,16 are in SECTOR 18
    In structure of table (GRUPO_RELACAO) there is a column NM_CICLO_FIM that must to be NULL
    if is not null, then Child is not more relation with parent , in Example 4 was child of 1, but The
    column is filled
    In example below , to show only SECTOR 16
         GROUP     SUM     LEVEL    SECTOR
         1     1     1     16   TEAM OF GROUP 1 ONLY 1 (GROUP 2) because group 4 is not child
         1     12     2     16   NET      (GROUPS 5 AND 6 AND 9 , but no 11 because 11 is sector 18)
         1     16     3     16   NETWORK   (GROUPS 1,2,5,6,9) = 3+1+3+4+5 = 16
         2     7     1     16   TEAM OF GROUP 2
         2     5     2     16   NET OF GROUP 2
         2     8     3     16   NETWORK OF GROUP 2
         3     0     1     16   IS NOT IN TREE BUT IS IN T_ESTRUTURA_COMERCIAL
         3     0     2     16   IDEM ABOVE
         3     0     3     16   IDEM ABOVE
         4     3     1     16   TEAM OF GROUP 4
         4     0     2     16   NET OF GROUP 4
         4     4     3     16   NETWORK OF GROUP 4
         5     0     1     16   TEAM OF GROUP 5 (11 IS SECTOR 18) NO SUM
         5     5     2     16   NET OF GROUP 5  (9 IS SECTOR 16 ) SUM
         5     3     3     16   NETWORK  OF GROUP 5  (5 + 3 ) SELF VALUE
         6     0     1     16
         6     0     2     16
         6     4     3     16
         7     0     1     16
         7     0     2     16
         7     1     3     16
         8     0     1     16
         8     0     2     16
         8     2     3     16
         9     0     1     16
         9     0     2     16
         9     5     3     16
         165     0     1     16 Others groups that are not in tree must to show too
         165     0     2     16 in example only group 16
         165     0     3     16
         193     0     1     16
         193     0     2     16
         193     0     3     16
         194     0     1     16
         194     0     2     16
         194     0     3     16
         705     0     1     16
         705     0     2     16
         705     0     3     16
         706     0     1     16
         706     0     2     16
         706     0     3     16
         714     0     1     16
         714     0     2     16
         714     0     3     16
         715     0     1     16
         715     0     2     16
         715     0     3     16
         803     0     1     16
         803     0     2     16
         803     0     3     16
         804     0     1     16
         804     0     2     16
         804     0     3     16
         805     0     1     16
         805     0     2     16
         805     0     3     16
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.2.0
    Connected as PROCSCNOB
    SQL>
    SQL> SELECT T1.CD_EC_MADRINHA,
      2         T1.CD_EC_AFILHADA,
      3         ID_TIPO_RELACAO,
      4         NM_CICLO_FIM
      5   FROM SISSCNOB.GRUPO_RELACAO T1
      6  ORDER BY 1;
    CD_EC_MADRINHA CD_EC_AFILHADA ID_TIPO_RELACAO NM_CICLO_FIM
                 1              2               1
                 1              4               1       200802
                 2              5               1
                 2              6               1
                 4              7               1
                 4              8               1
                 5             11               1
                11              9               1
                11             12               1
                12             13               1
                12             16               1
    11 rows selected
    SQL> SELECT T2.CD_ESTRUTURA_COMERCIAL, T2.CD_SETOR, T2.ID_ESTRUTURA_ATIVA
      2     FROM T_ESTRUTURA_COMERCIAL T2
      3    WHERE T2.CD_TIPO_ESTRUTURA_COMERCIAL = 5
      4      AND T2.CD_ESTRUTURA_COMERCIAL IN (1,2,3,4,5,6,7,8,9,11,12,13,16);
    CD_ESTRUTURA_COMERCIAL CD_SETOR ID_ESTRUTURA_ATIVA
                         1       16                  1
                         2       16                  1
                         3       16                  0
                         4       16                  1
                         5       16                  1
                         6       16                  1
                         7       16                  1
                         8       16                  1
                         9       16                  1
                        11       18                  1
                        12       18                  1
                        13       18                  1
                        16       18                  1
    13 rows selected
    SQL> SELECT T3.CD_ESTRUTURA_COMERCIAL,
      2         T3.NM_CICLO_OPERACIONAL,
      3         T3.CD_INDICADOR,
      4         T3.VL_INDICADOR
      5     FROM T_EC_SETOR_PERFIL_CICLO T3
      6    WHERE  T3.CD_TIPO_ESTRUTURA_COMERCIAL = 5
      7     AND T3.CD_ESTRUTURA_COMERCIAL IN (1,2,3,4,5,6,7,8,9,11,12,13,16)
      8     AND T3.NM_CICLO_OPERACIONAL = 200712
      9     AND T3.CD_PERFIL = 1
    10     AND T3.CD_INDICADOR = 63;
    CD_ESTRUTURA_COMERCIAL NM_CICLO_OPERACIONAL CD_INDICADOR      VL_INDICADOR
                         1               200712           63              3.00
                         2               200712           63              1.00
                         4               200712           63              1.00
                         5               200712           63              3.00
                         6               200712           63              4.00
                         7               200712           63              1.00
                         8               200712           63              2.00
                         9               200712           63              5.00
                        11               200712           63              6.00
                        13               200712           63              8.00
                        16               200712           63              4.00
    11 rows selected
    THE TABLES
    -- In this table ID_TIPO_RELACAO must to be 1 and NM_CICLO_FIM IS NULL
    --- When NM_CICLO_FIM not is null the relation between cd_ec_madrinha and cd_ec_afilhada is break
    WITH GRUPO_RELACAO AS(
    select   1  CD_EC_MADRINHA,
             2 CD_EC_AFILHADA,
             1 ID_TIPO_RELACAO ,
             TO_NUMBER(NULL,0) NM_CICLO_FIM  FROM DUAL UNION
    SELECT   1,4,1,200802 FROM DUAL UNION
    SELECT   2,5,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   2,6,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   4,7,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   4,8,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   5,11,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   11,9,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   11,12,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   12,13,1,TO_NUMBER(NULL,0) FROM DUAL UNION
    SELECT   12,16,1,TO_NUMBER(NULL,0) FROM DUAL )
    ---  Here  table master all CD_EC_MADRINHA and CD_EC_AFILHADA from GRUPO_RELACAO
    ---  is in this table , There is data here that are not in table GRUPO_RELACAO
    ----  in JOIN  with GRUPO_RELACAO, the column   ID_ESTRUTURA_ATIVA must to be 1
    ----- When to sum a SECTOR  it must to sum only values of the SECTOR
    --- I can to have Group of a sector that is parent of the other group
    ---  In example I showed  Group 5(group 16) is parent of the group 11 (sector 18)
    -- that is parent of the group 9 (group 16)
    WITH T_ESTRUTURA_COMERCIAL AS(
    select    1 CD_ESTRUTURA_COMERCIAL,      16 CD_SECTOR,1 ID_ESTRUTURA_ATIVA FROM DUAL union
    select    2, 16,1 FROM DUAL UNION
    select    3,16,0 FROM DUAL UNION
    select    4,16,1 FROM DUAL UNION
    select    5,16,1 FROM DUAL UNION
    select    6,16,1 FROM DUAL UNION
    select    7,16,1 FROM DUAL UNION
    select    8,16,1 FROM DUAL UNION
    select    9,16,1 FROM DUAL UNION
    select    11,18,1 FROM DUAL UNION
    select    12,18,1 FROM DUAL UNION
    select    13,18,1 FROM DUAL UNION
    select    16,18,1 FROM DUAL )
    SELECT * FROM T_ESTRUTURA_COMERCIAL
    -- The 3rd and last table
    -----this Table have the values that I must to sum in LEVELS
    WITH T_EC_SETOR_PERFIL_CICLO AS (
    SELECT      1 CD_ESTRUTURA_COMERCIAL, 200712 NM_CICLO_OPERACIONAL,63 CD_INDICADOR ,3.00 VL_INDICADOR FROM DUAL UNION
    SELECT   2,200712,63,1.00 FROM DUAL UNION
    SELECT   4,200712,63,1.00 FROM DUAL UNION
    SELECT   5,200712,63,3.00 FROM DUAL UNION
    SELECT   6,200712,63,4.00 FROM DUAL UNION
    SELECT   7,200712,63,1.00 FROM DUAL UNION
    SELECT   8,200712,63,2.00 FROM DUAL UNION
    SELECT   9,200712,63,5.00 FROM DUAL UNION
    SELECT   11,200712,63,6.00 FROM DUAL UNION
    SELECT   13,200712,63,8.00 FROM DUAL UNION
    SELECT   16, 200712,63,4.00 FROM DUAL )
    SELECT * FROM T_EC_SETOR_PERFIL_CICLOSomebody can help me, because my solution is with COST high
    TIA

    That plan is better, don't know why you did not post
    this follow up in your old thread, where I asked
    whether
    [url=http://forums.oracle.com/forums/message.jspa?m
    essageID=2330090#2330090]42 billion rows
    was roughly the size of the results you expected.
    If you widen your sqlplus window and set linesize
    140 it would look like the output below.
    Unfortunately then we can see things like this
    |  50 |     VIEW                               |
    |   120T|  5474T|
    |   148G (96)|999:59:59 |
    Where I believe the T in 120T stands for
    tera[
    /b] or 120 trillion rows, that is 120,000,000,000,000
    or a right
    shedfull as it is sometimes known. The next step is
    to sort these rows, which could take some time,
    999:59:59
    is the estimate which looks suspiciously like just
    the biggest number the optimizer can produce.
    In your query you have several connect by statements
    but no start withs. This will generate every possible
    permutation
    of the hierarchy, I think in one place the results
    are used as the input of another query that then
    regenerates every
    possible permutation of that hierarchy.
    In these cases I am not really sure what you think
    you are trying to do apart from generate the biggest
    result set
    ever known to mankind. This is what happens to the 14
    row emp table when subjected to some of these
    queries. What
    are the original row counts of the tables you are
    doing this to in the query?
    SQL> select count(*)
    2  from emp
    3  start with mgr is null
    4  connect by mgr = prior empno;
    COUNT(*)
    14
    elect count(*)
    2  from emp
    3  connect by mgr = prior empno;
    COUNT(*)
    39
    di
    Wrote file afiedt.buf
    1  select count(*) from
    2    (
    3    select mgr, empno
    4    from emp
    5    connect by mgr = prior empno
    6    )
    7* connect by mgr = prior empno
    L> /
    COUNT(*)
    261
    The formatted plan
    [pre]
    Execution Plan
    Plan hash value: 3341212558
    | Id  | Operation                              | Name
    | Rows  | Bytes |TempSpc| Cost
    (%CPU)| Time     |
    |   0 | SELECT STATEMENT                       |
    |    48G|  2910G|       |
    150G (95)|999:59:59 |
    1 |  TEMP TABLE TRANSFORMATION             |
    |       |       |       |
    |          |
    OAD AS SELECT                       |
    |       |       |       |
    |          |
    HASH GROUP BY                       |
    |    13 |  2366 |       |
    14  (29)| 00:00:01 |
    4 |     VIEW                               |
    |    13 |  2366 |
    |    13  (24)| 00:00:01 |
    |      NESTED LOOPS OUTER                |
    |    13 |   949 |       |
    13  (24)| 00:00:01 |
    6 |       VIEW                             |
    |    13 |   845 |
    |     8  (38)| 00:00:01 |
    |        SORT UNIQUE                     |
    |    13 |  1150 |       |
    8  (63)| 00:00:01 |
    8 |         UNION-ALL                      |
    |       |       |       |
    |          |
    VIEW                          |
    |    12 |  1092 |       |
    3   (0)| 00:00:01 |
    0 |           NESTED LOOPS                 |
    |    12 |   516 |       |
    3   (0)| 00:00:01 |
    1 |            VIEW                        |
    |    11 |   319 |       |
    3   (0)| 00:00:01 |
    2 |             TABLE ACCESS FULL          |
    GRUPO_RELACAO               |    11 |    88 |       |
    3   (0)| 00:00:01 |
    3 |            TABLE ACCESS BY INDEX ROWID |
    M_ESTRUTURA_COMERCIAL_CAD   |     1 |    14 |       |
    0   (0)| 00:00:01 |
    4 |             INDEX UNIQUE SCAN          |
    I0_ESTRUTURA_COMERCIAL      |     1 |       |       |
    0   (0)| 00:00:01 |
    5 |          HASH JOIN ANTI                |
    |     1 |    58 |       |
    3  (34)| 00:00:01 |
    6 |           VIEW                         |
    |    12 |   660 |       |
    1   (0)| 00:00:01 |
    7 |            NESTED LOOPS                |
    |    12 |   204 |       |
    1   (0)| 00:00:01 |
    8 |             VIEW                       |
    |    11 |    33 |       |
    1   (0)| 00:00:01 |
    9 |              INDEX FULL SCAN           |
    GRP_RELAC_PK                |    11 |    33 |       |
    1   (0)| 00:00:01 |
    0 |             TABLE ACCESS BY INDEX ROWID|
    M_ESTRUTURA_COMERCIAL_CAD   |     1 |    14 |       |
    0   (0)| 00:00:01 |
    1 |              INDEX UNIQUE SCAN         |
    I0_ESTRUTURA_COMERCIAL      |     1 |       |       |
    0   (0)| 00:00:01 |
    2 |           INDEX FULL SCAN              |
    GRP_RELAC_PK                |    11 |    33 |       |
    1   (0)| 00:00:01 |
    3 |       VIEW                             |
    |     1 |     8 |       |
    0   (0)| 00:00:01 |
    4 |        INLIST ITERATOR                 |
    |       |       |       |
    |          |
    TABLE ACCESS BY INDEX ROWID    |
    T_EC_SETOR_PERFIL_CICLO     |     1 |    23 |       |
    0   (0)| 00:00:01 |
    6 |          INDEX RANGE SCAN              |
    I0_SETOR_PERFIL_CICLO       |     1 |       |       |
    0   (0)| 00:00:01 |
    7 |   LOAD AS SELECT                       |
    |       |       |       |
    |          |
    SORT UNIQUE                         |
    |     2 |   129 |       |
    4818K (57)| 16:03:40 |
    29 |     UNION-ALL                          |
    |       |       |       |
    |          |
    VIEW                              |
    |     1 |    59 |       |
    2409K (13)| 08:01:50 |
    31 |       SORT UNIQUE                      |
    |     1 |    81 |       |
    2409K (13)| 08:01:50 |
    32 |        WINDOW SORT                     |
    |     1 |    81 |       |
    2409K (13)| 08:01:50 |
    * 33 |         VIEW                           |
    |     1 |    81 |       |
    2409K (13)| 08:01:50 |
    34 |          SORT UNIQUE                   |
    |     1 |    91 |       |
    2409K (13)| 08:01:50 |
    * 35 |           CONNECT BY WITHOUT FILTERING |
    |       |       |       |
    |          |
    COUNT                       |
    |       |       |       |
    |          |
    VIEW                       |
    |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    38 |              TABLE ACCESS FULL         |
    SYS_TEMP_0FD9D6A2F_44B054AC |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    39 |      VIEW                              |
    |     1 |    70 |       |
    2409K (13)| 08:01:50 |
    40 |       SORT UNIQUE                      |
    |     1 |    65 |       |
    2409K (13)| 08:01:50 |
    41 |        WINDOW SORT                     |
    |     1 |    65 |       |
    2409K (13)| 08:01:50 |
    * 42 |         VIEW                           |
    |     1 |    65 |       |
    2409K (13)| 08:01:50 |
    43 |          SORT UNIQUE                   |
    |     1 |    91 |       |
    2409K (13)| 08:01:50 |
    * 44 |           CONNECT BY WITHOUT FILTERING |
    |       |       |       |
    |          |
    COUNT                       |
    |       |       |       |
    |          |
    VIEW                       |
    |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    47 |              TABLE ACCESS FULL         |
    SYS_TEMP_0FD9D6A2F_44B054AC |   316M|    26G|       |
    2193K  (4)| 07:18:39 |
    48 |   WINDOW BUFFER                        |
    |    48G|  2910G|       |
    150G (95)|999:59:59 |
    49 |    MERGE JOIN SEMI                     |
    |    48G|  2910G|
    |   148G (96)|999:59:59 |
    |     VIEW                               |
    |   120T|  5474T|       |
    148G (96)|999:59:59 |
    51 |      SORT ORDER BY                     |
    |   120T|     9P|
    23P|   148G (96)|999:59:59 |
    52 |       MERGE JOIN OUTER                 |
    |   120T|     9P|       |
    6506M(100)|999:59:59 |
    53 |        SORT JOIN                       |
    |  1900M|    42G|   128G|
    38M  (9)|126:57:43 |
    54 |         VIEW                           |
    |  1900M|    42G|       |
    13M (13)| 46:09:55 |
    55 |          SORT UNIQUE                   |
    |  1900M|    23G|    71G|
    13M (71)| 46:09:55 |
    56 |           UNION-ALL                    |
    |       |       |       |
    |          |
    VIEW                        |
    |   633M|  7853M|       |
    91649 (100)| 00:18:20 |
    |  58 |             TABLE ACCESS FULL          |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |  59 |            VIEW                        |
    |   633M|  7853M|       |
    91649 (100)| 00:18:20 |
    |  60 |             TABLE ACCESS FULL          |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |  61 |            VIEW                        |
    |   633M|  7853M|       |
    91649 (100)| 00:18:20 |
    |  62 |             TABLE ACCESS FULL          |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |* 63 |        SORT JOIN                       |
    |   633M|    40G|    99G|
    18M  (4)| 60:03:28 |
    64 |         VIEW                           |
    |   633M|    40G|       |
    91649 (100)| 00:18:20 |
    |  65 |          TABLE ACCESS FULL             |
    SYS_TEMP_0FD9D6A30_44B054AC |   633M|    50G|       |
    91649 (100)| 00:18:20 |
    |* 66 |     SORT UNIQUE                        |
    |     1 |    14 |       |
    1 (100)| 00:00:01 |
    7 |      TABLE ACCESS BY INDEX ROWID       |
    M_ESTRUTURA_COMERCIAL_CAD   |     1 |    14 |       |
    0   (0)| 00:00:01 |
    8 |       INDEX RANGE SCAN                 |
    I0_ESTRUTURA_COMERCIAL      |   811 |       |       |
    0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    14 - access("W1"."CD_TIPO_ESTRUTURA_COMERCIAL"=5
    AND
    "W2"."CD_EC_AFILHADA"="W1"."CD_ESTRUTURA_COMERCIAL")
    15 - access("CD_EC_AFILHADA"="W2"."CD_EC_MADRINHA")
    21 - access("W1"."CD_TIPO_ESTRUTURA_COMERCIAL"=5 AND
    "W2"."CD_EC_MADRINHA"="W1"."CD_ESTRUTURA_COMERCIAL")
    26 - access("W"."CD_TIPO_ESTRUTURA_COMERCIAL"=5 AND
    "T"."CD_EC_AFILHADA"="W"."CD_ESTRUTURA_COMERCIAL"
    AND
    "W"."NM_CICLO_OPERACIONAL"=200712 AND
    "W"."CD_PERFIL"=1 AND ("W"."CD_INDICADOR"=0 OR
    "W"."CD_INDICADOR"=63))
    33 - filter("CD_EC_AFILHADA"<>"PARENT" AND
    "CD_SETOR"=16 AND "ID_ESTRUTURA_ATIVA"=1)
    35 - access("CD_EC_MADRINHA"=PRIOR
    "CD_EC_AFILHADA")
    filter("ID_ESTRUTURA_ATIVA"=1)
    filter("CD_SETOR"=16 AND "ID_ESTRUTURA_ATIVA"=1)
    44 - access("CD_EC_MADRINHA"=PRIOR
    "CD_EC_AFILHADA")
    filter("ID_ESTRUTURA_ATIVA"=1)
    access("T1"."LVL"="T2"."LVL"(+))
    filter("T1"."PARENT"="T2"."PARENT"(+) AND
    "T1"."LVL"="T2"."LVL"(+))
    66 - access("T3"."CD_ESTRUTURA_COMERCIAL"="PARENT")
    filter("T3"."CD_ESTRUTURA_COMERCIAL"="PARENT")
    filter("T3"."CD_SETOR"=16 AND
    "T3"."ID_ESTRUTURA_ATIVA"=1)
    68 - access("T3"."CD_TIPO_ESTRUTURA_COMERCIAL"=5)
    /pre]Hi thank
    In your query you have several connect by statements
    but no start withs. This will generate every possible
    permutationPlease, [b] in my example how can  put a start with, that walk all tree ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to use JAAS/JAZN of 9iAS R2  for a typical Hierarchical Organization Structure

    If any one has used the out of the box or has modified and used the JAAS/JAZN implementation of App Server R2 for Authentication and Authorization of a typical Hierarchical Org Structure?
    Our Org Chart looks some thing like the one shown below;
    Every one in this Org chart will access the Application that will be deployed in the Oracle App Server and this Org chart DIT is already exists in Novell's eDirectory.
    We are planning to import this DIT structure to OID and make use of OID for JAAS/JAZN features of Oracle App Server; any clues on how to configure the default JAAS/JAZN of App server to make use of this DIT and control the access to the application?
    How do we go about assigning the roles to these users in this org and how to configure the App Server R2 to use this structure??? :)
    usa
    |
    | | | |
    EastZone CentralZone MountainZone PacificZone
    | | | |
    | | | | | | | |
    R1 R2 Region3 Region4 R5 R6 R7 R8
    | |
    | | | |
    users computers users computers
    | |
    | | | | | |
    cn=Smith cn=Ray cn=Molly cn=Mahone cn=Steve cn=Smith
    Thank you

    I am trying to attach an html version of the org chart, the earlier one did not show up correctly!!
    hope this one would show up better!!
    <html xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:w="urn:schemas-microsoft-com:office:word"
    xmlns="http://www.w3.org/TR/REC-html40">
    <head>
    <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
    <meta name=ProgId content=Word.Document>
    <meta name=Generator content="Microsoft Word 9">
    <meta name=Originator content="Microsoft Word 9">
    <link rel=File-List href="./usa_files/filelist.xml">
    <title> usa</title>
    <!--[if gte mso 9]><xml>
    <o:DocumentProperties>
    <o:Author>Covansys</o:Author>
    <o:LastAuthor>Covansys</o:LastAuthor>
    <o:Revision>1</o:Revision>
    <o:TotalTime>7</o:TotalTime>
    <o:Created>2002-08-15T16:03:00Z</o:Created>
    <o:LastSaved>2002-08-15T16:10:00Z</o:LastSaved>
    <o:Pages>1</o:Pages>
    <o:Company>Covansys</o:Company>
    <o:Lines>1</o:Lines>
    <o:Paragraphs>1</o:Paragraphs>
    <o:Version>9.4402</o:Version>
    </o:DocumentProperties>
    </xml><![endif]-->
    <style>
    <!--
    /* Font Definitions */
    @font-face
         {font-family:Courier;
         panose-1:0 0 0 0 0 0 0 0 0 0;
         mso-font-charset:0;
         mso-generic-font-family:modern;
         mso-font-format:other;
         mso-font-pitch:fixed;
         mso-font-signature:3 0 0 0 1 0;}
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
         {mso-style-parent:"";
         margin:0in;
         margin-bottom:.0001pt;
         mso-pagination:widow-orphan;
         font-size:12.0pt;
         font-family:"Times New Roman";
         mso-fareast-font-family:"Times New Roman";}
    @page Section1
         {size:8.5in 11.0in;
         margin:1.0in 1.25in 1.0in 1.25in;
         mso-header-margin:.5in;
         mso-footer-margin:.5in;
         mso-paper-source:0;}
    div.Section1
         {page:Section1;}
    -->
    </style>
    </head>
    <body lang=EN-US style='tab-interval:.5in'>
    <div class=Section1>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><![if !supportEmptyParas]> <![endif]><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes">
    </span>usa<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes">
    </span>|<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes">
    </span>---------------------------------------------<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span>|<span style="mso-spacerun:
    yes"> </span>|<span style="mso-spacerun: yes">
    </span>|<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>EastZone<span
    style="mso-spacerun: yes"> </span>CentralZone<span style="mso-spacerun:
    yes"> </span>MountainZone<span style="mso-spacerun: yes">
    </span>PacificZone<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span>|<span style="mso-spacerun:
    yes"> </span>|<span style="mso-spacerun: yes">
    </span>|<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>-------<span
    style="mso-spacerun: yes"> </span>--------<span style="mso-spacerun:
    yes"> </span>-------<span style="mso-spacerun: yes">
    </span>--------<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span>|<span style="mso-spacerun: yes">
    </span>|<span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span>|<span style="mso-spacerun: yes">
    </span>|<span style="mso-spacerun: yes"> </span>|<span style="mso-spacerun:
    yes"> </span>|<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>R1<span
    style="mso-spacerun: yes"> </span>R2<span style="mso-spacerun: yes">
    </span>Region3<span style="mso-spacerun: yes"> </span>Region4<span
    style="mso-spacerun: yes"> </span>R5<span style="mso-spacerun: yes">
    </span>R6<span style="mso-spacerun: yes"> </span>R7<span
    style="mso-spacerun: yes"> </span>R8<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><![if !supportEmptyParas]> <![endif]><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes">
    </span>|<span style="mso-spacerun: yes"> </span><span
    style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><![if !supportEmptyParas]> <![endif]><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes">
    </span>----------<span style="mso-spacerun: yes">
    </span>----------<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span>|<span style="mso-spacerun:
    yes"> </span>|<span style="mso-spacerun:
    yes"> </span>|<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><![if !supportEmptyParas]> <![endif]><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>users<span
    style="mso-spacerun: yes"> </span>computers<span style="mso-spacerun:
    yes"> </span>users<span style="mso-spacerun: yes">
    </span>computers<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span><span style="mso-spacerun:
    yes"> </span>|<span style="mso-spacerun:
    yes"> </span><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes">
    </span>----------------------<span style="mso-spacerun: yes">
    </span>----------------------<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span>|<span style="mso-spacerun:
    yes"> </span>|<span style="mso-spacerun: yes">
    </span>|<span style="mso-spacerun: yes"> </span>|<span
    style="mso-spacerun: yes"> </span>|<o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><![if !supportEmptyParas]> <![endif]><o:p></o:p></span></p>
    <p class=MsoNormal><span style='font-size:8.0pt;mso-bidi-font-size:12.0pt;
    font-family:Courier'><span style="mso-spacerun: yes"> </span>cn=Smith<span
    style="mso-spacerun: yes"> </span>cn=Ray<span style="mso-spacerun: yes">
    </span>cn=Molly<span style="mso-spacerun: yes"> </span>cn=Mahone<span
    style="mso-spacerun: yes"> </span>cn=Steve<span style="mso-spacerun:
    yes"> </span>cn=Smith<o:p></o:p></span></p>
    </div>
    </body>
    </html>
    If any one has used the out of the box or has modified and used the JAAS/JAZN implementation of App Server R2 for Authentication and Authorization of a typical Hierarchical Org Structure?
    Our Org Chart looks some thing like the one shown below;
    Every one in this Org chart will access the Application that will be deployed in the Oracle App Server and this Org chart DIT is already exists in Novell's eDirectory.
    We are planning to import this DIT structure to OID and make use of OID for JAAS/JAZN features of Oracle App Server; any clues on how to configure the default JAAS/JAZN of App server to make use of this DIT and control the access to the application?
    How do we go about assigning the roles to these users in this org and how to configure the App Server R2 to use this structure??? :)

  • Error while accessing a library using content and structure

    I have a library having document and folder inside it. When I open the library using content and structure I get an error with a correlation ID. When checked the the logs with Correlation ID got an error message "View 'All Document' does not exist."
    'All Document' is name of default view on the library.
    When I open the library from view all site content the library is being opened.
    Please help!!!

    Hello Victoria,
    Thanks for  the response.
    I have tried troubleshooting steps given by you. 
    Check if the issue occurs with other users. Use another user to access the library in Content and Structure and then compare the results. --
    I tried with different users but no luck
    Make sure that the user account with issue has permission to view the All Documents view of the library. --
    Yes, user Account have the permission
    Check if the issue occurs with other libraries in the Content and Structure. If not, I recommend to save the library as
    a template including contents and then create a new library based on this template. After that use the new library instead of the old library. --
    No other library have this problem. I cannot save the library as template including the contents as the it has many folders and  files. The current size of library is 786 MB
    Clear cache in the browser or use another browser to see if the issue still occurs. --
    tries but issue persists.
    Best regards,
    Ratnesh

  • Tables and structures are used in a standard scripts

    how to find which tables and structures are used in a standard scripts?
    pls explain step by step process...
    Edited by: abap on Jun 21, 2008 4:36 PM

    Go to Transaction SE80, Select Program and paste that program name below..
    Then drop down the tree of that program...then you will find option " Dict. Structures"..
    Here you can find the tables which has been you for that transaction / program.
    Regards,
    Santosh

  • Moving files in Content and Structure View hangs on Long Running Operation Status window

    Hello,
    I have the following issue in a site collection: when I go to site content and structure and browse to a document library, and I select multiple documents, click actions --> move and give the target destination, the screen keeps hanging in LongRunningOperationProgress.aspx
    with the message "starting" and the running circle. The files do get moved, but the screen does not come back.
    In other site collections this works as normal, and when the LongRunningOperationProgress.aspx page is open, it also states (n of N files moved) or something similar. This status is missing in the faulty site collection.
    When I open https:\\<site collection url>\Long%20Running%20Operation%20Status\AllItems.aspx I see that an entry is created here with title "(no title)" and Status "NotStarted".
    I have included the ULS log, filtered on the thread ID. I am sure there are some clues there (like Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack>),
    but I can't figure out where to start solving this problem. The Windows event logs don't give any errors. This issue exists on both web front ends (tested locally). The farm is using 14.0.6106.5002.
    11-29-2011 16:11:29.74 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztu High LongRunningOperationJob.ThreadEntryPoint() about to call AppDomainUnloadListener.AcquireReaderLock(). 
    11-29-2011 16:11:29.74 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 6wyw Medium LRO - Background thread has been started, job=Site Content and Structure: Move. 
    11-29-2011 16:11:29.74 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:29.74 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:29.87 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:29.92 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:29.92 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:29.93 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:29.93 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:30.04 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.10 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.10 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:30.20 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=29.7716 
    11-29-2011 16:11:30.21 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 
    11-29-2011 16:11:30.21 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.21 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.23 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8e2s Medium Unknown SPRequest error occurred. More information: 0x80070002 
    11-29-2011 16:11:30.23 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 72k4 Medium <nativehr>0x80070002</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.23 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High <nativehr>0x80070002</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.23 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:30.23 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:30.34 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.40 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:30.40 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:30.40 w3wp.exe (0x0C04) 0x27F0 Web Content Management Site Management 8y3q Medium DeploymentWrapper.MoveItems() Export-Import begins. 
    11-29-2011 16:11:30.51 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Content Migration nasm High Starting Export. 
    11-29-2011 16:11:33.02 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Export) 
    11-29-2011 16:11:33.02 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Export). Execution Time=0.5154 
    11-29-2011 16:11:33.06 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Export) 
    11-29-2011 16:11:33.06 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Export). Execution Time=0.8865 
    11-29-2011 16:11:33.07 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Export) 
    11-29-2011 16:11:33.09 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Export). Execution Time=14.6208 
    11-29-2011 16:11:33.29 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Export) 
    11-29-2011 16:11:33.31 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Export). Execution Time=16.3934 
    11-29-2011 16:11:33.31 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Export) 
    11-29-2011 16:11:33.34 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Export). Execution Time=29.003 
    11-29-2011 16:11:33.62 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Export) 
    11-29-2011 16:11:33.63 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Export). Execution Time=1.2911 
    11-29-2011 16:11:33.63 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Export) 
    11-29-2011 16:11:33.63 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Export). Execution Time=0.5963 
    11-29-2011 16:11:35.29 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Content Migration nasm High Export completed. 
    11-29-2011 16:11:35.37 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Content Migration nasm High Initializing Import. 
    11-29-2011 16:11:35.46 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Content Migration nasm High Starting content import. 
    11-29-2011 16:11:35.46 w3wp.exe (0x0C04) 0x27F0 Web Content Management Site Management 8gyh Medium DeploymentWrapper.ReparentForCopyImport() List { newTargetParentUrl = /org/dnp/English/sites/na/internal_functions/rd/microbia/technical/Technical
    Documentation. } 
    11-29-2011 16:11:35.46 w3wp.exe (0x0C04) 0x27F0 Web Content Management Site Management 8gyh Medium DeploymentWrapper.ReparentForCopyImport() List { newTargetParentUrl = /org/dnp/English/sites/na/internal_functions/rd/microbia/technical/Technical
    Documentation. } 
    11-29-2011 16:11:35.49 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (import) 
    11-29-2011 16:11:35.49 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (import). Execution Time=0.4226 
    11-29-2011 16:11:35.49 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (import) 
    11-29-2011 16:11:35.56 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (import). Execution Time=68.3485 
    11-29-2011 16:11:35.57 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (import) 
    11-29-2011 16:11:35.70 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (import). Execution Time=117.3795 
    11-29-2011 16:11:35.70 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (import) 
    11-29-2011 16:11:35.70 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (import). Execution Time=0.5005 
    11-29-2011 16:11:35.70 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (import) 
    11-29-2011 16:11:35.70 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (import). Execution Time=0.4298 
    11-29-2011 16:11:35.70 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (import) 
    11-29-2011 16:11:35.90 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.SharePoint.Taxonomy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c,
    Microsoft.SharePoint.Taxonomy.TaxonomyItemEventReceiver)). Execution Time=21.7586 
    11-29-2011 16:11:35.98 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=19.2312 
    11-29-2011 16:11:35.98 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.Office.DocumentManagement, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c,
    Microsoft.Office.DocumentManagement.LocationBasedMetadataDefaultsReceiver)). Execution Time=39.5371 
    11-29-2011 16:11:35.99 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=13.1132 
    11-29-2011 16:11:36.02 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData#1). Execution Time=30.0577 
    11-29-2011 16:11:36.04 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (import). Execution Time=351.0371 
    11-29-2011 16:11:36.04 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:36.04 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:36.15 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:36.20 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:36.21 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:36.21 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (import) 
    11-29-2011 16:11:36.37 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.SharePoint.Taxonomy, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c,
    Microsoft.SharePoint.Taxonomy.TaxonomyItemEventReceiver)). Execution Time=22.1568 
    11-29-2011 16:11:36.45 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=19.8863 
    11-29-2011 16:11:36.46 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.Office.DocumentManagement, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c,
    Microsoft.Office.DocumentManagement.LocationBasedMetadataDefaultsReceiver)). Execution Time=41.1921 
    11-29-2011 16:11:36.49 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData#1). Execution Time=24.739 
    11-29-2011 16:11:36.49 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (import). Execution Time=293.9586 
    11-29-2011 16:11:36.51 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Content Migration nasm High Import completed. 
    11-29-2011 16:11:36.52 w3wp.exe (0x0C04) 0x27F0 Web Content Management Site Management 8y3t Medium DeploymentWrapper.MoveItems Export-Import ends. 
    11-29-2011 16:11:36.52 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:36.52 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:36.63 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:36.68 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:36.68 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:36.68 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:36.68 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:36.79 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:36.84 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:36.84 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:36.84 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:36.84 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:36.96 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:37.01 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:37.01 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:37.06 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=18.5948 
    11-29-2011 16:11:37.09 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c,
    Microsoft.SharePoint.Publishing.Internal.PublishingWebEventReceiver)). Execution Time=51.4523 
    11-29-2011 16:11:37.09 w3wp.exe (0x0C04) 0x27F0 Web Content Management Site Management 8gxm Medium ObjectSerializer.DeleteListItem - deleted or recycled '/org/dnp/English/sites/na/internal_functions/rd/microbia/technical/Technical
    Documentation/Technical Documentation/test/000000_test2.txt' 
    11-29-2011 16:11:37.10 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Running, this=50303060 
    11-29-2011 16:11:37.10 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Running 
    11-29-2011 16:11:37.21 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:37.26 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:37.26 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:37.29 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=18.5953 
    11-29-2011 16:11:37.32 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Event Receiver (Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c,
    Microsoft.SharePoint.Publishing.Internal.PublishingWebEventReceiver)). Execution Time=50.4063 
    11-29-2011 16:11:37.38 w3wp.exe (0x0C04) 0x27F0 Web Content Management Site Management 8gxm Medium ObjectSerializer.DeleteListItem - deleted or recycled '/org/dnp/English/sites/na/internal_functions/rd/microbia/technical/Technical
    Documentation/Technical Documentation/test/000000_test1.txt' 
    11-29-2011 16:11:37.38 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztw Medium LongRunningOperationJob.UpdateStatus(): Successful, this=50303060 
    11-29-2011 16:11:37.38 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztx Medium LRO - Starting status update: Successful 
    11-29-2011 16:11:37.51 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:37.56 w3wp.exe (0x0C04) 0x27F0 SharePoint Foundation General 8kh7 High Invalid text value.  A text field contains invalid data. Please check the value and try again.<nativehr>0x81020018</nativehr><nativestack></nativestack> 
    11-29-2011 16:11:37.56 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 1ygq Unexpected LRO - failed to update status after 2 attempts - giving up 
    11-29-2011 16:11:37.56 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 6wyz Medium LRO - Total elapsed time of background thread was 00:00:07.8122551 , from  11/29/2011 3:11:29 PM  to  11/29/2011
    3:11:37 PM, job=Site Content and Structure: Move 
    11-29-2011 16:11:37.56 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 8ztv High LongRunningOperationJob.ThreadEntryPoint() about to call AppDomainUnloadListener.ReleaseReaderLock(). 
    11-29-2011 16:11:37.57 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 79ja Medium LongRunningOperationJob - Deleting items from LRO list 
    11-29-2011 16:11:37.57 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing 79jb Medium LongRunningOperationJob - Deleting top 100 items from LRO list 
    11-29-2011 16:11:37.59 w3wp.exe (0x0C04) 0x27F0 Web Content Management Publishing a3z7 Medium LongRunningOperationJob - Skipping Delete.  oldestCreatedDate - 11/23/2011 11:13:27 AM, maxAge - 7, now - 11/29/2011 4:11:37
    PM, itemCount - 14 

    Hi,
    From your error message, this occurs when the value you supplied for a text field is larger than 255 characters. To address the problem, store less text in the field
    or change the field type from text to note.
    http://blogs.msdn.com/b/sanjaynarang/archive/2009/03/21/custom-field-control-not-allowing-more-than-255-characters.aspx
    Thanks,
    Rock Wang
    Regards, Rock Wang Microsoft Online Community Support

  • All "Site Content and Structure" default views incorrectly showing "There are no items to show in this view"

    Hi All,
    On my SharePoint Online site (Office 365) all my “Site Content and Structure” default views are showing “There are no items to show in this view”. For example the “Checked out To Me” view shows “There are no items to show in this view” (shown in screenshot
    below). I know this is incorrect and should show at least ten items that have been checked out to me for over two months. I am also a member of the Site Collection Administration and Owner groups.
    What I am trying to do is view all the "Checked Out items" within a Site Collection including it's sub-sites.
    Is there a feature that needs to be activated to get the correct information from the “Site Content and Structure” default views?
    I hope you can help
    Colin

    Hi Colin,
    As I understand, all “Site Content and Structure” default views are showing “There are no items to show in this view” in your SharePoint online site.
    Check things below:
    1. Go to site content and structure logs in site setting to check if there is correct information.
    2. Create a new site collection to check if there are items in Site Content and Structure.
    3. Switch another computer to check if it can work.
    If the issue still exists, I recommend you to post it in the O365 forum.
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Using Site Content and Structure unable to move documents,pages and getting weird error message

    Hi ,
    earlier we are moving a page ,document from one site to another sub site with in the Site Collection.
    Now,we are getting a un-readable format error.
    After selecting the destination we are getting the error.
    and the file can't move.
    What might me be the error.
    Expecting answers related to my question.
    1.As we can do using Internet Explorer,
    2. Using Send To also we can move.
    Using this Site Content and structure we can maintain Versoining also.
    If any one face the same issue then we can easily find out the solution.
    Regards ,
    Prathap 
    SP Developer
    Specify the destination to move the items you selected.

    Hi,
    Using Site Content and Structure unable to move documents,pages and getting weird error message
    We are getting Below error:
    When Moving Document items from one site to another site in the same site collection using Site content and structure(But it's working in same site,we can move documents from one library to another library)
    1576|/wEWwwECuLLErw0Cy+nFYwK84baBAgK6zNqsAgLs0Le0BQK1s8uaCAL5qrm3CAKk7K6pDwKo9a0GArm+xr4NApKe9KUKAoajpK4CAqqU/2sChJXBtAIC052rYQKS+LTPAgLe+7uQAwLO0re/BwLgoaw2AojAlIMOApSO4JoNAuvW7MoKAojz2P4OAuOMt9EGAv/ns1wC64qI7gEC0LymmAcCro3lnQkCj7viwAsC8Met9QEC3a/DHALg4ZO6AQKAn8ebCALvr72DAwKm/NGmAgKN4aayCQLmmczsCgL+46qSAQKH7paCDgLouOHjDwKGuNCBCQKwuob2CQKP78n3BwLQ7vSYCALxlcvIBALRuajXAwK6/vr4AwKx8YasCQLti5igAQKay7JZAta625IFAuTy6rUKAvnC7eQKApvB3ugPAoTBua8BAoyajvgMAsGdloEJAvH+2KECAua7k9AGAv3Lzd8HAtPD3ocOAuX7hM4GAqO1g9sIAtn65sgFAuDkr9QEAt7I1KkMAryhltsIAtizx/kBAvzS7IcBAr+YhK4PAsO3rtADAvea+sADAsvc4IgKAp/1vIoMApelp3ICl+PqiwwC/KX1gwUC3fv58gIC7ZG/pwIC4cnupQgCq7mdlgYCjciR+AwC8/ue4gkC4YWJywUCs+rviAECpuyJigECkfr5rgkC08rHoQ0C+erayQUCjMqStQkCpIuKtwEC+dG5ngICoZ3/og0CspXoxwwC+pzgmwwCkoD5mAYCn/qH2AcC/N/pvAcCv5OtwAICuZquqgcC0/OFnwkC2/2wzQMCrJrO9woC69G52ggC64nunggCtLOIsQEC9LyC7gUC0ry/zgIC1ZDvgQ0C98OfMgL4kaj3CQKXhebCCwKi3bjPBQKYuojTCAKc4+fxCAKyjLfoBALVxO8SAsXSyuQLAqyvkNIPApDV5PgDAtufwJwEAu2BsoYLAs3Oqd8PAo6i+YMDAsy706oCAsLjx7kLApu3+9gKAuLnvMoIAtWywo8OAv6MjvIHAtSDhJwNArXRmL0LAraZvUcC5cGygQoCz5HN7A0C+YzY9AMCmtWQ6AUC/oHF8w4CxeTgmg8CgszujQECss22vgYCp6HBuggCkfm+FAKngqb5BgKkuIzAAQKPspKCCQLu+eDvCwKf5YrEBQKl0M3ACgKm85DvDALCu/nfCwLbwO38DgLoz5eyDQLfr9XLCwL20/eUDgL7hpr3DAKh1tfbCgL48OuNBwK4tuKaCALpgbn5CgLC4dKvBgKKlu76CwKfhKLJAQLurPTIAwLG0o+hAgKI5Y6dDALq+OOlCQKxjuuICAK8yrLHBwLcrOSSAwLoiJfQCwKKyvrtBALXkbCBCgKt4bG9BQLr6qnxCwLC2pz2DQKQ7OuZBALt7t+DDAKR47b8CAKi6pPGCQKLl4r3CQK5yfj+AwLgzYvjDwKUjerODQK7mOPTCQL9qP3qBgKYiOL9AgLA8pSaBwKay8fBDQLqw93DCgKkjpf/CwLsyquQCwKtpbGsDALMtKmxBwKPpvCmBOAFHtmBuG3iNmIT9fQ8Z1TWMpjZ122|cccccccccnncnnnnn|

  • Content and Structure (Error in callback).

    Guys
    Every time I accessed the "Content and Structure" of a particular site I would an error in callback error. Tracing this back I found a particular list was / is causing the error. So googling around the general consensus seemed to suggest doing
    the following to resolve the error.
    1. Recreate the list, or
    2. Delete the list and restore it from the recycle bin.
    The first option was a non starter so I reluctantly decided to do the 2nd which worked. My main issue with this is that the list is displayed on a lot of different pages all with different filters which are a pain to restore as they disappear once the list
    is deleted. Anyway as I say this worked however once the overnight jobs had run the error returned in the morning.
    So 
    1. How can I resolve this issue without doing either of the above?
    2. What overnight jobs are likely to corrupt a lists?
    Thanks,
    D

    All right -- here you go
    12/18/2013 08:36:38.93 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://intranet.can.com:80/departments/businessinformation/reportscentre/_Layouts/sitemanager.aspx?Source=%7BWebUrl%7D_layouts/settings.aspx))
    12/18/2013 08:36:38.93 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://intranet.can.com:80/departments/businessinformation/reportscentre/_Layouts/sitemanager.aspx?Source=%7BWebUrl%7D_layouts/settings.aspx)
    12/18/2013 08:36:38.95 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Logging Correlation Data xmnv Medium Site=/
    12/18/2013 08:36:39.40 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation General 72nz Medium Videntityinfo::isFreshToken reported failure.
    12/18/2013 08:36:39.45 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=10.2648520971241
    12/18/2013 08:36:39.46 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (CachedArea: Caching SPQuery against against list: Content and Structure Reports, web: /). Execution Time=35.6219854758077
    12/18/2013 08:36:39.65 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation General 72nz Medium Videntityinfo::isFreshToken reported failure.
    12/18/2013 08:36:39.67 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Load CachedList:8cfd6f6a-002a-4c46-b2f1-472909403fc8). Execution Time=25.2562127309476
    12/18/2013 08:36:39.73 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (Load CachedList:9f2ed482-38a5-49e9-948b-280330a4af9f). Execution Time=12.4531888829446
    12/18/2013 08:36:39.74 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Runtime tkau Unexpected System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.Publishing.Internal.WebControls.ObjectSerializer.DeleteAllowed(Boolean checkPermissions) at Microsoft.SharePoint.Publishing.Internal.WebControls.SmtButtonField.FormatDataValue(Object dataTextValue, Boolean encode) at System.Web.UI.WebControls.BoundField.OnDataBindField(Object sender, EventArgs e) at Microsoft.SharePoint.Publishing.Internal.WebControls.SmtButtonField.OnDataBindField(Object sender, EventArgs e) at System.Web.UI.Control.OnDataBinding(EventArgs e) at System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) at System.Web.UI.Control.DataBindChildren() at System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) at System.Web.UI.WebCon...
    12/18/2013 08:36:39.74* w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Runtime tkau Unexpected ...trols.GridView.CreateRow(Int32 rowIndex, Int32 dataSourceIndex, DataControlRowType rowType, DataControlRowState rowState, Boolean dataBind, Object dataItem, DataControlField[] fields, TableRowCollection rows, PagedDataSource pagedDataSource) at System.Web.UI.WebControls.GridView.CreateChildControls(IEnumerable dataSource, Boolean dataBinding) at Microsoft.SharePoint.WebControls.SPGridView.CreateChildControls(IEnumerable dataSource, Boolean dataBinding) at System.Web.UI.WebControls.CompositeDataBoundControl.PerformDataBinding(IEnumerable data) at System.Web.UI.WebControls.GridView.PerformDataBinding(IEnumerable data) at System.Web.UI.WebControls.DataBoundControl.OnDataSourceViewSelectCallback(IEnumerable data) at System.Web.UI.WebControls.DataBoundControl.PerformSele...
    12/18/2013 08:36:39.74* w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Runtime tkau Unexpected ...ct() at System.Web.UI.WebControls.BaseDataBoundControl.EnsureDataBound() at System.Web.UI.WebControls.GridView.OnPreRender(EventArgs e) at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    12/18/2013 08:36:39.74 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation General 90hv Unexpected Detected use of SPRequest for previously closed SPWeb object. Please close SPWeb objects when you are done with all objects obtained from them, but not before. Stack trace: at Microsoft.SharePoint.SPWeb.get_AlternateUILcids() at Microsoft.SharePoint.Utilities.ThemingLocations.AddWebLanguagesToCollection(SPWeb web, HashSet`1 langCollection) at Microsoft.SharePoint.Utilities.ThemingLocations.GetFilteredLanguagesForWeb(SPWeb web, Boolean bAllLangsInSPSite) at Microsoft.SharePoint.Utilities.ThemingLocations.GetThemableStylesFolders(SPWeb web, Boolean includeFileSystem, Boolean bAllLangsInSPSite) at Microsoft.SharePoint.WebControls.CssRegistrationRecord.UpdateThemableReferences(SPWeb web, IEnumerable`1 references) at Microsoft.SharePoint.WebControls.CssLink.Render(HtmlT...
    12/18/2013 08:36:39.74* w3wp.exe (0x2114) 0x2E7C SharePoint Foundation General 90hv Unexpected ...extWriter output) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.HtmlControls.HtmlHead.RenderChildren(HtmlTextWriter writer) at System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) at System.Web.UI.Page.Render(HtmlTextWriter writer) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boo...
    12/18/2013 08:36:39.74* w3wp.exe (0x2114) 0x2E7C SharePoint Foundation General 90hv Unexpected ...lean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP._layouts_error_aspx.ProcessRequest(HttpContext context) at System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath path, VirtualPath filePath, String physPath, Exception error, String queryStringOverride) at System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean preserveForm) at System.Web.HttpServerUtility.Transfer(String path, Boolean preserveForm) at System.Web.HttpServerUtility.Transfer(String pat...
    12/18/2013 08:36:39.74* w3wp.exe (0x2114) 0x2E7C SharePoint Foundation General 90hv Unexpected ...h) at Microsoft.SharePoint.Utilities.SPUtility.TransferToErrorPage(String message, String linkText, String linkUrl) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.ErrorHandler(HttpApplication app, Boolean errorIsOnErrorPage) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.ErrorAppHandler(Object oSender, EventArgs ea) at System.EventHandler.Invoke(Object sender, EventArgs e) at System.Web.HttpApplication.RaiseOnError() at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntim...
    12/18/2013 08:36:39.74* w3wp.exe (0x2114) 0x2E7C SharePoint Foundation General 90hv Unexpected ...e.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
    12/18/2013 08:36:39.74 w3wp.exe (0x2114) 0x2E7C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://cnet.canopius.com:80/departments/businessinformation/reportscentre/_Layouts/sitemanager.aspx?Source=%7BWebUrl%7D_layouts/settings.aspx)). Execution Time=812.648115891824

  • Sharepoint 2013 copy/move operation using Content and Structure fails

    Hi,
    We had a recent upgrade from SP2010 to SP2013 environment. After the migration, we realized that the
    copy/move operations using Manage content and structure(sitemanager.aspx) is not working as expected, neither does this give any error nor is it stuck. In fact if I check the content and structure log I find the message as
    succeeded but file/item is not copied to the target. 
    The strange thing is that if I am performing this operation with Full Control permission level it
    does not work but if I do the operation as Site collection admin it works without problem. I know if sub-sites are to moved then one should be site col admin but in this case I am trying to move just documents or pages.
    Any help will be greatly appreciated.
    Thanks

    Hi Vineet,
    According to your description, my understanding is that copy/move operation using Content and Structure cannot work in SharePoint.
    I recommend to check if there are any custom fields in the source list/library and target list/library. If yes, delete the custom fields to see if the issue still occurs.
    Here is a similar thread for you to take a look:
    http://social.technet.microsoft.com/Forums/en-US/56d803d7-8573-4c29-9f6b-c63023941f44/manage-content-and-structure-cannot-move-or-copy-items?forum=sharepointgeneralprevious
    To copy or move files/items between sites, we need to have
    appropriate permissions on both sites.
    I recommend to check if the user has full control on both sites.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Does moving sites using Content and Structure cause issues in SQL content db's?

    I would like to be able to use "manage content and structure" to move sub-sites within a site collection (SharePoint 2010). For example I have a site that is right under my top level site and I would like to move it to be the child site of one of
    its' current peers.
    There is some concern from admins that this creates a mess in the content DB, therefore all moves should be done using powershell export/import.
    Can anyone tell me, technically, what happens when we use the move command in "content and structure" within a site collection and if there are known issues with it?

    It doesnot hamper Content DB, all changes are made within the Site Collection Content Database.
    using Manage content and structure has benefits, like UI based content restructuring, no support required from Farm Admin. However if you feel to use PowerShell you could still go for it.
    Enable developer dashboard, to see what happens in the backgroud while using Manage Content and Structure.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Help needed using content and structure functionality

    Several times now I have had users who wanted to move libraries or lists, etc. from one place within a site collection to another.
    The problem is that often, when they go into content and structure, select their source, the only action that appears is Delete, rather than also the copy or move functionality.
    Even when I connect to the farm with the farm account, I see the same issue - the copy and move actions are greyed out. The farm account is one of the site collection owners, as well as of course in the farm admin group.
    Are there certain types of things which cannot be copied or moved? One user is just trying to move a folder of files from a document library to a different location (from working to completed), while another user wants to move most of the files from an old
    project to a new project.
    I am having a tough time understanding why sometimes this works and sometimes it doesn't.

    Thank you for your answer. The user did try to use the windows explorer method, and got an error saying that the operation could not find the source.
    I appreciate the note about moving the files individually. I have suggested that.
    I also appreciate the caution about using move not copy if the versions are needed.
    In one case we have a user who is trying to consolidate 2 different sharepoint sites into 1 site.
    She has asked about moving one into the other.
    I presume that any moving that takes place will overwrite an object of the same name that exists on the other side? Or is there a prompt to the user before the overwrite takes place?
    Thank you so much for your help.

  • Problems using Content and Structure to move pages

    I am developing a public facing website using SharePoint 2013. The site uses the management metadata friendly URLs. The site consists of a site collection with half a dozen sub sites. I am wanting to move some pages from one sub site to another. So I have
    been using the Site Content and Structure under Site Settings. I select the pages to move and then select move and select the other sites pages library. Many times this is failing, sometimes leaving a copy of the page in both sub site's pages library, other
    times not moving the file at all. The most frustrating thing of all though is that it never fixes up the managed metadata navigation terms. So I am having to go through and move the term and all it's children that relate to the pages I have moved. Then I have
    to manually edit each one to have the URL to the correct sub site after the move!!! Occasionally doing the move seems to delete the term completely from the term store. This is so frustrating.
    The content and structure move tool at least fixes up links within the pages. But it really should fix up friendly URLs too.
    Is there something I am missing? Is there a recommended approach for moving pages from one sub site to another?

    Hi Vertigrator,
    may i know your sharepoint latest cumulative update? i would like to check if this issue only happens on the specific environment.
    please help me to confirm, if the steps, more likely:
    1. navigate to site actions->site settings-> site content and structure
    2. select the site that need to be moved, in the drop-down arrow of the site select "move" or "copy".
    3. select the destination.
    do this path are also able to give the same result as the steps? http://yoursite/_layouts/sitemanager.aspx
    and please do restart your "sharepoint server Publishing infrastructure" at the "site collection features".
    as i know, sharepoint sites are not actually moved from one location or server to another, rather they most likely backed up to a file and then the content or site is re-created from the backup file.
    example at 2010:
    http://www.coretekservices.com/2011/10/20/sharepoint-2010-how-to-move-a-subsite-to-a-different-location/
    http://blog.netnerds.net/2011/03/sharepoint-move-a-subsite-to-another-site-collection/
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Maybe you are looking for