Adding currency validation in OY03 transaction

Hi Experts,
I want to add a currency validation in the transaction OY03, since OY03 is transaction for table maintenace I have to add an event to vaidate the data entered in the sm30 screen. Since it is a standard table SAP is not allowing me to add an event. Please let me know how to overcome this problem, is there any way to add events to a standard SAP table maintenace?
Your suggestions are really appreciated.
Thanking you in advance,
Faar.
Moderator message - Cross post locked
Edited by: Rob Burbank on Sep 8, 2009 4:33 PM

Hi Rob,
Thank you very much  for your reply.
I tried to add an event in the maintenace using SE54 transaction, I am able create an entry for the event. but it is neither allowing me to include that particular part of code in any of the  available includes nor creating a  new include.
This is the issue I am facing.
Faar.

Similar Messages

  • Validation for the transaction OY03

    Hi Experts,
      I want to add a currency validation in the transaction OY03, since OY03 is transaction for table maintenace I have to add an event to vaidate the data entered in the sm30 screen. Since it is a standard table SAP is not allowing me to add an event. Please let me know how to overcome this problem, is there any way to add events to a standard SAP table maintenace?
    Your suggestions are really appreciated.
    Thanking you in advance,
    Faar.

    Hi Rob,
    Thank you very much  for your reply.
    I tried to add an event in the maintenace using SE54 transaction, I am able create an entry for the event. but it is neither allowing me to include that particular part of code in any of the  available includes nor creating a  new include.
    This is the issue I am facing.
    Faar.

  • Foreign currency validation

    Hi, Experts,
    I was wondering when doing Foreign currency validation,  The system get the Profit center defaultly, when posting the variance.
    I am wondering where did system get the Profit center when we do FAGL_FC_VAL?

    Hi Bryan Shala,
    When you execute T-code FAGL_FC_VAL for sub-ledger like Customer and Vendor. It will check the open item posted with Profit Center.
    It will post the Gain/Loss to same Profit center, to the Profit center which posted in open Item.
    Regards
    Rakshith

  • Possibility of adding new fields to migo transaction

    Is there a possiblity of adding new fields in migo transaction so that we can enter the base price of items in po.
    Also Can we send mail to relevant authorization if there is difference in price entered in the po and the value entered in GR

    Hi, You can use BADI 'MB_MIGO_BADI' for adding custom fields at item as well as header level .
    or Check SAP Note 339448 - MIGO: settings of table control
    2-You can not do any thing related to price in MIGO, since you cannot enter any manual values in MIGO, it will always pull from PO or MIRO (in case of Imports).

  • Adding a weekly view to Transaction PA51

    Transaction PA61 has a button for accessing a WEEKLY maintenance view.  Is it possible to customize Transaction PA51 to have a similar display WEEKLY view?

    Dear Brinjesh,
    Your requirement is adding a view to MM transactions. If you look at technically, you have to add new view to existing tab strip in main screen. So, the screen type should be sub-screen to add to tab strip contol.
    Coming to your through of creating new screen, there should be some control like menu or button to navigate from main screen. Can you say, is it convenient for end user? Doesn't it look odd?
    Please post your opinion on this.
    Regards,
    Prasanth

  • Error with Dump while adding Currency field in UI

    Hello,
    I have a requirement to add a custom entity in MDGM with an currency attribute, and encountring dump while adding the field to Web Dynpro component in UI.
    Could some one point me a direction and see below :
    Custom Entity with attributes
    ZTSTOCK  data element is type curr (Lenght 13, Dec 2)
    Data Model is activated without errors and created custom Web Dynpro Form component. while designing it in UIBB by adding Element TSTOCK_VL encountring a error and dump.
    Error: Could not find attribute WAERS and also dump showing below:
    Category               ABAP Programming Error
    Runtime Errors         UNCAUGHT_EXCEPTION
    Except.                CX_WD_CONTEXT
    ABAP Program           CL_WDR_CONTEXT_NODE_INFO======CP
    Application Component  BC-WD-ABA-RUN
    Date and Time          21.05.2014 00:13:32
    Short text
         An exception occurred that was not caught.
    What happened?
         The exception 'CX_WD_CONTEXT' was raised, but it was not caught anywhere along
         the call hierarchy.
         Since exceptions represent error situations and this error was not
         adequately responded to, the running ABAP program
          'CL_WDR_CONTEXT_NODE_INFO======CP' has to be
         terminated.
    Any help please.
    BR, Srihari

    Yes, since the release of the current segment is 45 and you are now in a ECC6 system you cannot cancel the release (because there is no ECC6 version). Just use the add version button to create a new version for ECC6. Once you have that you can add fields and set the release to ECC6.
    If you later on need to add more segements you can then cancel the release for your ECC6 segment and add the fields and set the release to ECC6 again (because you already have an ECC6 segment)
    Hope that explains it,
    Michael

  • Tax Number Validation in BP transaction

    Hi experts,
    I'm working on a validation in Tax Number 1 field in transaction code BP when creating Business Partner. I have read that you have to create a custom FM and make your validations there and use FM 'BUS_MESSAGE_STORE' to raise an error message and put that FM in BUS3. My problem is that my custom FM cannot capture the Tax Number 1 values i want to validate. I already used FM 'DYNP_VALUES_READ' but does not able to get the value of Tax Number 1. Please help. This is my first time working on validations. Below are my sample code:
    CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          DYNAME               = v_dyname " SY-REPID
          DYNUMB               = v_dynum  " SY-DYNNR
        TABLES
          DYNPFIELDS           = i_fields
        EXCEPTIONS
          INVALID_ABAPWORKAREA = 1
          INVALID_DYNPROFIELD  = 2
          INVALID_DYNPRONAME   = 3
          INVALID_DYNPRONUMMER = 4
          INVALID_REQUEST      = 5
          NO_FIELDDESCRIPTION  = 6
          INVALID_PARAMETER    = 7
          UNDEFIND_ERROR       = 8
          DOUBLE_CONVERSION    = 9
          STEPL_NOT_FOUND      = 10
          OTHERS               = 11.
    LOOP AT i_fields INTO w_fields.
        IF w_fields-fieldname = 'DFKKBPTAXNUM-TAXNUM'.
          v_taxnm = w_fields-fieldvalue.
        ENDIF.
      ENDLOOP.
    SELECT * INTO intab FROM dfkkbptaxnum WHERE taxnum = v_taxnm.
          IF sy-subrc = 0.
            "display error message
            CALL FUNCTION 'BUS_MESSAGE_STORE' "BDT: Saving Messages
            EXPORTING
              arbgb = 'ZMSG'              " sy-msgid (Application Area)
              msgty = 'E'                 " sy-msgty (S, I, E, W, A)
              txtnr = '010'.              " sy-msgno ("Tax No. 1 exist")
          ENDIF.
        ENDSELECT.

    Use below logic, lv_tax should be of data type BPTAXNUM.
    DATA: lv_tax type BPTAXNUM.
    LOOP AT i_fields INTO w_fields.
        IF w_fields-fieldname = 'DFKKBPTAXNUM-TAXNUM'.
          lv_tax = w_fields-fieldvalue.
          exit.
        ENDIF.
      ENDLOOP.
    SELECT * INTO intab FROM dfkkbptaxnum WHERE taxnum = lv_tax.

  • BP grouping field validation in BP Transaction

    Hi,
      I have a requirement of validating  BP grouping based on the BP Type entered by the user during partner creation. I am trying to do this by creating a custom FM and attaching it in BUS7 transaction for event DCHCK.  However I am unable to fetch the data ( the new partner role and group ) entered by the user in the custom FM. I tried using the FM BUP_BUPA_MEMORY_GET_ALL and BUPA_GENERAL_CALLBACK. These are not returning any values.
    Any help would be greatly appreciated guys...
    Regards,
    Madhavi

    Hello
    go to tcode se18
    type the badi I wrote before.
    INVOICE_UPDATE
    go to implementation->create ZINVOICE_UPDATE
    Give a description ....
    Click on interface.....and double click on CHANGE_BEFORE_UPDATE.
    This will activate the method. Put a break point.....save and activate.
    Execute the tcode miro and check if it stops at the time needed.
    Bye,
    dont forget to reward!!!
    Gabriel

  • User Exit or BADI for the Bank validation in BP transaction

    Hi All,
        My requirement goes like this, my customer wants to validate the bank keys whether the deletion flag is marked or not and if marked then throw the error message, in BP transaction. But when i was searching for the user exit or a BADI during "save" in BP transaction i was not able to get the appropriate user exit or a badi to do the validation. So can anyone help me finding the user exit or a BADI in the BP transaction
    Thanks and Regards,
    Praveenkumar T

    Hi Praveen,
    I don't think there is any Standard FM to validate the bank keys.
    You need to make a custom FM for the above requirement and call the FM during the save event of the BP.
    Go to Transaction Code-BUS7 and look for event-DSAVC
    Under the event DSAVC, assign the custom FM and place the X flag for calling the same.
    Hope it clarifies.
    Thanks,
    Amlan

  • Adding new authorization objects to transactions

    Hi experts,
    i would like to add new authorization objects to specific transactions, for example the object K_CCA for checking the cost element in the transaction KB15N.
    What do we have to maintain, except the transaction code with (SU22). What do we have to do with the program behind the transaction?
    Is it "just" adding two line of code into the auth object check in the program, similar or like described for client specific ABAP-programs???
    Any experiences on that?
    Regards
    Florian

    Hi,
    First add the objects in DSO then in Info Cube.
    Map the same with transformation.
    Move the objects to production then DSO.
    Load the DSO first. then delete the data from cube in production.
    Now move the modified cube and transformation to production.
    Now load the Cube from DSO.
    No need to change any thing in existing query.
    I hope this will help.
    Thanks,
    S

  • Is Validation called in Transaction F110(Automatic Payment Run

    Gurus,
    Is Validation called in F110 (Automatic Payment Run) Transaction ?
    If yes then how can i implement the following Validation ?
    In F110 during Payment Proposal or Payment run time ,We have to allow specific user to process the Payment for the company code 1806 or 1809 and Payment method = 'Z'.
    If Validation doesn't work in F110 then is there any user exit which i can use it for this purpose.
    Thanks,
    Siva

    As payment run might posts interest documents based on the configuration. I guess it might get trigger. Am not sure.
    Similar post, but without solutions.
    Own Validation & Substitution - Urgent
    Regds
    Manohar

  • Currency validation

    Can anyone please help me to validate a currency input from the user, like it should not accept 1,0,0,0,0.00. appreciate your kind help......

    NumberFormat.getCurrencyInstance().parse() is NOT a reliable method of validating user input. It either throws ParseExceptions on valid input or allows invalid input.
    Regular expressions definitely appears to be the best solution. I'm trying out the JRegex code now since we are using J2SE 1.3.1 and not 1.4.

  • Regarding multipal currencies entry in one transaction SAP ECC 6.0

    HI SAP Experts
    I have question regarding Multiple Currencies entry. I got a quarry from user that if they can use Multiple currencies in General Entry posting. when they use F-50 for General entry posting.
    For Example
    If they have following details
    Rent 2000 EUR
    Advertisment Exp. 2000 USD
    Salary                   5000 MXM
    To Bank Account  9000 EUR
    In this example all different curries in one transaction. Shall we allow to do different currencies in one transaction.
    I have one more quarry for
    YFI_Upload
    Can user upload file with different currencies and see the same curries as they upload in system
    Please inform
    thank you

    Hi
    You cannot have multiple currencies for various line items in an accounting journal. The currency is always defined at the document header. You can enter an accounting journal in any currency provided the exchange rate and translation ratio between the foreign currency and local currency is maintained in the system
    Thanks & Regards
    Sanil Bhandari

  • Group currency amount missing with transaction code FBB1

    Hi,
    Whenever there is a document posted using transaction code FBB1 there is no updation of amount in group currency. If the document currency is matching with local currency then even the local currency is also with zero value.
    Can somebody explain me the functionality of FBB1
    Thanks & Regards,
    Raghava

    Hi Alas,
    Please have a look at the following note:
       - 335608 Trnsln of 2nd and 3rd lcl crcy fm 1st lcl/trns crcy
    I hope this helps.
    Best Regards,
    Vanessa.

  • GGB0 Validation Rule for Transaction CO88

    Scenario: In transaction CO88 if user do not specify the posting date SAP default it to last date of period. We want posting date to be system date. Since posting date entry come under the menu Extra and is not mandatory user sometimes executes the transaction without specifying posting date which then result in posting date as last day of period.
    To avoid this I was trying to create validation rule in GGB0 under 'Cost Accounting'->'Document header' and 'Financial Accounting'->'Document Header', but it seems non of above is working.
    Validation are
    Prerequisite : SYST-TCODE = 'CO88'
    Check : BKPF-BUDAT <> SYST-DATUM
    Message : Error message
    After creating the validation I am executing CO88 in test mode, but no error message.
    Am I creating validation under right node in GGB0 or missing anything.

    Message executes when Prerequisite is met and Check fails.
    Check should be BKPF-BUDAT = SYST-DATUM

Maybe you are looking for

  • Objects not initialized properly when using JSF dependency injection

    I get NullPointerException at line : this.getLogger.displayMessage(); Can anyone tell me how to correctly inject a property into the base class so that it is also available to its child classes? Is my syntex in faces-config.xml correct? public class

  • OSB- Any Soap type Proxy service URL issue.

    Hi, There is an issue which i am facing and stuggling with it for sometime :( Requirement - Using OSB 11g i had created 12 different services based on WSDLs provided by the client and all of them are working fine.However the client wanted a OSB route

  • How to configure marketing org model in sap crm

    Hi Folks, I want to configure my clients marketing,sales organization structure in my SAP CRM system.Currently all these have been replicated from ECC (HR&SD) to CRM and I have to modify, enhance the structure by adding positions and users based on c

  • How  to change the Color for hyperlinks Xcode

    I ned help for that, i am a new and om woking to build apps

  • Deploying applet to OAS 4.0.8.1

    I have made simple applet using the Wizard in JDeveloper 3.0. I have used the Deployment wizard to make a Jar file. I also included the swingall.jar. The Jar file is generated successfully. I then copy the jar file and the html file to the OAS 4.0.8.