Add a check box on the Contract Account Screen (CAA2)

Hello All,
Requirement:
Need to add a custom checkbox on the Contract Account Screen (CAA2) only for contract accounts with cont acct category as '02'. And in addtion ot that I need to add a custom field in the table FKKVKP.
Any kind of help will be highly appreciated and rewarded.
Thanks and regards,
Rakesh

Hi Rakesh.
I dont know whether you tried this or not (please excuse if you already tried it),
From System > status .
you will get the prog name and screen no.
go to se51 and enter those details and find pbo and  pai modules.
2).
In PAI module insert your checkbox field name in the code already written for the screen values to be saved.(save code).To find out where the save code is written,
enter some data on the screen fields, and start debugging (/h and enter in com prompt) and press save button the cursor takes you to the save code.
1).you need to handle it in pbo module.
in pbo module
collect the rec with 02 accounts in an internal table
enable the check box for those records only.

Similar Messages

  • To add a check box in the login screen

    Hi,
    I need to put a check box in the login screen of CRM below the LOGON button with a message :'I agree with the terms and condition of the System'.
    Please help.

    See: Improve PDFs: Create interactive PDF checklists

  • How to add check box to the forms in scripts

    Hello experts,
             i got one requirement. to add a check box to the form. how can we add a check box in form. is it possible to adda check box in scripts?
    thanks in advance.

    Hi Pammi,
    In a window go for text elements & then go for change editor & use the following:
    Insert->Characters->SAP symbols->SYM_CHECKBOX
    It will not show checkbox in print preview. Take a printout.
    Ashven

  • Adding check box in the transaction xd02

    hi friends,
      My requirement is to add a check box in the customer change : contact person details standard screen in the transaction xd02.
    can any one please give me the suggestions for that?

    when u find the BADI name go there and add a sub screen with the element you want to put in there. activate the BADI. your task is done.

  • Contract Account Screen Enhancement - CAA1/2/3

    Hi all,
    I am in need to Enhance the contract account screen for the well known transactions CAA1/2/3. Now the requirement is to add a new tab named "Add.Info" along with the existing tabs for the main screen. The new tab once defined will have some custom fields on different field groups. Hope if anyone has worked earlier on this type of requirement may throw some inputs.
    Appreciate your timely response.
    Regards,
    Jagath.

    HI,
    You need to use BDT(bussiness data toolset) to add the filds to this CAA1,
    1) TCode: CAS2
    Creat the Field group 123 where the field have been added
    Double click in Menu path:
    Field Groups ->Fields
    2) TCode: SE51
    Created the layout set with the new field Name
    3) TCode: CAS3
    · Created the view XXX where we have to assigned following things---
    a) Application-VKK
    b) Standard Program name -SAPLZKKC
    c) Screen Number-0700
    b) Two FM Z_TEST_PBO and Z_TEST_PAI
    In PBO passing the value from screen to program using Field symbols
    In PAI passing the value from program to database, where the database gets updated using the FM VKK_FICA_FKKVK_COLLECT
    · Assign Field Group to View XXXX
    4)Double click in Menu path:
    View àField Groups
    Next Using ‘New Entries ‘provided in application toolbar assign the Field Group ‘XXX’.
    5) TCode: CAS4
    Created the Section and assigned the View ZKK510 to it.
    Double click in Menu path:
    SectionàView
    Next Using ‘New Entries ‘provided in application toolbar assign the View ZKK510.
    6) Tcode: CAS5
    Created the screen ZKAT1 and entered the details as:
    Double click in menu path:
    Screenà Section
    Next Using ‘New Entries ‘ provided in application toolbar assign the Section ZKK510 and VKK100.
    7) Tcode: CAS6
    Assigned Screen ZKAT1 for the standard screen sequence VKK1
    Double click in Menu Path:
    Screen Sequence à Screen
    Next Using ‘New Entries ‘ provided in application toolbar assign the screen ZKAT1.
    8) Tcode: CAS7
    Standard event DSAVE can be used to save the database (if we don’t use field symbols to update the database) under this event we copy the standard function module VKK_FICA_EVENT_DSAVE for the application VKK to ZZ_VKK_EVENT_DSAVE and modify this FM which can be done as
    In this FM we will use the standard FM VKK_FICA_FKKVK_COLLECT to update the database table FKKVK
    Code is written as :
    CALL FUNCTION ‘VKK_FICA_FKKVK_CO’
    EXPORTING
    I_SUBNAME = ‘CI_FKKVKI'
    I_FKKVK = FKKVK.
    DATA: IT_FKKVK LIKE FKKVK.
    IT_FKKVK-ZZCOLECT1 = CI_FKKVK- ZZCOLECT1
    IT_FKKVK-ZZPOR_CTR1 = CI_FKKVK- ZZPOR_CTR1
    CALL FUNCTION ‘VKK_FICA_FKKVK_CO’
    EXPORTING
    I_SUBNAME = ‘CI_FKKVKI'
    I_FKKVK = IT_ FKKVK.
    Hope you understand the code,
    Thanks
    Sudheer

  • Unable to Check ADD Attachment Check Box. Thereby getting only email and not the attachment (which will contain the output of BO report , in Excel Format)

    Post Author: hteoh
    CA Forum: Publishing
    I have an BO related issue. I tried to schedule a smtp event in BO to email the report output as Excel. Since this report will go to different users, I unchecked the Use the Job Server's defaults (CHECK BOX). For some reason, I can't check the Add Attachment(CHECK BOX). I received the email but without attachement. Do you know why I can't use attachment. The SMTP event works perfectly if I check Use the Job Server's defaults.

    Hi!
    Use the below code to populate the Sender and receiver mail ids:
    DATA GV_SENDER    TYPE SWC_OBJECT.    
    DATA GV_SENDER_ID LIKE SWOTOBJID.      
    SWC_CONTAINER LT_CONTAINER.
    reset data for CTCV
    CALL FUNCTION 'CTCV_INIT_USER_DATA'.
      Create sender using sender mail address from new table
        SWC_CLEAR_CONTAINER LT_CONTAINER.
        SWC_CREATE_OBJECT GV_SENDER    'RECIPIENT' SPACE.
        SWC_SET_ELEMENT LT_CONTAINER 'AddressString'
                                         ZMAIL-SENDER.
        SWC_SET_ELEMENT LT_CONTAINER 'TypeID' 'B'.
        SWC_CALL_METHOD GV_SENDER    'CreateAddress' LT_CONTAINER.
        IF SY-SUBRC NE 0.
             MESSAGE ID SY-MSGID TYPE 'E' NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4
                     RAISING SENDER_CREATION_FAILED.
        ENDIF.
        SWC_OBJECT_TO_PERSISTENT GV_SENDER GV_SENDER_ID.
    Similarly you can create the recipient mail id. Pass the GV_SENDER_ID to OPEN_FORM.
    Cheers!

  • Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Look to the right under "More Like This". Your issue has been discussed many many times. The error you are seeing is because you do not have enough free "contiguous" space on your hard drive. Read the other threads that address this issue to find how to solve the issue.
    Or, put "The disk cannot be partitioned because some files cannot be moved" into the search box at the upper right of this page.

  • How can i add the check box beside the directory?

    how can i add the check box beside the directory? anybody can help?
    tis r the panel of my program :
    // FileTreePanel.java
    // JPanel for displaying file system contents in a JTree
    // using a custom TreeModel.
    package com.deitel.advjhtp1.mvc.tree.filesystem;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    import com.deitel.advjhtp1.mvc.tree.filesystem.FileSystemModel;
    public class FileTreePanel extends JPanel {
    private JTree fileTree;
    private FileSystemModel fileSystemModel;
    private JTextArea fileDetailsTextArea;
    public FileTreePanel( String directory )
    fileDetailsTextArea = new JTextArea();
    fileDetailsTextArea.setEditable( false );
    fileSystemModel = new FileSystemModel(
    new File( directory ) );
    fileTree = new JTree( fileSystemModel );
    fileTree.setEditable( true );
    fileTree.addTreeSelectionListener(
    new TreeSelectionListener() {
    public void valueChanged(
    TreeSelectionEvent event )
    File file = ( File )
    fileTree.getLastSelectedPathComponent();
    fileDetailsTextArea.setText(
    getFileDetails( file ) );
    JSplitPane splitPane = new JSplitPane(
    JSplitPane.HORIZONTAL_SPLIT, true,
    new JScrollPane( fileTree ),
    new JScrollPane( fileDetailsTextArea ) );
    setLayout( new BorderLayout() );
    add( splitPane, BorderLayout.NORTH );
    JCheckBox check = new JCheckBox("Check me");
    add( check, BorderLayout.SOUTH );
    public Dimension getPreferredSize()
    return new Dimension( 400, 200 );
    private String getFileDetails( File file )
    if ( file == null )
    return "";
    StringBuffer buffer = new StringBuffer();
    buffer.append( "Name: " + file.getName() + "\n" );
    buffer.append( "Path: " + file.getPath() + "\n" );
    buffer.append( "Size: " + file.length() + "\n" );
    return buffer.toString();
    public static void main( String args[] )
    if ( args.length != 1 )
    System.err.println(
    "Usage: java FileTreeFrame <path>" );
    else {
    JFrame frame = new JFrame( "JTree FileSystem Viewer" );
    FileTreePanel treePanel = new FileTreePanel( args[ 0 ] );
    frame.getContentPane().add( treePanel );
    frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    frame.pack();
    frame.setVisible( true );
    }

    You can maybe explore button and forms feature in InDesign. It was added in CS6.

  • I have $8.05 balance on my gift card. I tried to buy an app more expensive than that so i had to add my credit card to the apple account. But I couldn't use the balance from the gift card anymore. How can I select to use it? or did I lose it?

    I  have $8.05 balance on my gift card. I tried to buy an app more expensive than that so i had to add my credit card to the apple account. But I couldn't use the balance from the gift card anymore. How can I select to use it? or did I lose it?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    The MAS should use any credits first and then apply the remainder to a listed bank card.

  • Adding Check box in the SRM

    Hello
    in transaction  <Issue Purchase Orders>
    after we search for the po's, a list of pos is displayed and actions which can be performed on that.
    we need to add a check box next to the output push button in the actions coloum .
    when an action is pressed, we need to check if this check box is filled and and do certain tasks.
    how can we achive this?
    we need to do the same in the transaction < Process Purchase Order >
    thanks
    Chandrashekar.

    when u find the BADI name go there and add a sub screen with the element you want to put in there. activate the BADI. your task is done.

  • FICA tables or FM to get the Contract Account's cleared items

    Hi Gurus,
    During one of the development I require to see the Contact Account's Open Items are cleared or not. Means Payment against the Contract Account's (Print documents) is received?  FPL9 shows the cleared items against the contract account but during one of the Development I need to write logic to check if the CA open Items are cleared.
    Please advice the table link or if there is any FM to check this.
    Thanks with regards,
    Rahul

    Hi,
    If it does not matter for what reason the items have been cleared, proceed as follows:
    Using the Contract Account number,  look up table DFKKOP as follows:
    VKONT = (the Contract Accont in question)
    AUGST (Clearing Status) = 9
    If you wish to only look at Invoices, provide the Document Type parameter (field BLART = the Document Type you use for Invoices)
    This will retrieve the cleared items (if you specified a document type, it will only retrieve items for that Doc Type).
    NOTE:
    If you wish to isolate only clearings due to incoming payments, please use Clearing Reason (AUGRD) = 01. Otherwise all cleared items are retrieved, e.g. Written off items, Transferred items, items cleared due to Account Maintenance, etc..
    Imporant fields related to Clearing:
    If you want the Clearing Document number, it will be stored in the retrieved item/s in field AUGBL.
    The Clearing Amount will be stored in field AUGBT
    The Clearing Date will be stored in AUGDT.
    I hope this helps.
    Ivor Martin

  • Want new tab to open to home page and why does firefox not have a simple check box in the options because I can't keep going through a long procedure each time

    I want new tab to open to home page and why does firefox not have a simple check box in the options because I can't keep going through the long tedious procedure each time I install firefox. It is something that should be in the options tab , and I want to know why it isn't. I am totally frustrated with firefox and getting ready to switch.

    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • The Bold, Italic, Underline functions have disappeared from the screen as have the check boxes at the beginning of the intro line

    The bold, italic, underline, color hi-lite and other boxes in that line suddenly disappeared from the screen and that section remains blank. However when writing a new message if I mouse over the area the boxes re-appear but without their previous alliterations. Also the system does not allow me to color hi-lite text and shows all the colors in a very fuzzy format when I mouse over where the hi-lite box used to be. Additionally the check box at the front of the email subject line has also disappeared but, again, if I mouse over & click it will perform a delete or other function. Need help!

    Hi ITBobbyP,
    According to your description, there are two text boxes at the bottom of the tablix and both of them are outside the tablix. When you export the report to excel, the upper text box could not be displayed.
    Microsoft Excel places limitations on exported reports due to the capabilities of Excel and its file formats. The following limitations apply to text boxes and text:
    Text box values that are expressions are not converted to Excel formulas.
    Text boxes are rendered within one Excel cell.
    The text effect "Overline" is not supported in Excel.
    Excel adds a default padding of approximately 3.75 points to the left and right sides of cells. If a text box’s padding settings are less than 3.75 points and is just barely wide enough to accommodate the text, the text may wrap in Excel.
    To troubleshoot the problem, please make sure that the text box meet the limitations. In addition, please validate that visibility of the text box is set to true, it’s better to set CanGrow property of text box to false.
    If the problem remain unresolved, i would appreciate it if you could give us detailed information about the report, I would be appreciated it if you could provide sample data and screenshot of the report. It will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu

  • Can i have a check box in the hierarchical tree in the icons place, urgent!!! please

    Hi,
    I'am working on the Hierarchical Tree structure which should have three levels, I need to have a check box in the place of the icon & if i select a node that node & the child nodes should get selected.
    After this when i say move selected ( i'am trying to use picklist class also) the entire checked tree has to move to the display area to the right & should display as tree structure & after this if i save then the checked records which are moved to another text area should get saved!!
    How to achieve this? I have the tree structure ready but the check box part is the worrying factor! & then moving the checked records to the right using picklist class is the second problem & finally saving records to database.
    Any help in this regard will be deeply appreciated:)
    If check box is not possible then i will have to look at other methods, will the tree structure allow checkboxes????
    Thanks
    Mahesh

    No the tree will not allow checkboxes

  • How to implement Check box in the Rtf based on the value from XML datafield

    Hello All ,
    It would be great if any one can help me in implementing check box in the rtf based on the data filed value from the XML data.
    I need to get in the out put checked boxes like what we say Radio button Yes or No ( If Yes it should be marked ).
    If any one worked on this please help us...
    Thanks in Advance...

    Did you check the user guide,
    we have a section over there :)
    http://blogs.oracle.com/xmlpublisher/2007/05/22

Maybe you are looking for