Structure of includes

Hi,
in Java developing I am using for everey new class a new file. Is it usual in ABAP to use  for every local class a new include? I tried it and get in real problems. I wrote two classes in different includes. Both classes were using each other. I didn't know where to set which include and which class should be defined as deferred.
Can anybody give me a short answer or a link to something that documents it.
Thanks.
Adalbert

Hello Adalbert
Perhaps there is a more elegant approach than the one shown below but I did not find another solution.
The coding of the include is shown after the END-OF-SELECTION statement.
*& Report  ZUS_SDN_INCL_LOCAL_CLASSES
REPORT  zus_sdn_incl_local_classes.
CLASS lcl_myclass_2 DEFINITION DEFERRED.
CLASS lcl_myclass_1 DEFINITION DEFERRED.
INCLUDE zus_sdn_incl_local_classes_c01. " Definition class 1
INCLUDE zus_sdn_incl_local_classes_c02. " Definition class 2
INCLUDE zus_sdn_incl_local_classes_c03. " Implementation 1 & 2
START-OF-SELECTION.
END-OF-SELECTION.
*&  Include           ZUS_SDN_INCL_LOCAL_CLASSES_C01
CLASS lcl_myclass_1 DEFINITION.
  PUBLIC SECTION.
    DATA:
      mo_class_2    TYPE REF TO lcl_myclass_2.
    METHODS:
      constructor.
ENDCLASS.                    "lcl_myclass_1 DEFINITION
*&  Include           ZUS_SDN_INCL_LOCAL_CLASSES_C02
CLASS lcl_myclass_2 DEFINITION.
  PUBLIC SECTION.
    DATA:
      mo_class_1    TYPE REF TO lcl_myclass_1.
    METHODS:
      constructor.
ENDCLASS.                    "lcl_myclass_1 DEFINITION
*&  Include           ZUS_SDN_INCL_LOCAL_CLASSES_C03
*       CLASS lcl_myclass_1 IMPLEMENTATION
CLASS lcl_myclass_1 IMPLEMENTATION.
  METHOD constructor.
    CREATE OBJECT me->mo_class_2.
  ENDMETHOD.                    "constructor
ENDCLASS.                    "lcl_myclass_1 IMPLEMENTATION
*       CLASS lcl_myclass_1 IMPLEMENTATION
CLASS lcl_myclass_2 IMPLEMENTATION.
  METHOD constructor.
    CREATE OBJECT me->mo_class_1.
  ENDMETHOD.                    "constructor
ENDCLASS.                    "lcl_myclass_1 IMPLEMENTATION
Regards
  Uwe

