Making material short text grade out while creating PR

dear all
while making pr for materials,by t-code me51n, the system does not make the material short text diable/grade out.
eg if i select material from material master say material code 1000055-----& short text is --cement 53 grade.
then at the time of creating pr i can change the short text cement 53 grade to any off my choice.
logically this should not happend, as then their will not be any trace of PR in system.
pls let me know how to come out of this problems.
as we want that when ever we select the material from MM master, the system should make the short text grade out while creating the PR, so that further complication can be avoided.
thanks in adv
regards
pairkshit

hi manohar
this process does not work. beacause with this process the system disable the entire coloumn of short text in ME51N.
which is not our requirement.
the system should only grade out the material short text cell while we create the PR for material, so that one could not able to change the material short text which has come from MM master
is their any other solution for this.
regards
parikshit

Similar Messages

  • How to pass text to Material Sales text, item note, while creating a sales

    hi ,
       i tried my level best with the help of friends (SDN).
       but i am unable to reach the target.
       my requirement is to enter text into
        1) material sales text
        2) item note
        3) packing note
        4) delivery text
        5) purchase order text
        6) production memo
        in sales order using bapi. here i am submitting the code i wrote.
      kindly some one help me.
       thanks in advance
    regards,
    pavan
    <i>report  zmybapi1        .
    data : my_order_header_in like bapisdhd1 occurs 0 with header line,
           my_order_header_ix like bapisdhd1x occurs 0 with header line.
    data : my_orderitemsin like bapisditm  occurs 0 with header line,
           my_orderitemsix like bapisditmx occurs 0 with header line.
    data : my_order_partners like bapiparnr occurs 0 with header line.
    data : my_return like bapiret2 occurs 0 with header line.
    data : w_vbeln like bapivbeln-vbeln.
    data:
         my_orderschedulesin like bapischdl occurs 0 with header line,
         my_orderschedulesinx like bapischdlx occurs 0 with header line.
    data : my_orderconditionsin like bapicond occurs 0 with header line,
           my_orderconditionsinx like bapicondx occurs 0 with header line.
    <b>data : my_ordertext like bapisdtext occurs 0 with header line.</b>
    start-of-selection.
    this is to assign values to internal table my_order_header_in
      my_order_header_in-doc_type   = 'TA'.
      my_order_header_in-sales_org  = 'JNJ1'.
      my_order_header_in-distr_chan = '02'.
      my_order_header_in-division   = 'J1'.
      my_order_header_in-sales_off  = 'JNJ1'.
      my_order_header_in-purch_no_c = 'testbapipo'.
      my_order_header_in-purch_date = sy-datum.
      my_order_header_in-req_date_h = sy-datum.
      append my_order_header_in.
    this is to assign values to internal table my_orderitemsin
      my_orderitemsin-material      = '000000000000000727'.
      my_orderitemsin-plant         = 'JNJ1'.
      my_orderitemsin-target_qu     = 'EA'.
      my_orderitemsin-target_qty    = '10'.
      append my_orderitemsin.
    this is to assign values to internal table my_order_partners
      my_order_partners-partn_role = 'AG'.
      my_order_partners-partn_numb = '0000000011'.
      append my_order_partners.
      my_order_partners-partn_role = 'WE'.
      my_order_partners-partn_numb = '0000000011'.
    append my_order_partners.
    This is to assign values to internal table my_orderschedulesin
      my_orderschedulesin-itm_number = '10'.
      my_orderschedulesin-itm_number = '000010'.
      my_orderschedulesin-req_qty   = '10'.
      my_orderschedulesin-SCHED_LINE = '0001'.
      append my_orderschedulesin.
    *This is to assign values to internal table my_orderconditionin
      my_orderconditionsin-itm_number = '000010'.
      my_orderconditionsin-cond_type = 'ZPR1'.
      my_orderconditionsin-cond_st_no = ''.
      my_orderconditionsin-cond_count = '1'.
      my_orderconditionsin-cond_value = '40'.
      my_orderconditionsin-cond_p_unt = '1'.
      my_orderconditionsin-currency = 'INR'.
      append my_orderconditionsin.
    <b> my_ordertext-itm_number = '00010'.
      my_ordertext-text_id = '0002'.
      my_ordertext-langu = 'EN'.
      my_ordertext-langu_iso = 'EN'.
      my_ordertext-text_line = 'This is for item note'.
      my_ordertext-format_col = '*'.
      my_ordertext-function = '009'.
    *</b>  <b>append my_ordertext.</b>
      my_order_header_ix-updateflag = 'I'.
      my_order_header_ix-doc_type   = 'X'.
      my_order_header_ix-sales_org  = 'X'.
      my_order_header_ix-distr_chan = 'X'.
      my_order_header_ix-division   = 'X'.
      my_order_header_ix-sales_off  = 'X'.
      my_order_header_ix-purch_no_c = 'X'.
      my_order_header_ix-purch_date = 'X'.
      my_order_header_ix-req_date_h = 'X'.
      append my_order_header_ix.
      my_orderitemsix-updateflag    = 'I'.
      my_orderitemsix-material      = 'X'.
      my_orderitemsix-target_qty    = 'X'.
      my_orderitemsix-plant         = 'X'.
      my_orderitemsix-target_qu     = 'X'.
      append my_orderitemsix.
      my_orderschedulesinx-updateflag = 'I'.
      my_orderschedulesinx-sched_line = '0001'.
      my_orderschedulesinx-req_qty    = 'X'.
      append my_orderschedulesinx.
    my_orderconditionsinx-itm_number = '000010'.
      my_orderconditionsinx-cond_type = 'ZPR1'.
      my_orderconditionsinx-cond_st_no = 'X'.
      my_orderconditionsinx-cond_count = 'X'.
      my_orderconditionsinx-updateflag = 'U'.
      my_orderconditionsinx-cond_value = 'X'.
      my_orderconditionsinx-cond_p_unt = 'X'.
      my_orderconditionsinx-currency = 'X'.
      append my_orderconditionsinx.
      call function 'BAPI_SALESORDER_CREATEFROMDAT2'
        exporting
      SALESDOCUMENTIN               =
          order_header_in               = my_order_header_in
          order_header_inx              = my_order_header_ix
      SENDER                        =
      BINARY_RELATIONSHIPTYPE       =
      INT_NUMBER_ASSIGNMENT         =
      BEHAVE_WHEN_ERROR             =
      LOGIC_SWITCH                  =
      TESTRUN                       =
      CONVERT                       = ' '
        importing
          salesdocument                 = w_vbeln
        tables
          return                        = my_return
          order_items_in                = my_orderitemsin
          order_items_inx               = my_orderitemsix
          order_partners                = my_order_partners
        ORDER_SCHEDULES_IN            =  my_orderschedulesin
         order_schedules_inx           = my_orderschedulesinx
       ORDER_CONDITIONS_IN           =  my_orderconditionsin
       ORDER_CONDITIONS_INX          =  my_orderconditionsinx
      ORDER_CFGS_REF                =
        <b>ORDER_TEXT                    = my_ordertext</b>
                 if sy-subrc ne 0.
        write: my_return-message, my_return-number, my_return-type.
      else.
         call function 'BAPI_TRANSACTION_COMMIT'
         EXPORTING
           WAIT          =
         IMPORTING
           RETURN        =
          write: my_return-message, my_return-number, my_return-type.</i>

    hi prashant,
        i tried the save_text but , i am unable find the exact value which i have to enter for the field tdobject.
    this is updated program as per u r instruction.
    <b>Text object not found</b>
    the code now is
    <b>report  zmybapi1        .
    data : my_order_header_in like bapisdhd1 occurs 0 with header line,
           my_order_header_ix like bapisdhd1x occurs 0 with header line.
    data : my_orderitemsin like bapisditm  occurs 0 with header line,
           my_orderitemsix like bapisditmx occurs 0 with header line.
    data : my_order_partners like bapiparnr occurs 0 with header line.
    data : my_return like bapiret2 occurs 0 with header line.
    data : w_vbeln like bapivbeln-vbeln.
    data:
         my_orderschedulesin like bapischdl occurs 0 with header line,
         my_orderschedulesinx like bapischdlx occurs 0 with header line.
    data : my_orderconditionsin like bapicond occurs 0 with header line,
           my_orderconditionsinx like bapicondx occurs 0 with header line.
    data : my_ordertext like bapisdtext occurs 0 with header line.
    data : my_header like thead occurs 0 with header line.
    data : my_tline like tline occurs 0 with header line.
    start-of-selection.
    this is to assign values to internal table my_order_header_in
      my_order_header_in-doc_type   = 'TA'.
      my_order_header_in-sales_org  = 'JNJ1'.
      my_order_header_in-distr_chan = '02'.
      my_order_header_in-division   = 'J1'.
      my_order_header_in-sales_off  = 'JNJ1'.
      my_order_header_in-purch_no_c = 'testbapipo'.
      my_order_header_in-purch_date = sy-datum.
      my_order_header_in-req_date_h = sy-datum.
      append my_order_header_in.
    this is to assign values to internal table my_orderitemsin
      my_orderitemsin-material      = '000000000000000727'.
      my_orderitemsin-plant         = 'JNJ1'.
      my_orderitemsin-target_qu     = 'EA'.
      my_orderitemsin-target_qty    = '10'.
      append my_orderitemsin.
    this is to assign values to internal table my_order_partners
      my_order_partners-partn_role = 'AG'.
      my_order_partners-partn_numb = '0000000011'.
      append my_order_partners.
      my_order_partners-partn_role = 'WE'.
      my_order_partners-partn_numb = '0000000011'.
    append my_order_partners.
    This is to assign values to internal table my_orderschedulesin
      my_orderschedulesin-itm_number = '10'.
      my_orderschedulesin-itm_number = '000010'.
      my_orderschedulesin-req_qty   = '10'.
      my_orderschedulesin-SCHED_LINE = '0001'.
      append my_orderschedulesin.
    *This is to assign values to internal table my_orderconditionin
      my_orderconditionsin-itm_number = '000010'.
      my_orderconditionsin-cond_type = 'ZPR1'.
      my_orderconditionsin-cond_st_no = ''.
      my_orderconditionsin-cond_count = '1'.
      my_orderconditionsin-cond_value = '40'.
      my_orderconditionsin-cond_p_unt = '1'.
      my_orderconditionsin-currency = 'INR'.
      append my_orderconditionsin.
    my_ordertext-doc_number = '0000008632'.
      my_ordertext-itm_number = '00010'.
      my_ordertext-text_id = '0002'.
      my_ordertext-langu = 'EN'.
      my_ordertext-langu_iso = 'EN'.
      my_ordertext-text_line = 'This is for item note'.
      my_ordertext-format_col = '*'.
      my_ordertext-function = '009'.
      append my_ordertext.
      my_order_header_ix-updateflag = 'I'.
      my_order_header_ix-doc_type   = 'X'.
      my_order_header_ix-sales_org  = 'X'.
      my_order_header_ix-distr_chan = 'X'.
      my_order_header_ix-division   = 'X'.
      my_order_header_ix-sales_off  = 'X'.
      my_order_header_ix-purch_no_c = 'X'.
      my_order_header_ix-purch_date = 'X'.
      my_order_header_ix-req_date_h = 'X'.
      append my_order_header_ix.
      my_orderitemsix-updateflag    = 'I'.
      my_orderitemsix-material      = 'X'.
      my_orderitemsix-target_qty    = 'X'.
      my_orderitemsix-plant         = 'X'.
      my_orderitemsix-target_qu     = 'X'.
      append my_orderitemsix.
      my_orderschedulesinx-updateflag = 'I'.
      my_orderschedulesinx-sched_line = '0001'.
      my_orderschedulesinx-req_qty    = 'X'.
      append my_orderschedulesinx.
    my_orderconditionsinx-itm_number = '000010'.
    my_orderconditionsinx-cond_type = 'ZPR1'.
    my_orderconditionsinx-cond_st_no = 'X'.
    my_orderconditionsinx-cond_count = 'X'.
    my_orderconditionsinx-updateflag = 'U'.
    my_orderconditionsinx-cond_value = 'X'.
    my_orderconditionsinx-cond_p_unt = 'X'.
    my_orderconditionsinx-currency = 'X'.
    append my_orderconditionsinx.
      call function 'BAPI_SALESORDER_CREATEFROMDAT2'
        exporting
      SALESDOCUMENTIN               =
          order_header_in               = my_order_header_in
          order_header_inx              = my_order_header_ix
      SENDER                        =
      BINARY_RELATIONSHIPTYPE       =
      INT_NUMBER_ASSIGNMENT         =
      BEHAVE_WHEN_ERROR             =
      LOGIC_SWITCH                  =
      TESTRUN                       =
      CONVERT                       = ' '
        importing
          salesdocument                 = w_vbeln
        tables
          return                        = my_return
          order_items_in                = my_orderitemsin
          order_items_inx               = my_orderitemsix
          order_partners                = my_order_partners
        ORDER_SCHEDULES_IN            =  my_orderschedulesin
          order_schedules_inx           = my_orderschedulesinx
      ORDER_CONDITIONS_IN           =  my_orderconditionsin
      ORDER_CONDITIONS_INX          =  my_orderconditionsinx
      ORDER_CFGS_REF                =
        ORDER_TEXT                    = my_ordertext
                 if sy-subrc ne 0.
        write: my_return-message, my_return-number, my_return-type.
      else.
         call function 'BAPI_TRANSACTION_COMMIT'
         EXPORTING
           WAIT          =
         IMPORTING
           RETURN        =
          write: my_return-message, my_return-number, my_return-type.
    my_header-tdobject = ''.
    my_header-tdname = ' '.
    my_header-tdid = '0002'.
    my_header-tdspras = 'EN'.
    append my_header.
    my_tline-tdformat = '*'.
    my_tline-tdline = 'This is for item note'.
    append my_tline.
    call function 'SAVE_TEXT'
      exporting
      CLIENT                = SY-MANDT
        header                = my_header
      INSERT                = ' '
      SAVEMODE_DIRECT       = ' '
      OWNER_SPECIFIED       = ' '
      LOCAL_CAT             = ' '
    IMPORTING
      FUNCTION              =
      NEWHEADER             =
      tables
        lines                 = my_tline
    EXCEPTIONS
      ID                    = 1
      LANGUAGE              = 2
      NAME                  = 3
      OBJECT                = 4
      OTHERS                = 5
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    endif.</b>
      thanks in advance
    regards,
    pavan

  • Copy Purchase Requisition - Material Short Text

    When creating a new purchase requisition by copying an existing purchase requisition using the document overview in ME51N, the material short text is always copied from material master (makt-MAKTX) instead of the line item (eban-TXZ01) from the source purchase requisition.
    Is there a way to set up copy control for short texts as there is for long texts ?
    using ECC 6.0
    thanks in advance

    Hello Thomas,
    Unfortunately no, when you copy the PR from another PR the System redetermined some  fields from the material master,these fields are :
    Planned Delivery Time,
    Unit of Measure,
    Material Short Text  
    Goods Receipt Processing Time,
    Material Category,
    MRP Controller...
    This system behaviour is intended since many companies more often change the data in the material master rather than copying a purchase requisition that contains changed material data.
    Regards,
    Mauro

  • Material short text difference

    Hi Gurus,
    my client has created a Po having 2 line items with the same material no. (packing material)
    the short text of the material is differ for the one line item.the confusion is how it will happens coz.. the material code is same for the both line items.it should be the same.
    I checked in the item changes of the Po.. but no data is appearing regarding the short text changes
    please help me how to find out the route cause of the issue..
    regards
    subbu

    Hi,
    It is possible to change the Material Description while creating PO (ME21N), which will not get recorded as changes for that document. User might have changed during PO creation (in ME21N).
    Or check whether 2nd line item has been added later in PO, in change mode and check Material master changes in MM04. It might also happen that before adding 2nd line item in PO, somebody would have chnaged material description in MM02.

  • Short Dump in VF01 while creating debit memo

    Hi,
    we are trying to create the debit memo in tcode VF01,while saving the doc it is giving dump.
    i went to  ST22 for error analysis,details are "COMMIT_IN_POSTING" error in FM RV_INVOICE_REFRESH.
    Short text
        Invalid COMMIT WORK in an update function module.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLV60A" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    the above text copied from ST22.
    before putting this thread, i have done complete analysis in SDN .
    i have searched for SAP notes.i did't got the proper one.
    KIindly can u provide any solution.
    <removed by moderator>
    Regards,
    Manjunath
    Edited by: Thomas Zloch on Dec 2, 2011 2:39 PM

    Is the debit memo triggering an output type?
    I saw similar thing long back and I remember it was caused by a output type with a print program that was doing an illegal COMMIT WORK. Actually sometimes there may be a function call inside the program attached with the output type that may be doing a COMMIT which is not directly apparent.
    COMMIT WORK causes runtime error when it occurs in functions called in UPDATE TASK or forms called with ON COMMIT.
    Try disabling / deleting the output type (Vf01 -> Goto -> Header -> Output) proposed and then save the debit memo and see if this error goes away. You can also try select the output type and click further data and set dispatch time to '1' (send with periodically scheduled job to avoid this issue.
    Check threads with people facing similar issues because of commit in output type programs
    Send Immeditely causes COMMIT_IN_POSTING
    Need input for error caused while trggering a output type
    COMMIT_IN_POSTING
    COMMIT_WORK in FM, SO_DOCUMENT_SEND_API1

  • Update Text in item while creating PO

    Hi,
    I need to update some text in TEXTS tab in Line item, while creating PO.
    While creating , when we enter material , qty and all mandatory fields after hitting enter, if I go to text tab , I should be able to see the text the I want.
    SAP stores texts using, TEXT id 'EKPO' and text object = po number and line item together
    I want to use the same ID and object so that SAP automatically retrieves text I stored , but I wan to know is there any exit after the PO number is generated.
    I checked the BADI also.
    The exit I am using doesn't generate PO number yet.
    The same can be achieved while changing PO item text.
    Please let me know your suggestions. Is there any other way to do it
    Thanks

    Hi Yifat,
      are you updating position long texts ?
    I think FM SAVE_TEXT should work
    Let me know
    Regards, Manuel

  • Deletion marked material should give error message while creating proc ord

    Hello,
    i had marked the material for deletion through T-code MM06 & saved.
    Now when i'm creating the process order for the deleated material, System is giving only Warning message that " Material XXXX in plant XXXX has been marked for deletion."
    But my requirement is system shold give an ERROR message while creating Process Order for the deleted material.

    Yes Brahman is Right,
    Check the followig..
    Go to OMCQ and change the message category  to E- Error message instead of W- Waring message in Message no M7 127, but
    not  M7 121.
    and check it,
    Regards,
    Pavan idlur.

  • Saving of different Material code in the system while Creating material

    Hi,
    Anyone can help me in following .
    While creating material number, there should be some User exit which is going to change the logic for saving of material number in the system.
    Example:
    Division and material Group should be added into the predefined number range.  Number range defined for raw material is 100000 to 199999. If division is 1A, and Material group is M01. The first number generated by system is 100000 , where as during saving into the table NUMBER SHOULD BE saved as 1AM01100000 & we must be able to work on the new number.
    If any query pl .revert.
    MG.

    Hi manish,
    This is possible using enhancement.
    Use the User Exit MGA00001
    and code the below like :
    cmara-matnr = cmara-matnr+7(11).
    CONCATENATE cmara-matkl cmara-spart cmara-matnr into cmara-matnr.
    set PARAMETER ID 'MAT' field cmara-matnr.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = cmara-matnr
    IMPORTING
    OUTPUT = cmara-matnr
    Hope it will solve your problem.

  • AMS 4.0 errors out while creating RTF StatusCheckStep error: Package creati

    Hi All,
    OEM: 11g
    Oracle Apps:12.1.3
    O/S: AIX 6.1
    While creating rtf through AMS 4.0, we are getting the error message:
    Error while evaluating expression:[Error evaluating expression: ${FUNC_STATUS_CHECKER(${data.V_BUGNO})} : [StatusCheckStep error: Package creation request failed
    (Status:Completed Error - Initialization Failed).]]
    Could anyone please share the resolution to the above issue faced before!
    Thanks for your time!
    Regards,

    Hi,
    perhaps my help is still useful.
    On the end of the Customization Manager procedure you will find a status checker. The purpose of status checker is to review the individual steps and highlight the job/job step under trouble.
    In your case, one of the sub jobs, here "Package creation request failed" is erroring out. It can be that the AMP plug in is not completely configured, or requires a patch.
    You should run as first the diagnostic for Customization Manager, to see if the expected configuration is in place. You may also drill down to the individual step logs (within job details) to check if there are any further details.
    Regarding rft: usually you use rtf in combination with BI Publisher. If this is the case, please make sure that you have entered the right $Header$ string
    into the properties for your rtf. This is required to inform adpatch to which data source the rtf belongs to.
    Please let me know if this response is helpful for you.
    Kr, Volker

  • Service Short Text is not copied creating Req w.r.t Contract

    Hi,
    When I try to create a req service item with reference to a contract, short text (TXZ01) is not copied from contract to req. The field is open for input and I have to input manually, or I'll get error ME083.
    Is here a way to copy short text from contract to req automatically?
    Thank you!
    Regards,
    Jully

    Hi,
    it could be due to an active user exit like EXIT_SAPLMEREQ_005 or EXIT_SAPLMEQR_001.
    Please check your exits.
    Regards,
    Edit

  • MATERIAL & SHORT TEXT

    Sir,
    i am facing a issue when we put material code & enter it it will pull data from material master.
    but when you just put material code and dont enter it and write any short text it will not take from masters.
    i want to restrict this
    ply help

    hi,
    > I strongly recommed you to not to change the field settings for the requirement....Because if you this, then you may face problem in near by future...
    > For eg:
    > If you wanna do procuement for consumables, then its necessary to use this field...at that time to can > face a problem...
    For your requirement, i think you shd take the help of ABAP consultant...
    This is because, you can ask the ABAP consultant to make the new field to enter the general text for the normal standard PO and even when you press enter this field will not affect...and don't make the above field as display...
    Regards
    Priyanka.P
    hi Diptasya,
    I think for consumable PO ie. with account assignment catagory, we can NB document type and Do use NBF indirectly i suppose....
    Make me correct if anything wrong...
    Regards
    Priyanka.P
    Edited by: Priyanka Paltanwale on Apr 21, 2009 10:53 AM

  • Co code Segment is greyed out while creating a  Business partner

    Hi All,
    I am trying to Create a Customer thru BP . I have asigned a role and made the necessary setting in " Configure Field attributess as a per BP role. However the Co code segment is coming greyed out .
    Can you please advise what needs to be done to open up the same

    Hi Samit,
    You mean to say that the Company Code Data Section is Greyed out.
    From your message i understood that you are trying to create a Customer in XD01.
    If that is so give your Company Code in the Company Code Field in the initial screen.
    Reward if helpful.
    Regards
    PAVAN

  • TRIP END DATE greyed out while creating Travel Request IN SAP ESS Portal

    Dear Friends,
                               I am trying to create a Travel Request from my ESS Portal,when I am entering the trip details as follows:
    General Trip Data  (header)
    Start: *    (Have to enter trip date)
    End:        (greyed out)   **** problem with this field
    First Destination:  Country/Region:     open field
    Reason for Trip:    open field
    Activity:     open field
    Estimated Cost:
    Previous Step  Review     Exit  (these are all tabs)
    The problem is that the END DATE is greyed out ,how do we enable it,is it a configuration setting or some code change in the function module
    PTRA_UTIL_GENERAL_DATA_FIELDS
    My portal consultant said that this FM is called in the backround R/3....please let me know ure views on this...
    Thanks,
    Best Regards,
    Karthik

    Hi Kartik,
    We are getting the same problem. Can you please share how did you solve this.  It is urgently required.
    Thanks,
    Vishal Patel

  • Connection Timed Out while creating Shopping cart

    Hi,
    When i am creating a shopping cart and click on the cost assignment tab i am getting a time out error. Find the error message below, i am able to open other tabs and able to create the shopping cart also. Please let me know what would be the issue with.
    400 Session timed out - please log in again
    Error: -11
    Version: 7000
    Component: ICM
    Date/Time: Wed Mar 04 13:24:47 2009 
    Module: icxxthr.c
    Line: 1705
    Server: srv215_EBD_00
    Error Tag: {-}
    Detail: Session does not exist
    Rgds
    GGL

    You would need to define secondary RFC Destination. Follow these steps to the end.
    1.Create a secondary RFC user and an authorization in the backend(ECC)
    1a)In Transaction SU01, create a new user (on the 'Logon data' tab,
    you should select user type 'Dialog' or 'Service').
    1b) Call Transaction PFCG for the role maintenance and create your own
    role.
    1c) In the role, select the 'Authorizations' tab and and choose the
    button to change the authorization.
    1d) Do not select ANY template on the dialog box.
    1e) Choose 'Manual' ; then enter authorization object S_RFC and confirm
    the entry.
    1f) Expand the authorization object and choose the pencil symbol for
    the 'Name of RFC to be protected'.
    1g)Choose the pencil symbol for the 'Type of RFC object to be
    protected', select the 'Function group' checkbox and save the
    change.
    1h)Generate and save the authorizations. Then return to the role.
    1i)On the 'User' tab, enter the user you have created and carry out a
    user comparison.
    2. Define an secodary RFC destination in SRM server with the RFC user you have created
    3. Supplier Relationship Management -> SRM Server -> Technical Basic Settings -> Define Backend Systems
       In the Logical system entry of your backendsytem :Enter the secondary RFC destination into RFC(Dialog) field of the
    4.Also make sure that the end user(Person creating shopping cart) has authorization object M_BBP_SHLP.
    Let me know if this helps.
    Thanks,
    Surya

  • Print text in Bold while creating PDF

    Hi,
    I am mapping data in the XML to a Template designed using LiveCycle Designer ES3.
    I need to print some of the text in BOLD.
    For exmple in the following XML, when we display the text in PDF,  person names should be in BOLD.
    Part of the XML that is fed to template designer.
    <house>
    <parent>Mike and Mary are Mark's parents.</parent>
    </house>
    What is expected in the PDF:
    Mike and Mary are Mark's parents.
    I would appreciate if someone could please help me to achieve this task.
    Have  a good day!
    Regards,
    Patnapu.

    Hi,
    Check out Parth's example here: http://livecyclekarma.wordpress.com/2009/05/20/richtext-tricks-for-textfield-in-designer/.
    Also do a search on this forum, I am sure Steve Walker did an example.
    Good luck,
    Niall

Maybe you are looking for

  • Issue in table control

    Hi All I have a table control in which there are three columns. I need a dropdown list box in one of the columns but the problem is i dont want dropdown in all the cells of that column.            col 1     col2        col3 row1 row2 row3            

  • End Point URI change in Business service?

    Hi all, We had done all our osb code development and moving from one environment to other(Eg. E2E testing to UAT, Then UAT to Production). When we move the codes from one server to the other we need to change the End Point URI in the business service

  • Can't launch Safari after Software Update

    I can't start Safari anymore and I don't know what to do. In short, click on the dock and no bounce. Double-click on the icon within Applications and it doesn't launch either. These problems, I'm guessing are a result of the combination of objects de

  • Cannot go back to 64-bit mode

    Not sure what I am doing wrong but when I back to the info panel to take CS5 back to 64-bit mode because some plug ins had been updated but the check box was no longer visible.  So I am in 32 bit mode and do not know how to get out.  Any ideas what I

  • Access rules policies in Cisco Security Manager

    Hello! We've started to deploy CSM 3.01 on our network (currently we have about 20 ASA's and this list is going to have about a 100 devices). The point is that we haven't used CSM's Policy View tab to develop our security policy - we've deployed our