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

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

  • Which table i can use to get standard price of previous periods ?

    Hello, all.
        Which table i can use to get standard price of previous periods ? Example, current period is 2008/11, i want to get the standard price of period 2008/05 .
    Thanks.
    Xinzhou.

    Look in MBEW and MBEWH.
    Regards

  • From which table we can get cat_guid depending upon the guid of a tr.ticket

    Hi Experts,
    I have to find the cat_guid depending upon the guid which is in crmd_orderadm_h table to retrive the fields categeorization module/element/type maintained in the service ticket.
    Please tell me from which table we can get cat_guid depending upon the guid of perticular trouble ticket.
    points will be rewarded if helpful.
    regards,
    Ezal

    Hi Ezal
    Pass the GUID (CRMD_ORDERADM_H) to Function Module CRM_ORDER_READ to retrieve the required values.
    I think this should do the trick.
    Reward with points if helpful
    Regards
    Arden

  • I have deleted by accident the backup folder on an external HD. Any advice on which app I can use/buy to recover the info? Thanks in advance!

    I have deleted by accident the backup folder on an external HD.
    I did the backup since I had to sent my macbook pro retina display to customer care.
    By accident, I deleted the backup folder on my external HD.
    Any advice on which app I can use/buy to recover the info?
    Thanks in advance!
    elmoven.- desperate trying to recover his Ph.D info from 3 years

    IT SOUNDS wiered but there is just for your pc just goto statrtup menu--->System tools -->system restore by Today's date and time

  • Can AT&T find out the passcode to an iPhone ?

    Can AT&T or apple find out the passcode to an iPhone ? My friend got his iPhone 5s on ios 7.1 taken away and he said that his father can get the passcode from Apple and or AT&T is this true ?

    appleiphones wrote:
    Can AT&T or apple find out the passcode to an iPhone ? My friend got his iPhone 5s on ios 7.1 taken away and he said that his father can get the passcode from Apple and or AT&T is this true ?
    However, his father can put the phone in DFU mode and erase it, thereby deleting all of the files (pictures, texts, etc) on the phone. He might want to think about that.

  • 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 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

  • 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

  • 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?

  • Find out the Condition record deletion

    Please help me anybody  below issue.
    My issue is how to find out the Log  " deletion of condition record".
    i need  which user has been deleted the condition record. Please help me this how to find it. I checked in Standard we didn't able to find out..

    condition tables have usually no change log, as most of them are created by yourself anyway.
    If you missed to activate the log for table changes (via SE11, enter condition table, click change, goto technical settings and find the box for activation of change log ) then you will not find anything.
    Check how this setting is for your condition tables and revert back

  • 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 can i even find out the administrator name?!

    This honestly ruined my life. Im so stressed out now, once i came back from the apple store there was a administrator username and password. i would know the password if i know the username. how can i find out? im beyond upset i cant take it.

    Just follow this guide to reset the administrator password.
    http://support.apple.com/kb/ht1274

  • 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.

  • Is there a way to find out the localized labels for contact item properties?

    Hi,
    an Outlook ContactItem has a lot of properties (e.g. BusinessTelephoneNumber). I want to design a custom ribbon menu containing all business telephone numbers. And the labels of these menu items should display the localized field description (e.g. "Business
    Telephone Number"). But I did not found any mapping of Contactitem property name and label being shown in die Outlook's user interface. Sure, I can code my own mapping but I would like to know whether there is a possibility to get a localized string for
    labeling my own menu items.
    Anything like ContactItem.ItemProperty(INDEX).GetLocalizedLabel() would be fine.
    Any ideas?
    Kind regards
    Mõbius

    You can also create collection for reboot pending machines based on its lastenforcementmessageID.
    SELECT SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name,
    SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup,
    SMS_R_SYSTEM.Client FROM sms_r_system inner join SMS_UpdateComplianceStatus
    ON SMS_UpdateComplianceStatus.machineid=sms_r_system.resourceid
    WHERE SMS_UpdateComplianceStatus.LastEnforcementMessageID = 9
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

Maybe you are looking for