Changing F4 help in AS01, AS02, AS03 transaction based on company code.

Hi Experts,
In the asset master transaction AS01, AS02 under tab "leasing", we have a field "Type". This field represents leasing type.
I have to modify F4 help related to this leasing type field such that for a particular company code only those leasing types which starts with letter "C" are displayed. While in all other company codes no such restriction is there.
I have tried creating enhancement point in subroutine pool "/1BCF41/T083l/" because this subroutine is called for F4 help of this field but this subroutine pool can not be enhanced.
Please propose a solution so that the requirement may be met.
Thanks,
Ayaz

Hi
Better U do some USEREXIT.....For validation according to u requirement
Regards;
Prabu

Similar Messages

  • Modifying F4 help in PA30 Transaction Based on Company Code

    Hi Experts,
    I have an requirement in PA30 Transaction when infotype 15 is changed / displayed , it takes me to a screen where I need to restrict the F4 HELP for the field Reason for change based on employee company code.
    Do I need to modify the standard program or some badi or user exit avaialable.Please advice.
    Thanks in Advance.
    Regards,
    IFF

    Hi
    Better U do some USEREXIT.....For validation according to u requirement
    Regards;
    Prabu

  • Reason for change of Infotype Based on Company Code

    Hi Experts,
    I have a requirement where I need to restrict the F4 HELP in
    PA30 Transaction for the infotype 15  based on company code for the field reason for chagne.
    I know that reason for change of infotype are maintained in the table T530E.
    But can this be restricited through SPRO configuration.
    Thanks in Advance.
    Regards,
    IFF

    Hi.
    It's possible to change the search helps with a search help exit.
    Take a look in SE11 for search help H_T530E.
    Search help exit
    A search help exit is a function module for making the input help process described by the search help more flexible than possible with the standard version.
    This function module must have the same interface as function module F4IF_SHLP_EXIT_EXAMPLE. The search help exit may also have further optional parameters (in particular any EXPORTING parameters).
    A search help exit is called at certain timepoints in the input help process.
    Note: The source text and long documentation of the above-specified function module (including the long documentation about the parameters) contain information about using search help exits.
    Function modules are provided in the function library for operations that are frequently executed in search help exits. The names of these function modules begin with the prefix F4UT_. These function modules can either be used directly as search help exits or used within other search help exits. You can find precise instructions for use in the long documentation for the corresponding function module.
    Regards.

  • SKF transactional values based on company code

    Can anybody let me know the logic how we can seggregate transactional value passed to statistical key figure based on company code or is there anytable where we can direclty find SKF transactions involved based on company code ?
    Need to upload SKF transactional figures from one SAP system to another.Hence require process for extraction and uploading of the same

    Hi Amogh
    Hope you are looking for actual SKF quantities posted. kindly check s_alr_87013611 CC report, I think on the lower part this comes. This time I am not in front of system so you please check.
    Regards
    Rajneesh

  • Changing GL a/c currency, maintained in foreign currency, to Company Code currency

    Hello Friends – We have got few GL Accounts maintained in foreign currencies and posting also made to these accounts.  Now, for some reasons, we need to change their currency to Company Code currency.
    We have referred SAP Notes – 146824 and they say that it is possible to change the currency to local currency.
    My doubt is that when I change the currency, I should reclass the balance to zero, once done, and then reclass the balances back.
    Or I can directly change the currency?
    Can you pls advice.
    Thanks

    Hi
    There is absolutely no problem in changing an account currency from foreign to local currency. This is because, when you have the account currency as local currency, transactions in any currency can be posted to the account including the foreign currency in which the account was previously maintained. You do not need to set/reset the account balance for this change. Please also look at the below links which are helpful:
    Change Account Currency - Implications | SCN
    http://books.google.co.in/books?id=WuhM4yEffEUC&pg=PA19&lpg=PA19&dq=changing+the+currency+of+a+G/L+account&source=bl&ots…
    Regards
    Sowmya

  • Transaction 100000100 in company code KSID: Activity 00001 has status Replaced

    Hi Frds,
    When I am going to change a contract in money market instrument, I am getting this error, which in term not allowing me to change the contract.
    Can anybody please through some light about status profile. what is this & what is the use of this. How can I change now the contract.
    Thanks & regards ]
    Anil

    Dear Anil,
    Error message FTR0014 occurs if there are inconsitencies in Table
    VTBFHAPO. Therefore you can implement the attached report
    ZCFM_CORR_HAPO into your system, it can fix the error.
    REPORT zcfm_corr_hapo .
    TABLES:
      vtbfha.
    DATA:
      l_wa_vtbfha     TYPE vtbfha,
      l_rfhazu        TYPE tb_rfhazu.
    * selection screen
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(15) comment2.
    SELECTION-SCREEN POSITION POS_LOW.
    PARAMETERS p_cc LIKE vtbfha-bukrs.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(15) comment3.
    SELECTION-SCREEN POSITION POS_LOW.
    PARAMETERS p_rfha LIKE vtbfha-rfha.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(16) comment1.
    SELECTION-SCREEN POSITION POS_LOW.
    PARAMETERS p_test AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN END OF LINE.
    INITIALIZATION.
      sy-title = 'Correction RFHAZUL RFHAZUNR in VTBFHA'.
      MOVE 'Test run' TO comment1.
      MOVE 'Company Code' TO comment2.
      MOVE 'Deal' TO comment3.
    START-OF-SELECTION.
      SELECT SINGLE *
       FROM vtbfha
       INTO l_wa_vtbfha
      WHERE bukrs = p_cc
        AND rfha  = p_rfha
        AND saktiv = '0'.
      IF sy-dbcnt = 0.
        WRITE: 'Deal does not exist!'.
        EXIT.
      ENDIF.
    * check if rfhazul is correct
      SELECT SINGLE rfhazu FROM vtbfhazu
        INTO l_rfhazu
       WHERE bukrs  = p_cc
         AND rfha   = p_rfha
         AND saktiv = '0'.
      IF sy-subrc <> 0.
        MESSAGE e101(t0) WITH 'Correction not possible!'.
        EXIT.
      ENDIF.
      IF l_rfhazu <> l_wa_vtbfha-rfhazul.
        l_wa_vtbfha-rfhazul = l_rfhazu.
      ELSE.
        MESSAGE s101(t0) WITH 'No correction necessary!'.
        EXIT.
      ENDIF.
      CLEAR l_rfhazu.
    * for sec.check rfhazunr, too
      SELECT MAX( rfhazu )  FROM vtbfhazu
        INTO l_rfhazu
       WHERE bukrs = p_cc
         AND rfha  = p_rfha.
      IF NOT l_rfhazu IS INITIAL.
        IF l_rfhazu <> l_wa_vtbfha-rfhazunr.
          l_wa_vtbfha-rfhazunr =  l_rfhazu.
        ENDIF.
      ENDIF.
    * db Update
      IF p_test IS INITIAL.
        UPDATE vtbfha FROM l_wa_vtbfha.
        IF sy-subrc = 0.
          COMMIT WORK.
        ELSE.
          ROLLBACK WORK.
          MESSAGE a101(t0) WITH 'Error during update (vtbfha)'.
        ENDIF.
      ENDIF.
    * log
      IF p_test IS INITIAL.
        WRITE: 'Real run successful'.
      ELSE.
        WRITE: 'Test run successful'.
      ENDIF.
    Best regards,
    Jasmine

  • Blocking of J1IEX Transaction for particular company code

    Hi,
    I have two requirment,
    1 :  For our one company code  C011 , J1IEX transaction should not allow ,  we have one user and that user is working on different conpany code  but for particular to this company code C011,  how to block the J1IEX transaction user should not take the cenvat
    2: For the same company code J1IEX transaction is allowed  only of in Purchase order material code is  XYZ ,  otherwise for other materials materials should not come i n J1IEX  to get the cenvat benifit.
    regards,
    zafar

    Hi Zafar.
    I belive this would be an authorization issue in this case (guys on the forum pls correct me if I'm wrong).
    Maybe you should put a request for the Basis/Security management team who supports your company, informing what C.Code restrictions to add in this transaction, and for what users, so that they would find out what authorization objects to restrict.
    Regards,
    Rodrigo.

  • Search help to filter plants based on company code

    Hi folks,
                 I have to create a search help for plants based on the company code value. can I get any pointer to a search help exit for a similar requirement?
    Thanks
    Abhi

    hi abhi,
    you can create a elementary or collective search help according to your requirement. you have to define the compay code as import parameter. for more details search sdn or google....that will help you out..
    thanks and regards,
    tanmaya

  • Create Idocs based on Company Code change & Line Items less than 950

    Dear all,
    I am trying to create the Idocs based on the flat file in the following way.
    1) Create the Idoc per company code
    2) If company code exceeds 950 lines then create another Idoc
    I am trying to follow this BLOG and could not be able to achieve it because in the Blog explained with flat structure and my case is Idoc structure.
    /people/claus.wallacher/blog/2006/06/29/message-splitting-using-the-graphical-mapping-tool
    I changed the Idoc Occurrence and imported to External definition.
    I am able to do the both check individually but not able to put them in combining.
    Please advice..
    Regards

    Company Codes -> sort -> SplitbyVlaue(Valuechange) -> CollapseContexts -> remove contexts
    AND
    Contact(CompanyCodes, Lines) both in header context - removeContexts - SortbyKey(CompanyCodes) -
    formatbyExample(Company Codes -> sort -> SplitbyVlaue(Valuechange)) - count - greater(>950)
    Srikanth Srinivasan

  • Change of Company Code Currency

    Dear All,
    We have a scenario of changing the company code currency. We have an option here.
    Either to
    i) change the currency of a live company code with postings or
    ii) to change the currency of a live company code that has no postings made so far.
    We are sure that we can recommend the second option, however is there any precaution we need to take before making the actual change for the ii) option?
    Anyone who had done this before please let us know what are the cautionary measures to be taken if any?
    Regards,
    Asokan.

    Asokan,
    If the company code has had no postings made so far after going live, then you have a relatively simple situation, and should not face any major problems.
    However, it is essential that the company code not have any postings made in ANY of the systems, including DEVELOPMENT and TEST systems. Go ahead and try to change the company code currency in transaction OX02 in your DEV environment. SAP will not allow you to change the currency for a company code where your current system has postings made to it. Also, if and when you are able to make the change and try to move the TR for this change, your test system (target system for the TR movement) should also have this situation, else there's a good chance the TR might fail in the TEST system.
    There is a transaction for Reset Company Code Data - I don't recollect more details, but do some homework and you'll find it easily. You'll need that before you can undertake this change.
    Read the caution in the transaction for "Reset Company Code Data" carefully as that is irreversible, and is highly disruptive.
    Hope this helps.

  • SAP ISU- Can you help on Invoice Rounding steps at company code level,

    Dear Friends,
    Can you help on SAP ISU Invoice Rounding steps at company code level,
    Client requirement is: - for one company code they need round the Invoice and other company codes they does not required the round option.
    We have configured some steps, which are given below,
    Contract Accounts Receivable and Payable - Basic Functions - Postings and Documents
    1.     Define Rounding Rules for Currencies
    2.     Define Accounts for Rounding Differences
    3.     Accounts for Rounding Gross Amounts (IS-U)
    4.     IS-U: Define Acct Assignment Data Relevant to Transactions
    a.     (Main Transaction 0010 and Sub Transaction 0040)
    SAP Utilities u2013 Invoicing
    1.     Define Basic Settings for Invoicing
    2.     Define Invoice Rounding Rules
    Please provide the solution; I will be appreciating for earliest answer...
    Thanks and Regards,
    Prudhvi

    Hello Christiane,
    Thanks for your quick reply, and valuable information,
    But we have u201CNo roundingu201D option available at client level, path has given below, 
    SPRO u2013 SAP Utilities Invoicing u2013 Basic setting u2013 Define Basic setting for invoicing
    We are not authorized to change any configuration at client level,
    If you can able to guide me at company code level that could be great,
    Thanks for the support
    Thanks and Regards,
    Prudhvi

  • Changing plant assignment to company code

    Hi,
    Need your help urgenly!!!
    We have a plant AXXXX assigned to company code AXXXX over a year and we have number of open PO's , GR's and delivery etc for this plant and now we want to change the assignment as plant AXXXX to be assigned to company code BXXXX.
    Here i want to know the impact on MM as well as FI point of view for changing the company code assignment for the plant.
    Regards
    Mariappan V

    Despite of the fact that OX18 allows it technically to re-assign a plant to another company than before (it must be possible as anybody can make errors which may need to be corrected), I personally would not do this for a plant which was already active. At least I would ask SAP directly for advice.
    e.g. if you have stock in this plant, then the stock value will not automatically transfer from company A to company B's General ledger, just because you reassign a plant in OX18.
    A purchase order has as well the company code mentioned in the header data. And there are several error messages that may come up when changing those purchase orders after a reassignment, as this company code conflicts with the new company code.

  • Company code to be displayed in search help for vendors/Business partners

    Hi,
    We have a requirement to display the company code along with the vendor/business partner number when searching for preferred vendors while creating the shopping cart.
    In standard the search help exit used is BBP_F4IF_SHLP_EXIT_SOS. This search help does not have logic to find the company code for the vendor/business partner. It only finds and displays the purchasing organization.
    Can someone tell me where I find the company code agains the vendor?
    I tried searching in SRM and couldnt find the table where this relationship is found.
    Or is it that this data is not stored in SRM and we need to make an RFC call to R/3 using FM B470_VENDOR_GET_DATA.
    Please let me know!
    Thanks,
    Srivatsan

    I have the same problem due to multiple backends and 1 purchasing org to 2 company codes, have you got a fix for this yet would appricieate help if any one has ideas on this one
    Tom May
    <removed by moderator>

  • OBYA : vendor and customer clearing in cross company code transaction

    Hi Gurus,
    Please can any one telll me how to clear the transactions of cross company code which is in vendor and customer.
    I already done a configuration in OBYA for customer - vendor.
    Expected a process of clearing the cross company code transaction.
    Thanks in Advance
    Manish.

    Hi,
    If you are doing for vendor invoice,
    for example:
    co code 1000 and co.code2000
    Use F-02 and enter following transactions
    posting key 31 -vendor- company code 1000
    posting key 25- expenses and enter new company code 2000.
    After the entry it will display 4 line items, 2line item for 1000&2000
    Regards,
    Sreekanth

  • Change field label for field IZWEK in transaction AS03

    Hi experts,
    I would like change field label for field IZWEK because I want use it for another purposes. Itu2019s name is Investment Reason at transaction as03.I can change name this label in reports by using se63(translation->abap object->short text->repository text->data element) and giving object name as IZWEK. I get changes in reports only, in help(F1). But I havenu2019t idea what cause change label in as03 transaction.
    Help me please.
    Regds Stenwa

    in tr. AOLK and AOLA you can change this.

