Can anyone provide me with the tables related to the PO table BBP_PDORG

Hi All,
I have a table "BBP_PDORG" which talks about the Purchasing Organizational Unit.
I need to have relationship tables of the Purchase Order  header with this table.
Can anyone provide me with the related tables of "BBP_PDORG"
Regards
Dharma

Hi Dharma,
the "BBP_PDORG" is item related table, so you get the linkage in two steps:
1) BBP_PDORG (organization) <----> CRMD_ORDERADM_I (item)
Table: CRMD_LINK
Write the BBP_PDORG-SET_GUID into the CRMD_LINK-GUID_SET. As a result you will get the CRMD_LINK-GUID_HI (this is a GUID of the CRMD_ORDERADM_I).
2) CRMD_ORDERADM_I (item) <-----> CRMD_ORDERADM_H (header)
In the item table you have the GUID of the header: CRMD_ORDERADM_I-HEADER
Kind regards,
Peter

Similar Messages

  • Can Anyone provide me with the sound card specs for a 2GHz MacBook Intel Core 2 Duo? The system profiler lists the audio card as Intel High Definition Audio: audiocode 63

    Can Anyone provide me with the sound card specs for a 2GHz MacBook Intel Core 2 Duo? The system profiler lists the audio card as Intel High Definition Audio: audiocode 63

    ok thankx!  but i must to know the output impendatie of my  audio card= intel high definition audio? can somebody help me
    this is my mac book
    http://www.everymac.com/systems/apple/macbook/specs/macbook-core-2-duo-2.0-alumi num-13-late-2008-unibody-specs.html

  • I took a photo class and the tech showed me how to take iPhoto images and export to an external hard drive. However, I do not recall how this was done. Can anyone provide me with step by step instructions? TIA!

    I took a photo class and the tech showed me how to take iPhoto images and export to an external hard drive. However, I do not recall how this was done. Can anyone provide me with step by step instructions? TIA!

    iPhoto->:File->Export…. BTW, iPhoto and OS version would help; whereas, iOS version doesn't.

  • I need to download adobe reader 9 for windows 7. Can anyone provide me with a link?

    I need to download adobe reader 9 for windows 7. Can anyone provide me with a link?  Anyone have a link for Adobe reader 9?

    I know it was crazy hard to find the links!
    My company paid for it and I hadn't been on in a while...
    It took some serious bookmark/history crawling to find!
    Here they are though!
    This is the Applecare Service Source portal or ATT:
    http://www.info.apple.com/techtraining
    It'll forward you here (which might be different for other locales):
    http://www.info.apple.com/att/ssol/en/
    Also Self PAced Training (this is on the Service source page, but handy to have too):
    http://service.info.apple.com/service_training/en/home.php?page=training

  • HT1338 can you provide me with a quick link to the latest version of Java for my mac 10.5.6

    can anyone help me with a quick fix for updating the latest version of Java and Adobe, a quick link?  operating system 10.5.6
    I don't have time to search! (12  deadline for submitting some work!)
    thanks!

    Hi Amy,
    You likely have the latest, but they're disabled for security reasons...
    http://blog.mozilla.org/addons/2012/04/16/java-plugin-blocked-for-os-x-10-5-and- older/
    Java Updates must be installed in order, but I think this was the last one...
    http://support.apple.com/kb/DL1359
    Disable Java in your Browser settings, not JavaScript.
    http://support.apple.com/kb/HT5241?viewlocale=en_US
    http://support.google.com/chrome/bin/answer.py?hl=en-GB&answer=142064
    http://support.mozilla.org/en-US/kb/How%20to%20turn%20off%20Java%20applets
    About Safari 5.1.7 and Leopard Security Update 2012-003
    Summary
    Learn about Safari 5.1.7 and Leopard Security Update 2012-003.
    Products Affected
    Mac OS X 10.5, Product Security, Safari 5.1 (Mac OS X 10.6), Safari 5.1 (OS X Lion)
    Safari 5.1.7 for OS X Lion, Safari 5.1.7 for OS X Snow Leopard, and Leopard Security Update 2012-003 disable out-of-date versions of Adobe Flash Player.
    Out-of-date versions of Adobe Flash Player do not include the latest security updates and will be disabled to help keep your Mac secure. If Safari 5.1.7 or Leopard Security Update 2012-003 detects an out-of-date version of Flash Player on your system, you will see a dialog informing you that Flash Player has been disabled. The dialog provides the option to go directly to Adobe's website, where you can download and install an updated version of Flash Player.
    Additional Information
    If you need to re-enable an out-of-date version of Flash Player, you can do the following:
    1. Navigate to the /Library/Internet Plug-Ins (Disabled) folder.
    2. Drag "Flash Player.plugin" into /Library/Internet Plug-Ins.
    3. If the browser is running, quit and restart it.
    http://support.apple.com/kb/HT5271
    See in each Browser which version of Flash it thinks it has...
    http://kb2.adobe.com/cps/155/tn_15507.html

  • Can anyone provide me with an lm317T for use in a power supply project

    I'm trying to simulate a power supply for a college project and need an lm317T.  Can anyone provide this in order to add it to my circuit.  I'm not worried about adding it to my database.

    Hi Steve,
    I googled "LM317T SPICE model" and found this website, someone posted the model for this part
    http://www.electro-tech-online.com/general-electronics-chat/18270-lm317-spice-model.html
    Now that you have the model, you can create you own component in Multisim.  If you don't know how, please refer to this page:
    http://zone.ni.com/devzone/cda/tut/p/id/3173
    Tien P.
    National Instruments

  • Can anyone provide me with details of DPS pro freelancer that i can use for app submission job?

    I'm looking for a DPS pro user that can take my indesign files and output a single edition app for my client.
    I have tried unsuccesfully to publish but would rather outsource the job of app submission to someone that has done this before.
    Contact details: [email protected]
    Thanks.

    nobody can track anything using a serial number really
    IMEI number carrier can track a device with but only way to do it is when the police bring a warrent
    find my iphone service which have to be activated before the device was stolen is what normal people can do

  • Can anyone provide better to find a caller from the callee method

    We are using currently
    public boolean isCheckNeeded()
    boolean flag = false;
    Throwable t = new Throwable();
    StackTraceElement ste[] = t.getStackTrace();
    for(int i = 0; i < ste.length; i++)
    if(!ste.getClassName().equals("com.test.mySericeBean"))
    continue;
    flag = true;
    System.out.println((new StringBuilder("flag:")).append(flag).append(" ").append(ste[i].getClassName()).toString());
    break;
    return flag;
    Can some provide me the better approach to do the same.
    thanks in advance

    viswamy2k wrote:
    ... our intention here is to check if the request is coming via a particular class(say MyserviceBean) or not.
    If its coming from MyserviceBean then we need to do different operations from usual.
    There may exist many classes between MyServiceBean and the callee.
    Just we need to see if the request has passed through MyServiceBean or not.You could use a static ThreadLocal to keep track of this from within MyServiceBean.
    Getting the class context from SecurityManager would be better than parsing stack traces.
    public final class ClassUtils {
        public static final Class[] getClassContext() {
            return new SecurityManager() {
                protected Class[] getClassContext(){
                    return super.getClassContext();
            }.getClassContext();
        public static final boolean isClassInContext(Class target) {
            for(Class c : getClassContext()) {
                if (c.equals(target)) return true;
            return false;
    }

  • Can anyone provide me with the CS4 download file?

    I just got a new computer, but need the CS4 download file in order to set it up on the new computer.
    Thanks,

    Will,
    I get an error message when I try to download it.
    Can you help?
    Rose Maun
    [private data removed]

  • HT5699 Can anyone provide me with a correct number where I can contact apple team ?

    My apple account is disabled im trying to contact apple support , anyone can get me the correct number to contact them thank you

    Select the appropriate country:
    Apple Support Numbers

  • Can anyone provide me with useful solutions?

    1) How to change the style sheets?
    2) How to change the bitmaps for the Infoview buttons?
    3) Is it possible to change logos depending upon the user that is logged in?  If so, how would this be done?
    4) What things should they avoid customising?
    I will be greatful if you send me any kind of document on the following topics.
    kindly mail me if you got any answers for them to:
    [email protected]
    Thanks Heaps,
    Chears,
    Amanda

    Hello Tarheeldon,
    There is no full featured software that could be downloaded for this printer for Win 7. 
    Instead you may try the below steps that should let you printing ...
    Click START > Device and Printer > Add a Printer > Add a local printer >
    ( if the printer is connected with USB )
    Select "Use Existing Port " then Virtual USB from drop down  , Click NEXT, in the Manufacturing list , select HP / Hewlett packard, and from the right pane , select Deskjet 6980 and complete the wizard
    OR
    ( if printer is on Network, ) 
    Click START > Device and Printer > Add a Printer > Add a local printer > Select "Create a New Port" > type in the Printer's IP address Click NEXT, in the Manufacturing list , select HP / Hewlett packard, and from the right pane , select Deskjet 6980 and complete the wizard
    Now try printing from lotus and hopefully it should work. 
    Regards,
    Jabzi
    Help the community by marking this post .
    Was your question answered? Mark it as an Accepted Solution!
    See a great post? Give it a Kudos!
    I work for HP
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • Can anyone provide me the msxml4 SP2

    Hi community,
    can anyone provide me with a link or web site, where I cna download MSXML.MSI < SP2?
    Thanks.
    Best Regards,
    Olaf Reiss

    Hi,
    You can download it from Microsoft
    Url: http://www.microsoft.com/downloads/details.aspx?FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&displaylang=en
    Best regards,
    Henrik

  • TS2634 the flashing light next too the camera is stays on,can anyone help me with this problem.thanks

    the flashing light next too the camera is stays on,can anyone help me with this problem.thanks

    Basics from the manual are restart, reset, restore.  Have you tried these?
    Have you read the manual?

  • Can anyone help me with deleting folders from Appleworks?

    I have an older computer that I am giving to a friend and I want to export and remove all of my personal folders in Appleworks (6.2.9). I have not been able to export info and I have also not been able to delete any folders from Appleworks. I can delete all the info in the individual file (ss or wp) but cannot remove the file itself. I don't know what I'm missing but I cannot find info on how to handle this problem. Can anyone help me with this?

    Search for the file's name in the Finder, throw it away, and empty the Trash; the Finder is the item in the Dock with the smiling face.
    (38373)

  • I can't find the 2G, 3G and LTE options after updating to iOS8.1, can anyone help me with this? I'm using iPhone5s

    I can't find the 2G, 3G and LTE options after updating to iOS8.1, can anyone help me with this? I'm using iPhone5s

    I have check on my service provider about the correct APN settings, but unfortunately doesnt work still..

