How to modify an existing Match code selection for Vehicles

Hello,
In vehicle master Change or Display (T-code: O4V2 or O4V3) we eneter TD vehicle no. (OIGV-
VEHICLE). Here when we take a drop down - F4 (Match Code selection) and various options are available like
1). Vehicle Number and Description
2). General Data
3). Vehicle weights
4). Vehicle type  etc
In Vehicle master under 'Communication Data' we have one field called 'Call Sign' (OIGV-VHCLSIGN). We would like to have this field in drop down selection / Match code selection for Vehicle on any of the above mentioned tab page in Match code selection (e.g. Say under 'General Data'). How do we add the same or how do I do this modification of existing matcode selection?
For Customer master we can maintain Match code selection in SPRO (Maintain Matchcodes for Customers) which I am aware of. I am looking for something similar for Vehicles or may be some direct development.
Can anyone please guide me in this?
Thanks & Regards,
Aniruddha.

Hi Anirudhdha,
Unlike customer match code there is no customising option for vehicles. But conceptually the same thing can be done. Create a single search help with the criteria you need. Add it to the collective search help OIGV (like we do for DEBI in customer master).
Regards,
Ashutosh

Similar Messages

  • How to add the Match code object for the requisitioner field in TCODE ME51N

    Hi,
    How to add the search help (Match code object) for the requisitioner field in transaction ME51N.
    Please  do the needful to me.
    Regards
    Rajesh

    don't you think that posting your question to a microsoft developer site would be more efficient?
    regards,
    anton

  • SRM 7.0 company code selection for manual PO

    Dear All,
    We use SRM 7.0 and I have created a purchasing group under a central purchasing organization. This purchasing group is responsible from procurement of  two different Company Codes. I did all the assignments in responsibility tab and attributes tab under PPOMA_BBP.
    When i try to create a manual PO, I don't see any option to select the company code, either in "Overview" tab , nor in "Header" tab.
    Does anybody know or help me how to select/enable company code selection for manual PO creation ?
    Thanks in advance,
    Best regards,

    Dear Kumar,
    Thanks for the info. In my organization, there are two company codes and apart from them there is a Purchasing Org.
    All the attribute settings are done for these company codes. While creating a PO, as there is no field for Company code, system determines the company code automatically in background. (let's say Company code X). But I'm trying to create a PO for company code Y.  When I enter the cost center, I got the error "Cannot purchase between company codes".
    So how am i going to select company code Y ? How the system will determine company code Y ? Can you please give in details what must i do ??
    Thanks in advance,
    Best regards,

  • How can i write the below code using "For all entries"

    Hi
    How can we write the below code using "for all entries" and need to avoid joins...
    Please help
    SELECT aaufnr aobjnr aauart atxjcd a~pspel
    agstrp awerks carbpl cwerks
    INTO TABLE t_caufv
    FROM caufv AS a
    INNER JOIN afih AS b
    ON aaufnr = baufnr
    INNER JOIN crhd AS c
    ON bgewrk = cobjid
    AND c~objty = 'D'
    WHERE ( a~pspel = space
    OR a~txjcd = space
    OR NOT a~objnr IN
    ( select OBJNR from COBRB AS e
    WHERE objnr = a~objnr ) )
    AND a~werks IN s_plant
    AND a~auart IN s_wtype
    AND NOT a~objnr IN
    ( select OBJNR from JEST AS d
    WHERE objnr = a~objnr
    AND ( dstat = 'A0081'OR dstat = 'A0018' )
    AND d~inact 'X' ).
    Reward points for all helpfull answers
    Thanks
    Ammi.

    Hi,
    SELECT objnr objid aufnr
            from afih
            into table t_afih.
    SELECT objnr
            from JEST
            into table t_JEST
            where stat = 'A0045'
               OR stat = 'A0046'
               AND inact 'X'.
    SELECT objnr
            from COBRB
            into table t_cobrb.
    SELECT arbpl werks objid objty
          from crhd
          INTO table it_crhd
          FOR ALL ENTRIES IN it_afih
          WHERE objty eq 'D'
          AND gewrk = it_afih-objid.
    SELECT aufnr objnr auart txjcd pspel gstrp werks aufnr
            FROM caufv
            INTO table t_caufv
            FOR ALL ENTRIES IN it_afih
            WHERE aufnr = it_afih-aufnr
              And pspel = ' '
              AND txjcd = ' '
             ANd objnr ne it_crhd-objnr
              AND auart in s_wtype
              AND werks in s_plant.
             AND objnr ne it_jest-objnr.
    dont use NE in the select statements, it may effect performance also. Instead use if statements inside
    loops.
    loop at t_caufv.
    read table it_chrd............
      if t_caufv-objnr ne it_chrd-objnr.
      read table it_jest..........
       if   if t_caufv-objnr ne it_jest-objnr.
        (proceed further).
       endif.
      endif.
    endloop.
    hope this helps.
    Reward if useful.
    Regards,
    Anu

  • Itunes account is under a comcast address along with all my 800  tunes, my .me address is not connected to the music.  how do I get itunes match to work for my iphone

    itunes account is under a comcast address along with all my 8000 +  tunes, my .me address is not connected to the music.  how do I get itunes match to work for my iphone

    U.S. Cellular does not unlock iPhones: iPhone: Wireless carrier support and features - Apple Support
    Sell the iPhone to someone that wants to use U.S. Cellular, and use the proceeds to purchase an iPhone that is usable on the wireles carrier you prefer.

  • Match code values for calmonth

    Hi experts!
    In Bw queries when I use match code for calmonth I can see only values up to 2012 and in fact there are no values in sid table higher than 12.2012 except some values in 2013.
    How I can make appear in match code values higher than 12.2012?
    It' for a planning application and users want to see match code up to 12.2015.
    Thanks a lot.

    Hi Angelo,
    Most probably your BW calender has been maintained till 2012 therefore you need to insert manually for the values bigger then 2012. Please review the following discussion,
    12.9999 in DTP Filter
    Thanks.

  • How to modify an existing xml file from java code.

    Hi
    I have worked on creating a new xml file from java code using xmlbeans.But if i try to modify an already existing file using java code I am unable to get errorfree xmlfile.
    For example if xml file(studlist.xml) is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <StudentList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\kchaitanya\xmlprac1\abc\Studlist.xsd">
         <Student>
              <Name>ram</Name>
              <Age>27</Age>
         </Student>
    <Student>
              <Name>sham</Name>
              <Age>26</Age>
         </Student>
    </StudentList>
    Now suppose i have set name to victor using student.setName,
    and set age to 20 using setAge from javacode,
    the new xml file is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <StudentList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\kchaitanya\xmlprac1\abc\Studlist.xsd">
         <Student>
              <Name>ram</Name>
              <Age>27</Age>
         </Student>
    <Student>
              <Name>sham</Name>
              <Age>26</Age>
         </Student>
    </StudentList>
    <Student>
              <Name>victor</Name>
              <Age>20</Age>
         </Student>
    As observed this is not a valid xml file.But how can i modify without any errors?

    I know it's an old post, but I found this while doing a google search for something else, and don't like to leave it un-aswered
    Just in case anyone has a similar problem... In this case the new elements have been appended outside of the root element
    What you need to do is first get the root element and then append the new children to that, there are several ways of getting the root element, which depend on what you want to do with the elements you get back here's a simple (incomplete) way.
    // gets the root element of the specified file (code not shown)
    Element rootElement= new SAXReader().read(file).getRootElement();Then just append the new elements as below (this is non-generic code and would need to be modified for your situation)
    // write a new student element
    Element student = document.createElement("Student");  // creates the new student
    rootElement.appendChild(student); // ***appends it to the root element***
    Element name = document.createElement("Name"); // creates the name element
    name.appendChild(document.createTextNode("Fred")); // adds the name text to the name element
    student.appendChild(name); // appends the name to the student
    Element age= document.createElement("Age"); // creates the age element
    age.appendChild(document.createTextNode("26")); // adds the age text to the age element
    student.appendChild(age); // appends the name to the studentThen flush ya buffers or whatever and write the file
    Edited by: Dream-Scourge on Apr 23, 2008 11:10 AM

  • This Question is related to IDOC , that how to modify the existing IDoc

    hi All,
    am getting some problem that ,
    i have created the IDOC for sales orders by using (ORDERS), so i was able to create IDOC,but my requrement is to modify the exising IDOC.
    how i can go through?.
    what are the F.M to use?

    Hi,
    Check the FM being used for inbound posting for your message type. See if there is a user exit available for you to update data contained in the IDoc.
    If there isn't any, then you might have make a copy of the existing inbound processing FM and modify code to address your requirements. This will involve setting up your Z* FM for inbound posting (rather than system's standard FM) through configuration. For more details on how make these settings, take a look at http://www.sapgenie.com/sapgenie/docs/ale_whitepaper.doc.
    Regards

  • How to modify an existing query to add a column

    Hi all, I have an existing query :
    SELECT 2 as SOURCE_SYSTEM_ID, LI.IPROD AS SYSTEM_ID, LI.IPROD AS PART_NUMBER, LI.IDESC AS PART_DESCRIPTION, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE (LZ.CCTABL = 'SIRF2') AND LI.IREF02 = LZ.CCCODE), '') AS PLANT_CODE, LIS.ISSTSD
    AS lifecycle_status, CASE LI.ILDTE WHEN 0 THEN convert(date, GETDATE()) ELSE (SUBSTRing(convert(varchar, LI.ILDTE), 1,4)+'-'+SUBSTRing(convert(varchar,LI.ILDTE), 5,2)+'-'+SUBSTRing(convert(varCHAR,LI.ILDTE), 7,2)) END AS LAST_ACTIVITY_DATE,
    LZPA.DATA AS PRODUCTION_TYPE, (CASE (LI.IITYP) WHEN '6' THEN 'SERVICE' ELSE 'ITEM' END) AS ITEM_TYPE, LI.IVEND AS PRIMARY_VENDOR, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS
    UOM_INVENTORY, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS UOM_BOM, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI. IUMR
    AND LZ.CCLANG = '') AS UOM_SELL, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMP AND LZ.CCLANG = '') AS UOM_PURCHASE, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='BUYER'
    AND LZ.CCCODE=LI.IPURC), '') AS BUYER, (LI.IMHIGH) AS ITEM_HEIGHT, SUBSTRING(IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='SIRF5' AND LZ.CCCODE=LI.IREF05), ''), 1, 20) AS APPLICATIONS, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC
    LZ WHERE LZ.CCTABL='SIRF3' AND LZ.CCCODE=LI.IREF03), '') AS PORGRAM, (LI.IMWIDE) AS ITEM_WIDTH, LI.IMLONG AS ITEM_DEPTH, LI.IWGHT AS ITEM_WEIGHT_NET, LI.IMNNWU AS ITEM_WEIGHT_TARE FROM HCMEUP01.FRDA385A.LBPCSF.IIM LI, HCMEUP01.FRDA385A.LBPCSF.ISC LIS,HCMEUP01.FRDA385A.LBPCSF.ZPA
    LZPA WHERE LI.ICOND = LIS.ISSTSC AND LZPA.PKEY=('ITEMTYP'+LI.IITYP )
    Now I need to add a column called WORK_CENTER. I added a subquery to the existing one.  It looks like this:
    SELECT 2 as SOURCE_SYSTEM_ID, LI.IPROD AS SYSTEM_ID, LI.IPROD AS PART_NUMBER, LI.IDESC AS PART_DESCRIPTION, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE (LZ.CCTABL = 'SIRF2') AND LI.IREF02 = LZ.CCCODE), '') AS PLANT_CODE, LIS.ISSTSD
    AS lifecycle_status, CASE LI.ILDTE WHEN 0 THEN convert(date, GETDATE()) ELSE (SUBSTRing(convert(varchar, LI.ILDTE), 1,4)+'-'+SUBSTRing(convert(varchar,LI.ILDTE), 5,2)+'-'+SUBSTRing(convert(varCHAR,LI.ILDTE), 7,2)) END AS LAST_ACTIVITY_DATE,
    LZPA.DATA AS PRODUCTION_TYPE, (CASE (LI.IITYP) WHEN '6' THEN 'SERVICE' ELSE 'ITEM' END) AS ITEM_TYPE, LI.IVEND AS PRIMARY_VENDOR, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS
    UOM_INVENTORY, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS UOM_BOM, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI. IUMR
    AND LZ.CCLANG = '') AS UOM_SELL, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMP AND LZ.CCLANG = '') AS UOM_PURCHASE, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='BUYER'
    AND LZ.CCCODE=LI.IPURC), '') AS BUYER, (LI.IMHIGH) AS ITEM_HEIGHT, SUBSTRING(IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='SIRF5' AND LZ.CCCODE=LI.IREF05), ''), 1, 20) AS APPLICATIONS, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC
    LZ WHERE LZ.CCTABL='SIRF3' AND LZ.CCCODE=LI.IREF03), '') AS PORGRAM, (LI.IMWIDE) AS ITEM_WIDTH, LI.IMLONG AS ITEM_DEPTH, LI.IWGHT AS ITEM_WEIGHT_NET, LI.IMNNWU AS ITEM_WEIGHT_TARE,
    (SELECT LC.LWRKC FROM HCMEUP01.FRDA385A.LBPCSF.LCR LC WHERE RTRIM(LTRIM(LC.LITEM)) = RTRIM(LTRIM(LI.IPROD)) ) AS WORK_CENTER FROM HCMEUP01.FRDA385A.LBPCSF.IIM LI, HCMEUP01.FRDA385A.LBPCSF.ISC LIS,HCMEUP01.FRDA385A.LBPCSF.ZPA LZPA WHERE
    LI.ICOND = LIS.ISSTSC AND LZPA.PKEY=('ITEMTYP'+LI.IITYP )
    Please see the bolded and italic part.   The problem is that the subquery is non distinct.  I am getting an error "
    Msg 512, Level 16, State 1, Line 2
    Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression."
    Can you let me know how I can resolve this issue? it is an urgent request.  Thank you
    Thank You Warmest Fanny Pied

    I was given the existing query and the subquery as they were.  The subquery is as it is returning multiple records on the columns selected.  The person who give me the sub query is sure those are the correct tables to use to develope/change the
    query. 
    select
      DISTINCT a.litem,
    b.IPROD,b.idesc,a.lwrkc
    from HCMEUP01.FRDA385A.LBPCSF.LCR
    a, HCMEUP01.FRDA385A.LBPCSF.IIM
    b
    where
    a.litem=b.iprod
    Thank you for your help.
    Thank You Warmest Fanny Pied

  • How to modify an existing profile

    Hallo everybody
    I have a external lcd monitor connected to my Powerbook, I would like to apply slight changes to the color profile I already have set for it. Is that possible and if yes how?
    Fabio

    I would look here: In system preferences, click displays, color, and edit the profile you're using.

  • How do I change the "gray" color selection for icons in Finder to brown?

    Is there a way to change the selection of colors offered by the dropdown File menu for desktop and folder icons? I use a lot of color coding for the files and folders in my windows, and gray just looks like "dimmed out" to me.
    I know how to get the color wheel in Microsoft Word (or the crayolas, or whatever).  Is there a way to do that for Finder as well, without a lot of technical talk (ranges, percentages, etc.) that I can't understand?  Thanks for any help out there!

    Grey is not the only color showing up.
    If you want more colors other than the ones found in Finder, you will need to use a 3rd party product.  Something like CandyBar will do the trick or download colorful folders and icons.  These softwares can be found on MacUpdate and by doing a Google search.

  • Field and Link T. Code selection for display transaction

    Hi,
    I want to know the transaction code with which we can customize whixh field to be disply when we execute  the display transaction like ME2L  ,ME2M  ,MB5B  , MB51 etc. and as when we click on PO in ME2M we directly switch to ME23N how to do configuration of all this.
    regards,
      zafar

    Hi
    Any report like ME2M, ME2K, ME2L, MB51 already link has been provided . If you click on the purchase order number, material etc., it will take to the dispaly of the particular screen.
    Thanks
    raman

  • How to modify edit/read mode pop up for documents in "SP2013" to open in only read only mode

    Hi,
    When opening a document the users of my site and including me are getting a pop up asking to open it in read only or edit mode. We want to disable the edit option for end users. Those are confidential doc's. 
    We want them to open only in read only mode. How can it be achieved.
    Can we FORCE a read-only open of the document without giving anyone the option to open in edit mode? I don't have access to Central Admin. Hence kindly let me know if there is some javascript
    code that i can use to do this from browser.
    thank you !

    Hi Prajk,
    If users have edit permission on the documents in this library, even if we disable this dialog (by disabling the add-on "SharePoint OpenDocuements class" from IE browser), the users sitll could download the documents to local machine, and
    edit the documents in client Office application, then sync to library.
    If you want the users to read these confidential documents only, you can only grant the users read-only permission on the document items or on library level, then they could unable to edit these confidential docs, note to give proper users
    proper permissions.
    If you also want that the confidential docs could be opend and read-only in client Office application, you can configure the IRM (implemented by RMS) for SharePoint server, then set the document items in the library read-only for
    some users.
    https://technet.microsoft.com/en-us/library/hh545607%28v=office.14%29.aspx?f=255&MSPPError=-2147217396
    https://support.office.com/en-in/article/Apply-Information-Rights-Management-to-a-list-or-library-6714cfe3-ef39-43b0-bb65-a887726bb63c?CorrelationId=ebcf6a01-1d3c-4b75-86ae-c11322065be6&ui=en-US&rs=en-IN&ad=IN
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to turn off automatic variable code suggest for a single page?

    Does anyone know how to turn off the code assist feature where CFBuilder tries to assist you by listing all the variables on the page?  I have a CFC with over 3000 lines and it causes CFBuilder to hang/freeze like you wouldn't believe.  I'd like to turn off this feature for large files (or at least see if I can tune the feature to be smarter about what variables it suggests).
    Does anyone know how to disable this feature on a specific template or turn this feature off altogether?  Note: I do want to keep the tag attribute suggestion if possible.

    Update: I tried using CFBuilder as a plugin for Eclipse (64 bit) and then followed the steps here: CFBuilder 2 Performance Problems on Windows 7 64-bit Solved » websolete.
    So far I have experienced noticeably faster response times. However, the program still hangs when trying to suggest variable names.  It would be great if there was a way just to disable that feature until Adobe fixes it.

  • TS1627 how do i fix an error code 13019 for itunes aka wont let ipods sync music

    We tried all ipods none will sync and we upgraded itunes to its newest version but they still wont sync.  Any suggestions would be helpful.  The iPods don't have any issues with either.
    Thanks!

    Have you had a look here   http://support.apple.com/kb/TS2830

Maybe you are looking for