Document to find out the Object types

Hi All,
Can any one pls provide me the document where you have the list of all Object types defined in Oracle Applications.
Thanks in Advance

Hi,
What object types you are referring to? Could you please elaborate more.
Oracle Applications Developer Guide (and other main documents) can be found at:
Applications Releases 11i and 12
http://www.oracle.com/technology/documentation/applications.html
Regards,
Hussein

Similar Messages

  • How to find out the condition type of the tax code in the PO document

    Hi friends,
    My questions is how to find out the condition type of the tax code in the PO document.
    When you use me23n to display one PO document. In the invoice tab, there is one text field named 'tax code' whose value could be T1, T2, J1, J2 and so on. Beside the text field, there is one button named taxes. When you click the button taxes, it will show you the condition type of the tax code. For example, if the tax code is 'T1', then its condition type 'mwcn'.
    I want to use the information on the PO to find out the value 'mwcn' of the tax code 'T1'. Could anybody help to describe the logic?it looks like the value is saved in the table konp. But I don't know the logic. Please describe. Thank you.

    Hi,
    Hope you have asked for select query..
    select single knumh from a003 into wa_knumh
      where mwskz = wa_itpotab-mwskz
      and kappl = 'TX'
      and aland = 'IN'.
    select single kbetr from konp into wa_kbetr
      where knumh = wa_knumh.
    cheers,
    Dep

  • How to find out the object is available or not in BC

    Hi dear friends,
    Suppose I want to design/create a Cube / ODS, before going to create that object, how to find out the same type of Object is available or not in BC with the specification which I want
    Thanks in advance

    Hi Paul,
    at least you need to know the application you are talking about. Then you can goto that particular area and evaluate the content (cubes, infoobjects, infosources, datasources). It will surely give you an idea of the fulfilment of your requirements by the content.
    Siggi

  • Which table i can use to find out the condition type in PO item ?

    Hello, erveryone. Which table i can use to find out the condition type in PO item ? Thank you.
    Xinzhou.

    hi
    The Table name used to find the Tax Values are
    KOMV: Pricing Communications-Condition Record
    KONV: Conditions (Transaction Data)
    From the above tables you can refer the fields below.
    KAWRT
    KBETR
    for excise check table J_1IEXCHDR for header
    J_1IEXCDTL for item excise
    Fetch the corresponding records based on the field
    KNTYP
    regards
    kunal

  • How to find out the parameter type of a parameterized object?

    Hi,
    I've got a list containing instances of a parameterized class. The parameters of the instances can be different. When using the instances, I need to know the types of the parameters. How can I find them out?
    Regards,
    Frank

    Look at the first item in the List and see what it is?
    I'm not trying to be funny. Generic information is compile time only, the types of the parameters are not generally available at run time.
    You can find out the bounds on the types, if any, but not the actual types.
    AndyT

  • Issue with find out the pageItem type

    Hi all,
    i am trying to find out the all pageitem's type and its data on a document .i just use the following code to find out the pageitem's type .
    InterfacePtr<ISpreadList> spreadList(document, UseDefaultIID());
            ASSERT(spreadList);
            if(!spreadList) {
                break;
            UIDList frameList(database);
            int32 spreadCount = spreadList->GetSpreadCount();
            for (int32 spreadIndex = 0; spreadIndex < spreadCount; spreadIndex++ )
                UIDRef spreadUIDRef(database, spreadList->GetNthSpreadUID(spreadIndex));
                InterfacePtr<ISpread> spread(spreadUIDRef, UseDefaultIID());
                ASSERT(spread);
                if(!spread) {
                    break;
                int32 numberOfPages = spread->GetNumPages();
                for (int32 nPage = 0; nPage < numberOfPages; nPage++ )
                    UIDList pageItemList(database);
                    spread->GetItemsOnPage
                     nPage,
                     &pageItemList,
                     kFalse,
                     kFalse 
                    bool16 hasContent;
                    int32 pageItemListLength = pageItemList.Length();
                    for (int32 j = 0; j < pageItemListLength; j++ )
                        UIDRef pageItemRef = pageItemList.GetRef(j);
                        InterfacePtr<IGraphicFrameData> graphicFrameData(pageItemRef, UseDefaultIID());
                        hasContent =graphicFrameData->HasContent();
                        InterfacePtr<IPathGeometry> pathGeometry(pageItemRef,UseDefaultIID());
                        if (pathGeometry != nil)
                           PMPageItemType pathType = Utils<IPathUtils>()->WhichKindOfPageItem(pathGeometry); //issue is this statement simply break up the execution
                            switch (pathType)
    please can any one help me? 

    Hi Pickory
    i have tried the following code ,but it doesnt works
    UIDList pageItemList(database);
                                            spread->GetItemsOnPage
                                             nPage,
                                             &pageItemList,
                                             kFalse,
                                             kFalse
                      bool16 hasContent;
                                            int32 pageItemListLength = pageItemList.Length();
                                            for (int32 j = 0; j < pageItemListLength; j++ )
                                                      UIDRef content = pageItemList.GetRef(j);
                           InterfacePtr<IGraphicFrameData> graphicFrameData(content, UseDefaultIID());
                                            InterfacePtr<IGeometry> frameGeom(graphicFrameData, UseDefaultIID());
                                            PMMatrix inner2parent = ::InnerToPasteboardMatrix(frameGeom);
                        PMRect   r = frameGeom->GetStrokeBoundingBox(inner2parent);
    any thing need to be included?

  • How to find out the idoc type required for our requirement

    Hi,
         How to find out the list of available idoc type in SAP. It will be good if i get to know the table name where all the idoc type definitions are gets stored.
    Say i have some requirement and for that requirement how i can find the proper idoc type to be used. (assume functional consultant is not providing that information)
    Points will be given for the useful answers
    Thanks,
    Prasanna

    Hi prasanna,
                    we can get SAP idoc types in tcode we31.For every requirment there will be different message type.
    For example we want idoc type for account invoice receipt.
    First find out message type for that purpose which can be found in we81-ACC_INVOICE_RECEIPT.
    Get this message type and search in we82  where we can find message type and idoc type linkage.
    try this way.
    Reward if it is usful.
    Thanks,
    Srikanth.A

  • How to find out the font type?

    Is it possible to find out the type of the used fonts(like Open type (or) true type) in illustrator cs3 file through programmatically. Kindly share with me the possibilities and solution.
    Thanks...

    You can't consistently, but a lot of files have identifying characteristics in the first few bytes that make it easier.
    There are utilities to do this, but I could have sworn that someone wrote a Java library to do it as well. As always, I suggest that you poke around http://jakarta.apache.org/commons/
    Or do a Google if Jakarta doesn't pan out.
    Message was edited by:
    paulcw

  • Help me to find out the font type?

    Is it possible to find out the type of the used fonts(like Open type (or) true type) in illustrator cs3 file through programmatically. Kindly share with me the possibilities and solution.
    Thanks...

    Good evening,
    an idea to help you in your approach
    Sub texte()
    Set appref = CreateObject("Illustrator.Application.cs4")
    Set myDoc = appref.ActiveDocument
    Set myText = myDoc.TextFrames
    For i = 1 To myText.Count
    MsgBox (myText(i).Characters(1).CharacterAttributes.TextFont.Family)
    Next
    End Sub
    Patrice

  • How to find out the object and tables that belong to it

    Do you know how to find out which tables belong to which object in trans. BD66, I have a CABN table but i donot the object name so how i can find out that??

    Hi,
    Wht object u r taking about .if it's a transport object,
    Go to Utilities -> Versions -> Version Mgt ->
    The latest one which is active, is the one u have to transport .
    Rgds ,
    J
    Do Award pts by cliking the left-hand side of this info.

  • How to find out the objects are behind(not hidden) an image?

    Could you please advise me is it possible to find out if the texts (or) objects are behind (not hidden) an image (or) any tinted boxes using scripting via "illustrator cs3".
    Thanks for looking into this.

    Hi Maria,
    if an text or object are behind an another object, i think you need to test position of this text and his layer.
    for exemple:
    layers[0] a rectangular pathItems [100,100,200,200]
    if there is text or other object, it should be on layer[1] or [2] [3] ...[0+x] ( i didn't talk about sublayer, but it's same thing) and it should have same position than rectangular pathItems or included (x>100 && x<200 && y>100 && y<200) and it should have color.
    But in some cases, we will see the text if object is hollow / concave, and script will return "hidden"
    art.chrome

  • To find out the object which called a method

    Hi all,
    Is there any way to findout the object which called a class method.
    The object name is required inside the method.
    Thanks in advance,
    Sreekanth

    Hi Sreekanth,
    You can do it by reading the CALL STACK.
    At the beginning of your method put the following code:
    data:
        begin of stackItem,
          program        type SYREPID,
          include        type SYREPID,
          line           type i,
          eventtype(12)  type c,
          event(70)      type c,
          flag_system(1) type c,
        end of stackItem,
        stack like standard table of StackItem.
      call 'ABAP_CALLSTACK' id 'DEPTH' field 2 id 'CALLSTACK' field stack.
      read table stack into stackitem index 2.
      MEssage i002(sy) with stackitem-program.
    Here stackitem-program is the calling program.
    Cheers,
    Aditya

  • How to find out the formatt type of a date.

    hello iam getting the date from some content server..then iam updating the date..the problem is before update i should know the date formatt of returned date from server so that i can set that formatt to the user entered date while updation..so how can i know the date formatt of given date..
    regards,

    object dat1 ="some value";
    when i modify these date and submit back through
    connector its checking for format..
    bcos iam not sure what date formatt server have..
    i want to know can we no from dat1 about the
    format..whether this dat1 is in dd/MM/yyyy format are
    MM/dd/yyyy format..So you have a String that reprents a date? Or do you have a Date? If the latter, then, like somebody already said, there is no format.
    Assuming it's a String...
    Are dd/MM/yyyy and MM/dd/yyyy the actual formats you'll get? Let me ask you this: If somebody showed you the string (on a piece of paper) "12/05/2005" how would you know if it was Dec. 5 or 12 May?
    Answer: You wouldn't. You can't without some additional information.
    And if you can't know, then neither can Java.

  • How can I find out the current platform type?

    Hello,
    I want to find out the platform type (in the format of v$transportable_platform.platform_type) of a running Oracle instance (on 10g2 and 11g1). The v$transportable_platform shows a list of all supported platforms, and I want only the type that is encoded in the datafiles - v$datafile does not provide me such information.
    Thank you,
    Adrian

    AdrianM wrote:
    Hello,
    I want to find out the platform type (in the format of v$transportable_platform.platform_type) of a running Oracle instance (on 10g2 and 11g1). The v$transportable_platform shows a list of all supported platforms, and I want only the type that is encoded in the datafiles - v$datafile does not provide me such information.
    Thank you,
    AdrianDear Adrian, use the following query:
    select PLATFORM_NAME from v$database;

  • Finding out the sales tax type using the Fun. Module-ME_PO_PRICE_SIMULATION

    HI,
       I have used the function module ME_PO_PRICE_SIMULATION to give the pricing details in one report.  In the same function module it is also giving the tax applicable for the vendor-material-site combination. ie., tax code and the tax. procedure. Is it possible to find out the Tax type using
    this data ie,, if it is LST or CST

    Hi ,
    I think from the taxcode you can findout LST(or) CST
    try
    G.Ganesh Kumar

Maybe you are looking for

  • Error ORA-39125 and ORA-04063 during export for transportable tablespace

    I'm using the Oracle Enterprise Manager (browser is IE) to create a tablespace transport file. Maintenance...Transport Tablespaces uses the wizard to walk me through each step. The job gets created and submitted. The 'Prepare' and 'Convert Datafile(s

  • Mail Accounts syncing not working

    When I got my iPhone I originally setup access to one of my mail accounts directly on the device, so never came across this problem. When I recently set iTunes to "Sync selected Mail accounts" and added my other accounts, I came across some problems.

  • Import photos from friend's iphone

    If I connect my iphone to my mac, it automatically shows up on the locations in the Aperture import menu.  However, I want to import some photos from a friend's iphone and when I connect it to y mac, it will not "find" that iphone.  How can I import

  • Adobe Reader 11.0.07 Freezes if I open pdf that is digitally signed

    recently deployed the latest reader with no issues.  now I notice that if I try to open a pdf that contains digital signaures it freezes.  I can open a regular pdf form and sign it, but once I try to open it again or have someone else open, it freeze

  • Word .docx files

    I have been trying to convert a word document to a pdf file and each time it says that it can't convert .docx files to pdf.  What am I doing wrong here and does it matter if these documents contain pictures and charts?