How to change of Messge classe assigned to Call point?

Dear friends
I have defined one validation, in line item call point - 2, I have defined one message class. Now I want to change the message class assigned to call point 2 ie. line item.
Please help me how to change the message class.
Thanks in advance.
Regards
Kiran A

hi
Message class cannot be changed ... As message class is for one particular submodule
eg: message class for account receivable /account payable
message class for asset accounting.
So if you have created a validation you might have created for account receivable so message class for account receivable would be displayed by default you cannot change it to message class for asset accouting . you have option for changing message no but not message class.

Similar Messages

  • How to Change the Development Class from $TMP to YABAP in Layout

    Hi all,
    How to Change the Development Class from $TMP to YABAP in Layout( SE71).
    Thanks & Regards,
    N.L.Narayana

    Hi,
    it is possible with SE03. you just click on Change <b>Object Directory Entries</b> under the tree menu <b>Object directory</b>, and then enter in the last column of table control
    Check the check box and enter FORM and formname,
      R3TR FORM SAPscript form 
    then execute it.
    then you will be able to change it to PACKAGE from $TMP
    regards
    vijay

  • How to change the development class of a script?

    helo experts can u please explain how to change the development class of a script?

    SE03->Object Directory-->select change object entries->Execute
    Now Select FORM in second row
    Check box(tick)    R3TR     FORM     SAP Script     <Give your Script name here>
    Package   : give the current package of the script ex. $tmp
    Execute
    Now right click on your form name--> object directory ( I guess from here you can proceed)
    Reward points to all useful answers.
    Regards,
    SaiRam Reddy

  • How to change the development class of a tcode once its a temp $tmp?

    Hi,
    I have created one tcode and was attaching the development class to it but meanwhile I ended up assigning it with the $tmp local object now I want to change it with the desired one. Suggest me a solution whether I should the tcode (if yes how) or if anyother way.
    Thanks in advance
    Mohinder Singh Chauhan

    Hi,
    I tried that but I have a created the programme first assined the developent class.
    Thats right accdording to specs, problem arises when I assign a "transaction code " to the report programme and while doing so I put a $tmp class that thing I need to change as in our landscape development class for the Transaction code has been created already. I was supposed to chose one of them(For the Sale purpose).
                   When I try to change the development class which is greyed out with $tmp(In Tcode creation screen) the development class for the programme is different.
    Thanks
    Mohinder Singh Chauhan

  • How to change company code in Assignment tab (CJ20n-project builder)

    Dear All,
    Is there any config to maintain company code in assignment tab (project builder) ? We have a problem in our project. It shows that in basic data, user put company code A (in basic data) but in Assignment tab they put different company code let say B. When we do settlement , two accounting document created to company code A and B. By right it should be only company code A. In addition, we cannot change the company code, when the status is already Release (REL).
    Please help how to change the company code B to A and how to reverse the accounting document that has been created under these two accounting document.
    Thank you.
    Best Regards,
    nies

    Now I understand your scenario, you have the Requesting Company Code and the Company Code Different.
    You usually use this primarily with IM module if you want to manage the asset under construction (cross company) belonging to a different i.e., company code (Requesting ) than company code on main WBS.
    You can not change the company code (Assignment Tab) as you already have actual posted against it.
    You've also created an AUC (in wrong company code) and even if you reverse the settlement you would not be allowed to delete the AUC or the delete the settlement rule (its grey out as its already used)
    What I can suggest is to reverse the settlement, lock this WBS which was created wrongly, create a new WBS and then continue with you regular process.
    Above are my views but you can expect views from others.
    Regards
    Sreenivas
    Please close the post if satisfied.

  • How to change the development class for a Layoutset

    Hi Experts,
    I have to Change the Development Class For a Layout which is under Local object now ($tmp) ,how to do it.
    after Changing to Development Class new ,while transportation any issues will come ?
    Thanks in Advance,
    Regards,
    Hitu.

    goto SE03 and change the development class, no transport issues will come...
    or
    execute report RSWBO052.
    Add FORM in blank field under R3TR DTEL, mark field and put your sapscript name, then execute. In Tree double click over sapscript name, and change development class $TMP.
    Regards,
    SaiRam

  • How to change the Development Class of the SAPSCRIPT FORM

    Hi All,
          I have transported the old form which needs to be deleted in Test System. Is that possible to create a TR for deletion and send it to Test enivronment?..
         Also is it possible to change the development class for a form?
         Please help me on this. Urgent!...
    Regards,
    Ramkumar.

    Yes, it is possible to change the development class for forms..
    Use SE03, transport organiser tools
    goto node OBJECT DIRECTORY ENTRY
    select node "Change object directory entries"
    Execute
    goto the next text box after data element, type FORM, give your SAPSCRIPT form name and tick the check box execute... now rightclick on your form and chenge development class..
    Now coming to your second question is is not possible to delete a FORM that it is already transported to QA and Production, only way to do this is by doing client copy.. basis will do it for you..
    Close the thread once your question is answered.
    Regards,
    SaiRam

  • How to change the dev class ttached to a sapscript layout

    Hi ,
             i am trying to change the dev class for the layout. is there any way. In Administation button the dev classs is coming in dispaly mode.
    Also is there any way to delete a layout.

    Hi,
    change the dev class ttached to a sapscript layoutYou can use standard program RSWBO052 to change development class.
    R3TR DTEL Data Element
    Next blank line
    Click FORM = <script_name>
    F8 9 Execute -> double click and change the class
    Also you can check this link.
    http://www.sapgenie.com/abap/tips_and_tricks.htm#How_to_change_development_class_of_a_SAPscript
    Hope this will help.
    Regards,
    Raj.

  • How to change the development class of report

    pls send answere for it

    Hi,
    IF u want to change the report development class Goto se 38 chnage mode, then <b>Goto > object directory entry</b>.
    By this way you can change the development class, for any function module goto se37 and do the same.
    Hope this solves your problem.

  • How to find out which class/method is calling System.gc

    Hi
    I am seeing frequent FULL GC and not able to locate which particular class/method is calling the System.gc(). I have disabled it using -XX:DisableExplicitGC and performance issues have been resolved. Also, I noticed that it does not happen periodically, so it is not RMI GC. How to find out who exactly is doing this? Does any of of the profilers like Optimizeit/Jprobe help find out this.
    Thanks

    Hi
    I am seeing frequent FULL GC This is because you are creating and destroying objects VERY frequently. Try to look at your design and see where you can reuse objects (i.e. object pooling) if possible, that is if this is adversely affecting performance.
    and not able to locate
    which particular class/method is calling the
    System.gc(). Classes don't call GC. The VM handles that automagically.
    I have disabled it using
    -XX:DisableExplicitGC and performance issues have
    been resolved. Also, I noticed that it does not
    happen periodically, so it is not RMI GC. How to find
    out who exactly is doing this? Does any of of the
    profilers like Optimizeit/Jprobe help find out this.OptimizeIt will tell you everything you need to know. However, NetBeans offers a free profiler now!

  • How to Change Application-to-Spaces Assignment in Lion?

    Hi,
    Before upgrading to Lion, I had made some application-to-spaces assignments, which I'd like to change/remove. I don't seem to be able to find that option in Lion's Pref Panes (nor in the Mission Control app), and yes, a few of my applications continue to stubbornly launch into the previously assigned space and yes, they have not been updated for the Lion changes (the continue with the "Save As..." model and no leonine versions control). I suspect that there is somewhere a hidden configuration statement, and I'm not shy of editing the pref/config file with Text Wrangler or such, but don't know what to look for. I will also follow up with the individual application developer, but hope that there is a OS X system solution.
    Thanks.Tristan

    What you are looking for is Mission Control (what spaces/expose became). In System Preferences you'll see the tab for it. Open it and you can configure/re-configure as you want.
    To assign/unassign an application to a desktop (what spaces became) click the icon for the app in the dock keep the mouse button pressed. You'll see something like
    Under options is the Assign menu. That's were set the desktop (or no desktop) for the app.

  • How I know what methpd, class and pkg called a obj.methd

    Hi there,
    Using the following code, I can know the name, class, and package of a method in runtime:
    Class cls = this.getClass();
    Package pkg = cls.getPackage();
    String name = pkg.getName();
    log.info(name);
    Is there a way to know the name of the method (name, class, and package) , external or internal, that is calling a object, like:
    log.info("Your method is: " + name);
    log.info("Your method is called by" + external_name);
    Thanks,
    Lorenzo Jim�nez

    One way is to place identifiers in the passed parameters.
    But an object that depends on knowing who is calling it is a crippled object, imo.

  • How to change message class selected for validation ?

    Dear all,
    For testing, I have created a new validation (applic. area : FI, Callup point:2) with a existing message class (/EACA/BTA_GL).
    But now, I would like to create a new validation for the same application area and callup point, but with another message class (that I have created with Z_...).
    But unfortunately, I cannot choose another message class when I create a new validation.
    Could you help me ?
    Thank you and best regards

    To change the message class of a callup point please use program
    RGUGBR28 (description in SAP note 6975). After making the change,
    generate the coding with program RGUGBR00 for the application (without
    marking the last two checkboxes).
    kind regards,
    Diogo Peretti.

  • How to change crystal report data field at runtime ?

    Hello everyone,
    I have a Crystal Report file ,which i am using to generate report for my windows form project .
    In that report i have a filed called as Quantity which data type is set as decimal, the requirement is like that the number of value those comes after decimal point that should be set according to the value which is given by the user at the run time .
    For eg: If user gives 1 at the run time then the report Qty field value set one value after decimal point. Like 12.1
    if user gives 2 then Qty field the value is 12.22 like tat  but user can give from zero to any number.. and if it is zero it should not show decimal
    Note: The main idea hear is how to change the filed in Crystal Report decimal point value by using code(or we say writing code we need to set manually as user input it will change)
    Can any body help me how to solve this issue .
    S.K Nayak

    I think you could probably make the field you see a formula field and take a parameter as the number of decimal places.
    totext converts a number to a string.
    totext({decimalField}, 2)
    That's 2 decimal places.
    You could probably substitute a {parameter} for that 2.
    If not then you could substitute an entire formula.
    To explore formulas:
    foreach (FormulaFieldDefinition f in rpt.DataDefinition.FormulaFields)
    MessageBox.Show(f.Name);
    // f.Text = your new formula
    Where rpt is an instantiated report.
    Or add another string field which you display in the column and do the calculation with the original decimal.
    Hope that helps.
    Recent Technet articles:
    Property List Editing;  
    Dynamic XAML

  • ThSysInfo - How to change the parameters???

    Hi all,
    is it possible to change the parameters which are available with this system call...
    We have changed the hostname in our system... but with this system call we always get the old hostname... Do we have to refresh a buffer or is it not possible to change these values...
    CALL 'ThSysInfo'
          ID 'OPCODE'   FIELD OPCODE_MSGSERVER
          ID 'MSOPCODE' FIELD MS_GET_HWID
          ID 'HW_ID'    FIELD HWID
          ID 'ERRMSG'   FIELD ERRMSG.
    Any ideas?
    regards

    pllz help me what is the solution for these
    ThSysInfo - How to change the parameters???
    CALL 'ThSysInfo'
          ID 'OPCODE'        FIELD OPCODE_GET_VIRT_HOSTDATA
          ID 'PROTOCOL'      FIELD PROTOCOL
          ID 'VIRT_IDX'      FIELD VIRT_IDX
          ID 'HOST'          FIELD HOSTNAME
          ID 'PORT'          FIELD PORT.
    i want to change the hostname as by default through system it is taking some hostname but i want to change that hostname can u plzz guide me how to change that hostname as i am using these FM in my webdynpro method
    pllzz hel me as soon as

