Modification to CRMD_ORDER screen ltem list on General Tab

Hi all, I have a customer requirement that I am sure someone may be able to help.  It is technical in nature.  I need to add the product availability date to the item list on the general tab in CRMD_ORDER when creating a new order.  Currently only Request Date, Last Confirmed Date, and Delivery Group Date appear.  I am getting the product availabilty date from ECC and we are actually working with it in the BADI CRM_AV_CHECK_APO_01 - I just need to get it displayed on the screen.  Within the BADI it is in the structure ls_schedlin-scheduling-product_avail.  The field is not available through 'Layout Settings' on the ALV grid of items.
I have looked for a BADI to change the ALV grid but I have not modified an ALV with a screen exit - is that possible?  Our backup plan is to us EEWB to extend the item record to hold this date and then display it on 'Additional Data' tab - is this my only option without copying the screen and creating a custom screen?
Thanks for all ideas...

Vinay, thank you so much for your reply.  I think that would have solved my original requirement, but as you know things sometimes change.  Perhaps you can help with the new requirement, we need to display additional dates on the individual item schedule lines tab.  Currently we are only seeing the Confirmed date, we need to see the available date which in the CRMD_SCHEDLIN table has an event type of 'CNFPRODAV'.  Do you know of a way to get these dates to appear in the listing on this tab?  I think there may be a configuration change, but I am not sure.  I have looked into some BADI's with no luck, we can't use the list on the General tab as initially thought because some items will have multiple availabilty dates, depending on the order qty.
I guess my question to you, do you know a way of getting related dates and quantities from the CRMD_SCHEDLIN table to appear on the 'Schedule Lines' tab for each individual item?
Thanks again...
Don

