Item text and item note are not transfering from SRM to ECC on to PR

Hello Expers!!!
Due to some requirement we added some logic in BBP_CREATE_BE_RQ_NEW to print the used ID of the shopping cart creator on PR under item text requisitioner tab. but after moving these changes to production the item text(Vendor text) and item note(internal note) which are maintained in the shopping cart are not printing on the Purchase requisition under item text and item note tabs. these two texts were printing correctly before moving our changes.
please suggest me how this item note and item text will print on PR. Is it a standard functionlity in SRM 5.0?
is this because of move over changes?
suggest me to resolve the issue....
thanks in advance...
Regards,
CD Reddy

Dear Poster,
As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
Best Regards,
SDN SRM Moderation Team

Similar Messages

  • Why are the text and graphic elements are not showing on the iPad

    I have a slideshow of pictures full bleed on my inDesign document with text and graphics on top of the pictures (not part of the slideshow).
    When I preview on the iPad all I can see is the gallery of images?
    Is it not possible to put text on top of a slideshow?
    Here it is as it appears on InDesign...
    ...and here as it appears on the iPad...
    Any ideas? I'm pretty new at this, but I couldnt find anything in the forums
    Many thanks for reading
    Richard

    They're called overlays for a reason. You'll need to change the text to an MSO as well.
    Select it, create a new MSO, set it to play once no delay, no crossfade.
    Other choice would be to put the text into each state of the MSO.
    Bob

  • The Po condition transfered from SRM to ECC

    Dear ,My Experts :
       I work in SRM7.0 .Extended Classic Scenario .
       I create PO with PO condirtion in SRM system .The PO will be transfered to ECC system . But the condition is not transfered .
       So ,i want to know why ,and how to do ?
       Best Regards!
       Alex!

    Hello,
    As the price determination has already done by IPC for the leading SRM PO, in standard when a PO is transfered to the backend, only the netprice is passed to backend and no further price calculation will be done at the backend. The backend PO takes what ever price SRM sends and creates the PO at the backend with a base condition type PBXX. To intimate the backend not to perform any further price calculations, SRM transfers  PO_PRICE = 2. So that backend reads this value and takes only the SRM PO price and no pricing conditions are passed to the backend PO.                 
    This is the standard design of extended classic scenario.             
    There are not consulting notes for transfering pricing conditions to the backend in ECS. If you want to use the backend conditions you have to implement the BADI BBP_ECS_PO_OUT_BADI to override the value of PO_PRICE = 2.
    I hope this helps.
    Kind regards,
    Ricardo

  • Photoshop to pdf creates text and images that are not sharp. Why?

    I know that Photoshop is not the premier pdf creation software. I do have InDesign as well, but I'm much more familiar and comfortable with Photoshop (I have the CC versions of both) so I prefer to use it as my design and layout tool.
    However, when I save as a pdf the resultant pdf file is blurry for images and text, not horribly so, but not sharp and clear as I would like. My pdf files are for the web and emailing so I need to keep the file size in check, but even when I up the PS resolution to 300psi it still is not as clear as I would like. Still blurry.
    What do you Photoshop experts out there do to produce the sharpest pdf possible? Is it even possible using Photoshop only or do you have to use InDesign or Acrobat Pro to get the clarity and shapness?

    mabehr1234 wrote:
    I know that Photoshop is not the premier pdf creation software. I do have InDesign as well, but I'm much more familiar and comfortable with Photoshop (I have the CC versions of both) so I prefer to use it as my design and layout tool.
    This is kind of like saying "I know that a screwdriver is the correct tool for inserting screws, but I'm much more comfortable using a hammer, so I prefer to just hammer the screws in."
    It works, sort of. But the results will never be as good. And you wouldn't want to use the screwdriver with nails, either. There are two different tool (programs) for a reason, and I think once you learn InDesign, you will find it to be a much better layout tool than Photoshop.

  • Item text and note not transfering to PO from SRM 5.0

    Hi,
    We are in SRM 5.0/ECC 6.0
    We have a requirement to transfer Item text and item note (Item Text/note to be printed on PO) to ECC PO. From SRM 5.0
    These Item note and Item text is available in PO->Iteam->Service->service text and line text.
    Please advice..
    thanks,
    shri

    For similar kind of problem in SRM 7.0 there is SAP note implementation : Note 1424590 - Text mapping from SRM SC to backend purchase requisition.
    can any one give solution for SRM 5.0

  • Item text and note not transfering to PR which is in ECC from SRM 5.0

    Hi,
    We are in SRM 5.0/ECC 6.0
    We have a requirement to transfer Item text and item note (Item Text/note to be printed on PR(T Code ME53n)) to ECC PR. From SRM 5.0
    These Item note and Item text is available in PR->Iteam->Service->service text and line text.
    Item text comes from Internal note and item note from vendor text .
    I posted same question in SRM Form, but as these changes has to be done by ABAPer so I am posting it again here.
    Please advice..
    thanks,
    shri
    Moderator message: no cross-posting, please.
    Edited by: Thomas Zloch on Nov 14, 2011 9:17 AM

    For similar kind of problem in SRM 7.0 there is SAP note implementation : Note 1424590 - Text mapping from SRM SC to backend purchase requisition.
    can any one give solution for SRM 5.0

  • Free of charge items, ie price = u00A30.00 are not transferred to backend.

    Free of charge items, ie price = £0.00 are not transferred to backend. PO created with held status, but the SRM PO item IR flag is selected. If we manually amend the SRM PO item to remove the 'invoice receipt' flag, then save the PO, the PO does get to the backend with a price of zero, the IR flag de-selected and the 'free' item flag selected.
    How do we manage to get the PO with free items to the backend without having to manually change the held PO in SRM? We are on SRM 5.0 using extended classic.

    Hi
    <b>We have done this type of requirment.. several times.. This is easily possible ..</b>
    <u>You need to Implement the BADI - BBP_CREATE_PO_BACK using SE18 Transaction.</u>
    <b>Either you can do this sample code inside BAPI (Make changes accordingly) or inside the BADI - BBP_CREATE_PO_BACK / BBP_CREATE_PO_BACK_NEW depending on your requirement.</b>
      LOOP AT po_items INTO ls_po_items WHERE net_price IS INITIAL.
    * Reset the IR Indicator for Items with Zero net price
        ls_po_items_add_data-po_item = ls_po_items-po_item.
        ls_po_items_add_data-ir_ind  = space.
        ls_po_items_add_data-gr_ind  = 'X'.
        ls_po_items_add_data-gr_non_val = 'X'.
        APPEND ls_po_items_add_data TO po_items_add_data.
      ENDLOOP.
    <b>Related link -></b>
    Re: Final Entry/ Final Invoice Indicator to be checked Auotmatically
    <u>Do let me know.</u>
    Regards
    - Atul

  • Price and Pricing conditions are not copied to PO for a line item !!

    Hi
    I have created a PO w.r.t a PR which has only one line item.
    Now, I add another line item to this existing PO, i get an error message that the Price and Pricing conditions are not copied.
    How do i rectify this error !!
    Where might be the link for this Price and Pricing conditions to get copied in to this PO ??
    MaruthiRam

    What kind of PR and in the PO same material you enter for new line or new material and do you have any funcitonal authorization assigned o your user id
    please reply

  • SAP SCRIPT Header text and Item text not printing in customized PO

    Hello Experts,
                          I have copied the standard MEDRUCK to ZMEDRUCK and customized the form according to the requirement.
    I want to print the header text and Item text in my form.
    For Header text I have used :
    /: INCLUDE &EKKO-EBELN& OBJECT EKKO ID F01
    Problem 1: The text what I enter in header text is flowing only when I hit on print preview without saving the form. Once I save the SAP SCRIPT  and click on print preview the field is appearing blank. I also tried to print the form, but the field is appearing blank even on the print out.
    Problem 2: For item text the field is concatenation of  EBELN & EBELP. Can anyone suggest me how to concatenate and fetch the text in item text.

    Hi,
        Im getting an error in my subroutine pool for i_xtline which is to fetch ITEM TEXT., It says its not a in any internal table nor defined as data. How can I proceed further. I have pasted my code below. Please check and revert ASAP
    PROGRAM  ZMEDRUCK_SUBP1.
    TABLES: EKPO, EKKO.
    FORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
    data xname like THEAD-TDNAME.
    data i_xtline like xtline.
    clear i_xtline.
    refresh i_xtline.
    CONCATENATE EKPO-ebeln EKPO-ebelp INTO v_item_text.
    MOVE v_item_text to ITEMTXT.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            = F01
        language                      = EN
        name                          = ITEMTXT
        object                        = EKPO
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      tables
        lines                         = i_xtline
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
      WRONG_ACCESS_TO_ARCHIVE       = 7
      OTHERS                        = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.

  • USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    Greetings;
    This seems to an ongoing issue (see related discussion link).  We've been experiencing the same update lag since last Friday.  The new additions to the Collection appear and are accessible in both the iPad and iPhone applications, but even though they additions appear in "Quick View", the material doesn't appear in the Collection itself.  Apple is aware of the issue and is investigating.  All the best...
    Syd Rodocker
    Tennessee State Department of Education
    https://discussions.apple.com/message/15461971#15461971

  • Sales order has 52 line items but in vbep some are not available

    Hi,
    what could be the reason for the problem;
    Sales order has 52 line items but in vbep some are not available...
    and some has 2 etenr as '0001' and '0002', why 2 lines in vbep for 1 posnr of order.
    Thanks.
    deniz.

    Hi,
    It is possible when some of them dont have valid Schedule lines.
    If they have valid schedule lines some confirmed qty should be available.otherwise we cant find them in VBEP table.
    Pls check by going to sales order  whether Sch.lines are valid or not.
    This you can check Thru
    VA03-->provide Sales Order number -->Select any line Item-->Menu item Goto-->Item-->Schedule Lines
    Thanks
    Parvathi

  • Item text in Purchase request is not copied to Purchase orders.why?

    que1:Item text in Purchase request is not copied to Purchase orders.why?
    que.2:where this item text is get stored, i mean to ask which table.
    please reply asp.
    SAP Learner.

    hi
    >que1:Item text in Purchase request is not copied to Purchase orders.why?
    spro >mm>Purchase Order>Texts for Purchase Orders>Define copying rules for item(line item) texts.
    spro >mm>Purchase Order>Texts for Purchase Orders> Define copying rules for header text.
    >que.2:where this item text is get stored, i mean to ask which table.
    use function module  READ_TEXT and table STXL
    regards
    KI

  • Items start at login but are not in login items list

    items start at login but are not in login items list

    That is normal in Lion and Mountain Lion. Those systems try to reopen any apps that were open when you shut down. To stop that from happening, simply uncheck the box in the shut down dialog:

  • All folders on my iMac are in alphabetical order, however, when I save an item to a folder they are not. Why?

    All folders on my iMac are in alphabetical order, however, when I save an item to a folder they are not. Why?

    Thanks for helping BDAqua
    No it doesn't.
    If I go to that folder afterwards, it is all in alphabetical order.
    If I am working in Quickbooks, Mail or QuarkXpress and go to a folder from those programs the folder is out of order and I waste a lot of time
    searching through the folder looking for what I want. This never used to be a problem until the last couple of months.

  • I transferred my iPhoto FACES to my mini iPad and: (a) they are not in the alphabetical order I had them in, (b) some of the FACES have been deleted, (c) the EVENTS I checked off in iTunes do not all appear in the iPad?

    I transferred my iPhoto FACES to my mini iPad and: (a) they are not in the alphabetical order I had them in, (b) some of the FACES have been deleted, (c) the EVENTS I checked off in iTunes do not all appear in the iPad?

    Go to your Pictures Folder and find the iPhoto Library there.
    Right (or Control-) Click on the icon and select 'Show Package Contents'. A Finder window will open with the Library exposed.
    Look there for the iPod Photo Cache. Trash it. Start iPhoto and try sync again.
    Regards
    TD

