Destination type code in po receipts

HI All,
Iam doing a report on po receipts in which there is a column destination_type_code to be displayed, when we looked at the view in the form that is bringing the column value it was from rcv_supply, but when we checked in that table we could not get the value from the above table for some of the receipts.
We are not able to get the exact table from which the destination_type_code is getting populated from, sometimes it is coming from rcv_transactions, sometimes from rcv_shipment_lines and sometimes from rcv_supply. Can anyone tell on what basis does this value is getting stored in the above mentioned tables.
Thanks in Advance.
Regards,
Sandeep V

Sandeep,
Destination type is originally stored in PO Distributions (PO_DISTRIBUTIONS_ALL) and used by all elsewhere.
Thanks
Nagamohan

Similar Messages

  • Change of Destination Type in PO Receipt

    Hi All
    Can we change the Destination Type at the time of PO Receipt for multiple lines? Users would not like to change the Destination Type one by one for every line which is present on the Purchase Order. Can we change the Receipt Routing on the approved PO before PO Receipt so that we can have all the lines of PO as same Destination Type in PO Receipt.
    We are on 11.5.10.2.
    Thanks
    Rajeev

    You can override the Receiving Routing on the Receipts screen only if the Profile RCV: Allow Routing Override is set to 'Yes'.
    The Receiving Routing on the receipts screen is defaulted as follows:
    1. Purchase Order shipment
    2. if 1 is null, then Item Attribute
    3. if 2 is null, then Vendor Attribute
    4. if 3 is null, then Receiving Option

  • Document type codes

    Hi, where can my addon read the document type codes from ? I mean the two letter abbreviations e.g. DN for delivery note, RE for return, PD for goods receipt, used in references to documents by an item. These codes are language dependent and I want to make my addon consistent with B1.
    Thanks for answer.
    Jan

    You won't be reading the alpha-numeric values but rather the TransType (Transaction Type)
    For Example in table OJDT (the journal table) you would look at field TransType
    TransType
    15     Delivery
    16     Returns
    13     A/R Invoice
    14     A/R Credit Memo
    132     Correction Invoice
    20     Goods Receipt PO
    21     Goods Returns
    18     A/P Invoice
    19     A/P Credit Memo
    69     Landed Costs
    163     Correction AP invoice
    25     Deposit
    46     Vendor Payment
    57     Check for Payment
    76     Postdated Deposit
    -2     Opening Balance
    -3     Closing Balance
    30     Journal Entry
    58     Stock List
    59     Goods Receipt
    60     Goods Issue
    67     Stock Transfers
    68     Work Instructions
    162     Material revaluation
    -1     All Transactions

  • Help Configuring BLOBDestination pluggable report destination type

    Hi Folks
    I am having problems configuring the BLOBDestination pluggable report destination type on our Oracle 10g mid-tier. Although I believe I have placed the jar file in the correct directory and updated the correct configuration file I am not sure as the details of directory name and configuration file name were not present. Obviously assuming I knew more than I do.
    At the moment I am assuming I there is nothing wrong with the BLOBDestination code but with our configuration. Also could it be I have the wrong file because of our multiple instances of the report server?
    Any help would be appreciated, even/especially confirmation that someone has gotten this to work or knows that it does not.

    Hi Krrish
    Yes that is the file and entry that we updated. Here is more information.
    When we use the following URL [Sensitive data modified and underlined]
    http://SERVER/reports/rwservlet?server=repintg_pplus&report=general_payroll_rpt.rdf&userid=USERID/PASSWORD@DATABASE&destype=blobdestination&desformat=PDF&desname=http://USERID:PASSWORD@SERVER:1251/pplust/REG_PAYROLL_X/EXTRACT/REG_PAYROLL_X_ID/2/FILE_NAME
    we get the following error on the web page
    REP-50159: Executed successfully but there were some errors when distribute the output
    REP-50125: blobdestination : Caught exception: java.lang.NullPointerException

  • Can user change charge account on a PR/PO if the destination type is 'Inventory'?

    Hi all,
    Can user change the charge account on a PR or PO if the destination type is 'Inventory'? Thanks a lot.
    Regards
    Leo

    Hi Leo,
    Creating Expense Items as Inventory Items should not be ideally recommended to the Customer. If you want to establish tracking of material following process does well
    a) Create an Expense Sub Inventory with Tracking Enabled for Storage of Expense Items
    b) Define all Item Codes for Expense Items
    c) Receive these items in the Expense Tracked Sub Inventory
    d) Use Misc. Issue / Account Alias issue to map material consumption.
    If you follow above steps, you would be able to utilize flexibility of Expense A/C rules for creating a Charge A/C based on Item Category which suits your need.
    To answer your question, you can't update the material a/c both in PR and PO for an Inventory Item, as its defaulted from Org Definition.

  • StreamCorruptedException : invalid Type Code AC .. In case of a network app

    Hi
    I am developing a peer-peer application here.
    What i have is a client and a server on each user, both running parallell.
    User A sends an object to User B through an ObjectOutputStream through the main thread.
    User B reads it using an ObjectInputStream and passes the object that it read, to a new ObjectOutputStream, to be passed to User C.
    User C just reads the incoming object using ObjectInputStream.
    This iteration runs successfully for the first run!
    The moment I go for the second iteration using User A, the method on User B throws a "invalid type code AC".
    class Main{
    Socket sock;
    psvm(String args[]){
    Client newCli = new Client();
    newCli.setSock(<Sets the sock after getting the port and IP address from the user>);
    sock = newCli.getSock();
    ObjectOutputStream oos = new ObjectOutputStream(sock.getOutputStream());
    oos.writeObject(new Client());
    Class Server extends thread{
    public void run(){
    while(true){
    ObjectInputStream ois = new ObjectInputStream(sock.getInputStream());
    ois.readObject();
    I read through this post on this forum and "EJP" asks that one OOS and one OIS be maintained per socket.
    So what i did was add a setter method to the Client class which stores the Socket, and called the setter method instead of creating a new ObjectOutputStream object everytime. This way one ObjectOutputStream object would be maintained per socket per client class's instance.
    class Client{
    Socket sock;
    ObjectOutputStream oos;
    //Getter and setter for sock.
    getSock()....
    setSock()....
    //Getter and setter for ObjectOutputStream
    getOos()....
    setOos(){
    oos = new ObjectOutputStream(getSock().getOutputStream());
    When i do this, the initial iteration itself fails.
    I am posting the outline of my code since it is a big file. But if writing out a smaller version of the app and posting it here will help better understand the scenario, then I'll do it.
    I am re-posting this, coz in the previous posts regarding this same issue, i found that people were writing and reading on the application. While mine is a case of a client-server send and receive.
    I am just writing multiple times at the client and reading multiple times at the server. And each time i'm creating a fresh ObjectOutputStream object, and Client object.
    I don't close the streams since that closes the sockets, but i need to keep the sockets open and send multiple objects on the same socket.
    The explanation is a bit lengthy, so let me know if something is not clear. :)
    Thanks
    Akshay

    I'd be grateful if someone can throw some light on this issue, i have to get beyond this ASAP, and i cannot find a workaround at all.. :/

  • Error in sales order when selecting a warranty item in configurator 'Please enter required information - Service Reference Type Code'

    Error in sales order when selecting a warranty item in configurator 'Please enter required information - Service Reference Type Code'
    Not able to book the sales order because of this issue

    Order Management does not support the inclusion of optional service items in a configured Model BOM (see Support article #1296751.1 for more detail).  Allowing for such would therefore require customization.
    As you've found, there's no modeling restriction that prevents you from creating a Model BOM that includes optional service items, nor is there any problem with creating a Configurator Model for it.  And required service items (such as a warranty item that is a required child of an optional BOM component) do not present a problem; they have nothing to do with Configurator, and would never appear as sub-lines in OM.  The problem arises in OM, which requires that any service item be "associated" to the item it's "servicing".  OM does not automatically make such an association with service sub-lines, even though it might be argued that an association may be inferred by the BOM structure (i.e., OM does not assume that an optional service sub-line is necessarily associated, from a service standpoint, with its BOM parent).  OM customization is therefore required in order to hook any service item up to its corresponding product item.  Many customers who configure service along with product have implemented such a customization.
    (Another gap in such a solution that may be relevant to you is that for an included optional service item requiring recurring billing, Order Management does not create the requisite Service Contract.  Customers have likewise developed customizations to address this, as well.)
    As this is not specifically a Configurator matter (you could have created your order without using Configurator at all, and you would have experienced the exact same behavior), please do not take my explanation as being either authoritative or comprehensive (I am a Configurator expert, and only knowledgeable enough about Order Management to be dangerous).  It would be advisable for you to seek more detailed information/recommendations from the Order Management forum.
    Eogan

  • On my G5 mac at work, I am getting - don't know what to call it - looks like extraneous matrix type code around prompt windows and in applications. Sometimes I will get large shapes of colors, yellows, magentas, cyans. Anyone else experience this?

    On my G5 mac at work, I am getting - don't know what to call it - looks like extraneous matrix type code around prompt windows and in applications. Sometimes I will get large shapes of colors, yellows, magentas, cyans. Anyone else experience this?
    I will attach a recent screen shot of a print window I opened and the extra code is above and below the window. There are matrix type blocks of code and then lines under the window. I get this all the time and it is getting worse.
    Any help to get rid of it would be appreciated.
    Thanks
    TatteredSkull

    It's likely the Video card, or possibly heat.
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto *but not including the Serial#*...
    Hardware Overview:
    Machine Name: Power Mac G5 Quad
    Machine Model: PowerMac11,2
    CPU Type: PowerPC G5 (1.1)
    Number Of CPUs: 4
    CPU Speed: 2.5 GHz
    L2 Cache (per CPU): 1 MB
    Memory: 10 GB
    Bus Speed: 1.25 GHz
    Boot ROM Version: 5.2.7f1
    Get Temperature Monitor to see if it's heat related...
    http://www.macupdate.com/info.php/id/12381/temperature-monitor
    iStat Menus...
    http://bjango.com/mac/istatmenus/
    And/or iStat Pro...
    http://www.islayer.com/apps/istatpro/
    If you have any temps in the 70°C/160°F range, that's likely it.

  • Dynamic Lookup Type Codes in a Message

    Hi there,
    I have the following requirement and I do not know if it is possible to do it or not. Advices, help and suggestions are more than welcome.
    Here is the my problem:
    I have a notification/message that has a respond item linked to a Lookup Type. I would like to change the Description of the lookup type codes depending on a value store in a table. I was looking for some sort of PKG/Procedure to do so but I could not find.
    Is there a way to achieve it without duplicating the notification (linking to the different Lookup Type/Codes)?

    Hi,
    I've answered your duplicate post on the WorkflowFAQ forum at http://smforum.workflowfaq.com/index.php?topic=783.0
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • TS1292 I lost itunes card is there a way to use the code on the receipt to redeem it?

    Lost itunes card is there a way to use the code on the receipt to redeem it?

    http://www.apple.com/feedback/iphone.html

  • First Party Legal Entity link with Fiscal Classification Type Code- R12

    Hello Team
    We are working on one of the dimension on E- Tax (BI Apps).
    As part of the dimension we need to identify the Legal entity and the linked Fiscal Classification Type Code (Associated Fiscal Classifications) to it. This we are able to see from the application with the following navigation.
    Parties: Party Tax Profiles > Party Tax Profiles > Query with the First Party Legal Entity.
    Now would seek your help from the technical perspective. How is this linkage happens between Legal Entity and Fiscal Classification Type Code (Associated Fiscal Classifications to it)? We have verified few tables and there is no link available.
    If possible provide us the Join Conditions.
    Regards
    Pawan Tallam

    Hello Hansen,
    I found this note on My Support:
    "R12. EBTax. How to Differentiate Tax Rate Code for Payables and Receivables Transactions in Tax Classification Code LOV (List of Values). [ID 756985.1]
    Tax Classification Code LOV ( List of Values) is showing all tax rates created in EBTax. You need to choose your tax rate code in the list of values on tax classification code in Payables or Receivables. How do you differentiate the Tax Rate Code for Payables and Receivables transactions in the Tax Classification Code LOV?
    *Solution*
    Please note that in R12, there is a centralized tax engine. Tax set up made in EBTax will be and can be applicable to both Payables and Receivables. Any tax rate created in EBTax, will be available as a Tax Classification Code LOV in both these applications. It cannot be restricted and it is the intended functionality.
    If Payables and Receivables exist with unique operating units then the MOAC security settings can be used to restrict the LOV. Additionally if EBTax is configured propertly the tax classification codes will not be used for tax determination except in exception based scenarios. Please see the case study in *Note 577996.1* for examples
    I just setup ebTax using tax codes for AR and AR and, by the moment, the tax codes from both modules are shared on the LOV. We used a convention for the code naming...but I'm will be looking note 577996.1
    Regards.

  • RFC Destination Type G too fast

    Hi All,
    I have an RFC Destination (Type G) that is pointing to another XI system. We use that to send messages directly from XI to XI. However, when there is heavy load,we get a lot of failures in the source XI System. Messages go eventually after many retry attempts.
    Is there any way that i can slow this down, so that the messages queue up in the Source system and flow slowly towards the target. We can do this in a Type 3 RFC destination by reducing the number of connections in Transaction SMQS. Any such options for Type G?
    Thanks,
    Varun

    Hi Liang,
    Thanks for your response.
    We are using the XI adapter. Also, to clarify, this is a connection between 2 separate XI Systems.
    Thanks,
    Varun

  • RFC Destination type for IDOC to FILE

    Hi,
    wat is the RFC Destination type for IDOC to FILE ?
    jeff

    hi,
    u shud create rfc dest tye: R/3 connections...that is type 3.
    refer this:
    R/3 side settings
    1. SM 59 (RFC destinations)
    Create a RFC destination pointing to the XI server. The connection type : R/3 connection. The target host: the XI server.
    2. WE 21 (Ports in IDOC processing)
    Create a transactional port. Give the RFC destination created in this.
    3. BD 54
    Create a logical system.
    4. WE 20 (Partner Profiles)
    a. Create a new partner profile under partner type LS.
    b. Assign the message type in outbound parameters.
    c. Open the message type (Dbl click) and configure the receiver port to the port created.
    XI side settings.
    1. SM59 (RFC destination)
    Configure the RFC destination pointing to the R/3 system.
    2. IDX1 (Port maintenance in IDOC Adapter)
    Create a port and provide the RFC destination.
    [reward if helpful]
    regards,
    latika.

  • RFC Destination type RFC Receiver Adapter?

    Hi,
    What is the RFC destination type for Sender RFC Adapter?
    and what is the need a Program ID for sender Adpter.
    What is the RFC destination type for Receiver RFC Adapter?
    Regards
    Gopi

    When we use the RFC Adapter?
    SAP systems up to and including SAP Release 4.6 are not able to exchange data by using XML messages and http. The only way you can connect such systems to the Integration Server directly is by using the RFC adapter (or the IDoc adapter).
    You require the sender adapter if you want to use the Integration Engine to process RFCs. The RFC adapter converts the incoming RFC data to XML message format (RFC XML) so that it can be processed by the Integration Engine.
    You require the receiver adapter if the determined receiver system expects the data from the Integration Engine to arrive in RFC format. In this case, the Integration Engine must transfer the received XML message (RFC XML) to the RFC adapter. The RFC adapter converts the RFC XML message to a valid RFC call and executes the call.
    The following three scenarios are possible when using the RFC adapter and the Integration Engine:
        1) SAP R/3 to SAP NetWeaver Application Server       
        2) SAP NetWeaver Application Server to SAP R/3
        3) SAP R/3 to SAP R/3
    When we use ABAP Proxy ?
    SAP systems based on Web AS 6.40 and higher are able to exchange data by using messages and HTTP. These systems can use ABAP proxies to connect to the Integration Server.
    To connect the platform-independent message interfaces, which are stored in the Integration Repository, to the Integration Server, use the ABAP proxy interface.
    Please Reward the points if it's helpful...
    Regards,
    Ramana.

  • RFC destination types

    When do we use RFC destination Type T versus Type 3?
    While creating RFC destination Type T, the program ID, blogs says we should use "Registered server program" and can give any free text. I tried that but says there is no registered server program called XXX on system. So, i'm really confused here.
    my understanding is for IDOCs you need Type 3, and for RFC you need Type T. Is that true or we can use any type with these?
    Thanks,
    Anika

    Hi Anika,
    i think this links could be useful:
    http://help.sap.com/saphelp_47x200/helpdata/en/22/04262b488911d189490000e829fbbd/frameset.htm
    Differences in the RFC destination types
    You're right, for Idoc you have to use type 3 and for RFC you have to select a type T destination entering a program ID.
    Let's make an example.
    Suppose you have defined an RFC destination RFC_X with program id PID_X on ECC.
    On XI you have created an RFC sender adapter and you have specified ECC as the sender and PID_X as the program ID.
    When from ECC an RFC is called using destination RFC_X then the sapgateway looks for a receiver registered with the program id PID_X, it finds your RFC adapter and sends the call to XI.
    Hope it helps.
    Kind Regards,
    Sergio

Maybe you are looking for

  • From a h8-1417c boot w8 from 1 hd and w7 from second hd

    I want to have w8.1 on one hd and w7u on a second hd. being able to boot from either as needed.  When I use the example on "http://support.hp.com/us-en/document/c03801890" windows 7 wants to check  file parameters on a hd which one I don't know? I we

  • ATT can't tether/hotspot and do voice at same time?

    While using the new hotspot feature in IOS6 on a 4S, I can't tether/hotspot and do a voice call at the same time. It appears to pause the clients on the hotspot, although data directly from applications on the phone seem to work. I understand Verizon

  • Naming Conventions of Web Dynpro Wizard

    Hello everyone, is it possible to change the naming conventions of the coding generated by the web dynpro wizard? According to our internal naming conventions object references (type ref to) are to be named LR_name, but the wizard is calling them LO_

  • BCS Business Data List data HTML Formatting data

    I have a Business Data List webpart in Sharepoint Online (2013) which pulls data from a BCS List. This data contains HTML which is not rendering as HTML but the HTML text. I've modified the data to HTML format the data, no joy (example: < img src="/)

  • Leopard unusable

    If you have not upgraded yet, count yourself lucky. This OS is unusable for anyone in software development. It is unstable, slow, memory-hungry, drive-intensive and generally unsuitable for use. I have been an Apple developer since the Lisa, but this