Objects Identification

Hi Gurus,
I am having trouble idetifying source of some of the keyFigures. Can someone help finding R/3, APO datasources or source tables and relavant Infosources or Infoobject.
Stock:
Target days of supply
On hand
On Hold
Reserved
Mortgaged
Shipment & Forecast values:
Domestic
Affiliate
Thanks in advance.

Kalan
I am not sure you have checked these already or not. Please see the some of the infoobjects
Target Days of Supply
http://help.sap.com/saphelp_nw04/helpdata/en/a0/f4293beff39b1ce10000000a114084/content.htm
On Hand
http://help.sap.com/saphelp_nw04/helpdata/en/47/f8253b90e48743e10000000a11402f/content.htm
Hope this helps
Thnaks
Sat

Similar Messages

  • Error : 'No object identification permitted for infotype 0582, subtype LTA'

    Hi Experts,
                   While executing the program 'HINUINFO_UPDATE'
    i am getting an error 'No object identification permitted for infotype 0582, subtype LTA'.
                   After the approval for LTA claim  is done in ESS i have executed the program 'HINUINFO_UPDATE' to update he infotypes 15 and 582. Infotype 15 is getting created but while creating the infotype 582 system gives the above error message.
                 In the detailed error log system gives the following message.
                    "You attempted to access a data record with the object identification 1. However, according to the Customizing settings, object identifications cannot be used for subtype LTA of infotype 0582".
            Can anybody please assist me how to solve this problem. Helpful answers will be rewarded.
    Thanks and Best Regards,
    Sanoj.

    Hi ,
    Did any one find solution for this ? Please reply how to fix this issue.

  • BOL Object identification

    HI Experts,
    I have a problem related to BOL Objects identification
    The problem is in Alert. I am trying to trigger an Alert at BP conform. For that I am using BuPaDetailB2B view .But I am facing problem to identify BOL Objects (attribute and root node). Could you please give me some brief idea about how I will identify correct attribute and root node for BOL. 
    Please share documents with me on Alert Modeler and BOL Object .
    Thanks
    Gaurav

    Hi Gaurav,
    I believe it would be good if you have a look at the consultants cookbook as John has posted on this sticky post:
    Link: [Documentation for Interaction Center (IC) WebClient;
    Here you get a very nice explaination on how to do what you want to do...
    Kind regards,
    Micha:
    ps. The transaction GENIL_MODEL_BROWSER shows all BOL objects...

  • ESS error when Object Identification selected for IT0021 Subtypes

    Hello Friends,
    Our country version is 99 and working for new ESS implementation on ECC 6.0.
    We are getting an error in the table 'V_T7XSSPERSUBTYP' for subtypes of T0021
    Error happens only for those subtypes with time constraint 3 and Object identification selected in table 'v_T591A' (e.g Child)
    We are getting error message 'There is an inconsistency in the usecase maintained for this record' Message no. HRXSS_PER003
    We tried with all the available use cases from A1-B5, all throws same error.
    These subtypes with errors are not getting displayed in ESS Family Member/ Dependent area.
    Please help me to sove the problem.
    Preethi

    Hi Friends,
    This could be simple issue for you, but is very important for our project. I chcked for similar issues in the forum, there was one similar issue but the solution is not clear.
    Kindly Reguest for your valuable suggestion on this.
    Thanks in advance,
    Preethi
    Edited by: preethic on Mar 22, 2010 11:09 AM

  • Object Identification Issue with OATS

    please find below the details of the object identification issue, we are seeing with OATS.
    Environment:
    JRE Version     : JRE 7 Update: 65
    OATS Version : 12.4.0.2_129 (Build)
    Application Built on : Oracle EBS/Forms & Applets(11g Forms)
    Operating System: Win 7 32-Bit Professional
    Browser: Internet Explorer 9
    Object Identification Issue:
    1. Launch OATS Open Script
    2. Login to Test application by opening URL using IE9 browser.
    (Login was successful)
    3. Click on the button and check if forms are loading
    (Oracle forms are loading).
    4. Try spying or recording actions on any objects in the forms
    (Issue - Objects are not getting identified by OATS)
    Appreciate any help on this. Thanks in advance.

    Hi,
    I suggest you to select only 1.7.0.65 in Java Runtime Environment Settings and uncheck version 1.7.0.67.
    Try to launch application. If the application opens, then Openscript will identify objects. Else have to wait till next release of Openscript supporting JRE version 1.7.0.67.
    Please let me know if the above suggested method worked.
    Thanks and Regards,
    Vasanth Kumar S M

  • Shared object identification

    Suppose I write a function that is to reside inside a shared object. I need to know the name of the shared object programmatically. Is this possible, and if so, how might I do this?

    You could do a for-loop in a shell and grep for the function name
    from a 'ar t'. e.g. in the csh:
    foreach f (*.a)
    echo $f
    ar t $f | grep func
    end
    This could be a script and func could be $1, or an alias and
    func could be !!*

  • Java callback / Calling object identification

    This runs on very similar lines to the topic by rishab, "Knowing the identity of the calling application."
    Basically, when an arbitrary method is called on an arbitrary object, I need to be able to get a reference to the calling object, for authorization and callback purposes.
    Details...
    * All objects that require this will be subclasses of a common class, so this functionality can be implemented in that class.
    * These objects should be pluggable - created by anyone, compiled and added on the fly, therefore implementation of this should not be required in subclasses.
    * A reference to the calling object is required, without the object being passed, so such authorization cannot be compromised by providing proxy accessors or passing bogus objects.
    * Reflection to call a method from a base class and force passing the calling method appears to be infeasible, since exact method-type matching appears to prevent polymorphism in reflection.
    SecurityManager.getClassContext() is halfway there, in that is exposes what kind of object called the method, but for complete authorization and callback it is necessary to know which instance called the method.
    If anyone has any information that might get me on the right track, I would be most grateful.
    Regards,
    -Troy

    As you mentioned, this is very similar to another topic posted. To obtain an object reference to a caller WITHOUT sending an object reference is "de facto" problematic. Any solution will require a compromise to the design terms you described.
    I think there's no pratical way to get around passing an object reference as a parameter. However, you could create an interface implemented by all calling classes that would contain a specific call-back method that would authorize the client before allowing the method to proceed.
    This would require some sort of basic shared secret or handshake to be returned by the client's implementation of the interface method. Otherwise, you could implant the correct response into the client's superclass and declare it final. That way, when the shared object invokes the superclass method on the client, it could verify the instance and simply return a boolean.
    public class SharedObject {
    myMethod(Object O) {
    ...check if O implements myInterface...
    ...call ((myInterface)O).checkMyClient()
    ...if I'm satified, continue to interact with O
    ...else do nothing
    }

  • Object Identification by QTP automation tool

    I tried two cases on FlexBuilder3.
    (1)When static Module with AddChild on UIComponent, QTP can recognize the Flex object without a problem.
    (2)When Dynamic Module with AddChild on UIComponent by loader method of the PageInfo* class, QTP cannot recognize the Flex object.
       =>QTP ObjectSpy don't show any Child object (LoginField,PasswordField).
    *PageInfo class:Custom Framework Class to maintain information about one screen.
    In the case of the second case of the said article,Is some kind of setting necessary?
    I think that it is necessary to use the delegate class by the expectation, but I want to use only  TEAFlexCustom.xml.
    Thank you for Advise.

    Hi There,
    Is it working . Because I am facing the same kind of problem, When I did spy the data grid coloums are getting identified as label and I'm not able to do click operation.
    I tryied using descriptive programming but still it is not identified.
    Thanks,
    Sylu

  • Flex object identification in test automation

    I am using HP Sprinter for testing website UX functionality and I am unable to identify individual fields - just recognizing them as Macromedia Falsh Active X objects. My question is if I have Flash Builder installed should this help in identifying the objects/fields?
    -Also posted to the HP support site

    Hi,
    We are also facing the similar issue. Did you find any solution. If so please share it will be helpful to me..
    Regards,
    Suman CH

  • Local object identification

    Hi All,
    Please let me know whether there is a table which holds information about the PROGRAM's reference to other objects.
    For Example, say program A uses n number of references to other objects like data elements, calls n number of  Function Modules, tables ect. Is there any table or FM that lists all these references?
    Please do reply.

    Hi Saravanan,
    The better way is to get all the references for all type of objects like programs,Function modules,function groups,packages ,classes,interfaces,BSP applications,local objects, inactive objects,etc, the ultimate tcode is SE80,
    there u can find everything about the above said objects.
    Regards
    Arani Bhaskar

  • Not able to spy objects in ie9 using coded UI Test Builder Spy, giving exception -Interface not registered(Exception from HRESULT:0X....

    Not able to spy objects in ie9 using coded UI Test Builder Spy, giving exception - "Interface not registered(Exception from HRESULT:0X...."
    I am not able to capture any objects of my web application using coded ui recorder. Even though it is a simple html page, coded ui is showing a message  -"Interface not registered(Exception from HRESULT:0X...."
    Please give me solution , why this is hapening. I am having problem with object identification. Even I am not able to identify any object in google.com.
    swapnanil sengupta

    TechnologyName is displaying as "MSAA" . But my application is a Webapplication.If I try to spy the google .com's search field then also TechnologyName is displaying as "MSAA". Is it any configuration issue of vsts codedui.
    swapnanil sengupta

  • Reader 10.1.1 / AcroQTP / Win Vista / QTP10 - objects not recognised

    Hi there,
    I get the same behavior problem with my config:  Reader 10.1.1 / AcroQTP / Win Vista / QTP10
    According the comments found on others posts here, that is supposed to run.
    Vista settings are done to avoid any problems (security on users desabled, everything is made on admin account,...).
    PDF Reader has been reinstalled, and other versions has been tried too ( 9 and 10.1.4).
    Only the latest version of AcroQTP has been used (business restriction for only PDF v10 or higher).
    As other users, I can see the add-in ein my list, the "pdf items" in the tool>object identification but:
    - no way QTP recognises the pdf content items, but only one global object.
    - the test script that is provided with AcroQTP stops because the first item is not found (smart identifiction on and off, same behavior) --> which excludes pdf problems (as it is supposed to be interactive and not locked).
    Any idea what I may have missed?
    Thanks for your help
    KR
    C.

    I unistalled and reinstalled everything. I still get the issue:
    Config:
    QTP 10.0 with Patch HP QTP_00626, on Vista and Browser IE7
    All plugins (AcroPDF, Flex, etc) appear in the QTP active Plugins window.
    Tested versions:
    Reader 10.1.1 (not in compatible list but Adobe recommends it anyway, see "http://forums.adobe.com/message/3956025?tstart=0#3956025") -> No go
    10.1.2 (ideal with the latest AcroPDF plugin) -> no go
    10.1.4 (known issues, see the same link above) -> No go
    remark: I only focus on the second version of the plugin (see "http://labs.adobe.com/downloads/aptt.html"), as the old one is compatible with 9.x versions, which are out of my scope. There is a rumour about an hypothetical third version, but nothing concrete here.
    Problem:
    I always get "Failed to find object: Failed to find Acrobat" when I run the AcroPDF test which is in the tool package. No acrobat installed.
    The user manual says "An unsupported version of Acrobat is being used or both Acrobat and Reader are installed." But my configuration definitely fits with these criterias.
    A record in QTP only sees AVPageView item.
    -> According the AcroPDF documentation, it is supposed to only happen with QTP 9, but it appears with QTP 10 as well...
    Does anyone have a clue how I could fix my issue?

  • HP UFT (QTP) Can't Identify Delphi Objects

    We're using Delphi 2005 (version 9) with orpheous.
    When we use the Object Spy in HP UFT, a generic name is shown instead of the actual delphi name. For example, our Report Screen would be shown as "DelphiWindow" and additional screens will be shown as "DelphiWindow_1", "DelphiWindow_2", etc.  
    Obviously this doesn't work when we try to run the test because it can't identify the correct window. What do I need to do to allow UFT to retrieve the name correctly? I have tried doing the same steps in TestComplete and it was able to identify the objects correctly. What's the difference between TestComplete and UFT with regards to object identification?

    You can use the object repository to learn objects in your application.
    - Click Object Repository Icon
    - Click "+" icon to add the objects you want UFT to learn.
    - Your screen will then get a pointing icon which you can point ot the application window / panel/tab you want to learn. 
    - Select "Learn All objects" on next window. This is preferred since you can later decide which ones you want to keep.
    - All the objects will be learned and added to your object repository according to their hierarchy.
    - You can now refer these objects in your test cases 
    Few points to note : 
    - You need to compile your test application using the MicDelphiAgent.pas in project DPR.
    - Some Delphi custom controls such as DevX are still not detected completely. So you need to use the Delphi Add In Extensibility Guide or "HP Unified Functional Testing Add-Ins Guide" to see how to extend the Delphi Addin to recognize the custom controls you require.
    - In my experience, all standard Delphi VCL, Windows, Raize are detectable.

  • Information on Object ID (OBJPS) field for addresses.

    Hi
    we have enabled OBJRQ field in Table T591A for IT0006 Subtype 5.
    SAP Help for OBJRQ:   If the indicator all. objid is set, then the Object ID field can be
    used. In this case you can create data records with the same
    infotype, subtype, blocking indicator, validity start date and end
    date.  These records are differentiated by their object
    identification.
    After enabling this we are able to create multiple records on the same date inspite of having time constraint 2 because of OBJPS.
    We are getting records with OBJPS either blank or value 20.
    Need to understand the following:
    why the 20 / blank is coming up , is it standard or we customise it somewhere. If we customise it then where.
    Why We are able to create only 2 records on the same date . Creating the third record deletes the previous record.
    Appreciate the Quick response.
    Regards
    SIM

    i dunno if you found the solution to this..but the answer to ur question is in ur question itself!!
    you need to flag that objectid field in T591A for infotype 0021 for records to have object id when created. but it will effect only those records which are created after flagging. the records created b4 flagging object id field will not get Object id feild populated.

  • Database Object ID Number

    Can we get database object identification number in oracle? Thats is if i want to know ObjectID of table 'T1' or Column 'C1', how can i do that?
    thanx

    select object_id, object_type, object_name
    from user_objects;

Maybe you are looking for