Maybe you are looking for

  • Uploading multiple iPhoto libraries to new iCloud Photos

    I've used iPhoto for 10 years, and have multiple iPhoto libraries in order to manage the size and performance within iPhoto. I'd love to try out the new beta of Photos, and keep everything in the cloud - but I'm unsure if I'll be able to upload all o

  • How can anyone add to a SharePoint list but only some can edit all fields?

    My office has a list on our SharePoint for product requests. We were trying to make it so that the "+Add Item" link was available to all who want to request a map but only specific fields such as Name or Description would be editable on their end. On

  • Too Much Red/Magenta in Pictures

    I am using: Adobe Pro Extended Version 9.3.2 (in default mode, out-of-the-box mode) Vista 32 bit Dell desktop PC with lots of ram NVidia GEForce 8800 GTX I am reviewing a draft copy of a friend's PDF e-book.  In his e-book are lots of pictures, of wh

  • How do I set the 4k resolution?

    I have a MacPro with dual D700 and 6xDP and HDMI1.4. The latter is limited to 4k30 (UHD24-30 and C4K24) by the standard. I have connected this port to a Samsung 40HU6950 4k TV that supports all four HDMI 4k modes. The MP is defaulting to C4K and thus

  • Cfdocument combine pdf files

    I wrote an application that generates pdf files, and then the user can review theall of the files from an administration menu. In some instances, users may want to print out all of the pdf files at once instead of clicking each file then hitting prin