Similar Messages

  • KDMAT need to be included in the current VA01 selection screen or list when

    Hello SAP SD Consultants,
    Please help me with below requirement or what user exit should we use to implement below requirement.  I have discussed with with ABAP and gave some User exits that has related description, however, ABAP confirmed that none of below UE suits the requirement.
    1. AD010002 - Delimit selection and/or filter data that is determined
    2. CLCLRS01 - Additional Fields on the Result Screen
    3. CLCLRS02 - Fill the Additional Fields on the Result Screen
    4. V60P0001 - Data provision for additional fields for display in lists
    5. WVLB0001 - Display additional data in subscreen for simulation list
    Thus, kindly help us on how we can proceed with this.
    000----
    Requirement:
    The field  u201CCustomer-material numberu201D or field name KDMAT need to be included in the current VA01 selection screen or list when creating sales orders with reference from a contract.
    Currently, customer have its own description or material code to classify or define the product they want to order  which are sometimes not exactly the same as the material number maintained in the system or the product / material code used by the Company for sales. These material descriptions were manually entered in the system thru the use of customer-material number field or KDMAT. When sales orders or contracts are created for certain or specific customers, the user or the person who creates that contract / order manually inputs the description in the customer-material number field.
    The said entry should also be seen in the Selection List for Reference Document. The transaction to be modified is VA01 under program screen SAPMV45A specific to screen number 4413.
    Test Data used:
    Reference Transaction: VA41 (create contract), VA43 (display contract)
    Order Type: ZCQ (example)
    Contract No. 40000040
    Transaction: VA01
    Order type: ZOR (example)
    Contract No. 40000040
    a. Go to tcode VA01, input the order type ZOR, click the button CREATE with REFERENCE.
    b. Input the reference contract document, since our reference doc is a contract, go to tab CONTRACT and input the contract no..
    Expected output:
    Upon inputing the contract no. in the contract tab, click u201CSelection Listu201D.
    The customer-material number or KDMAT should be included as one of the field and should be displayed in the Selection List for Reference Document window.
    Edited by: ria sumagaysay on Mar 26, 2010 11:30 AM

    Hello,
    Thank you for the responce.
    The reason why they want to reflect KDMAT in the selection list is that, during order creation, not all materials or KDMAT will be ordered by that customer, only specific materials. However, during order processing, the customer only gives the details of the KDMAT. Thus, if there are around hundreds of items inside that contract, the sales personnel who creates the order needs to exclude those material not included in the customer order list manually via checking table VBAP and compare the material code from the selection list.
    This is very tedious on their part and commonly caused human error, however, when the KDMAT field is available, although the process has manual intervention, it will serve them well and lessen the burden.

  • Why is the Thunderbird main screen message list text so small - and how can I change it

    I see lots and lots of complaints but NO suitable answer! Most answers don't even answer the question but instead tell how to increase MESSAGE font size - not the main screen "message list". Suggestions to change screen resolution are common but are ludicrous. One would have to change resolution every time they went in or out of Thunderbird! CTRL+ is also suggested but does not work on the message list. Creating and inserting CSS into the profile is a ridiculous suggestion for most users.
    Why is there no user friendly setting provided for text size on this screen?

    Please stay with one thread per issue. Continue In your original thread here.
    https://support.mozilla.org/en-US/questions/1038776

  • How write a field to screen(report list) but don't display it ?

    Hi, All
        How write a value to screen(report list) but don't display it ?  Because i will use this value as the user click the current line ,but i don't want to expose this value to the user.

    Hi,
    U can Use the option NO-DISPLAY with PARAMETERS.
    Can write in the Selection screen statement with the syntax as
    Paramaters: <fieldname> type <data type>
                 value <value> no-display.
    -Rakesh

  • How to display mutilpe list in a screen ( ALV list)

    Hello,
    Could you please help me the source code sample for displaying many list in an ALV screen (Basic list)
    For example : I 've 2 table with different information.
    Table A  Col A1 col A2 Col A3
    Table B Col B1 B2 B3 B4 B5
    Now I need to display them in only 1 screen like :
    List of record in table A
         Col A1 Col A2 Col A3
    List of record in table B
        B1 B2 B3 B4 B5
    Thanks,

    for this kind of requirement use the LIst ALV.
    The below sample code might help you
    DATA : g_t_print TYPE slis_print_alv.
    Initialize ALV
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
    ADD first ALC
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                  = g_t_layout
          it_fieldcat                 =  g_t_fieldcat[]
          i_tabname                = 'g_t_strans'
          it_events                 = g_t_events_strans
        TABLES
          t_outtab                   = g_t_strans
        EXCEPTIONS
          program_error              = 1
          maximum_of_appends_reached = 2.
      IF sy-subrc NE 0.
        MESSAGE s999 WITH 'Error in ''REUSE_ALV_LIST_DISPLAY'' FM'.
        STOP.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                   = g_t_layout
          it_fieldcat                  = g_t_fieldcat[]
          i_tabname                 = 'g_t_sretrev'
          it_events                   = g_t_events_sretrev
        TABLES
          t_outtab                     = g_t_sretrev
        EXCEPTIONS
          program_error              = 1
          maximum_of_appends_reached = 2.
      IF sy-subrc NE 0.
        MESSAGE s999 WITH 'Error in ''REUSE_ALV_LIST_DISPLAY'' FM'.
        STOP.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                  = g_t_layout
          it_fieldcat                = g_t_fieldcat[]
          i_tabname                  = 'g_t_stransrev'
          it_events                  = g_t_events_stransrev
        TABLES
          t_outtab                   = g_t_stransrev
        EXCEPTIONS
          program_error              = 1
          maximum_of_appends_reached = 2.
      IF sy-subrc NE 0.
        MESSAGE s999 WITH 'Error in ''REUSE_ALV_LIST_DISPLAY'' FM'.
        STOP.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                  = g_t_layout
          it_fieldcat                = g_t_fieldcat[]
          i_tabname                  = 'g_t_sret'
          it_events                  = g_t_events_sret
        TABLES
          t_outtab                   = g_t_sret
        EXCEPTIONS
          program_error              = 1
          maximum_of_appends_reached = 2.
      IF sy-subrc NE 0.
        MESSAGE s999 WITH 'Error in ''REUSE_ALV_LIST_DISPLAY'' FM'.
        STOP.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
        EXPORTING
          is_print = g_t_print.

  • How to add new value in Classification under General tab via MM02.

    Hello Experts,
    I've a requirement where I need to add a new material variant configuration value via MM02 as highlighted below. I've also attached the screen shot of CL02, the two characteristics which I need to add (highlighted in red).
    Can please anybody tell me the steps to add value in Classification under General tab via MM02.
    Many thanks in advance.

    zero cool,
    Use transaction CL02 , open class in PCL_222_PURO_BOX with class type 300
    add characterstic
    PCH_COSTING_WGT_DETERM
    PCH_COSTING_WGT_A_DETERM
    save it.
    Now use MM02 and go to classification view , now you would be able to see these characterstic there.
    Check and come back.
    Thanks
    Ritesh

  • No Network setting under General tab

    I am trying to set up tethering. I am on iPhone 3gs, OS6.
    I have been advised to go to the General tab in settings then go to Network, there is no Network available.
    I have Personal Hotspot set up under Settings, which has bluetooth and USB, but want to set up tethering wirelessly.
    Any ideas

    Well, I guess I had to switch to a screen resolution larger than 800x600 to see the Context Root field way down the bottom.
    Somewhere it should be spelled out that Deploytool won't work right in screen resolution of 800x600 or less.
    Thanks.

  • No "Context Root field" found under General tab

    The J2EE 1.4 Beta2 tutorial on using the deploytool says,
    For example, to set the context root of the hello1
    application with deploytool:
    Select the hello1 WAR.
    Select the General tab.
    In the Context Root field, enter /hello1.
    But there is no "Context Root" field. Under the General tab the only fields are WAR Location, WAR Display Name, and Contents.
    Any suggestions?
    Thanks.

    Well, I guess I had to switch to a screen resolution larger than 800x600 to see the Context Root field way down the bottom.
    Somewhere it should be spelled out that Deploytool won't work right in screen resolution of 800x600 or less.
    Thanks.

  • Can I just print the Incidents "General" tab ?

    When I load an Incident form and the select "Print" from the Tasks menu, I am not given any further print options and can therfore only print all 5 pages or more, including the Related Items, Resolution and Histoty tabs. When all I need to print is the
    information contaained in the General tab, can this be achieved?

    Hi !
    With small modifications to http://datacenterautomation.at/?p=526, printing Incidents should be easy.
    Regards/Roman

  • Can't find "General" Tab on Android to set Tabs on opening browser ?

    Trying to set 2 Tabs as Home Pages when opening Firefox in Android - instructions say open Tabs and then go to General Tab - can't see this anywhere ??
    Thanks

    Hi:
    Unfortunately you cannot remove the top sites homepage but you can pin a site, remove a site by unpinning it and edit a pinned site's url.
    Please read [[Pin Sites on the Firefox for Android start screen|this article]] for instructions.
    Hope this helps!

  • How do i turn voiceover off without going to the general tab?

    I turned voiceover on and now im unable to access the screen to turn it off. It even allow me to scroll up or down or side to side. Is there anyone to turn voiceover off without going to the general tab>accessibility?

    Your best bet is an Apple store...the genius bar has seen this before & they have the tools to fix. So, go to an Apple store...make an appointment first.

  • Rather than go to the home page I have specified in the General tab of Options in the Tools menu, Firefox keeps going to a truncated version of this url.

    I have used the following URL as my firefox home page for quite some time:
    https://www.google.com/search?num=100&safe=off&hl=en&complete=0&q=Rochester-NY+CDC.gov+|+NIH.gov&btnG=Search
    Several months ago, malware of some sort replaced this url with one of their own. I got rid of the malware and put back my original home page, but I'm continuing have a problem: Every time firefox goes to my home page, rather than using the whole url that I've specified, firefox truncates this url to just the first 87 characters, and goes to this truncated url instead:
    https://www.google.com/search?num=100&safe=off&hl=en&complete=0&q=Rochester-NY+CDC.gov+
    Not only is this not the url that I have specified in the General tab under Options in the Tools menu, I always get an error message in an additional tab whenever Firefox goes to this truncated version of my home page. Can anyone tell me what I need to do to get firefox to use the entire url I have specified as my home page in the General Tab under Options?
    I do not know if this is relevant or not, but I noticed that prefs.js includes two other user prefs related to the home page in addition to the one that identifies the url I chose:
    user_pref("browser.startup.homepage", "https://www.google.com/search?num=100&safe=off&hl=en&complete=0&q=Rochester-NY+CDC.gov+|+NIH.gov&btnG=Search");
    user_pref("browser.startup.homepage_override.buildID", "20130617145905");
    user_pref("browser.startup.homepage_override.mstone", "22.0");

    You need to escape the pipe character as %7c if you want to include it in the URL

  • The "general"tab in firefox options doesn't open

    I can't download anymore. Trying to check my settings the "general"tab in firefox options doesn't open. What can I do?
    thanks in advance,
    August

    Hi,
    Please check if the '''Options''' tabs are working in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.]
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • I cannot access the "General" tab in Options.

    I recently received a browser highjack due to a sketchy program recommended by a friend. (Last time I listen to them.)
    I uninstalled the program but and restored my search engine, homepage, newtab page, and all that. (Some through the options, some through about:config)
    I uninstalled the program, removed all traces I could find through the registry. I even ran a anti-malware program.
    However, when I go into the Options menu in Firefox, my "General" tab does not load at all. All of the other work fine, but this one does not. I assume this was a thing the malware did to avoid me changing my preferences, but since I changed them all already through other means, I am mostly annoyed. (At least I think I changed everything back. I ''would'' check, but... y'know.)
    So is there any way to abilitate this option? Or will I be forced to always wonder if I got everything back to normal?

    I was suffering the same problem and found that disabling Ghostery corrected the problem. I cannot really see myself surfing the web without Ghostery though, so instead I went to Add-ons/Appearance to see if I was using a theme which maybe was contributing. I was still using theme FF came with (Default) and decided to try installing a theme to see if it would correct the problem and lo and behold it did. The theme I went with was Lava Fox V2.
    I then tried going back to the default theme and the problem re-appeared. So back to Lava Fox for me then. The previous answers helped by pointing me in the right direction so thanks to all.

  • In FF 3.6, adjoining the back forward button, there was a dropdown which allowed me to jump to any page in the history list of the tab. This feature is missing in FF4. Is there any setting to enable it?

    In FF 3.6, adjoining the back forward button (on the left of address bar), there was a dropdown which allowed me to jump back/forward to any page in the history list of the tab. This feature is missing in FF4. Is there any setting to enable it?

    For me, I have the same question, this is a poorly done upgrade and I want to go back to 3.6

Maybe you are looking for

  • Creating Chart in BeX Report

    I have few questions regarding creating Chart in BW Report. One thing I need to make it clear it's a simple BeX Report not a WAD report. (1) How should I create a chart in the Report?? Should I have to create it in the Excel Sheet once I run the repo

  • BAPI_ALM_ORDER_MAINTAIN not Updating Special stock indicator field

    Hi Experts               I am using BAPI_ALM_ORDER_MAINTAIN to create and  then update a Customer Service Order. When am trying to update the Special stock indicator field in the Components Tab(of IW32) through BAPI, its not doing so, and no error is

  • Ipod sync with mac mini

    I have a mac mini runnung 10.4.7 and would like to know if I can run my 20G click wheel ipod AND my 8G Nano from the same profile on iTunes with out getting errors??? Any help/Info would be great... Mac Mini   Mac OS X (10.4.7)  

  • When to use XML file Datasource

    Hi, I would like to know under what scenario we have to use the XML file as a datasource? Is it possibe to extract data from a email. The client is getting data in email everyday and is it possible to upload this data directly from the email. or do i

  • When I turn on my atv2 my imac also turns on... I dont want this happend  what can I do?

    please help!