Append structure -- to structure

i made append structure to cekko and it's weel done i get zacekko.
the problem is:  i want to delete the zacekko , how i can do it?
what the steps..?

1. Goto se11
2. enter your append structure name.
3. press delete
4. It will delete this append,
also in the original table/structure
where it is used, AUTOMATICALLY.
******************************8
or
Select that structure and click on the '-' icon which will delete
then goto SE14 , Adjust and Activate that table

Similar Messages

  • How to append S950 Info structure with the structure ZS950

    I have created Info structure ,now How to append S950 Info structure with the structure ZS950

    Refer this link:
    Addition of a new field to a standard table .
    Regards,
    ravi

  • Flat structure,deep structure, and info structure

    hi,
    What is meant by flat ,deep ,info structures what is difference among them?

    Flat structure:
    If you have a structure with list of fields on it and You can have a structure with in the structure included
    Deep structure:
    If you have tabletype(internal table) included in the
    structure
    Flat structures contain only elementary data types with a fixed length (no internal tables, reference types, or strings).
    The term deep structure can apply regardless of whether the structure is nested or not
    The technical difference between deep structures and all others is as follows.
    When you create a deep structure, the system creates a pointer in memory that points to the real field contents or other administrative information.
    When you create a flat data type, the actual field contents are stored with the type in memory. Since the field contents are not stored with the field descriptions in the case of deep structures, assignments, offset and length specifications and other operations are handled differently from flat structures

  • HOW TO INTEGRATE ENTERPRISE STRUCTURE, PERSONNEL STRUCTURE AND ORGANIZATION

    HOW TO INTEGRATE ENTERPRISE STRUCTURE, PERSONNEL STRUCTURE AND ORGANIZATIONAL STRUCTURE?

    Hi assuming u r looking at OM-PA INTEGRATION
    find these relevant reports u've got to run.
    RHINTE00 Transfer Organizational Assignment (PA -> PD)
    RHINTE10 Prepare Integration (OM with PA)
    RHINTE20 Create missing objects (OM or PA)
    RHINTE20_ALT Check program for PA-PD integration
    RHINTE30 Transfer org. assignment in batch input folder for infotype 0001
    RHINTECHECK also is useful.
    also the ensure in T77S0 integration switch PLOGI ORGA X(is activated)Feature PLOGI.
    hope it helps.

  • Appending BIW_MARC_S Extract Structure

    Gurus
    I am trying to enhance BIW_MARC_S with FABKZ and MANDT from MARC and also STPRS from MBEW. When I run a check I get an error message about not having the reference table AND reference field filled in for STPRS when I add MBEW & STPRS to the Currency/Quantity Fields Tab and run the check I get a message saying that it does not exist when I check SE11 for the structure of MBEW it does in fact exist.  What am I missing?  Your assistance will be greatly appreciated

    I needed to reference T001 WAERS field

  • How to add F4 pop-up to a zfield (appended in the structure) in the search.

    Hi Friends,
    I have a doubt and need your help to get it resolved.
    I have a search view, and i have appended a field Product_hierarchy to it. now the field is displayed in the UI .
    I have added the component usage of the product category search help in my component also.
    now i tried to put the code in get_dquery_valuehelps:
    WHEN 'ZZPROD_HIERARCHY'.
            CALL METHOD cl_crm_uiu_bp_cust_get=>get_values_for_field
              EXPORTING
                iv_fieldname   =       ................................... ( what should i enter here)
               IV_PARTNER     =
              RECEIVING
                rt_value       = lt_ddlb
    or i should follow some other approach. right now i am getting Prod_hierarchy in UI with the DDLB showing message 'This Method is not implimented yet'
    Please suggest.
    Regards,
    VD

    You need to implement get_v method.
    also implement an outbound plug
    also implement an event eg: SEL_IBASECOMPONENT.  this gets called when you close the popup
    Example --
    method GET_V_IBASE_COMPONENT.
      create object rv_valuehelp_descriptor type cl_bsp_wd_valuehelp_navdescr
      exporting
        iv_outbound_plug = 'OP_FINDIBASECOMPONENT'.
    endmethod.
    method OP_FINDIBASECOMPONENT.
      data:
            lv_title type string.
      IF ibcompvaluehelp_popup IS NOT BOUND.
        lv_title = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT/IBCOMP_SEARCH' ).
        ibcompvaluehelp_popup = comp_controller->window_manager->create_popup(
                                             iv_interface_view_name = 'MainWindow'      
                                             iv_usage_name = 'ZWTS_IBaseVH'                 "the comp usage name     in the component
                                             iv_title = lv_title ).
      ENDIF.
      ibcompvaluehelp_popup->set_on_close_event( iv_view = me iv_event_name = 'SEL_IBASECOMPONENT' ).
      ibcompvaluehelp_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
      ibcompvaluehelp_popup->open( iv_inbound_plug = 'SEARCH_COMP_F4' ).    "look at the child component to find plug.. you can assign "DEFAULT" if not sure
    endmethod.
    METHOD eh_onsel_ibasecomponent.
      lv_context_node = ibcompvaluehelp_popup->get_context_node( iv_cnode_name = 'IBCOMPONENTLIST' ). "look the child component and find the context node  related to the search help result list
      lv_col_wrapper = lv_context_node->collection_wrapper.
      lv_current ?= lv_col_wrapper->get_current( ).  "the selected record from the search help(child component) will be available here
    "then pass value from this entity current to your own context node(parent component)

  • Assign global array of structures of structures of std strings in a dll

    I have a dll which consists of three c files. Find bellow the c file of the loader and the three files of the dll. In dll, file 1 and file 2 are almost identical, static arrays names and sizes, structure names, Prepare_1() and Prepare_2() functions. There
    is a small difference in the function Prepare_1 in the way MuxStatusSupl[ u32Idx ].FileInfo.Name is assigned and there I get an exception. Another difference is that the structure StructStatus in file 2 has an extra member compare to file 1. From this point
    I couldn't strip down even more the sample code because small changes make the problem disappear without, I'm afraid, really solving the problem. That's why I have put so much code here, I'm not even sure what is relevant and what not. For example, if I add
    in file 1 in the StructStatus the extra member u32ExitPoint (and, of course, I modify Status_Init accordingly), I don't see the problem anymore.
    ///////////////////////////////////////////////////// loader file begin ////
    #include "stdafx.h"
    int main(int argc, char* argv[])
    {   HINSTANCE hDLL = LoadLibrary( DLL_FQN_FILE_NAME );
        if( void ( * pCreateDllInterface )( void ) =
                (void(*)())GetProcAddress( hDLL, "CreateDllInterface" ) )
            pCreateDllInterface();
        FreeLibrary( hDLL );
    ///////////////////////////////////////////////////// loader file end //////
    ///////////////////////////////////////////////////// dll main file begin //
    extern void Prepare_1( void );
    extern void Prepare_2( void );
    extern "C" _declspec(dllexport) void CreateDllInterface( ) { Prepare_1(); }
    ///////////////////////////////////////////////////// dll main file end ////
    ///////////////////////////////////////////////////// dll file 1 begin /////
    #include <string>
    #include <sys/stat.h>
    #define STORAGE_SIZE  254
    typedef unsigned long  int uint32;
    struct StructFileInfo
    {   std::string Name; 
        struct stat FileStatus; 
    static struct StructStatus
    {   bool bDownloaded;      bool bDownloadedLast;
        bool bCalled;          bool bCalledLast;
        uint32 u32EntryPoint;
        StructFileInfo FileInfo;
    } MuxStatusMain[ STORAGE_SIZE ], MuxStatusSupl[ STORAGE_SIZE ];
    void Prepare_1() 
    {   struct stat Stat_Init;
        memset( &Stat_Init, 0, sizeof(struct stat) );
        StructStatus Status_Init =
                        { false, false, false, false, 0, { "", Stat_Init } };
        std::fill_n( MuxStatusMain, STORAGE_SIZE, Status_Init ); //  this seems
                               // to overwrite MuxStatusSupl[ 3 ].FileInfo.Name
        for( uint32 u32Idx = 0; u32Idx < STORAGE_SIZE; u32Idx++ )
            MuxStatusSupl[ u32Idx ].FileInfo.Name = ""; // crash when u32Idx==3 
    ///////////////////////////////////////////////////// dll file 1 end ///////
    ///////////////////////////////////////////////////// dll file 2 begin /////
    #include <string>
    #include <sys/stat.h>
    #define STORAGE_SIZE  254
    typedef unsigned long  int uint32;
    struct StructFileInfo
    {   std::string Name; 
        struct stat FileStatus; 
    static struct StructStatus
    {   bool bDownloaded;      bool bDownloadedLast;
        bool bCalled;          bool bCalledLast;
        uint32 u32EntryPoint;  uint32 u32ExitPoint;
        StructFileInfo FileInfo;
    } MuxStatusMain[ STORAGE_SIZE ], MuxStatusSupl[ STORAGE_SIZE ];
    void Prepare_2()
    {   struct stat Stat_Init;
        memset( &Stat_Init, 0, sizeof(struct stat) );
        StructStatus Status_Init =
            { false, false, false, false, 0, 0xFFFFFFFF, { "", Stat_Init } };
        std::fill_n( MuxStatusMain, STORAGE_SIZE, Status_Init );
        std::fill_n( MuxStatusSupl, STORAGE_SIZE, Status_Init );
    ///////////////////////////////////////////////////// dll file 2 end ///////
    I get the crash with the message: Unhalted exception at 0x10001f90 in Test.exe: 0xC0000005: Access violation writing location 0x1006d320
    Another strange phenomena is that in watch window, expressions
        sizeof(MuxStatusMain)/sizof(MuxStatusMain[0])
        sizeof(MuxStatusMain)/sizof(MuxStatusMain[0])
    show both a value of 232 instead of 254 (but if I add in file 1 in the struct the missing member they show the correct values). On the other hand, if I printf those values, they are correct, 254.

    "Another difference is that the structure StructStatus in file 2 has an extra member compare to file 1."
    That's not going to work. It is possible to define the same struct in different translation units but the definitions need to be identical. Use different names for StructFileInfo and StructStatus.

  • Dictionary Structure---data structure of Dictionary

    I don't know how to build a data structure of dictionary...
    somebody said it's was built by binary tree. but I don't know how.
    somebody helps me????
    thanks for reading my topic

    A dictionary is not a tree/hierarchical structure. Have you ever opened a dictionary before?! If you have even once, you already know the structure of a dictionary. Now, how to build that in Java is another question. I'm not sure of your requirements but you could start by creating an object that represents a single term, it's definitions, usages, etc. Then you can create a List of them (and sort them alphabetically). Simple enough?

  • Crm datasource  extract structure &communication structure

    hello all,
    how to find standard datasource extract structure in CRM.
    its very urgent.
    i will give full points.
    advance thanks to all.

    hi,
    check out the following link to know about the CRM BI Conetnt all(infocubes, datasource, roles)
    http://help.sap.com/saphelp_nw2004s/helpdata/en/04/47a46e4e81ab4281bfb3bbd14825ca/frameset.htm
    hope this help you
    regards
    harikrishna N

  • Event structure, case structure, iteration number

    Hi
    I am trying one example about Event Structure from the book,  LabVIEW for Everyone: Graphical Programming Made Easy and Fun. 
    The example in the book looks like this:
    The number of 'work done' equals 'iteration number'.
    But when I build a Vi and try this example, I got this:
    iteration number is two times the 'work done'.
    I have attached my Vi. Does anybody know what's wrong with my Vi
    Thanks
    Bing
    Solved!
    Go to Solution.
    Attachments:
    do some work.vi ‏10 KB

    Both Activation and Deactivateion of the boolean causes Value Change events, but you only add 1 when it's activated. If you set the booleans mechanical action to Latch instead of Switch they should be the same.
    /Y 
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • Case structure & event structure

    1.What are the disadvantages of case strucure?
    2.What are the advantages of event structure?

    Are these test questions? I could name 10 for each, but why are you asking?
    While there are often many ways to accomplish the same thing, Case structures and Event structures serve different purposes. Straight from the Help file:
    Case Structure
    Has one or more subdiagrams, or cases, exactly one of which
    executes when the structure executes. The value wired to the selector terminal
    determines which case to execute and can be Boolean, string, integer, or
    enumerated type. Right-click the structure border to add or delete cases. Use
    the Labeling tool to enter value(s) in the case selector label and configure the
    value(s) handled by each case.
    Event Structure (Not in Base Package)
    Has one or more
    subdiagrams, or event cases, exactly one of which executes when the structure
    executes. The Event structure waits until an event happens, then executes the
    appropriate case to handle that event.
    Right-click the structure border to add new event cases and configure which
    events to handle. Wire a value to the Timeout
    terminal at the top left of the Event structure to specify the number of
    milliseconds the Event structure should wait for an event to occur. The default
    is –1, indicating never to time out.

  • Structure 2 structure transfer

    Hi
    I have two straucture lets say struc1 and struc 2
    i want to pass the value of struc2-field1 to struct1-field2 ( *fields name are not same here)
    both structure are already filled.
    struct1 are filled in this way
    struct-name1 = abc
    struct-name2 = pqr
    struct2 are filled in this way
    struct-name1 = aaa
    struct-name2 = pqr
    My problem is i am doing
    struct-name1 = struct-name2. ( * Fields have different name)
    Logically struct-name2 value has to pass in struct-name1.
    but its not working it coudn't able to assigned it.
    please give me solution for it.
    Thanks
    Subham

    Hi,
    Try to use below code
    DATA  :  BEGIN OF struct1,
                  name1(4) TYPE C,
                  name2(4) TYPE C,
    END OF struct1.
    DATA : BEGIN OF STRUCT2,
         name1(4) TYPE C,
         name2(4) TYPE C,
    END OF struct2.
    struct1-name1  =  'ABC'.
    struct1-name2  =  'PQR'.
    struct2-name1 = 'AAA'.
    struct2-name2 = 'PQR'.
    *MOVE-CORRESPONDING struct1 TO struct2.  " To Copy all the corresponding fields from struct1 to struct2.
    or
    struct1-name1 = struct2-name2.
    WRITE : / struct1-name1,
                   struct1-name2,
                   struct2-name1,
                    struct2-name2.
    Move corresponding statement moves value from one structure to another structure
    If you want to pass the data from one internal table to another internal table, then if the structure of both the table will be same then you can assign directly like that
    it_tab1 = it_tab2.
    or
    it_tab1[] = it_tab2.

  • PSE4 - Folder structure - Collections structure

    Hi!
    I've always used some other program to organize my photo's, but now I want to use PSE4, because of all it's functions. The only thing is... Is there a way of just importing all my pics by somehow converting the folder structure they are in now to the collection-structure with the same hierarchy? And a -for me- even more important question: is there a way of exporting the collection structure to folders on my pc (WITH the files in them!)??? 'Coz as I see it if I want to make a back-up of all my pictures organized in PSE, it just creates just ONE folder on my drive with all of my ten-thousands of pictures in it...
    I hope this question is clear and I even hope more there'll be a usefull answer soon!
    Thanks beforehand for all answers!
    Greetz, Thomas

    Thomas,
    Basic comments
    I doubt that a direct transfer of your folder structure will be an efficient and effective use of the Organizer. From several folder structures that I have seen, most people have more separate folders in their sturucture than is necessary once they create Tags. Structure is still possible because Tags can have a structure with Category and Sub-Category; however the structure can often be less complicated.
    My advice is that you read about
    b Tags.
    It sounds like you are planning to use Collections immediately - not a good idea because there is better searching capability using Tags to identify photos.
    One function that sometimes aids the transition to Tags is the "Instant Tag" feature. Use the View > Arrangement > Folder Location. The Instant Tag will make a tag from the Folder Name. Specifically this is the name of the last level folder in the folder tree (the folder that actually contains the photo files). One consideration is that you do need to be cautious in its use if you have multiple lowest level folders named "Birthday Party" or whatever.
    >as I see it if I want to make a back-up of all my pictures organized in PSE, it just creates just ONE folder on my drive with all of my ten-thousands of pictures in it...
    If you use the Elements Backup command, the files in the Backup folder are renamed and do not have a folder structure. When you use the Elements Restore command, the files are renamed back and the folder structure is recreated.
    However, if you use the Burn to CD/DVD Copy function, you are correct there is no folder structure on the disc. Of course, you can still use whatever burning software you have on your PC to burn whatever Windows folders you wish to CD or DVD discs.
    Barb O

  • ECM on salary structure / tariff structure

    Hi,
    to my understanding Enterprise Compensation Management is based on salary structures maintained in table T710. That means IT0008-CPIND is set to 'S'
    Has anybody made experience with ECM for tariff employees? Meaning that table T510 is used?
    Thanks a lot in advance for your response!
    Cheers
       Bianca

    V_T510A u have to configure ur PST
    V_T510G  u hve to configure ur PSA
    and assign the feature tarif through PE03
    and ur Pay scale structure is define through Tarif only

  • Allocation Structure & Source Structure

    Hi,
    Can any body explain me what is the difference between the Maintain allocation structure & Maintain source structure in order to define settlement profile.
    More helpful if provided with an example.
    Thanks,
    Srini

    During settlement, costs incurred under the primary and secondary cost elements by a sender are allocated to one or more receivers. When you settle by cost element, you settle using the appropriate original cost element.
    An allocation structure comprises one or several settlement assignments. An assignment shows which costs (origin: cost element groups from debit cost elements) are to be settled to which receiver type (for example, cost center, order, and so on).
    A source structure contains several source assignments, each of which contains the individual cost elements or cost element intervals to be settled using the same distribution rules.
    In the settlement rule for the sender you can define one distribution rule, in which you specify the distribution and receivers for the costs for each source assignment.
    Example
    The object in question has incurred both direct and overhead costs. The direct costs are to be divided 50% each between a fixed asset and a cost center, while the overhead is to be settled in full to an administration cost center in CO.
    To do this, you would create a source structure with two source assignments:
    1. Direct cost elements
    2. Overhead cost elements
    pls assign points to say thanks.

Maybe you are looking for

  • Adobe Acrobat 9 Standard - Czech, Hungarian, Polish, Slovak - INSTALLER

    Hello, I'm looking for Adobe Acrobat 9 Standard - (Czech, Hungarian, Polish, Slovak) installer. I lost my DVD and i am unable to reinstall Acrobat on the new computer. I called to customer service but they don't have installer for Acrobat Standard 9.

  • Bridge CS3 doesn't show color profiles althought they are there

    I have a folder with various TIFF files, some are in CMYK (Fogra27), some in RGB but none show the profile in Bridge, although I turned it on in the settings. I can see that they have profiles in PsCS3. What may be the cause? Thanks!

  • ABAP Query SUB-TOTALS by Month

    Hi, I am making an ABAP Query and I am trying to create sub-totals per month. EX.          Quantity         Date                     1           01/01/2008                     2           01/02/2008 sub-total        3                     1          0

  • How can i save my importing photos in iPhoto but edit in photoshop elements 11?

    how can i save my importing photos in iPhoto but edit in photoshop elements 11?

  • PDFs from InDesign CS4 too large

    I'm trying to make a small PDF of a 20pp A4 publication (magazine) to email to my client (file/adobe PDF presets), but no matter what I do the files are huge. This never used to be an issue in earlier versions of CS??? Help Please