Materials from CATALOG- PRICE_ORIGIN

Hi,
We need to know where to maintain  price_origin field wich controls, in our case, wether a material price can be modified or not when creating a sc.
We've debuged the sc creation process and found out that for some materials
ET_ITEM[]-PRICE_ORIGIN = F (in LBBP_SC_APPF92) and these materials are suposed to come from catalog but haven't found this value in Material Master in R/3 or SRM. Also tried debugging with the following stack call:
But at the end it seems that item data comes from memory.
FORM     ITEMLIST_F_MULTI_GETDETAIL     SAPLBBP_PDIAD
FUNCTION     BBP_ITEMLIST_MULTI_GETDETAIL     SAPLBBP_PDIAD
FORM     PROCDOC_GETDETAIL     SAPLBBP_PD
FUNCTION     BBP_PROCDOC_GETDETAIL     SAPLBBP_PD
FUNCTION     BBP_PD_SC_GETDETAIL     SAPLBBP_PD_SC
METHOD     IF_EX_BBP_DOC_CHECK_BADI~BBP_DOC_CHECK     ZCL_IM__BBP_DOC_CHK_BADI======CP
METHOD     IF_EX_BBP_DOC_CHECK_BADI~BBP_DOC_CHECK     CL_EX_BBP_DOC_CHECK_BADI======CP
FORM     DOC_CHECK_BADI_CALL     SAPLBBP_PD
FORM     PROCDOC_CROSS_CHECKS     SAPLBBP_PD
FORM     PROCDOC_UPDATE     SAPLBBP_PD
FUNCTION     BBP_PROCDOC_UPDATE     SAPLBBP_PD
FUNCTION     BBP_PD_SC_UPDATE     SAPLBBP_PD_SC
FORM     SC_UPDATE     SAPLBBP_SC_APP
FORM     SC_ITEMS_UPDATE     SAPLBBP_SC_APP
FUNCTION     BBP_SC_APP_EVENT_DISPATCHER     SAPLBBP_SC_APP
FORM     APP_EVENT_HANDLER     SAPLBBP_SC_UI_ITS
FORM     SC_EVENT_DISPATCHER     SAPLBBP_SC_UI_ITS
MODULE (PAI)     SC_EVENT_DISPATCHER     SAPLBBP_SC_UI_ITS
So we'd like to know How SRM determines that a given Material comes from catalog.
Best Regards

Hi
<u>To know whether a Item comes from  a catalog or not : -</u>
(To know How SRM determines that a given Material comes from catalog.)
<b>Here is a simple way -</b>
<b>Implement BBP_DOC_CHANGE_BADI using SE19 Transaction for filter type BUS2121 (shopping cart).</b>
<u><b>For method BBP_SC_CHANGE, inside ET_ITEM[] table of this BADI
incase the catalog item is having fields populated with values for
CATALOG_ID / CATALOG_DESCPRIPTION (Then it is a catalog item) - Otherwise, the item is a free-text item.</b></u>
<u>In <b>BBP_PD</b> transaction, once you see this shopping cart after ordering or held the shopping cart, you will get the required details.</u>
Hope this will definitely help.
Do let me know.
Regards
- Atul

