PRT link with opeartion in order

Hi All,
In one scenario of Idoc we have created Y segement in the IDoc & in this segement we want to display the PRT assigned to specific  opeartion in the order.
Please give me table name or any such link that will able me to fetch the PRT assiged to operation in the order
Please note that my input will be Order no.
Thanks & Regards
Sachin

Hi
I hope you will get some info through this thread
Re: PRT Tools
Regards
Brahmaji

Similar Messages

  • BAPI for changing PRT link to operation in order in Plant maintenance...

    Hello,
    I am working on Plant maintenace module. I want to change the PRTs associated to an operation (VORNR) of an Order (AUFNR) programatically.
    The PRT documents are created automatically in SAP with newer versions. Whenever a newer version is encountered, The PRT link with the Operation of an order should be changed programatically.
    Is there any BAPI avaialable to do change PRT linkt o operation of order  ?
    Thanks
    Regards,
    Rajesh.

    No such BAPI exists...

  • Maketing Plan & Campaign link with ERP Internal Orders

    Hello,
    I have a requriemnt where we need to do maketing  Planning & budgeting . We will create marketing plans & Campaings in SAP CRM but will store planning data in SAP ERP Internal Order due to some reason.
    My question is: is there any way to link Marketing Plan & campaigns from SAP CRM to SAP ERP Internal Order. We can not use SAP ERP PS (WBS) intergation due to project limitation.
    Thanks in advance,
    Sufi

    unfortunately, the standard function doesn't support use internal order with campaign
    so if you need to realize it ,I think you can build a customize field in campaign to fill the internal order, and store the link in your customize table.
    If any expense happen on your campaign, you need to create your FI document through some BAPI to FI, and fill the internal order this the BAPI.  I believe you need to develop this functionality, as the standard design doesn't include this

  • I purchased elements 9 for iMac as a paid download 10/23/2012, recently I had to replace my hard drive and lost the program. I had read that purchased downloads were available for three years but the link  with my past order information is no longer click

    I purchased elements 9 for iMac as a paid download 10/23/2015, recently I had to replace my computer's hard drive and lost elements. I had read that downloaded purchases would be available for 3 years but, when I click onto the serial number of that order it isn't active. By clicking onto the link it should take me to the site where I can re download the elements 9 but, it doesn't do anything.  Unfortunately calling Adobe did not help, they will not address any elements questions over the phone, there's a recording directing all elements questions to this forum.  Any suggestions would be greatly appreciated.  Thank you.       Diana

    Try here:
    https://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-7-8-9-downloads.html

  • Link with blocked sales order with advance payment

    Hi Gurus,
    I have a scenerio, where, due to a shortfall of customer credit balance, system blocks the sales order and upon receiving an advance payment from the customer, i would like to know if the system can validate that, an advance has been received and can inform the user that advance received against the blocked sales order. So that, instead of manually releasing the blocked sales order user gets to know whihc are the sales orders to be released first and based on which system can allow the user to release first the blocked sales order and then the subsequent sales orders are processed for credit check.
    Is there any exit or what is the enhancement that can be implemented for having this scenerio mapped.
    Text Removed
    Edited by: Lakshmipathi on Mar 17, 2011 8:57 AM

    If you dont maintain any sale order reference and execute VKM3, system will populate all blocked sale orders.  There users can select the required sale order and release it and I dont think, for this purpose, an user exit is required.  You can also even consider VKM1
    Still if you feel that it is required, you can try with any of the following user exits.
    1)  LVKMPFZ1: USER_CREDIT_CHECK1
    2)  LVKMPFZ2: USER_CREDIT_CHECK2
    3)  LVKMPFZ3: USER_CREDIT_CHECK3
    thanks
    G. Lakshmipathi
    ps:-  Please dont offer anything

  • Rebate - link with sales order - invoice

    Hi,
    I'm looking for the way how the table KONA (rebate) is linked with vbak (sales order) and/or vbrk (invoice) ?
    I tries a trace, but I received a lot of tables and I'm not sure which to use...
    Thanks in advance for the help !

    hi,
    kona-knuma = vbak-knuma.
    and
    kona-knuma = vbrk-knuma.
    thanks,
    anupama.

  • Really Urgent: Problem in making link b/w sales order and production order

    Hi,
    I am trying to make link b/w the sales order delivery(VL03) by taking its Batch Number(LIPS- Delivery table) and linking with AFPO(Production order Table) field (batch no) so that i can see the fruther operations done o dat production order made against sales order,but it is not coming .
    I want to have help which allows me to make link b/w delivery (vf03) and the productiona order.
    plzz help me out it is really urgent.
    Edited by: ric .s on Apr 11, 2008 7:43 AM
    Edited by: ric .s on Apr 11, 2008 7:59 AM
    Edited by: ric .s on Apr 11, 2008 9:23 AM

    You have delivery no(VBELN) & itam no (Posnr)from lips table.
    Now
    1. go to VBFA table end get the corresponding sales oredr no and order item no.
    In VBFA table pass the delivery no in VBELN and delivery item in POSNN and 'J' in VBTYP_N and 'C' in VBTYP_V.
    Now VBELV & POSNV will return the sales order no and sales order item.
    2. Got to VBAP table and get the corresponding AUFNR to the order no and item no.
    3. Now with that AUFNR you will get a connection with AFPO(Production order Table.

  • Linking with 12.4 beta (using CC -std=c++11, unresolved symbol operator new)

    Hi,
    I've got our code compiling with 12.4 beta now, but linking is proving slightly different to 12.3. If I compile with "CC -std=c++11", then I get link errors:
    Undefined                       first referenced
    symbol                             in file
    operator new[](unsigned long)         foo.o
    operator new(unsigned long)           foo.o
    These can be resolved by using "-std=c++11" when linking using "CC" (a mixture of .o files and archive .a libraries), but this involves modifying many Makefiles to add this extra flag, which isn't required for the Oracle Studio C++ 12.3 compiler.
    Is this expected behaviour? Or shouldn't the compiler figure this out itself when linking?
    Many thanks,
    Jonathan.

    As object files created during the compilation contain references to those runtime libraries you definitely
    need to link with them in order to satisfy those references. In your case it is allocation functions.
    -std=c++11 uses a completely different ABI and a completely different set of runtime libraries compared to the default mode.
    CC -std=c++11 knows which libraries to use (and which library/run paths to set up).
    CC by default links with different set of libraries and sets up a different set of library/run paths.
    Thus you dont have any other options - you need to link with CC -std=c++11.
    Say, if you would compile the sources with g++ and then attempted to link it with Studio result would be the same.
    regards,
    __Fedor.

  • What happens sales order linked with wip job is cancelled

    HI,
    what happens sales order linked with wip job is cancelled ?
    actually if wip job is cancelled then sales order lines is on hold ?
    i wanted to know what if sales order of that wip job item line is cancelled say example  if that wip job already is in processing .
    please help me
    Thanks in Advance.

    If WIP job cancelled or Requisition/PO is cancelled, corresponding order line reservation will be cleared and will go to 'Supply Eligible' Status. Progressing this line will again follow the WIP/Requisition path based on item.

  • LINK PRODUCTION ORDER WITH CROSS_COMPANY PURCHASE ORDER

    Hello,
    we have 2 plants (differents conpanies). Plant A do purchase orders to plant B. So, plant B have to produce this material to delivery plant A.
    We need to link this purchase order (intercompany, NB purchase order, two cmpanies) to the produce order of plant B.
    Thank you very much

    yes, i use that.
    The purchase order is a stock transport order with delivery and invoice (two plants).
    If I do the STO in plant A, i can see this STO in plant B. And this STO create (by MRP) planned orders in plant B to produce. But the problem is that i can't link the planned order with the STO.
    For example, if there are two STO with the same delivery date(100 units and 200 units), it create one planned order with 300 units. And i need two planned orders (100 and 200) linked with each STO.
    Thank you very much

  • Multiple Order Linking with One PR

    Hi Experts,
    Is there any way where i can link Multiple Maintenance Order in one PR.This i need to track the services against each order through one PR PO.
    Regards,
    Kavvya

    HI kavya
    For your requirement you can creatre PR/PO independently with account assignment category F. After wards you create maint. order as per requirement & assign services from this PO to any operation by changing the control key to PM03 but change the reservation/purchase requisition indicator to never manually so that it doesnt trigger any PR from maint.order. after changing the control key, you select the operation & click external button below you will get service selection in which you select exter nal services from F4 list (you can select from the PO) & qty also. By this you will get planned cost of external service. Then you do service entry in ML81N with reference to PO & give maint order no & cost will flow to maint.order. You can link to multiple maint order by this. You consume external services of single PO in multiple maint. order.
    Shakti

  • Oracle Purchasing - How can I link a requisition with a purchase order?

    Hi All,
    I have a problem. I don´t know how to lonk a requisition with a purchase order.
    I use the following tables:
    PO_REQUISITION_HEADERS_ALL
    PO_REQUISITION_LINES_ALL
    PO_LINES_ALL
    PO_HEADERS_ALL
    PO_DISTRIBUTIONS_ALL
    Those are the mains tables, but I can´t obtain a purchase order information based on a created requisition.
    Someone could help me?
    Thanks,
    Facundo.

    Absolutely, Emile.
    Use the Tooltip Widget. Inside the Tool Tip you can put what ever content you wish. Let me know if that works for you.
    If not can you supply a link?

  • How is functional location linked with work order tables

    Hi, Experts:
    I am working on a BW project to extract Plant Maintenance data from R/3 to BW system. We need to get work order data with related Functional Location data togather. When check the 2 tables AFIH for Work Order header and AUKF for Order master data, I don't see Functional Location field in neither of the 2 tables.
    Can anyone please tell me how (by which table/field) Functional Location data in table IFLOT is linked to a Work Order stored in tables AFIH and AUKF?
    Many Thanks,
    Jenny

    Hi, Thyagarajan:
    Thanks for the reply! I tried to get the values of ILOAN from table AFIH. And pass the value to the field ILOAN in ITOB. However, no data returned from ITOB. The ILOAN in AFIH has different set of values from the ILOAN in ITOB.
    Any suggestions?
    Thanks,
    Jenny

  • Try to order print but no link with my apple id

    I tried to order a print but there's no link with my Apple account and when I tried to write my address in the popup window, PHOTOS doesn't recognize the format, it says "the address must be an email format" ??????
    Please be kind....give us back Iphoto!
    Lorenzo

    Open an iCloud account using an Apple device, you can't do it on a PC.

  • Can I Select from table skipping extents linked with lost datafiles?

    Hi~,
    I need your help to recover my database.
    I'm using oracle 9.2.0.8 at Fedora 3 with no-archive mode.
    and I don't have any backup.
    Last night, I experenced hard disk failure.
    I tried OS-level recovery, but I lost some datafiles of tablespace.
    anyway, I wanted to recover my database without data of lost datafiles.
    so, I issued "alter database datafile offline drop" and
    start oracle instance.
    But, datafiles were not removed from dba_data_files view and
    extents linked with lost datafiles were not removed from dba_extents view!
    Selecting query of some table containing extents linked with lost data files,
    I got "ORA-00376: file xxx cannot be read at this time" message.
    So, my question is that..
    HOW CAN I SELECT FROM THAT TABLE WITHOUT SCANNING EXTENTS LINKED WITH LOST DATA FILES?
    Thanks.

    Hi,
    Without being in archivelog and without backup, one can't do any sort of recovery. That's why backups and archivelog are so so important.
    The offline data file command never does actually drop the datafile. It merely indicates to the control file that now the said tablespace will also be dropped. This won't update any view that the files are not supposed to be used or shown to you anymore.
    This is what documentation says about the recovery of the database in the NoARch mode,
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/osrecov.htm#i1007937
    You do need a backup in order to get those tables being read. Oracle doesn't have any feature which can offline/skip the missing extents for you and let you read the data without them.
    HTH
    Aman....

Maybe you are looking for

  • Error in JSPM Support Pack update

    Hi, i am in the process of doing java support packs form level 9 to 14. I am doing 3 at a time After the sap-jee support pack got deployed the server0 for j2ee is not starting. Pls hlep The following is the log of disp_server0 trc file: "F:\usr\sap\B

  • How to Refer the Selected value in a Select List

    I have a page item which is a select list. I have a button in my region which when clicked will call a process. This process takes the current value of my page item as a parameter. However, when I select a value from the Select list and click on the

  • N+1 & OfficeExtend Access Points

    There seems to be a lot of conflicting information out there so I thought I'd ask you guys. Is N+1 supported with OfficeExtend Access Point (OEAP) 600 clients supported? I want to implement it on the following 2* 8510 WLC's release 7.5

  • Problems syncing iPad Air with iTunes 12.1

    I cannot seem to get my iPad Air to sync with 12.1 so there is no way to properly back up and no way to upload any new content.  Please help.

  • Adobe Flash and Flash based Video Players and the ps command

    OK, I have two v20z servers. I just reinstalled Solaris 08/07 on both of them. These are both Sunray servers. One of the servers is fully patched and has SRSS 4.0 installed and serving Sunrays just nicely. I just finished installing Solaris on the 2n