What table is the contract number stored for Limit POu2019s

Hi,
I wanted to know the table name where the contract numbers are stored for the Limit PO? Are there any specific tables where contract numbers are stored.
Thanks in advance.
Regards,
Deepak BR

Hi Deepak,
i think in the BBPS_MON_SC_ITEM structure we can know the contract no asigned to limit item PO as in that structure the ITM_TYPE field specifices whether it is a normal Shopping cart or Limit cart. And there are many other structures which you can search via SE16.
Hope it helps you to some extent,
Lokesh.

Similar Messages

  • What table stores the SAPscript paragraph formats for a form.

    Does anyone know where the paragraph formats are stored for a SAPscript form.  I can view them using SE71, but what I am looking for is the table where all this information is stored.
    Thanks.
    Bill Lomeli

    Hi Bill,
    Check table "DOKHL" .
    ID = 'DE' (Paragraph ID)
    LANGU = SY-LANGU
    OBJECT = 'TDPARAGRAPH'.
    TYP = 'E'.
    *------Sample code -
          SELECT SINGLE *                       
            FROM  DOKHL                         
            WHERE LANGU      = LANGU            
            AND   ID         = ID    "Paragraph ID"             
            AND   OBJECT     = OBJECT      "value :TDPARAGRAPH"     
            AND   TYP        = TYP        'value :E'.       
    Lanka
    Message was edited by: Lanka Murthy

  • Where is the CCV number stored for offline processing? I cannot see it the secure PDF document

    Please note that we will not collect CVV, CVV2, CVC2 & CID as per PCI standards.
    A Card Verification Value code, CVV, (CVV2 for Visa, CVC2 for MasterCard and CID for AMEX) is the three or four digit number located either on the front or back of a credit or debit card. The effectiveness of this code is limited to the ability to keep it out of the hands of hackers and thief's, which is why it is prohibited by PCI Standards from being stored in any shape of format.

    Hey kathys25866299,
    Please ask your coworker to save the PDF in a different folder with administrative privileges.
    Also, try annotating some other PDF and check if the same problem appears.
    Has she tried sending the PDF via different email system (other than Outlook) after reviewing.
    Let me know.
    Regards,
    Anubha

  • What table holds the underlying metric data for Tablespace Free Space (MB)?

    10.2.0.4; Windows 64bit
    I'm assuming it's in the SYSMAN schema? I can view it in DBConsole, and can see the Avergae, Low & High values for the last 31days - but want to query the raw data itself.
    Cheers
    Gary

    Check out the Reference Manual: DBA_HIST_TBSPC_SPACE_USAGE
    I suspect the averages and such are derived values in Oracle's queries.
    Edited by: Centinul on Jul 12, 2012 11:08 AM

  • Contract Number Display in Limit PO screen

    Hello All,
    I have some queries on Limit Items:
    1) I reference a Contract while creating a Limit Order. But the value of the Limit PO is not added to the released value in the Contract (call off). The call offs happen perfectly well when we create a normal Purchase order.
    2) In purchase orders referencing a contract, at the item level of the PO, the contract number is displayed. But in case of limit POs, the contract referenced is not displayed.
    Is there a way to display the contract number in Limit PO?
    Any inputs and guidance will be highly appreciated.
    Thanks and best regards,
    Nish Kel

    Hi,
    The OSS note is no more.
    moreover, the contract call off for limit order is not a standard functionality.
    I am also trying a work around or with development. Keep you updated.
    Cheers, Renga

  • Under what condition does SAP populate the Contract number during dunning

    Hi,
    Would anyone possibly know under what condition SAP populates the Contract number in the Dunning history transaction(FPM3). We have seen some examples in our production environment where dunning populated the Contract number(VTREF) in the dunning history header table FKKMAKO but there are other examples where the VTREF is blank in FKKMAKO.
    Thanks,
    Tarunavo Bhattacharya

    Hi,
    Please check if the contract is populated for the document posted for which the dunning is executed.
    As per my understanding, If the document is posted at contract level, the document would have the contract populated, and the dunning basically is executed at CA level, but if the document is having the contract populated, it should be displayed once the dunning is completed for the dunning history. If the contract field is blank, it wont appear for the dunning history details.
    Hope this helps!!
    Regards,
    Rajesh Popat

  • I want to install on my other computer the "creative suite 6" and I can't find the serial number. For some reason, there is no sticker on the cover of the disc. I think I bought it at 2012. What should Ido?

    I want to install on my other computer the "creative suite 6" and I can't find the serial number.
    For some reason, there is no sticker on the cover of the disc.
    I think I bought it at 2012.
    What should Ido?
    Hagar

    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • Userexits/BADI in ME31K for getting the contract number created.

    Dear Experts,
    Is there any userexits/BADI available in ME31K , for getting the contract number once it is created.
    Thanks&Regards,
    Anversha

    Hi
    find the BADI:
    1. Goto SE24
    2. Open the class "CL_EXITHANDLER"
    3. Open the Metnod "GET_INSTANCE"
    4. Put a Break point in the "  CASE sy-subrc."
    CALL METHOD cl_exithandler=>get_class_name_by_interface
        EXPORTING
          instance                      = instance
        IMPORTING
          class_name                    = class_name
        CHANGING
          exit_name                     = exit_name
        EXCEPTIONS
          no_reference                  = 1
          no_interface_reference        = 2
          no_exit_interface             = 3
          data_incons_in_exit_managem   = 4
          class_not_implement_interface = 5
          OTHERS                        = 6.
      CASE sy-subrc.
        WHEN 1.
          RAISE no_reference.
        WHEN 2.
          RAISE no_interface_reference.
        WHEN 3.
          RAISE no_exit_interface.
        WHEN 4.
          RAISE data_incons_in_exit_managem.
        WHEN 5.
          RAISE class_not_implement_interface.
      ENDCASE.
    5. Come Back and Execute the Transaction Code
    6. In the Debugging screen "exit_name" having the BADI Name for that Tcode.

  • UserExit/BADI for getting the contract number in ME31K

    Dear Experts,
    Is there any userexits/BADI available in ME31K , for getting the contract number once it is created.
    Thanks&Regards,
    Anversha

    Hi
    find the BADI:
    1. Goto SE24
    2. Open the class "CL_EXITHANDLER"
    3. Open the Metnod "GET_INSTANCE"
    4. Put a Break point in the "  CASE sy-subrc."
    CALL METHOD cl_exithandler=>get_class_name_by_interface
        EXPORTING
          instance                      = instance
        IMPORTING
          class_name                    = class_name
        CHANGING
          exit_name                     = exit_name
        EXCEPTIONS
          no_reference                  = 1
          no_interface_reference        = 2
          no_exit_interface             = 3
          data_incons_in_exit_managem   = 4
          class_not_implement_interface = 5
          OTHERS                        = 6.
      CASE sy-subrc.
        WHEN 1.
          RAISE no_reference.
        WHEN 2.
          RAISE no_interface_reference.
        WHEN 3.
          RAISE no_exit_interface.
        WHEN 4.
          RAISE data_incons_in_exit_managem.
        WHEN 5.
          RAISE class_not_implement_interface.
      ENDCASE.
    5. Come Back and Execute the Transaction Code
    6. In the Debugging screen "exit_name" having the BADI Name for that Tcode.

  • Total rowsize for table exceeds the maximum number of bytes per row (8060).

    I am trying to Creat a UserDefined Field in Marketig document OPOR Table through the script. then the warning  "Total rowsize for table exceeds the maximum number of bytes per row (8060). " is occuring ,and transcation rollback. how can i solve the problem.

    You have three ways to deal with this:
    1) make you user field smaller.
    2) check all other UDF in that table, and if you find one that your not using, delte it.
    3) Somebody told me that SQL Server 2005 will not have this problem. Maybe you can migrate.
    Best regards
    Harold Gómez V.

  • What happened to the security login section for one password which allows me to have passwords stored???

    what happened to the security login section for one password which allows me to have passwords stored???

    * Tools > Options > Security: Passwords: "Remember passwords for sites"
    Make sure that you haven't saved Uppercase and Lowercase versions of that name and password.
    Remove saved Password(s):
    * [[Remembering passwords]]
    * [[Protecting stored passwords using a master password]]

  • How to get the contract number selected on VA01.

    Hello Experts,
    While creating a sales order a contract number is selected.
    ie to which contract this SO is being created.
    We get a ALV list with list of contract number and we select one.
    But no where this contract number is displayed.
    I have a placed a input/output box on additional tab header leve of VA01.
    I need to display the contract number selected by the user for that sales order on to that box.
    and this should  happened the moment the user copies the contract number from the ALV list
    any functon exit or badi's which could be used to get the value.               
    right now iam using the include MV45AFZZ
    I know the table getting used.
    Thanks in advance.
    Regards,
    Ranjith

    You can put your code into the MOVE_FIELD_TO_VBAP userexit in include MV45AFZZ. The contract information is stored on item level (VBAP) in fields WKTNR (contract number) and WKTPS (contract item). If you can have more than one contract in a sales order you should display that information on item level rather than header level, if you always reference one contract only per sales order header should be fine.
    Hope that helps,
    Michael

  • Whre to see the contract number in sales order

    Hi All,
    I created conrtact thruogh T.code:va41,based on this number,i create sales order.But my question is where can i see the contract number in sales order(va01).Pls suggest.
    Thanks,
    GTNR

    Hi GTNR,
    This is not possible to see in VA01 while creating the sale order,because the system taking the reference document no form buffer,so it is not possible to see in VA01.While creating the order you select create with reference there it self you will tell the system through which contract you want to create the sale order.
    Once you save the order in change mode VA02 you can see that through document flow or form table also you can see
    as Mr.Ravi mentioned above.
    Regards
    Ram

  • How to find out the Idoc number triggered for any material transfer frm SAP

    Hi Folks,
    Can any body let me know How to find out the Idoc number triggered for any material transfer frm SAP?
    Do we have any navigation for that in MM03?
    Thanks,
    SPMD.

    Hi Shabbirmdpasha,
    If you know the user name then you can find the idoc numbers created by that user. But the problem here is it not only gives the material it gives all the idocs created by that user. Go to SE16 --> table name EDIDS --> here you can fill the approximate date and in UNAME give the userid and execute. This will give all the idocs created by that user. I know it is only a partial solution.
    Also would suggest to post the same in abap forums for more answers:
    ABAP Development
    Regards,
    ---Satish

  • Had a windows computer with my element 7.  Now just bought a Mac OSX   version 10.9.2 what would be the best photoshop elements for this machine.  I did download elements 12 from Apple store but kept getting incompatible message when trying to open a phot

    I thought elements were simple but maybe it is just me.  Having problems moving photos from iphoto to elements

    Duplicate post; see:
    had a windows computer with my element 7.  Now just bought a Mac OSX   version 10.9.2 what would be the best photoshop elements for this machine.  I did download elements 12 from Apple store but kept getting incompatible message when trying to open a phot

Maybe you are looking for

  • Ios7 push notifications and music

    this update is really starting to annoy me now. everytime i go on texts/whatsapp/kik/ anything it tells me to connect my phone to itunes to use push notifications.. so i connected to itunes and got load of songs i didnt want on my phone and no push n

  • How to download Acrobat Standard 9?

    I bought Acrobat Standard 9 for 2 pc's in 2009 and want to now download it to a second pc.  I have all the product info including product codes.  How do I download it?

  • Right-click to open photos in PSE

    I used to be able to right-click on a photo and select 'open with PSE 11' but, I installed Portrait Professional on my laptop and now PSE doesn't show as an option. I even tried to change the program at the bottom of the window, but PSE doesn't even

  • SSD in the MBP?

    Hi: Can someone who's got a new MBP with the SSD fill us in on the vendor that Apple's selected for the SSD drive? Thanks!

  • State wise VAT Report?

    HI All, Is there any report which shows state wise vat report, this is required for set off vat input v/s vat out put in a particular state. in our scenario we dont have any manufacturing plant, we are traders so we created each state as a plant. so