Similar Messages

  • Error When Create Shopping Cart from catalog SRM

    Hi all,
    Currently, I have problem need your help.
    I tried to create an shopping cart from catalog. But I don't know how the G_L_ACCT was lost.
    The information about account like this:
    Now, I want to know where this data is selected. Would you please help me for this issue.
    Extra Information: Acc_cat = 'A'.

    Dear Melynessa: normally you should not get this error message when flagging "Order as Direct Material" in SRM 7.0.
    Please, check in your backend ECC6 if "Value updating" flag has been selected or not for the material type of your SC material ID under the IMG path "Logistic - General --> Material Master --> Basic Settings --> Materual Types --> Define Attributes of Material Types"
    If field  "Value updating" for material type is not flagged then, when creating a PReq or PO in SAP ECC6, you will get always an error message asking you for an account assignment.
    Due to the circumstance above, in SRM, materials ID belonging to non-valuated material types should not be ordered as direct (flag order as direct is available always when you enter a material ID, even when it is non-valuated). If you flag the field "Order as Direct" for a non-valuated material, standard SRM system doesn't issue any error message. So, maybe, there is BAdi in your SRM system checking the "Value updating" for material type and avoiding "Order as Direct Material" flag being selected when it is a non-valuated material
    Hope it helps.
    regards
    Valentí

  • Sale Order Status Change after delivery of materials from projects

    have ETO sccenario which consists of all modules such as SD,PS.PP etc. Materials will be procured from external vendors & manufactured inhouse through project systems. After delivery of materials from project systems, billing & invoicing will be done at sales level.
    On delivery of materials from projects, sale order status remain open. Request you to look into the matter & suggest about status change of sale order after delivery / billing.
    Regards,
    Ranjan

    Hi,
    In sale order, WBSE is assigned. Delivery of materials are through cns0. then subsequently picking / packing / billing will happen at sales level. Billing is of delivery related. Please suggest to fix the issue.
    Thanks & Regards,
    Biplab Ranjan

  • Sale Order Status after dellivery of materials from Projects

    Hi,
    I have ETO sccenario which consists of all modules such as SD,PS.PP etc. Materials will be procured from external vendors & manufactured inhouse through project systems. After delivery of materials from project systems, billing & invoicing will be done at sales level.
    On delivery of materials from projects, sale order status remain open. Request you to look into the matter & suggest about status change of sale order after delivery / billing.
    Thank you in advance.
    Regards,
    Ranjan

    Hi,
    In sale order, WBSE is assigned. Delivery of materials are through cns0. then subsequently picking / packing / billing will happen at sales level. Billing is of delivery related. Please suggest to fix the issue.
    Thanks & Regards,
    Biplab Ranjan

  • List of materials from the excel which are not posted

    I have written bdc,
    that ware house storage locations should not be allowed.
    All the storage locations in the table T320 are ware house storage locations.
    so i have written
    if not  it_data1 is initial.
    SELECT *  into table iT_320 FROM  T320
      for all entries in it_data1
    where WERKS = it_data1-werks and
               LGORT  = it_data1-lgort.
    endif.
    LOOP AT IT_DATA1 .
      read table iT_320 INTO wa_320 with key werks = it_data1-werks
                                              lgort = it_data1-lgort.
      IF sy-subrc = 0 .
        delete it_data1 index sy-tabix.
      ENDIF.
    endloop.
    So its working fine till then.
    but i wanted a list of materials from the excel wch are not posted,so tht the user is aware tht some items are not consumed.
    How to display that list in bdc.
    Please give the code for that.

    MY EXCEL DATA IS IN IT_DATA1.
    LOOP AT IT_DATA1 .
      read table iT_320 INTO wa_320 with key werks = it_data1-werks
                                              lgort = it_data1-lgort.
      IF sy-subrc = 0 .
        delete it_data1 index sy-tabix.
      ENDIF.
    endloop.
      LOOP AT IT_DATA1 .
        MOVE-CORRESPONDING IT_DATA1 TO IT_DATA_h.
        Collect it_data_h.
      ENDLOOP.
      Clear it_data_h.
    clear : it_data1.
    THEN MY BDC IS LIKE THIS.
    LOOP AT IT_DATA_H .
    perform bdc_dynpro      using 'SAPMM07M' '0400'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RM07M-WERKS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'MKPF-BLDAT' LV_DATE  .
    perform bdc_field       using 'MKPF-BUDAT' LV_DATE.
    perform bdc_field       using 'RM07M-BWARTWA' '261'.
    perform bdc_field       using 'RM07M-WERKS' IT_DATA_H-WERKS.
    perform bdc_dynpro      using 'SAPMM07M' '0421'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSEG-WERKS(03)'.
    CLEAR : FLAG1, W_FLAG.
    LOOP AT IT_DATA1 WHERE aufnr = it_data_H-aufnr.
    W_FLAG = 1.
    CONCATENATE 'MSEG-MATNR' '(' W_FLAG ')' INTO W_MATNR_C.
    perform bdc_field       using  W_MATNR_C
                                   IT_DATA1-MATNR.
    CLEAR : QTY.
    QTY = IT_DATA1-ERFMG.
    SHIFT  QTY LEFT DELETING LEADING SPACE.
    END LOOP.
    NOW HOW TO COMPARE THE MATERIALS IN EXCEL AND  BDC POSTED.
    PLEASE PROVIDE THE CODE FOR THAT AND HOW TO DISPLAY.

  • How to get the list of materials from Sap r/3

    Hi Experts,
    I have one doubt, here iam implementing
    HTTP TO RFC scenario.
    My doubts are------
    1. Should we create DT MT MI and all (OR) not
    2.In Request DT how the message structure wil be to get the list of materials from sap r/3 system as Response(Ex: Fields in the source structure).
    3.Or the second thing is how to get the list of materials start with some alphabate.
    Please reply me for each and every questions mentioned above. Please clarify me.
    Helpful answers wil be rewarded.
    Reagards
    khanna

    Hi Khanna,
    <i> 1. Should we create DT MT MI and all (OR) not</i>
        Yes U need to create for HTTP site...for RFC U need to import..
    <i>2.In Request DT how the message structure wil be to get the list of materials from sap r/3 system as Response(Ex: Fields in the source structure).</i>
        You create your own structres for Request and respoce.. and Map it with RFC..
    <i>3.Or the second thing is how to get the list of materials start with some alphabate.</i>
        I think it will come with acending order....
      for more help go through this link
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    regards,
    Ansar.

  • How do the Procurement of materials from projects?

    Hi Friends'
    How do the Procurement of materials from project s, here our Process is:
    Whenever our engineers on site see any shortages he will send a report thro our customized InfoPath request form. Then we decide depending on the material whether to order to USA or Procure locally. Some mechanical parts we procure locally. For this in PR we give reference of WBS element. Purchase department raise PO, we receive material, sent to site And finally we charge USA(parent Company)  for this amount against this project.
    For the items like electronic cards, Critical mechanical parts to be ordered to USA we send the InfoPath form to USA. We get weekly shipments from USA. We create PR and also PO. No action by our purchase dept. The FREE OF CHARGE (FOC) material is received to us. Stores will do MIGO and then we dispatch to Site.
    Friends please suggest how to do this Process through project systems. I need the entire configuration setting that we need to do and the process also, plz friends... I need these settings step by step.
    Regards,
    Hari
    Edited by: Hari  Krishna on Jan 3, 2009 12:39 PM

    suggest attend course PLM220
    If using only WBS then you have to raise PR from MM module and the material demand will not be driven from PS (except Easy Cost Planning)
    If using networks then assign material component to network activity and set the item category as non stock item - this will trigger PR from activity

  • Lightroom 5.5 Import from Catalog *very* slow performance.

    Importing from a second catalog from a shoot is *very* slow with the last version or couple of versions of Lightroom.  It's been about 20 minutes and the import is moving glacially slow and is only about 20% done.
    Here are as many stats as I have:
    iMac 27" 3.5Ghz Core i7, 32G of ram, 3T fusion drive (the late 2013 model maxed out)
    Master catalog has 117,000 images in it.
    The catalog I'm importing has 948 images in it.
    CPU use during the import is 100% used by lightroom (note that the multiple CPUs can go to more than 100% so this means I think that one CPU is maxed out, though LR can sometimes take 500% of my CPUs during an export)
    Lightroom is using 4.2G of RAM (10G free in activity monitor)
    Hard drive is fairly full, but still has 366G free on it (so about 10%)
    Lightroom Mobile sync is enabled (not on this folder I don't think) but says "service unavailable" at this point.
    Lightroom is fully up to date (5.5) on both iMac and laptop (also a mac in case that matters).  Both are up to date with the latest OS software.
    How I did it was:
    Export the shoot as a new catalog on my iMac
    Transfer it to my laptop (smart previews only, no masters)
    Edit images, metadata, etc
    Transfer the entire folder back (.lrcat, previews, smart previews) to iMac
    In my master catalog do an import from catalog
    Waited for ages for checking for dupes (which I can understand with such a big catalog)
    Selected to import all, changing metadata and develop edits, and selecting to put new images in the folder (not sure why it asked as there weren't any new images)
    The last time I did an import I started it and then went out somewhere so I didn't notice how long it took, but this seems completely crazy.  In the time it's taken to write this up it's now about 20 minutes later and the progress bar is maybe at the 33% range.  It's still working away, it's just crazy crazy slow.
    Anything to help out or debug would be greatly appreciated.  I suspect it's pure size of the catalog, but 120k isn't outside the realm of what I've heard people say works fine, or maybe the Fusion drive (maybe the OS is trying to move files around behind the scenes)? 
    Either way this didn't seem to be an issue until the last couple of versions (I haven't gone and re-installed 5.4 or 5.3 to check) and it's starting to really frustrate me

    Hi Jim,
    Great suggestion! It opens perfectly fine on its own. I even went as far as re-exporting it once it loaded but am still experiencing the same issue. That same catalog loads perfectly fine on my assistant's iMac.
    I can't really think about anything that changed in my environment with the exception of a new Bootcamp partition to run windows on an external Thunderbolt HD but I doubt this is related.
    I'm open to any suggestions while I am trying this again... 10 minutes of 'Checking for changed and duplicate photos'.

  • Free issue of materials from customers .....

    Experts pls help.
    In one of our client projects, client receives the Free issue of materials from customers and consumes the same in the projcet and deliveries the end product.
    How treat the free issue of materials in FICO , MM , SD,PM modules during the config?

    hi
    pradeep
    In the senario first u will get the material from the vendor as a non valuvated material  this is MM part wher they will update this material as anon valuvated material .
    (material will be upadated in material ledger)
    after that it will go for plant for production purpose WHER PP CONSULTANT will run MRP and maintain BOM and as a FICO consultant u have to run costing run FOR THAT
    AFTER all the costing run u have to update the price in material finished good.
    after that  SD pepole will maintain the pricing procedure before delivering the good to customer wher they will menstion profit margin based on condistions.
    afetr that BILLING wher u  will get all the accounting,pa doc, controlling documents.
    the particular material wich u are using is anon valuvated material for our production of FG  not for customer.

  • Issue in Exporting the Sales Price List and Purchase Price List for the Materials from SAP Business ByDesign (SAP Cloud)

    Hello Everyone,
    I would like to have a discussion on the issues, which I am facing at the time of Exporting the Sales Price List and Purchase Price List for the Materials from
    SAP Business ByDesign (SAP Cloud).
    (1). Sales Price List :
    We have maintained Customer Group Specific Sales Price List for the Materials in the following Location.
    Location :         Product and Service Portfolio Work Center > Pricing > Price Lists > Customer Group Specific Price List (Type of Price List)
    Target :             We want to export the entire records in some reports or excel sheet.
    Records :          Number of Materials in the Customer Group Specific Price List is more than 2,00,000
    Issues : 
                                         (A). In the SAP Business ByDesign Screen we can filter by number of records but we can export till  50,000 records.
                                                 And if we are trying to export records more than that limit, then it throws "HTTP 500 Internal Server Error".
                                         (B). We could not find any SAP standard reports in Product and Service Portfolio and/or Business Analytics Work Center
                                                for getting the entire record set of the Sales Price List, so that we can have the entire set of records together.
    Searching For :
                                          (A). Is there any SAP reports or data source available for getting the entire Sales Price List records?
                                          (B). Can we have any other filter conditions for exporting the Sales Price List records in a single shot or module wise?
    (2). Purchase Price List :
    We have maintained the Purchase Price List for the Materials in the following Location.
    Location :           Product Portfolio Work Center > List Prices > Active List Prices (Type of Price List)
    Target :               We want to export the entire records in some reports or excel sheet.
    Records :            Number of Materials in the Purchase Price List is more than 4,00,000.
    Issues :  
                                           (A). In the SAP Business ByDesign Screen we can not see more than 10,000 records and the actual number of
                                                   records are more than 4,00,000. We could able to download the records till 10,000 but that is not sufficient.
                                                   We want to export the entire records in an excel sheet.
                                           (B). We could not find any SAP standard reports in Product Portfolio and/or Business Analytics Work Center for
                                                  getting the entire record set of the Purchase Price List, so that we can have the entire set of records together.
    Searching For :
                                           (A). Is there any SAP reports or data source available for getting the entire Purchase Price List records?
                                           (B). Can we have any other filter conditions for exporting the Purchase Price List records in a single shot or module wise?
    Please go through the attached screen shots for the references and more clarity on the issues.
    I am waiting for the valuable responses.
    Thanks and regards,
    Susanta Dey Sarkar
    Bangalore, India
    19th March, 2015

    Dear Michael,
    The number of records :
    2 Million (Approximately) is for the Sales Price List Material Price Data
    4 Million (Approximately) is for the Purchase Price List Material Price Data.
    Regards,
    Susanta Dey Sarkar

  • How to update csv file dynamically  from Catalog manager

    HI - In OBIEE we used to generate report statistics into csv files from Catalog manager.But this task should be automatic or dynamic process.So it means that each and every when catalog get changes that information will be captured into CSV file by dynamic way. To achieve this process we should have one script or batch etc.............
    Your help is highly appreciated.

    Yes we can achieve this by enabling Usage Tracking.
    Create a report with all the columns you need and schedule the report using Agents with some time frame say like EOD everyday.There we can see what all the changes as done to the catalog.
    Do let me know if you need any help to achieve this.
    Mark if helps,
    Thanks,

  • Import from catalog problems

    Cannot import from catalog, LR quits and I get about 2 or 3 photos imported.
    Adobe was no help, they had no idea why.
    Have tried to "import from Cat" twice. Moving two different catalogs into my main desktop catalog. Both did not work.
    All three catalogs ( two from laptop and my main LR cat) work fine and I can import photos no problem.
    Would like to import all the changes of photos that I have made with these two catalogs that I did on my laptop. (Both cats are on an external hard drive).
    Thoughts anyone?
    I am having some issues with my video card. Screen right now is a bit pink. This would be the fourth video card I will need on this Mac Pro. Would this be the cause?
    Thanks.

    flyboys911 wrote:
    Do I need to export the laptop cats if thy are already on a separate hard drive?
    It might help. Exporting a catalog sometimes cures corruption in the original catalog. Try exporting into a new catalog and then importing the new one on your desktop.
    Never heard of the last thing you mentioned. Can you describe more?
    Lightroom has a preferences file, which sometimes gets corrupt and can cause all kinds of weard behaviour. You can delete (or rename away) the preferences file, and LR will build a fresh one when started. If you rename it, you will still have it if you decide you want it back.
    To rename the preferences file, rename the file
    "[username]/Library/Preferences/com.adobe.Lightroom3.plist"
    to something like
    "[username]/Library/Preferences/com.adobe.Lightroom3.plist.old"
    while LR is closed and restart LR.
    Beat

  • Transfer of non-valuated materials from ECC to SRM

    I kindly request your help with an issue that I am facing.
    The scenario is as follows :
    1. There is a non valuated material X (material type UNBW).
    2. MRP run happens and generates a PR with account assignment U.
    3. Transfer report BBP_EXTREQ_TRANSFER is executed in order to transfer the PR to SRM.
    4. The PR reaches SRM, but the SC is not created instead in SLG1 there is an error thrown, "No account assignment exist. Enter an account assignment".
    5. In the backend now If I try to change the PR i get the error " 6Q204 (Procurement profile 36 cannot be changed).
    Is this scenario supported ?? i,e, transfer of non-valuated materials from ECC to SRM.
    Kindly let me know if you have any idea on this.

    Hi,
    As per your query you have not determind accounts assignment. Please do these activity.
    Please see the below link.
    http://help.sap.com/saphelp_srm30/helpdata/en/a9/cde93a2876a81ae10000000a11402f/content.htm
    Regards,
    Anil

  • Import from Catalog- Why is metadata changing?

    Whenever I run Import from Catalog (going from portable drive to desktop), the dialog box shows several photos that have been "modified," even though I haven't touched them since they were last imported to the desktop.  I'm guessing, the desktop install of LR is finding metadata changes in some files. In fact, some thumbnails even show the "metadata changed" badges even though I haven't touched them.
    I'm using LR 3 Macintosh, and want to share catalogs between my laptop and desktop using Import from Catalog.  I consider my desktop the "master catalog" and mainly use the laptop for capture or editing when I'm traveling.  The laptop catalog and photos are stored on a portable drive.
    Here's what I did to try to isolate the problem - all of this was executed on my desktop machine so the LR settings should be identical:
    1) Created a new catalog on the portable drive while attached to desktop.
    2) Restart LR with new portable drive catalog active.
    3) "Import to catalog" and import 10,000 photos to portable drive from the desktop catalog. This ran with no problems as expected.
    4)  Restart LR w/ original desktop catalog.
    5)  Run "Import from Catalog" to import form the portable drive. -- NOTE I hadn't touched ANY photos on portable since step 3.
    6)  Import from catalog show 0 "new" photos but about 10 "changed" photos.  Why??  It shouldn't show any.
    7)  Cancel step 6 and run Import from catalog again.  This time it shows 0 new and 0 changed. (that's what I'd expect).
    8) Cancel step 7 and run Import from Catalog again.  This time it shows 0 new and about 30 changed - But they're a different set than in step 6.
    9) Give up and post this question.  What is changing the metadata?
    As background, I'm running most current versions of OS X and LR 3.  My library contains mostly DNG files with some jpg and some TIF and PSD.  The "modified" files that are showing up all seem to be DNG files.  The files in the library were shot with  Canon, G2, G10, 10D, 20D, 60D and 7D.   The "modified" files appear to be from the 20D, 60D and 7D (all files shot in last 6 months).  The library has some virtual copies and stacks, but this doesn't appear associated with the "modified" files.
    Thank you in advance.
    Marshall

    Ian;
    Thank you for your response.  I suspect you may be correct, although I can't trace the problem to explain lens profiles as the issue either at this point.  Each time I try to "Import from Catalog" back and forth between two catalogs - both made from the same instance of LR, it shows a different set of photos with who's metadata is changed.  I make absolutely NO changes to any photos.  I just choose "Import form catalog," look at the list of photos it says are changed, select, 'cancel," and then select "Import form catalog" again.  Each time it gives me a different set of, and total amount of changed photos.  First its 9 photos, then 32 photos, then 447 photos, etc.
    This has "BUG" written all over it.  If it's actually a feature, I wish someone could show me how to control it.
    A lot of people complain about LR's ability to share catalogs between computers and keep multiple catalogs in sync.  If I could master "Import from Catalog," I'd feel I'd have a workable solution for managing multiple computers (with one photographer / editor).
    Just my opinion on this one feature. Overall, I LOVE working with LR.
    Thanks again,
    Marshall
    PS.  Thank you, Ian for the many tips and tutorials you've provided over the past years.  I've learned a lot from them.

  • The RFX before upgrade does not allow me to add items from catalog

    hello gurus
    I have a problem with the RFX, we did an upgrade to SRM7.0 from SRM5.0.
    The RFX that existed before upgrade in the server does not allow me to add new items from catalog.
    each RFx I created after the upgrade works fine.
    My client needs to work with the RFx still open, add items and make bids.
    I have reviewed the upgrade guide and found nothing regarding an update of purchasing documents.
    I have
    SRM 7.0 SPS03 EHP1
    MDM 7.1 SP06
    MDM catalog 3.0SP10

    in SRM 5.0 the system was MDM catalog. Actually, after the upgrade , i have SRM7.01 with MDM catalog.
    i donn´t know if it is about version, SP or compatability issue, but i believe the upgrade not affect the purchaser documents.
    Those look as locked to modify. on tap Position, the buttom ADD LINE, only i can see Position, not anymore option like MDM catalog, free text.
    it is a big problem, because the client has documents opened. i need to resolve this issue. Actually i am working in a sandbox system, but i afraid to have the same problem in PRD system after upgrade.
    regards

Maybe you are looking for