Maybe you are looking for

  • How can I move my DRM-protected movies from one disk to another on the same computer without running afoul of the big movie houses?

    I need to off-load my digital copies to another disk I just bought, located on the same computer, so I can have more room for other things; my collection is getting too big, I guess.  I'm afraid if I just move them and re-integrate them back into the

  • Error while assigning agent

    Hi, I get following error msg when I try to assign agent during RCA setup The assignment of server sapsrmqas201 to SMD Agent failed Unexpected error during the server name assignation (sapsrmqas201) for agent sapsrmqas201.xxx.xxx.com In setup wizard,

  • Use EXIT_/SAPAPO/SAPLCIF_PU_001 for changing PO data

    We have in some situations the need to change the delivery date (EKET_EINDT) of a purchase order in the CIF interface, and have been looking at exit EXIT_/SAPAPO/SAPLCIF_PU_001 to do this. However the exit is not documented particularly good, and we

  • Time Machine backups after a clean install

    I recently performed a reinstalled Snow Leopard on my Macbook Pro as it was suffering from running quite slow. Since I had upgraded this machine from an old Tiger install, I decided to manually migrate my files from a second backup, rather than resto

  • Acrobat 9 Pro Extended issues

    7-29-08 Hello, I work in an engineering enviromment doing visualization and animation. I have been an advocate for Acrobat 3D as a better way to communicate with our customers. We have a large contingent of Autodesk Mechanical Desktop and Inventor us