Similar Messages

  • Field name DUMMY is reserved (Do not use structure as include in DB table)

    We are trying to add a custom field, e.g., called ZZZ in LIS Communication structure MCEKKO (Purchasing Document Header) by creating a new custom append structure and add the field ZZZ into it, then activate the new append structure, but get warning msg like "Field name DUMMY is reserved (Do not use structure as include in DB table)".
    We do find a field called DUMMY in the structure MCEKKO. How to get rid of the warning msg and successfully activate the new custom append structure with the new field ZZZ?
    We will give you reward points for correct solutions for the above problem!
    Thanks

    hi Dinesh,
    But we wonder why this new custom field appended can not be seen from the right frame of the extraction structure in LBWE?
    Any idea?
    Thanks

  • Difference between append structure and include structure in DDIC

    Plz give me the apt difference between append structure and include structure in DDIC.
    Thanks in advance.
    Regards
    Raj

    This has been discussed please check it in forum
    https://forums.sdn.sap.com/click.jspa?searchID=480466&messageID=114309
    https://forums.sdn.sap.com/click.jspa?searchID=480466&messageID=1419481
    https://forums.sdn.sap.com/click.jspa?searchID=480466&messageID=1479212
    Shortly:
    Append structures are used for enhancements that are not included in the standard. An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.
    http://help.sap.com/saphelp_erp2004/helpdata/en/cf/21eb61446011d189700000e8322d00/content.htm
    Includes are used to group fields, an include structure can be assigned to many tables. If you add a fields to an include structure, all tables/structures, which contain that include structure, will be updated too.
    http://help.sap.com/saphelp_erp2004/helpdata/en/cf/21ea6a446011d189700000e8322d00/content.htm
    Regards,
    Santosh

  • Dragging case structure to include objects

    Hi,
    This might be a very noob question.
    I have made a case structure with a lot of code inside it. And I also have a lot of objects/code outside it, so that the outputs from the code inside the case structure go to the ones outside it.
    Now I want to include the objects that were outside, inside the case structure. There is a LOT of code outside too, it is a pain to increase the structure size, and then cut/paste the objects inside. Not to mention the multitude of rewiring.
    Is there a way to include the objects outside when i extend the case structure over them? Right now it just pushes them and does not inlcude them inside it. I have tried all combinations: Ctrl drag, Ctrl+shift drag etc..
    Thank You

    The problem with that is that there are multiple cases.
    If I remove the case structure, it will retain the case that is currently displayed but delete all the other cases behind it.

  • Difference between Append structure and include structure

    hi can anyone tell me the difference between include structure and append structure with respect to tables defined in ABAP dictionary?
    Also how to create them in ABAP dictionary?

    HI
    INCLUDE:
    Includes are used to group fields and insert them together in a table or structure.
    An include program has two main functions:
    It contains code which can be used by several different programs.
    It helps you to modularize programs, which consist of many different logically related parts. Each of these parts is stored as a separate include program.
    Include programs improve the readability of programs and make maintenance easier.
    Include reports contain rolled out parts of reports. They are called by the main report, and can only be run in conjunction with the main report.
    APPEND:
    Append structures are used for enhancements that are not included in the standard. This includes special developments, country versions and adding customer fields to any tables or structures.
    An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.
    The following enhancements can be made to a table or structure TAB with an append structure:
    Insert new fields in TAB,
    Define foreign keys for fields of TAB that already exist,
    Attach search helps to fields of TAB that already exist
    Just have a look at this link:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ebd6446011d189700000e8322d00/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ebd6446011d189700000e8322d00/frameset.htm</a>
    Rsgards,
    Gunasree.
    Award marks to helpful answers

  • Changing .include structure does not reflect in the original Table.

    Hi  Experts,
    I have a .include structure by name SDOKLO_INC referenced for table SRMTST07.
    As a part of unicode conversion, I have to Uncheck the Text Lang check box of Datalement SDOK_MSLAN. Hence I opened the structure of SDOKLO_INC and did the changes.
    As the structure is included in the table SRMTST07, it should reflect in the table also.
    But that is not getting reflected.
    Even I have properly activated using SE14 --> Adjust and Activate Table.
    Could you please throw some light..
    Thanks & Best Regards
    LRaghunahth

    Hi,
    This seems strange.
    As data element is activated, it should be reflected whereever it has been referenced.
    Can you please double check whether the data element is active with latest changes?

  • Difference between include structure and Append structure

    Could you please tell me
    I have bsis table and it contains append structure  in 4.7 SAP System.
    my program in 4.7 system contains internal table which used same structure of bsis table ( which contains additonal field in its append structure ).
    I need to have same table structure in 4.6 C because I am copying the same program into 4.6 system.
    As I could not append structure to bsis table in 4.6C SAP system,
    instead of that shall I add the field or Shall include the structure to run .
    What is the difference between Include structure and Append structure ( I forgot )
    How to achieve this please help me ?

    Hi ,
      As you know append structure can be used only once in table ,that to at last of all entries,
    Append structures are used for enhancements that are not included in the standard. This includes special developments, country versions and adding customer fields to any tables or structures.
    An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.
    The following enhancements can be made to a table or structure TAB with an append structure:
    Insert new fields in TAB,
    Define foreign keys for fields of TAB that already exist,
    Attach search helps to fields of TAB that already exist,
    These enhancements are part of the append structure, i.e. they must always be changed and transported with the append structure.
    When a table or structure is activated, all the append structures of the table are searched and the fields of these append structures are added to the table or structure. Foreign keys and search help attachments added using the append structure are also added to the table. If an append structure is created or changed, the table or structure assigned to it is also adjusted to these changes when the append structure is activated.
    Since the order of the fields in the ABAP Dictionary can differ from the order of the fields on the database, adding append structures or inserting fields in such append structures does not result in a table conversion.
    The customer creates append structures in the customer namespace. The append structure is thus protected against overwriting during an upgrade. The fields in the append structure should also reside in the customer namespace, that is the field names should begin with ZZ or YY. This prevents name conflicts with fields inserted in the table by SAP.
    The new versions of the standard tables are imported after an upgrade, and the fields, foreign key definitions and search help attachments contained in the append structures are added to the new standard tables at activation.
    A standard table contains the fields Field 1, Field 2 and Field 3. An append structure containing the fields ZZA and ZZB is defined for this table. After activating the table, the corresponding database table contains fields Field 1, Field 2, Field 3, ZZA and ZZB.
    Further Remarks:
    An append structure can only be assigned to exactly one table or structure. If you want to append the same fields to several tables or structures, you can store these fields in an include structure. In this case you must create an append structure for each of these tables or structures and include the include structure there.
    Adding an append structure to an SAP standard table is supported by the  Modification Assistant.
    If you want to insert a field that is to be delivered with the R/3 standard in the next Release in the customer system in advance, you must include it in the table itself as a repair. If you include such a field in an append structure for the table, it will occur twice when the new standard table is imported. This will result in an activation error.
    No append structures may be added to tables with long fields (data types VARC, LCHR or LRAW). This is because a long field must always be the last field in the table. However, structures with long fields can be enhanced with append structures.
    If a table or structure with an append structure is copied, the fields of the append structure become fields of the target table. Foreign key definitions and search help attachments appended with the append structure are copied to the target table.
    Foreign keys for the appended fields must be defined within the append structure. Fields of the table or structure assigned to the append structure may be defined when assigning the key field and foreign key field.
    Indexes on the appended fields must be defined in the original table.
    A table or structure TAB can only be enhanced with new foreign keys or search help attachments using an append structure. You therefore cannot change an existing foreign key definition or search help attachment for a field of TAB with the append structure.
    Thanks
    Manju

  • Problem with duplicate entries in a structure.

    Hi,
    I am creating a custom structure by including 2 structures in it as DRSEG and COBL_MRM_D.
    Now both the structures have many common fields and hence it gives an error on check.
    Is there any workaround to create the structure in DDIC by including both the above structures.
    Pls help with your ideas.
    Thanks,
    stock.

    Hi
    Create a DDIC structure which has all the common fields. Include this structure only once .
    Then include the fields which are not common from both the structure into the created structure . so that no duplicates entries are present
    OR
    Include the first structure then dont include the second structure include only the fields which are not common to both . this also eliminates the duplicates

  • Fields missing in import and export structure PPCO0001 - PPCO0023

    Hello Experts,
    I'm hoping that you can help me.  I am trying to add some logic in user exits to default data and do some checking in production orders.  It would be great if I could talk to you about what Iu2019m trying to do and the problem that Iu2019m running into.
    My main problem is that in the exits provided (enhancements PPCO0001 u2013 PPCO0023), most of the time either fields being imported or the field being exported do not include the fields that I want to change or check.  Iu2019m wondering if there is some way to just pull-in the data and change/check in addition to what is already available to the exit. - Can I append the structures?
    Hereu2019s an example below:
    u2022     PPCO0006 Enhancement to predefine fields in order header
    With this enhancement you can take fields from the order header in your own program and process them or define values for them and transfer the changed data again to the standard system. The transfer to the system takes place before you reach the order header screen. EXIT_SAPLCOZF_003   Exit for predefining fields in order header.  The fields in the order header (structure CAUFVD) are placed in the function exit. All the fields that you can define or change are defined in the structure HEADER_CUST. The contents of HEADER_CUST is transferred back to CAUFVD on leaving the function exit.
    Problem 1.
    The documentation sounds greatu2026. Seems like the right place --  all the data I need is supposed to already be in CAUFVD_IMPu2026. BUT HEADER_CUST and HEADER_CUST_EXP do not have the fields that I need change.  If I try to append the structure and include additional CAUFVD fields I either get a warning in the activation because of duplicate fields or If I try to add them as Zfields the program doesnu2019t take the change data because it does a move-corresponding from HEADER_CUST_EXP to CAUFVD and the Z fields donu2019t match.  - what is the correct way to change header values if the fields that you want to change are not already defined in the structure HEADER_CUST?
    Problem 2.
    It seems that this exit occurs prior to pulling in the data from the standard routing (which would normally populate CAUFVD-PLGRP ... at the time of the exit this field is blank so i cannot use it to determine the value for another header field.  I could get around this by reading directly PLKO but that won't help me if I cannot add CAUFVD-FEVOR as a field availble for changing/defaulting.
    Problem 3.
    If I get around Problem 2, I still have another problem.  In PPCO0007& PPCO0001 I'm trying to change the user status to block the order from being printined until it passes the validation check and is error free.  In PPCO007 I can block the order from being saved or in PPCO0001 I can raise a message that an error was found... but I need to change the user status at the same time as rasing the error or blocking the save.
    Thanks so much for any guidance that you can give.

    Dear,
    When you do so, in the PPCO0001 customer enhancement, you should carry out follow actions based on the status changes since the contents of the STATUS_TABLE and STATUS_TABLE_OLD  Exist is EXIT_SAPLCOBT_001  and  CALL FUNCTION 'STATUS_CHANGE_EXTERN'
    For details refer the OSS note 86553
    Hope it will help you.
    Regards,
    R.Brahmankar

  • Is it possible to modify the tag structure tree and the role map via scripting?

    We use unstructured FrameMaker to produce training materials which we distribute as tagged PDF to meet accessibility requirements.
    When FrameMaker creates a tagged PDF, it does a fairly good job of populating the structure based on the PDF setup information for the paragraph formats in the FrameMaker documents. However, there are some limitations in the support that FrameMaker provides. For example, almost all paragraphs are assigned to the P role even if they are headings and should be mapped to H1-H6.
    We want to be able to easily post-process a PDF that has been generated from FrameMaker to fix some of the tag structure issues (including tag names and the role map) so that the PDF will provide the optimum experience for a user of the JAWS screen reader.
    I spent some time reading the SDK documentation but didn't find much information about manipulating a tagged PDF via the API, especially via scripting.
    Does anyone have any examples or references which explain how to do it?

    AFAIK, it's not possible with a script. You might want to ask in the SDK forum, as it could be possible with a plugin.

  • Structure - Data View

    I know a structure (xxxxxxxxxxx), how to see the underlying data under this structure.. I want to how the mapping is created for each field in the structure. For example
    Structure A XXXXXXXX
    Field 1 - Account
    Field 2 - Balance
    Field 3 - total
    How would I know these values are populated from which table ? and how to trace back that table and fields ?
    Thanks and I appreciate your quick posting
    BI

    Hello,
    - Go to SE11 and View the fields in the structure.
    In any case, structure do not contain data of their own.
    So check the table in which this structure is included using where used list for this structure.
    Regards

  • Building the site structure for a dynamic website with JSF

    Hi,
    I am still a JSF-beginner.
    I try to build a fully-functional base-demo-application with a fix and a dynamic part.
    Fix part for menu, dynamic part for site-content.
    At the moment, the JSF-hyperlinks of the main menu work, but any JSF-parts in the included documents of the dynamic part are not shown. I guess, this is dued to inclusion of subviews, but I cannot find any similar examples in the web to come one step further.
    Here my complete demo:
    faces-config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <navigation-rule>
    <from-view-id>*</from-view-id>
    <navigation-case>
    <from-outcome>site1</from-outcome>
    <to-view-id>/site1.jsp</to-view-id>
    <redirect>
    </redirect>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
    <from-view-id>*</from-view-id>
    <navigation-case>
    <from-outcome>site2</from-outcome>
    <to-view-id>/site2.jsp</to-view-id>
    <redirect>
    </redirect>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <context-param>
    <param-name>com.sun.faces.verifyObjects</param-name>
    <param-value>false</param-value>
    </context-param>
    <context-param>
    <param-name>com.sun.faces.validateXml</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    <welcome-file-list>
         <welcome-file>
    index.jsp
    </welcome-file>
    </welcome-file-list>
    </web-app>
    index.jsp:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <% response.sendRedirect("/jsfportal/site1.jsf"); %>
    site1.jsp:
    <?xml version="1.0" encoding="UTF-8" ?>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <% String site = "1"; %>
    <%@ include file="base.jsp" %>
    dynamic_site1.jsp:
    <h1>Welcome to site 1</h1>
    Have fun visiting our portal
    site2.jsp:
    <?xml version="1.0" encoding="UTF-8" ?>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <% String site = "2"; %>
    <%@ include file="base.jsp" %>
    dynamic_site2.jsp:
    <h1>Welcome to site 2</h2>
    Go to site 1: *<!-- And this is the JSF-link that is NOT shown: -->*
    <f:view>
    <h:form>
    <h:panelGrid border="0" columns="0">
    <h:commandLink id="p1" action="site1" value="Site 1" />
    </h:panelGrid>
    </h:form>
    </f:view>
    base.jsp:
    <%@ page language="java" %>
    <%@ page import = "java.io.*" %>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%
    String title = "";
    int siteInteger = 0;
    String dynamic_site = "";
    if ( site != null )
    if (
    ( site.length ( ) > 0 )
    ( site.length ( ) <= 30 )
    if ( isNumeric ( site ) )
    siteInteger = Integer.valueOf ( site ).intValue ( );
    switch ( siteInteger )
    case 2: title = "Site 2";
    dynamic_site = "dynamic_site2.jsp";
    break;
    default:
    title = "Site 1";
    dynamic_site = "dynamic_site1.jsp"; // Start page
    %>
    <html xmlns="http://www.w3.org/1999/xhtml"
    lang="de" xml:lang="de">
    <head>
    <title>
    <%= title %>
    </title>
    <meta name="description" content="test site" />
    <meta name="keywords" content="test site" />
    </head>
    <body>
    <div width="100%" style="text-align:left">
    <table width="970" border="0" cellspacing="0" cellpadding="0" style="background-color:#ffffaa;margin-top:25px;">
    *<!-- this is not good style putting CSS directly into HTML but it is a demo now ;) -->*
    <colgroup>
    <col width="970" />
    </colgroup>
    <tr>
    <td valign="top" align="left" style="padding:25px;">
    +<h1>+
    JSF portal
    +</h1>+
    </td>
    </tr>
    </table>
    <table width="970" border="2" cellspacing="0" cellpadding="0" style="background-color:#f5f5f0">
    <colgroup>
    <col width="270" />
    <col width="700" />
    </colgroup>
    <tr>
    <td valign="top" align="left" style="padding:25px; padding-left:40px;padding-bottom:320px;">
    <f:view>
    <h:form>
    <h:panelGrid border="0" columns="0">
    <h:commandLink id="p1" action="site1" value="Site 1" />
    <h:commandLink id="p2" action="site2" value="Site 2" />
    </h:panelGrid>
    </h:form>
    </f:view>
    </td>
    <td valign="top" align="justify" class="haupttext" style="padding:24px;">
    <p align="justify">
    <f:subview id="subview1">
    <jsp:include page="<%= dynamic_site %>" flush="true">
    <jsp:param name="" value="" />
    </jsp:include>
    </f:subview>
    </p>
    </td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    <%!
    public boolean isNumeric ( String myInput )
    if (myInput == null || myInput.length() < 1)
    return false;
    int start = 0;
    if (myInput.charAt(0) == '-')
    start = 1;
    for(int i = start; i < myInput.length(); i++)
    if (!Character.isDigit(myInput.charAt(i)))
    return false;
    return true;
    %>
    Who can name me that code positions responsible for that the JSF link in the dynamic part is not shown?
    It is not that it does not work it is not shown. The JSF tree seems to be cut because of wrong use of view and subview etc.
    (To put view tags in site1.jsp and site2.jsp does not help.)
    (Once having afforded an example it should go... (*Then* with JSTL, external CSS, etc. ;) )
    Dynamical site structure with include files is the big problem at the moment.)
    bye, Maik

    I found your following suggestions for such cases (seems you are the only profound JSF freak in the world...? :-) )
    Switch between subviews in one main page
    http://balusc.blogspot.com/2007/01/dynamic-jsf-subviews.html
    But the main problem for me is that I never find complete examples, but always fragments and it would be important for a beginner to have at least once a complete JSF example over a few subviews, especially here where it is very easy to corrupt the internal tree.
    (Some examples use the subview tags in the calling JSP, some in the called e.g.... Does not matter where to put it? Some use verbatim tags for HTML code outside JSF, some don't... and so on)
    Can anyone give me an URL for a complete example of a JSF site (with all files as possible, I am not very patient, too, but in this case it makes sense to have it entire ;-) ) with dynamic switches of subviews as preferentially used for bigger portal sites?

  • Applications, data and folders structure question

    I am new to the Mac OS X and wish to setup my folder structure correctly in a multi-disk environment (Mac Pro). I have 2 drives at the moment and plan to add more.
    I assume that I should boot the OS from a separate OS disk and put apps and data on different disks. I also understand that Mac OS X uses a structure which includes a "users" folder in the root directory, application folder in root dir and "home" folders located in the "users" folder for various users which contain data.
    Is this correct? How do you structure this over several disks? Do you move the "users" folder and or application folders to a different drive or partition? What are considered to be the best practices in that regard?

    I never found putting any applications on another drive helps, even with multiple 15K drives.
    I would invest in a faster drive for your system though.
    And yes, it can help to use 2nd drive for the user account(s)
    System control panel "Accounts" - unlock, command + control + click on the account's name and you can set the location of where it is...
    /Volumes/volname/Users/acccount
    Just copy or move or set up the folders (Users, and "myaccount") on the drive or partition of drive.
    Also, you may want to have a scratch disk or partition, and a media drive or for editing.
    http://www.barefeats.com/harper14.html - WD 640GB Caviar $83 @ MacSales
    http://eshop.macsales.com/item/Western%20Digital/WD6400AAKS/
    http://www.barefeats.com/hard94.html - 1TB drives compared

  • Directory structure in trash folder using cmsdk

    Hello forum community!
    We are using cmsdk to manage files online and have a problem with trash folder . If someone deletes whole directory, all structures are gone (only “flat files” are shown in trash) .Is there a possibility to show whole directory structures in the trash folder?
    Is this a configuration promlem ?
    regards,
    krystian

    Hello,
    Yes I mean the deleted Document.
    Let’s say I have a workspace with 3 folders (folder1, folder2, folder3). In every folder there are 3 docs folder1_doc1.doc, folder1_doc2.doc, in folder2 folder2_doc1.doc ...
    Now I delete folder1. I see in the trash of the workspace just the deleted files (folder1_doc1.doc...) without directory structure.
    What I want is to have a possibility do recover whole directory structure (folder1 including folder1_doc1.doc...).
    I hope it's clear now :-)
    Regards
    Krystian

  • Oracle Inventory Orgs Structure

    Hi,
    We are working on Oracle Applications 11i, in Inventory, Purchasing, Payables, Fixed Assets, and General Ledger Modules.
    Our Inventory Organisation Structure is as follows: We have One master items organisation and 3 inventory organisations for different items with different material accounts.
    We have a request from the Finance department to implement a structure that includes three different inventory organisations and under each one we have different items major categories each assigned to a different receiving accounts.
    Is there anyway we can do this? and how?
    Can we have multiple sub receiving/expense accounts for each different inventory organisation and how can we implement it?
    Thanks...

    Hi user;
    Please check below notes and see its helpful for your issue:
    [link1|http://download.oracle.com/docs/cd/A97501_01/acrobat/115qpim.pdf]
    [link2|http://download-west.oracle.com/docs/cd/B15436_01/current/acrobat/115qpig.pdf]
    [link3|http://www.scribd.com/doc/3185368/Oracle-Applications-11i-]
    Regard
    Helios

Maybe you are looking for

  • Reg: Decimal Notation In quatity

    Dear All,   i have 1 issue in decimal notation in quatity in script. Ex: I am getting quatity like 1000.000 it is assign to Character Varriable but i need to get like 1,000 but i am geeting 1.000 This is happening for only 1st line items rest items i

  • Does anybody know a good free .doc or .docx test editor for the iPad?

    is there a good free text editor for the ipad 2?

  • WebDynpro application  URL

    HI, I have small question just out of curiosity! When we create a webdynpro appliocation for a component ,a URL is generated. If I move this webdynpro component to Production system , does the new URL is assigned to application automatically? or how

  • AppliedOLAP documentation

    Folks Does anyone have a document on how to use the advanced security manager. My office enviroment won't allow me to run it as an installable. Please do forward a copy if you have one to [email protected]

  • E3 w/ Pocket PC 2003 SE

    I'm having difficulty launching applications when logged into a Tarantella E3 server via my PDA w/ Pocket PC 2003 SE. I can see that my application is available; however, when I click on it nothing happens. Any suggestions?