Table containing both SC and PO number

Hello experts,
Can any one among you let me know the table consisiting of both Shopping cart and purchase order number in SRM.
I appreciate your quick response, and be rewarded with desired points.
regards,
IGA.

Hi,
For Classic scenario,ou can pass the Line Item GUID (CRMD_ORDERADM_I) of the shopping cart to the table BBP_PDBEI ( field GUID) and get the PO details.
All the SC details can be seen in table CRMD_ORDERADM_H(Header) and CRMD_ORDERADM_I(Item).
You can also use the FM 's:
Shopping Cart: BBP_PD_SC_GETDETAIL.
PO: BBP_PD_PO_GETDETAIL.
IF you are on ECS,then the local PO and SC details can be found in the tables CRMD_ORDERADM_H(Header) and CRMD_ORDERADM_I(Item).
BR,
Disha.
Do reward points for  useful answers.

Similar Messages

  • Table containeing both the purchase order number and the sales order number

    hi all!!!
    what is table that contains both the purchase order number and sales order number corresponding to that purchase order number.
    Moderator message: please search before posting.
    Edited by: Thomas Zloch on Jan 31, 2012

    Hi Sunny,
    Yes they are same. You will be creating a purchase order in ME21n. After creating purchase order you will shown a number for that order.
    Reward points if useful.
    Thanks,
    Swamy Kunche

  • I would like to read a file and display the results in a table containing both strings and numbers?

    Hi,
    I just need a simple way of doing this as at the moment, i read one line at the time containing strings and numbers, whenever i convert this line to an array i loose the strings, if i want to display it, it displays as a group of lines while i would like to display it as a table with column headers. The file is an .xls worksheet.
    Any suggestions?
    Thanks
    Me

    Hi,
    Look at attach vi.
    If this is not what you need please clarify.
    With ActiveX you can Open Excel, interact with it (read and write values to cells...
    But if you can read it this way, I think it's easier.
    Hope this helps,
    Paulo
    Attachments:
    XL.zip ‏24 KB

  • Which table contains both company code and Plant

    HI,
    Which table contains both company code and Plant?
    which table contains Purchase requisition number and Company code?
    Please help me.

    plant and company code <b>marc</b>
    MANDT     MANDT     CLNT     3     0     Client
    MATNR     MATNR     CHAR     18     0     Material Number
    WERKS     WERKS_D     CHAR     4     0     Plant
    Purchase requisition number and Company code in <b>ekpo</b>
    MANDT     MANDT     CLNT     3     0     Client
    BANFN     BANFN     CHAR     10     0     Purchase requisition number
    reward fi usefull

  • Does table MCHB (batch stocks) contain both valuated and non valuated stock

    Hello
    Does table MCHB (batch stocks) contain both valuated and non valuated stock?
    Is it possible that material has both valuated and non valuated stock for the same plant and storage location?
    Thanks

    Hi ,
    Most of your queries has been answered by Jurgen.
    1)Does valuated or non valuated is linked with valuation type? yes ..if the material is valuated then only there is valuation type.It is used for split valuation .
    2)Where can I see whether material is valuated on plant or not?
    to check the valuation level IMG >Enterprise Structure>Definition>Logistics - General>Define valuation level
    and to check value and quantity updation at plant level check
    IMG >Logistics - General>Material Master>Basic Settings>Material Types-->Define Attributes of Material Types
    3)Case1
    I want material A to be valuated at the plant without split valuation
    Case
    I want material B to have 0 value at plant
    go as Jurgen has recommanded in the previous post . for material B used different material type which is not valuated at that plant .
    Regards,
    Anupam

  • Standard Report to get both PR and PO number

    Can anybody suggest a standard report which gives both PR and PO number. I am working with 4.6 release.

    dear
    choose ME5A and select closed requisition and run the report you will get it after set the dynamic selection,
    this is the only way to get the PR and PO no. in a list else you can get individual as per the laxman.
    regds
    dev...!

  • Table contain user name and tcode

    Dear Experts,
    Can you tell me which Table contained user name and tcode field?
    Thanks and Best regards,
    wilson

    You need to be even more carefull with parameter transactions.
    If SU24 is not maintained for them, PFCG will pull the proposals from the core transaction (via which the parameters are used in the skip screen feature...). If the core transaction has authority proposals for S_TCODE, then you will get those tcodes and their proposals as well.
    A carefull choice of menu objects (not only limited to Tcodes), taking heed of SU24 defaults and tuning it to meet your needs is the key. But it requires organizational discipline and good training, otherwise rather dont use it for anything other than important objects which you want to control manually only, even if your business roles are a mess.
    You can also restrict the authorizations of the security admins for example (as unpopular as that may sound... to segregate authorization concept development (SU24 etc), role building development (PFCG etc) and user administration (SU01 etc). Object S_USER_TCD also has a field called TCD...
    There are also other objects (as Dipanjan has pointed out) which have TCD as a field of an object which is not S_TCODE. In addition to I_TCODE, Q_TCODE, P_TCODE, see also S_IDOCMONI for example.
    To be honest I have given up on trying to find them all
    The easiest solution is to use the menu and maintain SU24 when the transaction is configured or the application is developed and tested. That is what SAP does as well in SU22. It is more work upfront, but more sustainable in the long run.
    If your users (and auditors) only see the menu (and use the SUIM --> Executable transactions) options, then you can get away with it in the short or even medium term. Latest when someone else need to maintain the roles they will hate it...
    My 2 cents,
    Julius

  • Crystal 2011 linking table with a String and a Number

    Hello,
    I am able to retrieve the data I want with the following  SQL Query in SQL: If I try to create it in Crystal 2011 APPLRUNN is a string and CNTBTCH is a number. Is there a way I can link these two fields if one is a string and the other is a number ?
    SELECT   
    ENADV.APPLRUNN, ENPBD.CNTBTCH,
    ENPBD.DOCNBR
    FROM       
    ENADV INNER JOIN
    ENPBD ON ENADV.APPLRUNN = ENPBD.CNTBTCH
    Thanks,
    Debbie

    Hi Debbie,
    You cannot linking  table with a string and a number. I have given a example query:
    SELECT   
    ENADV.APPLRUNN, ENPBD.CNTBTCH,
    ENPBD.DOCNBR
    FROM       
    ENADV INNER JOIN
    ENPBD ON
    ENADV.APPLRUNN = ENPBD.APPLRUNN  or ENADV.CNTBTCH = ENPBD.CNTBTCH
    I modify last sentense because one table primary key is equal to another table Foreign key i.e
    one table ID field = another table ID field or one table NAME field = another table Name field.
    Please understand my intenction and check linking fields in tables.
    Thanks,
    DJ

  • Table containing 'Valid From' and 'Valid To' dates --  tcode SU01

    Hi All,
    I want to know the Table containing 'Valid From' and 'Valid To' dates -- In tcode SU01 ---Tab Logon Data there are 'Valid From' and 'Valid To' dates. I want to know the table(s) where this info is stored.
    thanks
    Naved

    Looks like you have two userids. Login to SDN using your userid that created the post and assign the points. If you don't see the radio button then change your original post to a question.
    Message was edited by: Prakash  Singh

  • CRM Table containing IBase GUID and Product GUID

    Hi experts,
    Could you please give me the table containing IBase GUID and Product GUID.
    My requirement is to bring the Warranties in the Ibase relationship tab in IB52 transaction. Warranties should be corresponding
    to product(Material) corresponding to the IBase.
    Regards,
    Deepthi

    Hi ,
    My problem is resolved by using  COM_TA_R3_ID table.
    Here R3IDENT field will give the product_id of the IBASE and R3MAT_ID will give the product id of the basic material.
    By using FM CRM_IBASE_COMP_GET_DETAIL in the field obect_id we will get product id of  IBASE .
    Then passing that to R3IDENT field we will get basic product guid from R3MAT_ID field.
    then from comm_product table we will get GUID of basic material
    Regards,
    Deepthi

  • APEX 4.1.0 to 4.2.1 This page contains both secure and nonsecure items

    I have upgrade Oracle Application Express from 4.1.0 to 4.2.1. After the upgrade, I started to get "Security Information - This page contains both secure and nonsecure items. Do you want to continue?" at the login page. Once I am logged in, I get the same notification for every button/task that I do. What did I do wrong?
    Sincerely,
    Ronnie A. Tolentino

    Do you know which files are not loading with HTTPS?
    With any luck they are files you added and you can change them in the template to HTTPS.
    If they are files added by APEX, then I'm not sure if there's a way to change it, but you could remove the substitution string that APEX adds and add the files directly to your template with HTTPS. It's not ideal and would need to revise those includes after each upgrade, but it would eliminate the error.
    Or live with it. :-)
    Thanks
    Jorge

  • How do I export a PDF that contains both English and Thai to Microsoft Word?

    My PDF file has both English and Thai language content. When I export it to Microsoft Word, the Thai words are missing. I am using Acrobat XI Pro and Windows 7 Professional 64-bit.

    Hi Teng,
    Try changing the pdfmaker preferences and 'embed all fonts' as per the screenshot below:
    Regards,
    Rave

  • How do I convert a FrameMaker file containing both Portrait and Landscape pages into PDF?

    I have recently converted to FrameMaker 9 and Acrobat 9. In the FrameMaker manual I am creating, most of the pages have Portait orientation, but some have Landscape orientation. However, when I convert the manual to PDF using Acrobat Distiller, the Landscape pages become Portrait. This wasn't a problem when I converted the manual into PDF in previous versions of Acrobat Distiller, it appeared after I installed Acrobat 9. In other words, the FrameMaker file has worked before. I have also tried this on three different computers to make sure the computer is not the problem. Does anybody have any ideas that I could try to make this work?

    Jorunn, did you ever resolve this problem? If not, I've got a solution for you.
    In FrameMaker, select the book you want to create a PDF of, click File > Print, and select Adobe PDF as your printer.
    Click Properties and make sure you have the selections you want.
    Back on the Print Setup dialog, leave the Paper and Orientation as both Letter and Portrait respectively.
    On the Print Book dialog, select Print to File and browse to the correct location. Make certain to save this as a PostScript file (name.ps) and at the Safe Book As field, you want Single File selected.
    Again on the Print Book dialog, click the checkbox for Generate Adobe Data and click PDF Setup. On the PDF Setup for Selected Files dialog, at the PDF Job Options, select Press Quality or make the appropriate choices for your situation for Settings, Bookmarks, Tags, and Links.
    With Adobe Distiller open, File > Open and browse to the .ps file you indicated earlier. Also verify your Default Settings for the PDF are correct. When Distiller is finished, you can double-click the PDF file to open it and check that your portrait and landscape pages show correctly.

  • What is a table containing sales order and the contract it refers to

    Hi,
    I have a following problem (ECC6.0):
    A sales order is created in VA03 and referenced to a contract. I need to locate the table or tables (or FM) which contains the information of the sales order number and the contract number.
    Problem with VA03 is that I can see both numbers in the document flow screen; i.e. sales order (Doc.no) is xxxxx and the Preced.Doc field contains the contract number. However, this is only an ALV view. I cannot get anywhere from the program SAPMV75F.
    I have checked table VBAK and it contains most of dat but not the link itself as it has any sales document. I need to have an entry containing the link between a given sales order (+item) and the contract.
    Instead of creating with "Create with reference" and select Contract (which you need to refer to),  the system is defined so that contract is used with a hierarchy customer. Debugging of creating did not help as the linking was conducted in the background without activation of debugging screen. I'm not an SD and no experience with contract.
    Help is highly appreciated,
    Pipsa

    Hi,
    The field VBAK-GUEBG is used for valid from and valid to date,
    you can find the Preceding and Subsequent sales and distribution document under table 'VBFA'.
    under SMOD, you can find below exit use for Contract data modification:
    V45W0001 Function module exit for copying sales header data into
    items.
    This enhancement contains the user exit:
    -   EXIT_SAPLV45W_001
    regards
    Vivek.
    Edited by: Vievk Vardhan on Jan 29, 2010 3:13 PM

  • Table containing proforma invoice and commercial invoice

    Hi All,
    From which table can i get both proforma invoice number and commercial invoice number? I know the commercial invoice ( F2) number and using that i should find the proforma invoice already created
    Thanks in advance
    Harish

    Proforma Invoice and Invoice can be identified through table VBRK through Transaction Code: SE16. The identifying factor will be field 'SD Document Categ' i.e VBTYP. Invoice is 'M' & Proforma Invoice is 'U'.
    Document Flow can be checked through table VBFA through SE16. In table VBFA, enter relevant Delivery Number and identify the Invoice & Proforma Invoice based on above logic of VBTYP.
    In the case mentioned that Invoice number is available & Proforma Invoice is to be identified, in table VBFA, enter Invoice number in VBELN, based on which you will get Delivery number and follow the step in above Paragraph to retrieve the Proforma Invoice number.
    However, which is Proforma Invoice for which Invoice, there is no such report available.
    Regards,
    Rajesh Banka

Maybe you are looking for

  • How to connect SAP R/3 4.6c Web AS 6.20

    how to connect SAP R/3 4.6c Web AS 6.20 with XI NW04

  • CSS style sheet problem

    My page is displayed perfectly in design view, reflecting the CSS rules I've created, but when I preview in Live View and in a browser, it's as if there is no style sheet attached at all... ??

  • Filtering Item, Customer and Supplier data on Marketing Documents

    My client has 7 franchises under one umbrella, so as their item, customer and vendor masters will be at one place in SBO. But their requirement is when specific franchise person work on marketing documents, could only be able to access its respective

  • PO created with Unknown Accounting Assgn in BE in SRM 3.0 classic scenario

    Hi Experts, When a Limit Shopping cart is created with known Account assign Cat ( cost center - L ) and cost distribution BY VALUE then it is creating a PO in the backend sys with UNKNOWN ACCOUNT ASSgn Cat ( U ) . Can any one tell me how to change th

  • Problem connecting using opmn

    Hi all, i have some problems connecting remotely to an ejb application using opmn. I use OAS 10.1.2 installed on a linux redhat, on my machine (windows xp) i have j2ee application deployed in a oc4j stand alone 10.1.2 , whose services must connect vi