Maybe you are looking for

  • Storing berkeley db in shared memory

    Hello, In our case, the durability of the bdb is required only for application restart and not for system restart. Therefore, it is desired to back the bdb by the shared memory for performance reasons instead of the file system. The article "Writing

  • Does iphone5 supports all the lte bandclasses for lte operators apple supported?

    Recently, apple has announced a list of operators that supports lte, http://www.apple.com/iphone/LTE/. For model A1429(cdma model),Verizon is one of these operators that supports lte. Here's two question,anyone knows? 1.What 's the lte bandclass curr

  • Automatic purchase requistion in sales order

    Dear All, I have created materials with the material type :SERV,and i have created Z... item category , now i want to create purchase requisition automatically when i save the sales order, so pls anyone guide me on detail of implementing part, or tel

  • Why is iTunes asking me to provide payment information?

    About a month ago, I did have to enter a credit card number in order to purchase more storage for iCloud, but never deleted my iTunes gift card (I prefer to only use iTunes gift cards to purchase apps/music). Now, I am trying to purchase music and it

  • Mac OS 10.5 unable to connect to Mac OS 9 server

    Hi, I just recently updated some computers to Leopard (one had Tiger the other had 10.2.8) and I am having trouble connecting to a server that is on a Mac OS 9. I am able to find the server, but neither computer can connect. I get a -5019 AFP Parm er