Address search in SRM 7.0 Shopping Carts

Could anyone advise where the search fields (general value list) for the Delivery Address/Performance Location can be changed in SRM 7.0 and where the columns from the search results can also be changed.
Is there a similar place in SPRO to changing the POWLs and queries?

Hi,
You want add a field or hide a field in General value List screen???..
If you want to hide some fields you can do that through SPRO via Extension and Field Control (Personalization) -> Configure Control for Fields of Substructures
To add filed: Even it is standard or customer filed, if youu2019re looking for layout adjustment than the only option is weddynpro enhancement.. On the other hand if your don't care about layout, then you can archive this through above mentioned config itself..
Thanks!!
Bharath

Similar Messages

  • Want to copy Delivery address of one line item in shopping cart to all item

    Hi Experts,
                    We are upgrading from SRM 5.0 to SRM 7.0,In SC Creation We want to copy Delivery address of one line item in shopping cart to all line items in Shopping cart by clicking Change All Items button.This is custom button we added this button and we had written code to achieve the functionality but it is not working.This is same like Change All Items button in Account Assigment for copy accont details of one line item to all other line items in SC.
    Web Dynpro Component:/SAPSRM/WDC_UI_DO_SHIPTO
    Web Dynpro View:V_DODC_SHIPTO
    Thanks,
    Aarthi.

    Hi Prasad,
                   Our customer needs that button,they want whenever they are clicking the button delivery address should copy to all line items.
    In my action ONCHANGE_ALL_ITEMS i called this method
    wd_this->mo_dodm_shipto->zchange_all_items( ).
    zchange_all_items( ) is  implemented in class /SAPSRM/CL_CH_WD_DODM_SHIPTO.
    the code i wrote inside zchange_all_items( )
    *Error
      DATA: LX_PDO_ABORT               TYPE REF TO /SAPSRM/CX_PDO_ABORT,  " Class for Fatal error caught by PDO Layer
            LX_PDO_ERROR               TYPE REF TO /SAPSRM/CX_PDO_ERROR.  " Class for PDO General Exception
    Object Instances
      DATA: LO_MSG_CONSUMER            TYPE REF TO /SAPSRM/IF_PDO_MSG_CONSUMER,
            LO_PDO_SHIPTO              TYPE REF TO /SAPSRM/IF_PDO_DO_PARTNER.
    Context-Data
      DATA: lte_cll_shipto              TYPE /sapsrm/if_ch_wd_set_facade=>gt_guid_element,
            loe_cll_shipto              TYPE REF TO /sapsrm/if_ch_wd_set_element.
    Field Symbols
      FIELD-SYMBOLS <lse_cll_shipto>    LIKE LINE OF lte_cll_shipto.
    DATA : lo_pdo_acc TYPE REF TO /sapsrm/if_pdo_do_acct_assgmnt.
      DATA : ls_shipto_cll type /SAPSRM/S_CLL_SHIPTO,
             lt_pdo_partnerdetails      TYPE bbp_pdt_partner,
             ls_pdo_partnerdetails      TYPE bbp_pds_partner,
              LV_GUID          TYPE BBP_GUID,
              lv_item_guid type bbp_guid,
             lv_filled TYPE wdy_boolean.
    *exceptions
      DATA : LX_ABORT                  TYPE REF TO /SAPSRM/CX_PDO_ABORT.
    *Constants
      CONSTANTS : LC_OBJECT_ID         TYPE CRMT_SUBOBJECT_CATEGORY_DB VALUE 'BUS2121001',
                  LC_ADDR_ORIGIN       TYPE /SAPSRM/S_CLL_SHIPTO-ADDR_ORIGIN VALUE 'B'.
      IF LV_FILLED = ABAP_TRUE.
    Downcasting to shipto
        LO_PDO_SHIPTO ?= MO_PDO.
    insert the clipboard into facade and update and submit update
        me->/sapsrm/if_cll_do_mapper~insert_from_clipboard( io_set_facade = mon_cll_set_facade ).
    Add new Accounting entries.
        lte_cll_shipto = mon_cll_set_facade->get_data_elements( ). "get all elements from the context
        LOOP AT  lte_cll_shipto ASSIGNING <lse_cll_shipto>.
          loe_cll_shipto = <lse_cll_shipto>-set_element.
          loe_cll_shipto->get_static_attributes( IMPORTING rv_attributes = ls_shipto_cll ).
    Map ui-structure to pdo-structure
          MOVE-CORRESPONDING ls_shipto_cll TO ls_pdo_partnerdetails.
          IF LS_SHIPTO_CLL-PARTNER_FCT =  mv_part_func.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = ''.
          ELSE.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = LS_SHIPTO_CLL-PARTNER_FCT.
          ENDIF.
          IF ls_pdo_partnerdetails-del_ind NE 'X'.
            CALL FUNCTION 'GUID_CREATE'
              IMPORTING
                ev_guid_16 = ls_pdo_partnerdetails-p_guid.
           mv_acc_guid_split = ls_pdo_shipto-guid .
            IF mo_scope = 1.
              ls_pdo_partnerdetails-p_guid = mon_cll_set_facade->get_bo_guid( ).
            ELSE.
              ls_pdo_partnerdetails-p_guid = mo_parent_bo_mapper->items_get_lead_selection( ).
            ENDIF.
            APPEND ls_pdo_partnerdetails TO lt_pdo_partnerdetails.
          ENDIF.
          CLEAR : ls_pdo_partnerdetails, ls_shipto_cll.
        ENDLOOP.
    Add New items to PDO
        IF NOT lt_pdo_partnerdetails[] IS INITIAL.
          TRY.
              LO_PDO_SHIPTO->update_item_partners( EXPORTING it_partner = lt_pdo_partnerdetails
                                                               iv_item_guid       = lv_item_guid
                                                   CHANGING co_message_handler = mo_pdo_message_consumer ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Update PDO with the changed data.
          TRY.
              mo_pdo->submit_update( ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Fire refresh of DO Mappers registered for refresh since the item table has acc related data.
          mo_parent_bo_mapper->fire_event_refresh( iv_perform_updates = abap_false ).
        ENDIF.
      ENDIF.
    Thanks,
    Aarthi.

  • SRM 7.0 Shopping Cart Item - customizing Delivery Address Tab fields

    Hi experts,
    I have to make the fields of tab Delivery Address in the Shopping Cart (Item detail) only readable.
    In other threads I found similar questions: in SRM 7.0 I have to go in Customizing
    SAP Supplier Relationship Management -> SRM Server -> Cross Application Basic Settings -> Extensions and Field Control (Personalization) -> Configure field control
    and add fields for which I want properties to be changed.
    The problem is that at start of the SC creation the fields are blank again, they became gray only if, for example, I take an address with the match code on NAME field, that populate the other field of the tab. Or if I check the document after I've insert the address Name.
    Thank you in advance.
    Enrico Righetto

    Hello,
    Check here how the delivery address determination works:
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=230261594
    If field is made as read only when address is maintained, the best option would be to maintain a standard address number in ADDR_SHIPT attribute in PPOMA_BBP.
    Regards,
    Ricardo

  • Restricting the Search  for Material while creating Shopping Cart

    HI SRM GURUS
    We are in SRM version 5.0 and following a classic scenarios.
    In search strategy while we are creating a shopping cart and we click on the start button a list of all the  materails  appear from where the user can select any item.
    Now in R/3 if a user belongs to Mumbai plant can we restrict the search that only material existing in Mumbai plant in R/3 appears in the search criteria and not that all the materials are displayed.
    Regards,
    Nimish Sheth

    Hi Vadim,
       The Plant related data for products/material is not stored anywhere in SRM.Then where can I apply the filters for the materials pertaining to the specific  plants through the BADI BBP_F4_READ_ON_ENTRY through the Method GET_PRODUCT?
    Regards,
    Disha.

  • SRM MDM Catalog - Shopping Cart Issue

    Hii All,
    I am doing SRM MDM Catalog, We have done with all the configurations and settings.
    I can search and select items in the SRM portal shop menu.
    I can even add the items to shopping cart and shopping list but the 'continue' button doesnt get enabled after doing this so cant proceed further.
    Kindly help.
    Regards,
    Poonam K

    Hi,
    There are some issues with importing parameters of the BBP_ENRICH_CATALOG Badi, 1429685 and 1591198, please ensure both are applied.
    Regards,
    Jason

  • Search function in Catalog from Shopping cart does not work well

    Hello,
    We use SRM 5.0 with CCM 2.0 and have the following situation:
    From the shopping cart we open a catalog and want to search material by number, for example number 7. Entering this material number directly in the search funtion on the catalog screen, it brings us not only the position with material number 7 buy aso all positions we have a number 7 in its materialnumber (2371, 743, 9957, etc) and a 7 in its description (Screw Bolt 7/3 for example).
    I wonder if this normal behaviour of the SRM system or is this an error (with a note OSS asociated).
    If this is normal behaviour, how can one search for only the material 7?
    Thanks for any help,
    Aart

    Hi,
    With regarding to items with 7 in the description
    - It should be consequence of your procurement catalog definition. In schema tab, Catalog characteristics in the /CCM/SHORT_DESCRIPTION you have checked the Relevant for text-based search check-box
    With regarding to the 7 results
    - Please try using the advanced search option exact phrase or using "7"
    I hope this help
    Best regards
    Jorge

  • Calendar help for Date i/p field in SRM 5.0 shopping cart

    Hi All,
    I am working on SRM 5.0..I have a requirement for the addition of custom field ie. lease termination date field on SRM shopping cart screen and having a calendar help for this date input field.
    Has anyone tried to add calendar help for an input date field in the ITS service??What all additions have to be done for this(style,images etc)...Does any one has any idea?Please help.
    Thanks & Regards,
    K rav.

    Disha can you please send me these images.
    IMAGES/CALENDAR/ICO12_CALENDAR.GIF
    IMAGES/CALENDAR/LEFT1.GIF
    IMAGES/CALENDAR/LEFT2.GIF
    IMAGES/CALENDAR/RIGHT1.GIF
    IMAGES/CALENDAR/RIGHT2.GIF
    my email id: [email protected]
    and should i store these images in mime repository? Also I have the below code to be attached in template for calendar function give by Zakhar..do you know where exactly in the template do you insert this code? and do you insert it in the standard template itself. My field will appear in shopping cart line item level (CUF field) so what will be the template number??
    <input type=text
              id="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.name`"
              name="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.name`"
              value="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.value`"
              onBlur="BBP_ITS_EXTW_CloseCalendar()" maxlength="10" size="10">
         <a id="a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE" name="a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE"
             href="javascript:BBP_ITS_EXTW_OpenCalendarDomRel(window.document.BBPForm.elements['`<b>zappsspr_incl_item_csf_avl-zzspr_dkk_date.name</b>`'], 'a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE')">
      <img src="/sap/public/bc/its/mimes/bbpglobal/99/images/calendar/ico12_calendar.gif" border="0"></a>
    Thanks,
    Krupa

  • SRM 7.02 Shopping Cart Monitor

    Good afternoon Gurus,
    I am having difficulty with commitments posting incorrectly in our backend system.  I am currently running ECC 6 and SRM 7.02 Extended Classic.
    I use the SRM Application Monitor for error checking etc........... I as the administrator am able to delete line items from Shopping carts when requested.
    Unfortunately I have one document that has not updated our GM table correctly and I would like to re-activate the line items on this shopping cart but do not seem to have the ability.  Is this a feature of the Application Monitor at all or is there another way to accomplish it?
    I have already spoken to the requestor on the shopping cart and she sees the shopping cart with no items as well, she has no way to undelete or reactivate the items either.  I use /SAPPSSR/SC_COMMIT_REPOST in TCode SA38 to repost erroneous shopping cart commitments and that seems to clear the GMIA issue, but because this shopping cart is deleted the items are not available.
    Any input would be greatly appreciated.
    Best Regards,
    Mary

    Hi konstantin,
    My error was related to monitor shopping cart and it is 'sc.detailprof' , but i still have followed the same procedure the way it was maintained for the standard role by SAP.
    What OBN should exactly is to be maintained for those errors.
    I was also checking the parameters in SWO1 tcode and maintaing the same for the method, but still no use, can you please suggest if there is any other way to do this.
    Thanks,
    Pavan.

  • SRM table where shopping cart approvers are kept

    Hello,
    in which table are approvers for a shopping cart stored? I need to technically change an approver for a particular shopping cart such that when the user logs in, he sees the new approver and the new approver has the shopping cart to approve in his list.
    thx

    Hi
    Your question is not clear, but I can suggest you one thing you can substitute the approver technically in SRM GUI / Or in SRM portal. 
    Regards,
    Krish

  • Search function, user/member login, shopping cart

    I'm hitting some major walls here. I'm a graphic designer and I am building a website for a company that needs a search function for their products, a user/member function so customers can have accounts, and also a shopping cart.
    I need a pro to point me in the right direction on how I can set this up. My experience thus far has been basic ccs/html.
    Zoomindex was refered to me but I am on a Mac and I didnt see a Mac version.
    Can these three things be built in Dreamweaver?

    You'd need to know how to program server-side code (php, asp, asp.net) etc to be able to pull something like that off. You're going to want to look into using a third-party content mangement system (CMS), and then "style" that CMS to look like what you want.
    I'd recommend either WordPress or Drupal for your project. Both WordPress and Drupal will handle the search and user registration out of the box and each has several options to add shopping carts.

  • Line numbering and Item numbering in SRM 7 for shopping carts.

    Hi,
    We are on SRM 7.1.
    The issue we are facing is when a shopping cart has multiple service
    items and one of the service lines is deleted and the cart is ordered
    the item numbering for the shopping cart lines is different in the item
    overview screen in shopping cart transaction as well as sourcing and
    workload reassignment.
    For example,
    - If you create an Item for your SC. This would be Item 1 - line 1.
    - You now create another Item for your SC. This would be Item 2 - line
    2.
    - Then, you add a new line item, which is Item 3 - line 3.
    - Now you delete the second Item (line 2)
    Since we do not show the deleted items, you will only see 2 items,
    however there are 3 lines in buffer.
    - After you save the cart, front end will display two items, which
    have line number 1 and 2.
    - However, item number will be stored as number 1 and 3, since these
    are the sequential records created in buffer.
    In sourcing cockpit, workload distribution and POWL, item number is
    displayed.
    In shopping cart screen, line number is displayed.
    This difference in numbering for line number and item number due to the standard design of SRM 7 is creating a lot of confusion among buyers in our organization.
    Has anyone come across this issue?

    Hi,
    As i told this is Std SRM Functionality.
    You can do  one thing if the client agrees.
    in the shopping cart screen add a new column next to the line item
    Case 1 - No line item is deleted
    Line item    Zline item
    10                 1
    20                 2
    30                 3
    40                 4
    Case 2 -Line item 20 is deleted
    Line item     Z line item
    10                 1
    30                 2
    40                 3
    zline item has to key in by the user
    Remember while deleting the line by the user he has to check the Zline item numbering
    You have to add this new line item in the sourcing
    screen also.
    Check whether this soulution works
    (or) convenience the client that they have remember the line item
    Regards
    G.Ganesh Kumar

  • Hiding one field in SRM 4.0 Shopping Cart Screen

    Hi All,
    We have a requirement where we want to hide one standard field of Shopping Cart. I tried this with UI control BADI but that doesn't have method related to SC. Moreover SC_UI_MODIFY BADI is not useful for this purpose. Someone told me to check at BSP level for this change.
    Can anybody guide me how it can be done.
    Thanks
    Siddarth

    Hello Siddarth,
    Try with screen variant ( SHD0 transaction).
    Regards.
    Laurent.

  • SRM: Shopping Cart Date Issues

    The date range on the monitor shopping carts reports is not followed. A report used for analysis on shopping carts is not working. When you select various dates it seems to ignore the requests you have entered and gives you the list from the year dot.
    Any ideas anyone?

    Hi
    Which SRM version are you using ? Which Report you are referring here ?
    <b>Please try the following SAP OSS Notes, which will help.</b>
    <u>Note 889942 BBP_MON_SC: Service item can't be searched by perform.period
    949399 SC monitor: Search help does not display all catalogs
    972697 bbp_mon_sc: No result for limit shopping cart search
    901608 BBP_MON_SC: Service Item search is incorrect
    813434 Shopping cart monitor and internal ITS:Shopping cart display
    669720 BBP_MON_SC: Follow-on document is not found
    625694 Not possible to search for SHB based on some docs in monitor
    596089 SHP Monitor: problems with search functionalities
    Note 561186 Monitor shopping cart: Selection of large datasets</u>
    Do let me know.
    Regards
    - Atul

  • Shopping cart tables in SRM

    Hello SRM Gurus,
    In SRM which tables shopping cart data will be stored? I am checking in reqhead and reqline tables but there is no data existed.
    Please let me know shopping cart tables in SRM
    Thanks
    Ravi

    Hi Ravi,
    please see the full list:
    Table
    Description
    ADR10
    Printer (Business Address Services)
    ADR11
    SSF (Business Address Services)
    ADR12
    FTP and URL (Business Address Services)
    ADR13
    Pager (Business Address Services)
    ADR2
    Telephone Numbers (Business Address Services)
    ADR3
    Fax Numbers (Business Address Services)
    ADR4
    Teletex Numbers (Business Address Services)
    ADR5
    Telex Numbers (Business Address Services)
    ADR6
    E-Mail Addresses (Business Address Services)
    ADR7
    Remote Mail Addresses (SAP - SAP - Communication; BAS)
    ADR8
    X.400 Numbers (Business Address Services)
    ADR9
    RFC Destinations (Business Address Services)
    ADRCOMC
    Comm. Data Serial Number Counter (Business Address Services)
    ADRCT
    Address Texts (Business Address Services)
    ADRG
    Assignment of Addresses to Other Address Groups (BAS)
    ADRGP
    Assignment of Persons to Further Person Groups (BAS)
    ADRT
    Communication Data Text (Business Address Services)
    ADRU
    Table for Communication Usages
    ADRV
    Address Where-Used List (Business Address Services)
    ADRVP
    Person Where-Used List (Business Address Services)
    BBP_PDACC
    Account Assignment
    BBP_PDATT
    Document Attachment
    BBP_PDBEH
    Backend Specific Header Data
    BBP_PDBEI
    Backend Specific Item Data
    BBP_PDBGP
    Partner Extension Gen. Purchasing Data
    BBP_PDBINREL
    Transaction Object Linkage (EBP)
    BBP_PDHCF
    Set for Tabular Customer and Solution Fields on Hdr
    BBP_PDHGP
    Business Transaction Purchasing Information
    BBP_PDHSB
    Bid Invitation
    BBP_PDHSC
    Header Extension for Customer Fields
    BBP_PDHSS
    Hdr Extension for SAP Internal Enhancements (IBUs and so on)
    BBP_PDICF
    Set for Tabluar Customer and Solution Fields on Itm
    BBP_PDIGP
    Business Transaction Item-Purchasing Information
    BBP_PDISB
    Bid Invitation/Bid-Specific Item Data
    BBP_PDISC
    Item Extension for Customer Fields
    BBP_PDISS
    Item Ext. for SAP Internal Enhancements (IBUs and so on)
    BBP_PDLIM
    Value Limit
    BBP_PDORG
    Purchasing Organizational Unit
    BBP_PDPSET
    Further Procurement Information
    BBP_PDTAX
    Tax
    CDCLS
    Cluster structure for change documents
    CDHDR
    Change document header
    CDPOS_STR
    Additional Change Document - Table for STRINGs
    CDPOS_UID
    Additional Table for Inclusion of TABKEY>70 Characters
    CRMD_LINK
    Transaction - Set - Link
    CRMD_ORDERADM_H
    Business Transaction
    CRMD_ORDERADM_I
    Business Transaction Item
    CRMD_PARTNER
    Partners
    CRM_JCDO
    Change Documents for Status Object (Table JSTO)
    CRM_JCDS
    Change Documents for System/User Statuses (Table JEST)
    CRM_JEST
    Individual Object Status
    CRM_JSTO
    Status Object Information
    SROBLROLB
    Persistent Roles of BOR Objects
    SROBLROLC
    Persistent Roles of Business Classes
    SRRELROLES
    Object Relationship Service: Roles
    STXB
    SAPscript: Texts in non-SAPscript format
    STXH
    STXD SAPscript text file header
    STXL
    STXD SAPscript text file lines
    SWFGPROLEINST
    Guided Procedures: Role Instance
    SWPCMPCONT
    Component Container of WFM
    SWP_HEADER
    Workflow Instances: Header Data of a Workflow Execution
    SWPNODE
    WFM: Node Properties and Node Hierarchy at Runtime
    SWPNODELOG
    Workflow: Instance Data of Nodes of a Workflow Execution
    SWP_NODEWI
    WF: Work items for nodes in a workflow definition
    SWPSTEPLOG
    Workflow: Instance Data of Steps of a Workflow Execution
    SWWCNTP0
    Workflow Container: XML Database (P0)
    SWWCNTPADD
    Workflow Runtime: Persistence for Additional Container (XML)
    SWW_CONT
    Workflow Runtime: Work Item Data Container
    SWW_CONTOB
    Workflow Runtime: Work Item Data Container (Only Objects)
    SWWEI
    Workflow Runtime: Work Items of Type E (Event Items)
    SWWLOGHIST
    Workflow Runtime: History of a Work Item
    SWWLOGPARA
    Obsolete 4.6/ WIM Log Table: Actions on WIs - Parameters
    SWW_WI2OBJ
    Workflow Runtime: Relation of Work Item to Object
    SWWWIDEADL
    Workflow Runtime: Deadline Data for Work Items
    SWWWIHEAD
    Workflow Runtime: Header Table for All Work Item Types
    SWWWIRET
    Workflow Runtime: Return Values of Method Call
    SWZAI
    Header Table for all Properties of a Work Queue
    SWZAIENTRY
    Object Table for Work Queues (Entries)
    SWZAIRET
    Return Values of Method Call of a WQ Line
    TOA01
    Link table 1
    TOA02
    Link table 2
    TOA03
    Link table 3
    TOAHR
    Container table for HR administration level
    Kind regards,
    Peter

  • Badi for preventing PO creation in shopping cart in srm

    Hi Experts,
    Here I have a senerio in SRM. In shopping carts we need to avoid purchge order cretion for particular vendors. Because for these vendors through workflow after approval PO has to be created.
    So I need BADI to prevent the purchage order creation for particular vendors.
    Please suggest me in this regards.
    Thanks in advance
    G.S.Naidu

    Hi Naidu,
    PLease try this:
    Enhancement   MM06E005       Customer fields in purchasing document  (It contains vendor as import paremeters)                    
    Enhancement  MEQUERY1        Enhancement to Document Overview ME21N/ME51N
    I hope this may helpfull.
    Thank you,
    Thanks,
    AMS

Maybe you are looking for

  • ALV Toolbar related Query

    Hi, When using FM 'REUSE_ALV_GRID_DISPLAY' Exporting Parameters : I_CALLBACK_PF_STATUS_SET  in SET PF Status Creating additional Buttons. In ALV Report output addition  additional buttons are coming but Standard ALV Toolbar are missing like Sort Asse

  • Regarding a Change Document Function Module ----- VERY VERY Urgent

    I am using a Change Document Function module "CHANGEDOCUMENT_READ". It is taking a long time. I am using the parameters: Start date is the first date of the current month Enddate as last date of the current month Object class as 'MATERIAL' Table Name

  • Archiving control not maintained for CIR document .T-code MD82

    Hi All,    I have archived sales order till 31/12/09 in the production system, but the Customer Independent Requirement that is CIR documents (MD82) are also there in vbak table ,now i have closed all the open document  by putting rejection reason. W

  • Unable to findout the error message in debug

    Hi Gurus, When i am trying to execute the T.code FMCI_COPY_NEXT_YEAR  i am getting the ERROR MESSAGE: SET SCREEN NOT ALLOWED IN SUB SCREEN (SCREEN NO SAPLSBAL_DISPLAY0101) in new implementation. i am unable to find out  where the exact error is commi

  • Fail during installing AMD driver

    Hi , i have been trying to update my AMD 6770m driver from 8.830.6.1000 to the new update but i failed each time i tried auto detection and update and it shows me errors i tried manualy by browsing to the c/amd/support then the driver but it show tha