BC400 dictionary and structures

I need som information on the different objects and structures that's used in ABAP academy.
I've been to the ABAP academy, and would very much like to try out the examples/exercises in the books. (BC400 + + + ).
Im aware that there are some reports that generate tables and example data. But they lack the creation of structures, database views and logical databases e.g.
For instance I need a definition of the DDIC view <b>DV_FLIGHTS.</b>
Hope to hear from someone who can help me.

Hi,
I can able find only SV_FLIGHTS in my system.
No info DV_FLIGHTS?
aRs

Similar Messages

  • Does Pool & Cluster tables has the same structure in both Dictionary and Db

    ------------ Exists with the same structure both in dictionary as well as in database exactly with the same data and fields
    a. Pool Table
    b. Cluster Table
    c. Transparent Table
    d. All the above
    To my knowledge, I know transparent table has the same structure in both Dictionary and database.
    Can anyone tel me the answer for the above question.. whether it is
    c. Transparent table
    or
    d. All the above

    Transparent Table:
    A physical table definition in the database for the table definition which is stored in the ABAP Dictionary for transparent tables when the
    table is activated. The table definition is translated from the ABAP Dictionary to a definition of the particular database.
    A transparent table in the dictionary has one to one relationship with a table in the database.
    For each transparent table in the data dictionary there is one associated table in the database.The database table has the same name, the same number of fields and fields have same names as the transparent table definition. Transparent tables are used to hold application data. Application data is master data or transaction data used by an application.
    e.g. master data - table of customers
    Transaction data - order placed by the customers.
    Pooled tables:
    Pooled tables can be used to store control data (e.g. screen sequences,program parameters or temporary data). Several pooled tables can be
    combined to form a table pool. The table pool corresponds to a physical table on the database in which all the records of the allocated pooledtables are stored.
    Pooled table in R/3 has a many to one relationship with a table in the database. For one table in the database there are many tables in the R/3 data dictionary.R/3 uses pooled tables to hold large number of very small tables. You might create a table pool if yoou need to create hundreds of small tables that each hold only a few rows of data.
    Cluster tables :
    Cluster tables contain continuous text, for example, documentation.Several cluster tables can be combined to form a table cluster. Severallogical lines of different tables are combined to form a physical record in this table type. This permits object-by-object storage or
    object-by-object access. In order to combine tables in clusters, atleast parts of the keys must agree. Several cluster tables are stored in
    one corresponding table on the database.
    A cluster table is similar to pool table . It has many to one relationship with the table in the database.
    They are used to hold the data from a few(approximatelly 2 to 10) very large tables. They would be used when these tables have a part of their primary keys in common and if data in these tables are all accessed simultaneously.A cluster is advantageous in the case where data is accessed from multiple tables simultaneously and those tables have at least one of their primary key fields in common.Cluster table reduce number of database reads and thereby improves performance.

  • Internal Table and Structures

    Hi,
    I am a beginer. I know how to create a structure and how to create an internal table using ABAP/4. My problem is, i don't understand where to use internal table and structure, also i find myself very confused about the explicit work areas.
    Plese someone show me a program by explaining all of this clearly.

    Hi
    Internal tables are the core of ABAP. They are like soul of a body. For any program we use
    internal tables extensively. We can use Internal tables like normal data base tables only, but the
    basic difference is the memory allocated for internal tables is temporary. Once the program is
    closed the memory allocated for internal tables will also be out of memory.
    But while using the internal tables, there are many performance issues to be considered. i.e which
    type of internal table to be used for the program..like standard internal table, hashed internal
    table or sorted internal table etc..
    Internal tables
    Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by
    line in memory, and each line has the same structure. In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data
    objects, they save the programmer the task of dynamic memory management in his or her programs. You should use internal tables
    whenever you want to process a dataset with a fixed structure within a program. A particularly important use for internal tables is for
    storing and formatting data from a database table within a program. They are also a good way of including very complicated data
    structures in an ABAP program.
    Like all elements in the ABAP type concept, internal tables can exist both as data types and as data objects A data type is the abstract
    description of an internal table, either in a program or centrally in the ABAP Dictionary, that you use to create a concrete data object. The
    data type is also an attribute of an existing data object.
    Internal Tables as Data Types
    Internal tables and structures are the two structured data types in ABAP. The data type of an internal table is fully specified by its line type,
    key, and table type.
    Line type
    The line type of an internal table can be any data type. The data type of an internal table is normally a structure. Each component of the
    structure is a column in the internal table. However, the line type may also be elementary or another internal table.
    Key
    The key identifies table rows. There are two kinds of key for internal tables - the standard key and a user-defined key. You can specify
    whether the key should be UNIQUE or NON-UNIQUE. Internal tables with a unique key cannot contain duplicate entries. The uniqueness
    depends on the table access method.
    If a table has a structured line type, its default key consists of all of its non-numerical columns that are not references or themselves
    internal tables. If a table has an elementary line type, the default key is the entire line. The default key of an internal table whose line type
    is an internal table, the default key is empty.
    The user-defined key can contain any columns of the internal table that are not references or themselves internal tables. Internal tables
    with a user-defined key are called key tables. When you define the key, the sequence of the key fields is significant. You should remember
    this, for example, if you intend to sort the table according to the key.
    Table type
    The table type determines how ABAP will access individual table entries. Internal tables can be divided into three types:
    Standard tables have an internal linear index. From a particular size upwards, the indexes of internal tables are administered as trees. In
    this case, the index administration overhead increases in logarithmic and not linear relation to the number of lines. The system can access
    records either by using the table index or the key. The response time for key access is proportional to the number of entries in the table.
    The key of a standard table is always non-unique. You cannot specify a unique key. This means that standard tables can always be filled
    very quickly, since the system does not have to check whether there are already existing entries.
    Sorted tables are always saved sorted by the key. They also have an internal index. The system can access records either by using the
    table index or the key. The response time for key access is logarithmically proportional to the number of table entries, since the system
    uses a binary search. The key of a sorted table can be either unique or non-unique. When you define the table, you must specify whether
    the key is to be unique or not. Standard tables and sorted tables are known generically as index tables.
    Hashed tables have no linear index. You can only access a hashed table using its key. The response time is independent of the number of
    table entries, and is constant, since the system access the table entries using a hash algorithm. The key of a hashed table must be unique.
    When you define the table, you must specify the key as UNIQUE.
    Generic Internal Tables
    Unlike other local data types in programs, you do not have to specify the data type of an internal table fully. Instead, you can specify a
    generic construction, that is, the key or key and line type of an internal table data type may remain unspecified. You can use generic
    internal tables to specify the types of field symbols and the interface parameters of procedures . You cannot use them to declare data
    objects.
    Internal Tables as Dynamic Data Objects
    Data objects that are defined either with the data type of an internal table, or directly as an internal table, are always fully defined in
    respect of their line type, key and access method. However, the number of lines is not fixed. Thus internal tables are dynamic data objects,
    since they can contain any number of lines of a particular type. The only restriction on the number of lines an internal table may contain are
    the limits of your system installation. The maximum memory that can be occupied by an internal table (including its internal administration)
    is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more
    than 2 million entries. The line types of internal tables can be any ABAP data types - elementary, structured, or internal tables. The
    individual lines of an internal table are called table lines or table entries. Each component of a structured line is called a column in the
    internal table.
    Choosing a Table Type
    The table type (and particularly the access method) that you will use depends on how the typical internal table operations will be most
    frequently executed.
    Standard tables
    This is the most appropriate type if you are going to address the individual table entries using the index. Index access is the quickest
    possible access. You should fill a standard table by appending lines (ABAP APPEND statement), and read, modify and delete entries by
    specifying the index (INDEX option with the relevant ABAP command). The access time for a standard table increases in a linear relationship
    with the number of table entries. If you need key access, standard tables are particularly useful if you can fill and process the table in
    separate steps. For example, you could fill the table by appending entries, and then sort it. If you use the binary search option with key
    access, the response time is logarithmically proportional to the number of table entries.
    Sorted tables
    This is the most appropriate type if you need a table which is sorted as you fill it. You fill sorted tables using the INSERT statement. Entries
    are inserted according to the sort sequence defined through the table key. Any illegal entries are recognized as soon as you try to add
    them to the table. The response time for key access is logarithmically proportional to the number of table entries, since the system always
    uses a binary search. Sorted tables are particularly useful for partially sequential processing in a LOOP if you specify the beginning of the
    table key in the WHERE condition.
    Hashed tables
    This is the most appropriate type for any table where the main operation is key access. You cannot access a hashed table using its index.
    The response time for key access remains constant, regardless of the number of table entries. Like database tables, hashed tables always
    have a unique key. Hashed tables are useful if you want to construct and use an internal table which resembles a database table or for
    processing large amounts of data.
    Creating Internal Tables
    Like other elements in the ABAP type concept, you can declare internal tables as abstract data
    types in programs or in the ABAP Dictionary, and then use them to define data objects.
    Alternatively, you can define them directly as data objects. When you create an internal table as a
    data object, you should ensure that only the administration entry which belongs to an internal
    table is declared statically. The minimum size of an internal table is 256 bytes. This is important if an
    internal table occurs as a component of an aggregated data object, since even empty internal
    tables within tables can lead to high memory usage. (In the next functional release, the size of the
    table header for an initial table will be reduced to 8 bytes). Unlike all other ABAP data objects, you
    do not have to specify the memory required for an internal table. Table rows are added to and
    deleted from the table dynamically at runtime by the various statements for adding and deleting
    records.
    You can create internal tables in different types.
    You can create standard internal table and then make it sort in side the program.
    The same way you can change to hashed internal tables also.
    There will be some performance issues with regard to standard internal tables/ hashed internal
    tables/ sorted internal tables.
    Internal table types
    This section describes how to define internal tables locally in a program. You can also define internal tables globally as data types in the
    ABAP Dictionary.
    Like all local data types in programs , you define internal tables using the TYPES statement. If you do not refer to an existing table type
    using the TYPE or LIKE addition, you can use the TYPES statement to construct a new local internal table in your program.
    TYPES <t> TYPE|LIKE <tabkind> OF <linetype> [WITH <key>]
    [INITIAL SIZE <n>].
    After TYPE or LIKE, there is no reference to an existing data type. Instead, the type constructor occurs:
    <tabkind> OF <linetype> [WITH <key>]
    The type constructor defines the table type <tabkind>, the line type <linetype>, and the key <key> of the internal table <t>.
    You can, if you wish, allocate an initial amount of memory to the internal table using the INITIAL SIZE addition.
    Table type
    You can specify the table type <tabkind> as follows:
    Generic table types
    INDEX TABLE
    For creating a generic table type with index access.
    ANY TABLE
    For creating a fully-generic table type.
    Data types defined using generic types can currently only be used for field symbols and for interface parameters in procedures . The generic
    type INDEX TABLE includes standard tables and sorted tables. These are the two table types for which index access is allowed. You cannot
    pass hashed tables to field symbols or interface parameters defined in this way. The generic type ANY TABLE can represent any table. You
    can pass tables of all three types to field symbols and interface parameters defined in this way. However, these field symbols and
    parameters will then only allow operations that are possible for all tables, that is, index operations are not allowed.
    Fully-Specified Table Types
    STANDARD TABLE or TABLE
    For creating standard tables.
    SORTED TABLE
    For creating sorted tables.
    HASHED TABLE
    For creating hashed tables.
    Fully-specified table types determine how the system will access the entries in the table in key operations. It uses a linear search for
    standard tables, a binary search for sorted tables, and a search using a hash algorithm for hashed tables.
    Line type
    For the line type <linetype>, you can specify:
    Any data type if you are using the TYPE addition. This can be a predefined ABAP type, a local type in the program, or a data type from the
    ABAP Dictionary. If you specify any of the generic elementary types C, N, P, or X, any attributes that you fail to specify (field length, number
    of decimal places) are automatically filled with the default values. You cannot specify any other generic types.
    Any data object recognized within the program at that point if you are using the LIKE addition. The line type adopts the fully-specified data
    type of the data object to which you refer. Except for within classes, you can still use the LIKE addition to refer to database tables and
    structures in the ABAP Dictionary (for compatibility reasons).
    All of the lines in the internal table have the fully-specified technical attributes of the specified data type.
    Key
    You can specify the key <key> of an internal table as follows:
    [UNIQUE|NON-UNIQUE] KEY <col1> ... <col n>
    In tables with a structured line type, all of the components <coli> belong to the key as long as they are not internal tables or references,
    and do not contain internal tables or references. Key fields can be nested structures. The substructures are expanded component by
    component when you access the table using the key. The system follows the sequence of the key fields.
    [UNIQUE|NON-UNIQUE] KEY TABLE LINE
    If a table has an elementary line type (C, D, F, I, N, P, T, X), you can define the entire line as the key. If you try this for a table whose line
    type is itself a table, a syntax error occurs. If a table has a structured line type, it is possible to specify the entire line as the key. However,
    you should remember that this is often not suitable.
    [UNIQUE|NON-UNIQUE] DEFAULT KEY
    This declares the fields of the default key as the key fields. If the table has a structured line type, the default key contains all non-numeric
    columns of the internal table that are not and do not contain references or internal tables. If the table has an elementary line type, the
    default key is the entire line. The default key of an internal table whose line type is an internal table, the default key is empty.
    Specifying a key is optional. If you do not specify a key, the system defines a table type with an arbitrary key. You can only use this to
    define the types of field symbols and the interface parameters of procedures . For exceptions, refer to Special Features of Standard Tables.
    The optional additions UNIQUE or NON-UNIQUE determine whether the key is to be unique or non-unique, that is, whether the table can
    accept duplicate entries. If you do not specify UNIQUE or NON-UNIQUE for the key, the table type is generic in this respect. As such, it can
    only be used for specifying types. When you specify the table type simultaneously, you must note the following restrictions:
    You cannot use the UNIQUE addition for standard tables. The system always generates the NON-UNIQUE addition automatically.
    You must always specify the UNIQUE option when you create a hashed table.
    Initial Memory Requirement
    You can specify the initial amount of main memory assigned to an internal table object when you define the data type using the following
    addition:
    INITIAL SIZE <n>
    This size does not belong to the data type of the internal table, and does not affect the type check. You can use the above addition to
    reserve memory space for <n> table lines when you declare the table object.
    When this initial area is full, the system makes twice as much extra space available up to a limit of 8KB. Further memory areas of 12KB each
    are then allocated.
    You can usually leave it to the system to work out the initial memory requirement. The first time you fill the table, little memory is used. The
    space occupied, depending on the line width, is 16 <= <n> <= 100.
    It only makes sense to specify a concrete value of <n> if you can specify a precise number of table entries when you create the table and
    need to allocate exactly that amount of memory (exception: Appending table lines to ranked lists). This can be particularly important for
    deep-structured internal tables where the inner table only has a few entries (less than 5, for example).
    To avoid excessive requests for memory, large values of <n> are treated as follows: The largest possible value of <n> is 8KB divided by the
    length of the line. If you specify a larger value of <n>, the system calculates a new value so that n times the line width is around 12KB.
    Examples
    TYPES: BEGIN OF LINE,
    COLUMN1 TYPE I,
    COLUMN2 TYPE I,
    COLUMN3 TYPE I,
    END OF LINE.
    TYPES ITAB TYPE SORTED TABLE OF LINE WITH UNIQUE KEY COLUMN1.
    The program defines a table type ITAB. It is a sorted table, with line type of the structure LINE and a unique key of the component
    COLUMN1.
    TYPES VECTOR TYPE HASHED TABLE OF I WITH UNIQUE KEY TABLE LINE.
    TYPES: BEGIN OF LINE,
    COLUMN1 TYPE I,
    COLUMN2 TYPE I,
    COLUMN3 TYPE I,
    END OF LINE.
    TYPES ITAB TYPE SORTED TABLE OF LINE WITH UNIQUE KEY COLUMN1.
    TYPES: BEGIN OF DEEPLINE,
    FIELD TYPE C,
    TABLE1 TYPE VECTOR,
    TABLE2 TYPE ITAB,
    END OF DEEPLINE.
    TYPES DEEPTABLE TYPE STANDARD TABLE OF DEEPLINE
    WITH DEFAULT KEY.
    The program defines a table type VECTOR with type hashed table, the elementary line type I and a unique key of the entire table line. The
    second table type is the same as in the previous example. The structure DEEPLINE contains the internal table as a component. The table
    type DEEPTABLE has the line type DEEPLINE. Therefore, the elements of this internal table are themselves internal tables. The key is the
    default key - in this case the column FIELD. The key is non-unique, since the table is a standard table.
    Internal table objects
    Internal tables are dynamic variable data objects. Like all variables, you declare them using the DATA statement. You can also declare static
    internal tables in procedures using the STATICS statement, and static internal tables in classes using the CLASS-DATA statement. This
    description is restricted to the DATA statement. However, it applies equally to the STATICS and CLASS-DATA statements.
    Reference to Declared Internal Table Types
    Like all other data objects, you can declare internal table objects using the LIKE or TYPE addition of the DATA statement.
    DATA <itab> TYPE <type>|LIKE <obj> [WITH HEADER LINE].
    Here, the LIKE addition refers to an existing table object in the same program. The TYPE addition can refer to an internal type in the
    program declared using the TYPES statement, or a table type in the ABAP Dictionary.
    You must ensure that you only refer to tables that are fully typed. Referring to generic table types (ANY TABLE, INDEX TABLE) or not
    specifying the key fully is not allowed (for exceptions, refer to Special Features of Standard Tables).
    The optional addition WITH HEADER line declares an extra data object with the same name and line type as the internal table. This data
    object is known as the header line of the internal table. You use it as a work area when working with the internal table (see Using the
    Header Line as a Work Area). When you use internal tables with header lines, you must remember that the header line and the body of the
    table have the same name. If you have an internal table with header line and you want to address the body of the table, you must indicate
    this by placing brackets after the table name (<itab>[]). Otherwise, ABAP interprets the name as the name of the header line and not of the
    body of the table. You can avoid this potential confusion by using internal tables without header lines. In particular, internal tables nested
    in structures or other internal tables must not have a header line, since this can lead to ambiguous expressions.
    TYPES VECTOR TYPE SORTED TABLE OF I WITH UNIQUE KEY TABLE LINE.
    DATA: ITAB TYPE VECTOR,
    JTAB LIKE ITAB WITH HEADER LINE.
    MOVE ITAB TO JTAB. <- Syntax error!
    MOVE ITAB TO JTAB[].
    The table object ITAB is created with reference to the table type VECTOR. The table object JTAB has the same data type as ITAB. JTAB also
    has a header line. In the first MOVE statement, JTAB addresses the header line. Since this has the data type I, and the table type of ITAB
    cannot be converted into an elementary type, the MOVE statement causes a syntax error. The second MOVE statement is correct, since
    both operands are table objects.
    Declaring New Internal Tables
    You can use the DATA statement to construct new internal tables as well as using the LIKE or TYPE addition to refer to existing types or
    objects. The table type that you construct does not exist in its own right; instead, it is only an attribute of the table object. You can refer to
    it using the LIKE addition, but not using TYPE. The syntax for constructing a table object in the DATA statement is similar to that for defining
    a table type in the TYPES statement.
    DATA <itab> TYPE|LIKE <tabkind> OF <linetype> WITH <key>
    [INITIAL SIZE <n>]
    [WITH HEADER LINE].
    As when you define a table type , the type constructor
    <tabkind> OF <linetype> WITH <key>
    defines the table type <tabkind>, the line type <linekind>, and the key <key> of the internal table <itab>. Since the technical attributes of
    data objects are always fully specified, the table must be fully specified in the DATA statement. You cannot create generic table types (ANY
    TABLE, INDEX TABLE), only fully-typed tables (STANDARD TABLE, SORTED TABLE, HASHED TABLE). You must also specify the key and whether
    it is to be unique (for exceptions, refer to Special Features of Standard Tables).
    As in the TYPES statement, you can, if you wish, allocate an initial amount of memory to the internal table using the INITIAL SIZE addition.
    You can create an internal table with a header line using the WITH HEADER LINE addition. The header line is created under the same
    conditions as apply when you refer to an existing table type.
    DATA ITAB TYPE HASHED TABLE OF SPFLI
    WITH UNIQUE KEY CARRID CONNID.
    The table object ITAB has the type hashed table, a line type corresponding to the flat structure SPFLI from the ABAP Dictionary, and a
    unique key with the key fields CARRID and CONNID. The internal table ITAB can be regarded as an internal template for the database table
    SPFLI. It is therefore particularly suitable for working with data from this database table as long as you only access it using the key.

  • Line type and structure.

    What is the difference between line type and structure?
    one real time use of both.
    instead of line type we can directly use the corresponding tables.
    Points assured.
    regards,
    Prabhu.

    Hi
    <b>The line type of a table type can be defined by:</b>
    Specification of a type that already exists (data element, structure, table type, table, view) whose properties are then copied as properties of the defined table line.
    Direct type input, where data type, number of positions, and, if required, decimal places, are entered directly.
    Specification of a reference type.
    <b>structure</b>
    The table category defines how the logical table description defined in the ABAP Dictionary is represented in the database.
    There are the following table categories:
    transparent table
    structure
    append structure
    For internal purposes, such as storing control data or update texts, there are in addition the following table categories:
    pooled table
    cluster table
    generated view structure
    <b>reward if usefull</b>

  • 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

  • Diff B/w ABAP Dictionary and Data Dictionary

    What is the difference between ABAP Dictionary and Data Dictionary........

    Hi,
    Both are the same.
    Please check this online document perhaps it may help.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCDWBDIC/BCDWBDIC.pdf
    Regards,
    Ferry Lianto

  • 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