Infoobject used in structure stru_

Hi guys,
I want to delete an infoobject which should not be used any longer. I removed it from all cubs, DSO and other obejcts. Where-used list of infoobject is empty. But if I try to delete the infoobject it tells me that it is still used in structure stru_.... In the structure I found the data element of my infoobject as a member. But if I try to find out where this structure is used in SE11 with where-used list, result is empty. Because it's in the SAP namespace I can'T delete it. Any hints where this structure could be used and how I can delete it? Maybe a query?
Regards,
Juergen

Hi Edwin,
infoobject can not be found in both tables. The problem is with table/structure /bic/oizhzberabg. This data element is used in the structure stru_..... and I don'T know why has been created this structure or where it is still used and can not be found in where-used list. Because it does not start with Z or Y, I assume it was created by system. Maybe planning?
Regards,
Juergen

Similar Messages

  • List of infoobject used in queries

    hello!
    can someone tell me how to find the list of the infoObjects (fields) that are being used in all queries based on some set of infoProviders?
    I would like to know what tables I should be looking for.
    What I'm trying to find is  the list of infoObjects used by all my users, from the genereal list of infoObjects found in the infoProviders they use.
    thank you very much,
    Roman

    Function Modules RSZ_I_BASIC_CHA_WHERE_USED and RSZ_DB_KEYFIG_WHERE_USED will be able to tell you which queries an InfoObject is used in. You can use the RSDIOBJ table to get a list of the InfoObjects that are active in your BW system.
    Create an ABAP program that does the following:
    1) SELECT all of the InfoObjects in RSDIOBJ into an ITAB where the RSDIOBJ-OBVERS = 'A' (Active) and RSDIOBJ-IOBJTP = 'CHA' or 'KYF' (Character and Key Figure respectively).
    2) Copy ITAB into another ITAB.
    3) Delete all records with InfoObject type of Key Figure in the first ITAB, so that you only have Characteristics in the ITAB.
    4) Delete all records with InfoObject type of Characteristics in the second ITAB, so that you only have Key Figures in that ITAB.
    5) LOOP through the Characteristics ITAB and call the RSZ_I_BASIC_CHA_WHERE_USED FM, for each row in the ITAB, with the Import Parameters of I_OBJNM being the InfoObject being processed, I_OBJVERS always equal to 'A' and I_QUERIES_ONLY always equal to 'X'. LOOP through the structure returned and populate to a third ITAB.
    6) After all Characteristics have been processed, LOOP through the Key Figures ITAB and call the RSZ_DB_KEYFIG_WHERE_USED FM, for each row in the ITAB, with the Import Parameters of I_OBJNM being the InfoObject being processed, I_OBJVERS always equal to 'A'. LOOP through the structure returned and populate to the third ITAB.
    Edited by: Dennis Scoville on Nov 3, 2009 3:34 PM

  • Error while loading an XML document using a structured application

    Hi,
    I try to load an XML document using a structured application defined in the default structapps.fm
    My code is shown down, extracted from the FDK API code sample.
    Problem, I always have the same message :
    "Cannot find the file named e:\xml\AdobeFrameMaker10\file. Make sure that the file exists. "
    Where "e:\xml\AdobeFrameMaker10\" is my install directory.
    So I assume that frame try to find the structapps.fm file but does not find it.
    What else can it be ?
    Does anyone knowns how to achieve this simple task using extendScript ?
    Thanks for any comments, Pierre
    function openXMLFile(myLastFile) {
        var filename = myLastFile.openDlg("Choose XML file ...", "*.xml", false);
        if (filename != null) {
            /* Get default open properties. Return if it can’t be allocated. */
            var params = GetOpenDefaultParams();
            /* Set properties to open an XML document*/
            /*Specify XML as file type to open*/
            var i = GetPropIndex(params, Constants.FS_OpenAsType)
            params[i].propVal.ival = Constants.FV_TYPE_XML;
            /* Specify the XML application to be used when opening the document.*/
            i = GetPropIndex(params, Constants.FS_StructuredOpenApplication)
            params[i].propVal.sval = "myApp";
            i = GetPropIndex(params, Constants.FS_FileIsOldVersion)
            params[i].propVal.ival = Constants.FV_DoOK
            i = GetPropIndex(params, Constants.FS_FontNotFoundInDoc)
            params[i].propVal.ival = Constants.FV_DoOK
            i = GetPropIndex(params, Constants.FS_FileIsInUse)
            params[i].propVal.ival = Constants.FV_DoCancel
            i = GetPropIndex(params, Constants.FS_AlertUserAboutFailure)
            params[i].propVal.ival = Constants.FV_DoCancel
            /*The structapps.fm file containing the specified application must have
            already been read. The default structapps.fm file is read when FrameMaker is
            opened so this shouldn't be a problem if the application to be used is
            listed in the structapps.fm file.*/
            var retParm = new PropVals()
            var fileObj = Open(filename, params, retParm);
            return fileObj
        } else {
            return null;

    Pierre,
    Depending on the object "myLastFile", the method openDlg might not even exist (if the myLastFile object is not a File object, for instance). And I do not see any need for the myLastFile anyhow, as you are presenting a dialog to select a file to open. I recommend using the global ChooseFile( ) method instead. This will give you a filename as string in full path notation, or null when no file was selected in the dialog. I am not sure what your ExtendScript documentation states about the return value for ChooseFile, but if that differs from what I am telling you here, the documentation is wrong. So, if you replace the first lines of your code with the following it should work:
    function openXMLFile ( ) {
        var filename = ChooseFile ( "Choose XML file ...", "", "*.xml", Constants.FV_ChooseSelect );
    While writing this, I see that Russ has already given you the same advice. Use the symbolic constant value I indicated to use the ChooseFile dialog to select a single file (it can also be used to select a directory or open a file - but you want to control the opening process yourself). Note that this method allows you to set a start directory for the dialog (second parameter). The ESTK autocompletion also gives you a fifth parameter "helplink" which is undocumented and can safely be ignored.
    Good luck
    Jang

  • Customer Master using Appended structure KNA1

    Hi
    We have to update few ZZ description fields in ZAKNA1, which are not part of user interface in XD01/02/03. The available options are such as LSMW, Batch input require code addition through user exit ZXF04U01/ EXIT_SAPMF02D_001.
    I would like to use BAPI as we have a plan to use web services. Any idea how to extend the BAPI's such as BAPI_CUSTOMER_CHANGEFROMDATA1 or BAPI_CUSTOMER_CREATEFROMDATA1 using best practice?  I donu2019t find any extension structures like other BAPIu2019s have. Without ExtensionIn and ExtensionOut parameters, a BAPI can not be enhanced correct?
    The version we are using is ECC 5.0. Any ideas with customer master BAPI will be greatly appreciated.
    Bala

    Hi Bala,
    Just some general comments without having looked at your specific problem. Since you're on ECC 5.0 you cannot use the new [Enhancement Framework|http://help.sap.com/saphelp_nw2004s/helpdata/EN/94/9cdc40132a8531e10000000a1550b0/frameset.htm], which would make such changes more easy...
    A rather awkward workaround for extending the BAPI's is sometimes to add append structures to an IMPORT parameter of the BAPI. However, this is a rather dangerous and limited approach, because you might get into trouble depending on where the structures are used (i.e. if you add a field, it might cause harm in other programs that use the structure) and you also have to study the source code to see if you even could utilize those additional fields.
    A pretty generic option in lieu of other approaches is to generate a custom wrapper function module around the standard BAPI. Within your custom BAPI you can add the missing fields as parameters, call the standard BAPI and then do the additional updates. The big advantage of such a solution is that
    <ol>
    <li>Your change/additional logic is obvious (not hidden in a customer exit or BAdI, which are often harder to find when troubleshooting or changing functionality)</li>
    <li>Any changes to the standard BAPI will automatically also take effect in your custom BAPI (since you didn't copy the original one); this excludes of course interface changes, but here you anyhow would have to do something...</li>
    </ol>
    Should you have custom fields that are already exposed on the customer maintenance screens via enhancements, then you might want to consider using the wrapper approach, but simply export the additional data to memory, then call the standard BAPI and within the customer/user exits handling the additional fields fill them via an import from memory.
    Cheers, harald

  • How to add new fields in sap copied standard form using itcsy structure

    hi guys,
      i want add some fields in sap script copied standard form using itcsy structure.
    let me know the procedure with any example.
    thanks,
    anitha.

    Hii anitha
    plz c code below
    Syntax goes like this
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    Example:
    In script form
    /: PERFORM READ_TEXTS IN PROGRAM 'Z08M1_FORM_EKFORM1'
    /: USING &EKKO-EKORG&
    /: USING &EKPO-WERKS&
    /: USING &EKKO-EKGRP&
    /: USING &EKKO-BSTYP&
    /: CHANGING &COMPNAME&
    /: CHANGING &SENDADR&
    /: CHANGING &INVCADR&
    /: CHANGING &COMPADR&
    /: CHANGING &COVERLTR&
    /: CHANGING &SHIPADR&
    /: CHANGING &REMINDER&
    /: CHANGING &REJECTION&
    /: CHANGING &POSTADR&
    /: CHANGING &LOGO&
    /: ENDPERFORM
    In program
    FORM Read_texts - To extract the standard texts from the table *
    FORM READ_TEXTS TABLES IN_PAR STRUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA : L_EKORG TYPE EKORG,
    L_WERKS TYPE WERKS_D,
    L_BSTYP TYPE BSTYP,
    L_EKGRP TYPE BKGRP.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKORG' .
    CHECK SY-SUBRC = 0.
    L_EKORG = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKPO-WERKS' .
    CHECK SY-SUBRC = 0.
    L_WERKS = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKGRP' .
    CHECK SY-SUBRC = 0.
    L_EKGRP = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-BSTYP' .
    CHECK SY-SUBRC = 0.
    L_BSTYP = IN_PAR-VALUE.
    CLEAR Z08M1_ORG_TEXTS.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = L_BSTYP.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = SPACE.
    ENDIF.
    READ TABLE OUT_PAR WITH KEY 'COMPNAME'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COMP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SENDADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_ADRS.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'INVCADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_INVC.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COMPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_CPAD.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COVERLTR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COVR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SHIPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_SHIP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REMINDER'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RMDR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REJECTION'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RJCT.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'POSTADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_POST.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'LOGO'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_LOGO.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    reward points if useful
    regards
    Jaipal

  • How to use the structure in the EXIT_SAPMM06E_013 function module

    Hello Experts,
    Please guide me how to use the structure defined in function modules under  table tab in the driver program for smart form to fetch the data. Please post some sample code if available.
    Best Regards,
    Sandesh.Sreyamsh

    Can you please elaborate little bit more what is the actual requirement?

  • How to make use of structure in my program

    hai!
          i want to know how i can use the structure "rstxt'
    which contains a field by name "txline". this structure is used to hold basic data text present in basicdata1 view
    of transaction mm01. i want to know how i can access this structure in my pgm.here, i want to check this basic data text and if proper data text is not present then  i am trying to  call transaction mm02 using bdc.
    any help is appreciated.<b></b>

    Hi, Try this example
    DATA:BEGIN OF ITAB OCCURS 10,
          QMNUM LIKE QMEL-QMNUM,
          DESC(72),
         END OF ITAB.
    DATA:F_TDOBJECT LIKE THEAD-TDOBJECT,
         F_TDNAME   LIKE THEAD-TDNAME,
         F_TDID     LIKE THEAD-TDID,
         ITAB_LINES LIKE TLINE OCCURS 0 WITH HEADER LINE.
          F_TDID     = 'LTQM'.
          F_TDNAME = T_DET-QMNUM.
          F_TDOBJECT = 'QMMA'.
          CALL FUNCTION 'READ_TEXT'
            EXPORTING
              CLIENT                  = SY-MANDT
              ID                      = F_TDID
              LANGUAGE                = SY-LANGU
              NAME                    = F_TDNAME
              OBJECT                  = F_TDOBJECT
            TABLES
              LINES                   = ITAB_LINES
            EXCEPTIONS
              ID                      = 1
              LANGUAGE                = 2
              NAME                    = 3
              NOT_FOUND               = 4
              OBJECT                  = 5
              REFERENCE_CHECK         = 6
              WRONG_ACCESS_TO_ARCHIVE = 7
              OTHERS                  = 8.
          DESCRIBE TABLE ITAB_LINES LINES SY-TFILL.
          IF SY-TFILL > 0.
            LOOP AT ITAB_LINES.
              ITAB-QMNUM = T_DET-QMNUM.
              ITAB-DESC = ITAB_LINES-TDLINE.
              APPEND ITAB.
              CLEAR ITAB.
            ENDLOOP.
          ENDIF.
    reward points if it helps
    kaki

  • Use of structure BAPIPAREX in FM for BTE CRM0_300

    Hello guys
    I use the BTE CRM0_300 tu update data in table KNA1 with data coming from CRM EEWB.
    First, in the FM I get the guid of the partner from table T_BAPIMTCS in entry with tabname BSC_MAINO.
    Then I extract the EEWB data with function COM_BUPA_BAPIMTCS_TO_SET to the same structure as the one generated in CRM with EEWB.
    I have understood that I have to use the table T_BAPIPAREX to insert the CRM data in SD attribut 2.
    I have found that the 2 structure BAPICUSTOMER_KNA1 and BAPICUSCHX (I'm not sure of this one) to pass the data to update in table KNA1 and which data is modified.
    But I'm not confident in this way of updating table KNA1.
    Can somebody confirm me to use this structure to update table R/3 data in the inbound exit CRM0_300 ?
    Thanks

    Try to use BAPITLINE with LIKE in hte tables tab.
    Please look at the BAPI_ECMORD_SET_LONGTEXT

  • List of infoobjects used in a Query

    Hello All,
    Is there a way to know the list of infoobjects used in a query. i know i can note it down manually by opening the query in interface and the noting down maunally but i have to do the same operation for almost more than 50 queries and every query is having a good no of infoobjects used.
    i don't even find it in MetaData Repository. if there is some transaction or some place which give me the list of all infoobjects used in a query so i can simply copy paste the list in my excel report then noting down every infobject name manually.
    Thanks in advance for the help, it can save some precious time of mine.
    Regards
    Sonal

    tables may useful : RSZCOMPDIR RSZELTXREF RSZELTDIR
    RSZCOMPIC RSZELTPRIO RSZELTPROP RSZELTATTR RSZELTTXT
    RSZRANGE RSZCALC RSZCEL RSZGLOBV
    code :
    report zio_query.
    tables: RSZELTTXT,
    rszeltdir,
    rszeltxref,
    rszrange,
    RSZSELECT.
    data : begin of it_result occurs 0,
             iobjnm like rszselect-iobjnm,
           end of it_result,
           lv_iobjnm like rszselect-iobjnm.
    select-options:
    s_query for rszeltdir-mapname.
    start-of-selection.
    select * from rszeltdir where mapname in s_query
    and objvers = 'A'.
      select single * from RSZELTTXT where eltuid = rszeltdir-eltuid
      and objvers = 'A' and langu = 'N'.
      write: / rszeltdir-mapname, rszelttxt-txtlg.
    refresh it_result.
      select * from rszeltxref where seltuid = rszeltdir-eltuid
      and objvers = 'A'.
    *characteristics
      select iobjnm into lv_iobjnm
      from RSZSELECT where eltuid = rszeltxref-teltuid and objvers = 'A'
      and iobjnm <> '1KYFNM'.
        it_result-iobjnm = lv_iobjnm.
        append it_result.
      endselect.
    *keyfigures
      select low into lv_iobjnm
      from rszrange where eltuid = rszeltxref-teltuid and objvers = 'A'
      and iobjnm = '1KYFNM'.
        it_result-iobjnm = lv_iobjnm.
        append it_result.
      endselect.
      endselect.
      sort it_result by IOBJNM.
    delete adjacent duplicates from it_result comparing mapname IOBJNM.
      loop at it_result.
        write: / it_result-IOBJNM.
      endloop.
      uline.
    endselect.

  • Error in using the Structure

    Hi Experts,
    I am using same structure in different queries, actually the two queries are same (but saved as with small changes).
    In the structure of one query i have created one formula and assigning 0.
    When i replicate the same in the other query i am facing an error "uncaught exception" and i am not able to run the query.
    Can anyone help on this.,as this issue is critical  would appreciate  fast reply.
    Regards

    delete ur query b
    save ur query a AND do SAVE AS and save it as query c
    now make ur changes
    make all small changes
    and see if it let u do that.

  • How to use a structure in CAF entity service

    Hi All
    I want to use a structure as datatype of a complex attribute in a CAF entity service. I tried to use a dictionary structure created in the dictionary part
    of the CAF project and added it to the public part of this DC.But I can't find it in the list of data structures while trying to mention datatype for a complex attribute in an entity service. Can any body suggest how to do it.
    Cheers
    Sudip

    Hello Sudip,
    You can create a complex structure by doing the following:
    1.  From the Attributes Tab, right click on your Entity and select "Create Attribute"
    -  Enter an attribute name and description
    -  select "Complex Attribute" checkbox
    -  select "Finish"
    2.  Right click on the newly created complex attribute and select "Create Sub Attribute".  Do this for each attribute in your structure.
    This complex structure can now be used in your CAF application and also CAF UI patterns.
    Creating complex attributes from the data dictionary is only usually used for creating enumeration types.  When doing this, you have to use the CAF enumeration editor to populate the values.  The "How to guide" that Jan refers to describes this.
    Regards,
    Austin.

  • How to use "Reference Structure" setting in analysis grid item

    Hello expert,
            in Bex analyzer, how to use "Reference Structure" setting in analysis grid item by example?
    Many thanks,

    The variable needs assigned a value, that's why you're getting prompted. When you execute the statement, it's not executing the variable and exec lines.
    Having script output available in a grid would be an enhancement request.

  • How to identify empty InfoObjects used in a Cube

    Hello Gurus!
    I need some help. How do I find empty InfoObjects used in a Cube?
    I have 20+ Cubes and I need to identify those objects in the cubes, which are empty /not filled/. Statistics
    Except writing an ABAP
    Thanks in advance
    Martin

    Thank you for such fast response!
    @Tarak: unfortunately in the TX: LISTCUBE /or display data via RSA1/ you cannot display all characteristics for 'larger' cubes. Additionally you would have to select filter on each characteristics separately.
    @Aduri: could you please give me a more detailed hint? I know cube statistics for load requests, for storage space, for DB time, for IO in report use, but not for IO data, no data.
    @Analyst: Transactional data. Well, to check each mapping for 20+ cubes is a possibility. I have hoped to find a faster way, however.

  • Use of structures in queries designer

    hi experts,
                       using structures in  Bex query designer increase the performance of query??

    Nope, using structure has nothing to do with increasing  the performance of query execution time. Actually if you use two structures and use those structures to create cell, that would have adverse effect on performance.
    thanks.
    Wond

  • Implement a program by using data structure

    i've learn link-list,b-tree,red black tree,hash table. now it's time for me to implement a program using any one of these. i've no idea about how to start, and what kind of program should i write? what kind of program use data structure? i want some simple example program to make me understand. can anyone help me?
    thank 4 u r time,
    makio

    what sort of program do use data structure? let's say
    i want to use binary search on data , how can i?As nasch said: pretty much any program uses data structures.
    Okay, let's say you want to try binary search. You could do that on an array, on a singly linked list, on a doubly linked list, probably on others that I can't think of right now.
    If you just want practice using the data structures you've learned, then why not write a binary search over several different ones? That will give you a feel for how they differ in usage and performance.
    Or, you can just pick any kind of program that interests you. Unless it's trivially small and simple, there will probably be a use for one or more of the data strux you've learned.
    A chat program needs data structures to hold curently connected users, ongoing conversations, maybe a queue for messages waiting to be sent.
    A card game needs to be able to search to see if a given card is in a given hand. Needs to hold all the cards in a deck that has to be shuffled. Dealing is like popping off a stack.
    A database of students and their courses might want to keep something in an ordered tree--by last name for instance.
    What applications interest you?

Maybe you are looking for

  • Authorization Issue to display BI Report

    Dear Expert We upgraded CRM (from 4.0 to 2007) and BI (to 7.0). I'd like to display a standard BI report from CRM WebClient. But I click on the link, I get the following error: User does not have the proper authorizations. But I have SAP_ALL in both

  • Flash movie won't play on the web server.

    It plays locally just fine. I used Flash and Dreamweaver to create the HTML code and neither have worked. I have all of the flash and html elements in the same folder on the server so I'm assuming it's not a path issue. Here's the one from Flash: <ht

  • How do i resolve error -1200?!

    when trying to access purchased content I get error -1200.  Help?

  • Changing commodity Code for material grp under certain plant

    Hi, I would like to change commodity code for some material group under certain plant May I know how to do this. I went to the following SPRO path, however, the table does not mention the plant and the material group for me to change. SD>Foreign Trad

  • IPOD NANO and a HIFI micro system

    Hi all, This may be a stupid question, but I have a 1Gb Nano and I have just bought a new hifi micro system with a USB port. I plugged the nano into the USB and the system said that there were no music files on my IPOD. I plugged the IPOD back into m