Search for unknow object in sap bw

Hello Gurus,
        I have a existing object " ZBPUR_DNC_DATA_PUSH ", do you know how can I search it out in the system? I don't know what it really is, but I want information for it.
Many thanks,

Try searching it in SE38, SE11, SE37, SE24 and in RSA1 --> Search  or in RSA1 --> Metadata repository.
Edited by: Pravender on Apr 25, 2010 6:01 PM

Similar Messages

  • Trex search for business object in portal

    Hi
    I would like to build a KM search iView in portal which enables users to search for business object from backend system.
    I have built up the indices for business object in the backend system. In portal->trex monitor->display index details, I can see the indices which are created from backend system. But soemhow, I feel the indices are not usable, as I can not see them in the indexing monitor. And after I created an KM search iview with search component 'search_input_indexes', my index created from backend can also not be shown in the preview of the iview.
    I guess there is some step missing. Any help will be appreciated.
    Thanks and best regards
    Yingzhi

    Hi Yingzhi,
    with current releases, business objects indexed through the ABAP-based Search Engine Service (SES) or directly from certain SAP solutions to TREX are not by default accessible from KM.
    The next release after NW2004s will enable Enterprise Search and provide the meta-search engine for parallel search access to business objects and KM documents.
    Please see the following presentation for some explanations on SES and Enterprise Search and note stated time-lines:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/73f3eedf-0501-0010-0aa6-950694c02f99
    In some monitors that access TREX directly from the portal, you may see the business object indexes, but they are not actually known to KM.
    Regards, Karsten

  • Activate Change pointers for TREX classification search for Business Objects

    Hey all...
    Does anyone out here has any idea on how to activate the change pointers for TREX classification search for business objects: - for me I am specifically doing it for Materials and Customers.
    Okay, let me explain the issue: -
    For TREX search, we need to schedule a background job for Delta Indexing. But Alas! Delta indexing does not capture the changes to Classification data of the business object.
    For this we activated the change documents for the particular class in the customizing. But to my surprise, change documents and change pointers for TREX are entrirely different.
    How do I know:
    Change ID of CDHDR does not correspond to Change pointer in table COM_SE_CPOINTER. Now by activating the change documents I am getting entry in CDHDR and CDPOS but the mentioned change pointer table still does not get the entry.
    I searched for BTEs and I got the below: -
    Now to me the very obvious one was 4003, but it is not called while changing the classification data for materials. Ofcourse I activated the Product and the function module.
    and now I am stuck!!
    Any pointers for the Change pointers would be really appreciated??
    Please share your knowledge even if you don't know the exact answer . I am new to TREX so possibly vague conversations could provide me a hint .
    Thanks,
    Best Regards,
    Shreya

    Hi Guys,
    This issue was solved by implementing the BTE 4005 (OPEN_FI_PERFORM_00004005_E). This particular event is triggered in the update task for saving changes to business object. So In my function module (corresponding to BTE), I have explicitly called the method to write an entry in COM_SE_CPOINTER, because we just need the reference of business object for which classification data is changed.
    Please refer the below code for more clarity.
    BTE position: -
    method called in FM to write change pointer.
    Thanks anyways, for all the responses.
    Cheers,
    Shreya

  • Searching for Nonprinting Objects

    Is it possible to do a search for objects with an attribute set to Nonprinting?
    I have this odd problem:  I work on a magazine, and we insert a little custom endmark image at the end of each story.  For some reason, whenever anyone edits that story in InCopy, the endmark's attributes change to Nonprinting.  I can't figure it out.  But I was wondering if there's an easy way to search on Nonprinting so I can quickly change them back.  Any ideas?
    Thanks, Phyllis

    Haven't tested it yet, so be careful - perhaps do a Save As first
    This might work...shot in the dark
    Take one of the Inline Objects and give it an Object Style.
    Make sure the Object Style is highlighted in the Panel when you have the inline object selected.
    Now go to the Attributes Panel - and untick "Non Printing"
    You will see the Object Style get a + beside it - you can now Redefine that style
    Find and go to the Object tab
    Find Object Format > Anchored Objects Inline
    Change to
    Select the Object Style

  • Implementing Data Search for Custom Objects

    Can any one have some information on implementing search criteria for custom objects.
    I am looking to modify the drop down values and search criteria based on custom data model.

    Hello Rajesh,
    The following configuration activity might resolve your query.
    Transaction: mdgimg.
    General Settings> UI Modelling> Define Field Properties for UI. Select your custom data model and go to "Hide Field Names."
    For the fields of the entity type, you don't want to come up in the search UI, check on "No selection".
    "No Selection" : These wouldn't come up as search Criteria. "No Results List": These won't come up in final result list.
    Best regards,
    Shephalika.

  • Urgent pls help!! How to search for an object in vectors?

    Hi,
    I heard that a Vector can store an object right?
    So lets say I created an object called Student that has the attributes: id, name, sex, age
    1) Is vector able to store many students with all these attributes? cos the examples i have seen so far vector only seems to store one attribute
    2) how do i search for sumthin in a vector? let's say i want to key in the student id or his name and find tt student's record to display it?
    thx!

    so sorry... apparantly i didnt copy the last few brackets..
    ===============================================================
    import java.io.*;
    import java.util.*;
    class AddReservation
         static BufferedReader stdin = new BufferedReader (new InputStreamReader(System.in));
         //Main Method
         public static void main (String[]args)throws IOException
              String custName, comments;
              int covers, date, startTime, endTime;
              int count = 0;
              //User can only add one reservation at a time
              do
                   //Create a new reservation
                   Reservation oneReservation=new Reservation();                         
                   System.out.println("Please enter customer's name:");
                   System.out.flush();
                   custName = stdin.readLine();
                   oneReservation.setcustName(custName);
                   System.out.println("Please enter number of covers:");
                   System.out.flush();
                   covers = Integer.parseInt(stdin.readLine());
                   oneReservation.setCovers(covers);
                   System.out.println("Please enter date:");
                   System.out.flush();
                   date = Integer.parseInt(stdin.readLine());
                   oneReservation.setDate(date);
                   System.out.println("Please enter start time:");
                   System.out.flush();
                   startTime = Integer.parseInt(stdin.readLine());
                   oneReservation.setstartTime(startTime);
                   System.out.println("Please enter end time:");
                   System.out.flush();
                   endTime = Integer.parseInt(stdin.readLine());
                   oneReservation.setendTime(endTime);
                   System.out.println("Please enter comments, if any:");
                   System.out.flush();
                   comments = stdin.readLine();
                   oneReservation.setComments(comments);
                   count++;
              while (count<1);
              class Reservation
              private Reservation oneReservation;
              private String custName, comments;
              private int covers, startTime, endTime, date;
              //Default constructor
              public Reservation()
              public Reservation(String custName, int covers, int date, int startTime, int endTime, String comments)
                   this.custName=custName;
                   this.covers=covers;
                   this.date=date;
                   this.startTime=startTime;
                   this.endTime=endTime;
                   this.comments=comments;
              //Setter methods
              public void setcustName(String custName)
                   this.custName=custName;
              public void setCovers(int covers)
                   this.covers=covers;;
              public void setDate(int date)
                   this.date=date;
              public void setstartTime(int startTime)
                   this.startTime=startTime;
              public void setendTime(int endTime)
                   this.endTime=endTime;
              public void setComments(String comments)
                   this.comments=comments;
              //Getter methods
              public String getcustName()
                   return custName;
              public int getCovers()
                   return covers;
              public int getDate()
                   return date;
              public int getstartTime()
                   return startTime;
              public int getendTime()
                   return endTime;
              public String getComments()
                   return comments;
              //Display the current reservation
              //public void displayReservation()
         //          System.out.println(custName.getcustName());
         //          System.out.println(covers.getCovers());
         //          System.out.println(date.getDate());
         //          System.out.println(startTime.getstartTime());
         //          System.out.println(endTime.getendTime());
         //          System.out.println(comments.getComments());
    ===============================================================
    import java.io.*;
    import java.util.*;
    class searchBooking
         static BufferedReader stdin = new BufferedReader (new InputStreamReader(System.in));
         public static void main (String[]args)throws IOException
              int choice, date, startTime;
              String custName;
                   //Search Menu
                   System.out.println("Search By: ");
                   System.out.println("1. Date");
                   System.out.println("2. Name of Customer");
                   System.out.println("3. Date & Name of Customer");
                   System.out.println("4. Date & Start time of reservation");
                   System.out.println("5. Date, Name of customer & Start time of reservation");
                   System.out.println("Please make a selection: ");          
                   //User keys in choice
                   System.out.flush();
                   choice = Integer.parseInt(stdin.readLine());
                   if (choice==1)
                        System.out.println("Please key in Date (DDMMYY):");
                        System.out.flush();
                        date = Integer.parseInt(stdin.readLine());
                   else if (choice==2)
                             System.out.println("Please key in Name of Customer:");
                             System.out.flush();
                             custName = stdin.readLine();
                   else if (choice==3)
                             System.out.println("Please key in Date (DDMMYY):");
                             System.out.flush();
                             date = Integer.parseInt(stdin.readLine());
                             System.out.println("Please key in Name of Customer:");
                             System.out.flush();
                             custName = stdin.readLine();
                   else if (choice==4)
                             System.out.println("Please key in Date (DDMMYY):");
                             System.out.flush();
                             date = Integer.parseInt(stdin.readLine());
                             System.out.println("Please key in Start time:");
                             System.out.flush();
                             startTime = Integer.parseInt(stdin.readLine());
                   else if (choice==5)
                             System.out.println("Please key in Date (DDMMYY):");
                             System.out.flush();
                             date = Integer.parseInt(stdin.readLine());
                             System.out.println("Please key in Name of Customer:");
                             System.out.flush();
                             custName = stdin.readLine();
                             System.out.println("Please key in Start time:");
                             System.out.flush();
                             startTime = Integer.parseInt(stdin.readLine());
              public void           
    }

  • How is implemented the search for collab objects?

    Hello everybody!!
    Can someone tell me how are stored the 'cards' (but i'm not sure it's card for collab objects like projects, discussions...)? Because i'm not sure these objects are crawled...
    In fact i would like to disable the search on some specific native collab objects (some projects needs to be hidden completly) but not all. Is it possible??
    Thanks.

    Unfortunately, there is no configuration setting in Collab that you can disable certain types of objects to be indexed, nor can you disable objects from certain projects to be indexed. I am not sure this will help your case, but just FYI: you can disable certain types of documents to be indexed by editing filetypes.xml.

  • Error message when searching for an object link within EasyDMS

    Hello,
    I have a problem with the easydms system. Everything works fine except searching in the object links. When I want to define an object link and I don't know the name of the object I try to find it with the help of the search function within easydms (within the object links).
    But the search always delivers an error message:
    "Missing authorization check to display master data"
    Does anybody now what to do?
    Thank you for your help.
    Best regards,
    Markus Sigl

    Hi Markus,
    When you try to do this the  BAPI 'BAPI_HELPVALUES_GET' is used. There are some authorization checks that are being performed for the object. These authorizations are maintained in the table BAPIF4T.
    For the above said test data, you are trying to get the help values for
    the relevant field (e.g. EBELN: po_number).However,in table BAPIF4T the corresponding authorization for the data element ebeln is not maintained. And so you are getting this error.
    So, when you maintain the below record in the table BAPIF4T,you will
    have the corresponding authorization and you will not get the error
    anymore.
    sample entry:
    Object type - ' '
    Object type component - ' '
    BAPIF4T-DTEL - 'EBELN'
    BAPIF4T-FNAM - 'PLM_HELPVALUES_AUTHCHECK'
    Best regards,
    Christoph

  • Search for a string in SAP Script

    Hello Experts,
    Is there a way to search for a string in all Z SAP scripts, like ABAP source scan?
    Regards,
    Hari.

    Try using function module "READ_FORM" (you will have to write a simple z-program to find all SAPscripts in your system then use this function module to search the SAPScript Forms for a particular string).
    All you have to do is supply the "FORM" name and it will return all of the Pages, Paragraphs, and Texts etc....
    More specifically, try looping at the "FORM_LINES" internal table result and you will see the SAPScript text there....
    Have fun    !
    Edited by: Christopher Twirbutt on Sep 16, 2009 12:43 AM

  • Searching for Archiving Object for table COMH PP-PI messages header

    Hallo,
    i am faced to archive records from table COMH (PP-PI message headers).
    And searched SMP, SDN, Dataguides but i could not find any objects or delete-reports for this table.
    Could anyone give input on how to get rid of the records in COMH?
    with regards
    ingo

    Hello Ute,
    thanks for your informations.
    We are going to start RCOCB009 as batchjob periodical, once per month, to get rid of elder messages.
    with regrads
    ingo

  • WCM, New Functions for WCM Objects - Logistics - SAP Library

    To add a comment, please log in or register on the top of this page and choose Reply. Please write your comment in English.
    You can also go back to the SAP help page.

    Hi,
    WCM topics can be covered in the [Enterprise Asset Management (EAM)|Enterprise Asset Management (SAP EAM); forum at the moment.
    If there were sufficient volume of WCM threads then a seperate forum could be requested.
    -Paul

  • Searching for SAP DB 7.2.4

    Hai,
    i´m searching for the installation of SAP DB 7.2.4.
    We want to extract the data of a 7.2.4 database.
    Before we want to do this, we want to check a backup on a different server.
    Can somebody tell me, how to get this installation-files?
    Is it even possible?
    Thanks a lot!

    i´m searching for the installation of SAP DB 7.2.4.
    Wow - this is sooo outdated, I doubt that it would even install on todays operating system versions...
    Anyhow, as a SAP customer  you may open a support call to get this old version delivered.
    We want to extract the data of a 7.2.4 database.
    Ok. And why don't you just do it?
    Before we want to do this, we want to check a backup on a different server.
    Hmm... taking backups and testing the restore is always a good idea, no question about that.
    But usually exporting data from a database does not remove the data inside the database.
    Actually what's called "export" is in fact a "copy to outside of the database".
    So the database content remains unchanged.
    Can somebody tell me, how to get this installation-files?
    For non-sap customers: no bloody idea!
    Is it even possible?
    What? the export? Getting the installation files?
    regards,
    Lars

  • How to search for std workflows

    hi
    what is the best way to search for std workflows in SAP. I tried the tcode SWDM( Business Workflow Explorer ) but it does not bring correct results.
    can any one guide me on which is the best way to search for std workflows?
    thanks
    Sameer

    Hi,
    SWDM should yield the correct results, make sure you're defining your search correctly.
    Another way is to look directly in table HRS1201 (I think, im not in an SAP environment now).
    But here you also have to know the business objects related to the functional area where you are looking for standard workflows.
    Another thing is to use the search functionality in SDN with your query ike "standard workflow for ..."
    Kind regards, Rob Dielemans

  • Search for own settypes / attributes of iObject

    Hello,
    i created some Z-Settypes with own Z-Attributes for individual objects in CRM.
    I also created the assignmentblocks for this Z-Settypes. Now i´m able to maintain the Z-Attributes in Webclient UI.
    My next step would be to search for individual objects (view PRDIOQR/SEARCH) using my Z-Attributes.
    Does anybody know what i need to do?
    The view is already enhanced.
    I found in GENIL_BOL_BROWSER own notes with my settypes.
    No i need to know how to bring this on the search view to search with my Z-Attributes for i objects?
    Thank you
    Best regards
    Manfred

    Hi Anne,
    Have a look of the <a href="http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000647973&_SCENARIO">CIC cookbook</a>. This might help.
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Business Objects and SAP BI Integrated Planning material

    hi
    guys
         i am looking for Business Objects and SAP BI Integrated Planning any material site  plz send me
    regards
    suresh

    Hi ,
       Please find these blogs by Ingo. This should help you.
    BusinessObjects and SAP - Installation and Configuration Part 1 of 4
    Install Part #1
    BusinessObjects and SAP - Installation and Configuration Part 2 of 4
    Install Part #2
    BusinessObjects and SAP - Installation and Configuration Part 3 of 4
    Install Part #3
    BusinessObjects and SAP - Installation and Configuration Part 4 of 4
    Install Part #4
    BusinessObjects and SAP - Configure SAP Authentication
    SAP Authentication
    BusinessObjects Integration with SAP NetWeaver BI - Technical Material
    Thanks,
    Gopi

Maybe you are looking for

  • Itunes crashes when I try to sync

    My iPod syncs fine until it gets to syncing Contacts and Calendars from Microsoft Outlook.As soon as the program gets to Contacts iTunes crashes with the following detail Problem signature: Problem Event Name: APPCRASH Application Name: iTunes.exe Ap

  • IPhoto freezing when trying to import photos from iPhone

    iPhoto has started freezing when trying to import photos from an iPhone. The device is recognised but just get "loading . . . " message with no photos appearing. Has anyone else seen this?

  • [Request] SQL Ledger - double entry accounting system

    Hi, has anyone tried a package for this? SQL-Ledger is a double entry accounting system. Accounting data is stored in a SQL database server, for the display any text or GUI browser can be used. The entire system is linked through a chart of accounts.

  • I can't upgrade my forms central account

    Every time I go to upgrade there's no options to upgrade so I can have more than 50 responses, how do I get more than 50 responses then? There's no upgrade or buy functions, just information, not even price or anything, it just takes me here.. Quickl

  • Safari Does Not Allow Access to Web Sites With Wildcard X.509 Certificates

    I'm really getting irritated with the Safari browser in OSX Mavericks.  One of the more irritating features involves the inability to access web sites that use improperly constructed wildcard X509 certificates.  By improperly constructed, I mean that