Maybe you are looking for

  • Oracle 9i DB Installation Problem on AIX 4.3.3

    Hi, I tried to install Oracle 9i DB on AIX 4.3.3 with Maintainence Level 9. However, I got the following error: Calling action unixActions2.0.1.4.0 make installMakePath = /usr/ccs/bin/make installMakeFileName = /usr/opt/oracle/product/9.0.1/rdbms/lib

  • Mobile me/icloud find my iphone through a proxy server?

    Hi All, I'm not sure if this is the right place to post this so if it's not please let me know where is best. I have a fleet of 600 ipads who are forced to run through a proxy server via a 3g connection. Up untill last week I could trace all these iP

  • Deploying OWAS in large enterprise

    Hi, We are planning to install OWAS 2013 in a large enterprise. It is going to be an installation working with a custom WOPI Client only (no SharePoint) There will be a lot of users using this service(viewing and editing Word/Excel/PowerPoint). I am

  • Character Styles in CSS Properties Panel are not correct

    I am using Adobe Illustator CC. I am trying to export all of the charter styles as CSS. However the CSS panel is not generating the correct style. Right now, in the Character Styles Panel and CSS Properties Panel I have 3 styles (Default, h1, h2) Thi

  • How to know the platform type

    Hi I would like to know the platform type am using in the frontend..am trying to use the static method cl_gui_frontend_services=>GET_PLATFORM...it returns '5'..am not able to interprete the importing parameter Please suggest Regards Panda