Customer screen get populated in activity management

hi any one can help me out in this pls.
my client requirement is customer screen get populated in activity management.
my client using activities in crm.They configured customer sceen in activities.In that they have fields like contract validity, type of contract etc.
how it will get populated when they enter customer number.

hi
can u please elaborate ur requirement what exactly we mean be population of activity screen,i din get exactly
best regards
ashish

Similar Messages

  • Search Help for Vendor Feild not getting populated in the Screen Element

    Hi Everyone,
    In transaction Miro, I get a POP-UP for Invoicing Party i.e. Vendor and Users required a custom search help.
    The Search help for Vendor(LIFNR) is KRED_C and i appended a Z search help under this.
    Now that the search help exists and I can drill down the values too but when i select/choose any value,  that value is not getting populated in Screen feild.
    is there any validation I need to do for this.
    Please suggest me... I checked SDN there are many things but i couldn't figure out wat i need to do and where I need to modify.
    Regards,
    Raj

    Dear Hema,
    Could you please tell me how many internal tables you are using to store the data for display.
    I observerd that you have lt_stock and lt_mat2 declared in the part of the program
    >DATA: lv_stock TYPE lty_stock.
    >DATA: ltmat2 TYPE TABLE OF lty_mat.
    you have displayed above, however you are also using ls_stock and lv_stock .
    >IF p_ztotal = ' '. "line
    >WRITE 18 ls_stock-matnr.
    >WRITE 38 lv_stock-strgr.
    >
    >ELSEIF ztotal = 'S'.                             "subtotal
        >WRITE: 15 ls_stock-nrmit.
        >WRITE 32 lv_stock-dispo.                    
        >WRITE 43 lv_stock-fevor.                      
      >ELSE.                                            "total
        >WRITE: 15 'TOTAL'(016), ls_stock-prgrp.
    >
      >ENDIF.
    Are those for displaying some other information?
    Also the problem of display you are facing can also be because there are no records to be displayed which satisfies the selection criteria.
    Best Regards,
    Rajesh.
    Please reward points if found helpful.

  • Checkbox gets disabled on custom screen

    Hi All ,
    I have a raise an error message on a custom screen which has an ALV grid display (OOPS ALV) .On top of the alv grid ,i have couple of checkboxes .
    I have to raise error message based on the grid display values.The problem is ,if i raise error message ,the checkboxes get disabled and i have to go back and execute again correcting the problem .Instead the user wants to be in the same screen and should be allowed to correct .I am not able to do this .Please help me how to make the checkboxes active to input again without going back ??
    thanks

    Build the screen with 2 sub screen areas. In the top subscreen area ( selection screen )
    , Have the 2 check boxes.
    You can use
    selection-screen begin of screen 800 as subscreen.
    Parameters : var1 TYPE c AS CHECKBOX,
                         var2 TYPE c AS CHECKBOX.
    selection-screen begin of screen 800 as subscreen.
    You can use At selection screen events to throw an error but still be in the screen without an issue.
    Have the ALV in the bottom subscreen area.
    In the PBO for the main screen,
    Call the subscreen 800 ( selection screen)
    Call the subscreen ALV .
    Hope it helps.
    Cheers
    Sujay

  • How do I find out who my iPhone 4S is locked to? I can't get passed the activation screen.

    How do I find out who my iPhone 4S is locked to? I can't get passed the activation screen.

    How can you not know this? Where did you get the phone?
    Ask whoever you bought it from or call AppleCare and give them the serial number.

  • Could not get Custom screen in me21n after implementing Badi ME_GUI_PO_CUST

    Hi.,
    I created implementation for the badi ME_GUI_PO_CUST... but i could not get the Tab and screen in header tab.
    also used below  link in the  forum to correct the issue ....but dint help me .
    Custom screen not displaying using BADI ME_GUI_PO_CUST
    Pls help me how to go abt...
    Thanks,
    Ranjitha.

    Hi ....
    Now the tab is reflecting in me22n & me23n but not in me21n ......can anybody tell what could be the reason?
    thanks
    ranjitha

  • How to get the screen value to custom screen from standard screen

    Hi all,
    I have a standard screen which is attached to a standard function group and a custom screen which is attached to a custom function group... Now my requirement is to get some field values from the Std screen to my custom screen ...
    I have used the FM DYNP_VALUES_READ but its resuts in error...
    in my current screen PBO i called this FM and given the prog name as the Std pgm name which being created while creating the screen from the function group and the screen number as the standard screen number...
    Eg : Standard Function gp = FSBP_02
           Pgm name  = SAPLFSBP_02
          Screen Naumber = 0220
    Custom screen = 9001
    Pgn Name = zname
    in 9001 PBo i called
    DATA: IT_DYNPFIELDS  TYPE TABLE OF DYNPREAD,
           WA_DYNPFIELDS like line of IT_DYNPFIELDS.
    WA_DYNPFIELDS-FIELDNAME = 'BP021-BUSINESS_Y'.
    APPEND WA_DYNPFIELDS TO IT_DYNPFIELDS.
    CALL FUNCTION 'DYNP_VALUES_READ'
       EXPORTING
         DYNAME                               = 'SAPLFSBP_02'
         DYNUMB                               = '0220'
        TRANSLATE_TO_UPPER                   = ' '
        REQUEST                              = ' '
        PERFORM_CONVERSION_EXITS             = ' '
        PERFORM_INPUT_CONVERSION             = ' '
        DETERMINE_LOOP_INDEX                 = ' '
        START_SEARCH_IN_CURRENT_SCREEN       = ' '
        START_SEARCH_IN_MAIN_SCREEN          = ' '
        START_SEARCH_IN_STACKED_SCREEN       = ' '
        START_SEARCH_ON_SCR_STACKPOS         = ' '
        SEARCH_OWN_SUBSCREENS_FIRST          = ' '
        SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '
       TABLES
         DYNPFIELDS                           = IT_DYNPFIELDS
      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
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    How Can i get that... Its important ... Please help me...

    Hi,
        Try with the below FM
    RS_REFRESH_FROM_SELECTOPTIONS
    in your custorm program, check the SY-CPROG and SY-XPROG values, for the standard program name or directly pass the importing parameter for the above FM as SAPLFSBP_02.
    Regards
    Bala Krishna

  • How to get a field description on custom screen used in enhancement

    Hi all,
             I am working with transaction cj20n. It is having an enhancement and a custom screen is used in it. I have modified the screen by adding a text label ahead of field FUND. I want to get the description of that field on that text label. How can i achieve this? I have the table field where the description is available. How to get it on the screen?
    Thanking you in advance.

    When you refer your field to the DD table field, the domain will contain the text, it will automatically fetch the description. But you can also Hard code them since its a label in the screen.
    Regards,
    Anita

  • Trying to activate a new iPad mini. Keep getting message that activation server can't be reached and to try through iTunes. I can't go back beyond the language choice screen to select iTunes. Two days of trying to activate. Help?

    Trying to activate a new iPad mini. Keep getting message that activation server can't be reached and to try through iTunes. I can't go back beyond the language choice screen to select iTunes. Two days of trying to activate. Help?

    Apple's download AND activation servers are being stressed today with all the downloads/activations. It might be best to wait and try later.

  • My iPhone 4s (bought today) won't get past the activation screen. It says 'it may take a few minutes to activate your iPhone' and then skips to another screen saying 'activation failed - try again'. Any solutions?

    my iPhone 4s (bought today) won't get past the activation screen. It says 'it may take a few minutes to activate your iPhone' and then skips to another screen saying 'activation failed - try again'. Any solutions?

    Apple's activation server is down.
    I called Apple and the support team had the same issue.
    All you can do is be patient.

  • Implemented BADI to add custom screen to VD02 - how to get data to fields?

    hi..
    i have implemented CUSTOMER_ADD_DATA and CUSTOMER_ADD_DATA_CS to add a new screen to Customer Master maintenance tcodes.
    When I run VD02 (for example), I get my button and when I click it, my new screen with new fields show up.
    I need to be able to select from a custom table based on the current KUNNR and populate those fields with data for the user.
    I created the custom screen using a Module Pool program - so this does give me PBO/PAI but I don't have access at that point to my S_KNA1 & other structure info that is contained in the BADI which I need.
    How do I pass data to those fields?
    thanks in advance.
    rp.

    At the point you are clicking 'your' button you could export the structures containing the needed data to abap memory. once in your new screen pbo you may import from abap memory.
    do make sure that your development is hit only for the document type and other usage parameters by putting enough filters before the screen call- else this can slow down quite a few things in SD.

  • Do you have to have a phone number attached to iphone 4 verizon to get past the activation screen?

    I got an iPhone 4 32gb off of ebay, I do not have it yet. what made me buy it was that it said that it was a unlocked 32gb iphone 4 for $44.99 stuck in a boot loop, I googled that and seen as easy fix got excited then I ordered and paid for it and it is on its way. then I was just looking at the photos again a few minutes ago then noticed that in the one photo there is NO SIM slot, then I said hahaha that is not unlocked as it is a CDMA, then figured that it is a Verizon iPhone so now I am needing to know if one can get past that activation screen if the iPhone does not have a phone number?
    I too have no idea what version iOS is on it. I do know it is a CDMA as it does not have the SIM SLOT on the side of the phone.
    I do not know if Sprint iPhone 4 is without a SIM slot or even if they use the iPhone 4 on Sprint so it has to be a Verizon then yes?
    reguadless the question remaines the same, does it ( a CDMA) have to have a phone number attached to it in order to get it to work using everything on the phone besides the phone part ie making Phone calls and texting?

    as I stated I have NOT recived it in the mail yet, I discovered that it is a CDMA by looking at the pictures again. as just moments before I was reseacring the psychial differences between an iPhone 4 and iPhone 4s and it showed and said that the major way to tell the difference is them cuts in the band on the phone where iPhone 4 has one on top and the iPhone 4s does not, the iPhone 4s has four cuts in it two on each side so when I seen the picture of the top of the iPhone and seen that it did NOT have a cut in the band on top I said to myself wow they miss that it is an iPh9one 4s and not just an iPh9one 4, so I googled how to fix a boot loop and found the answer more then once being the same answer so I bought it.
    then I took a look at the pictures again after all was said and done befre I have yet to recive said iPhone 4 32GB then I noticed it does not have the SIM tray then said oh *&*%^Y$#*$&$#(# that is a CDMA they cannot be unlocked it is either a Verzion or Srint. as I already have an iPone 4 16GB and I cannot get it unlocked becuase they the powers to be them a$$ whipes that love to control other people lives past a law stating that one now has to get permission from AT&T / T Moble to get your phone unloced so I cannot as I have not had the iPhone 16GB but for a week as I too got it off of Ebay thinking I'll just get it unlocked like I did with my other iPhone 4 8GB that I only paid like 2 dollars and some change off of ebay to get it unlocked with no problem within a week it was unlocked. someone stoled that iPhone 4 bGB
    so I got that iPhone 4 16 GB for under 100 dollars in good working order and looks off of ebay just about a week or so before then found that I cannot get it unloceked due to that new law that was passed about unlocking phones. so now I am in comminications with AT&T getting the old run around about getting a stright answer out of them if I keep it ( a second hand phone) on there gophone plan for 6 months can I then get it unlocked, question to them and get an answer that does not state a yes or no as it is a yes or no question.
    but so yeah I am to get that iPhone 4 32GB ph9one in the mail on firday(tomorrow) I do want to open it and see if I can get it out of the boot loop just to see if I can and I may just keep it for an ipod use that is way I am wondering if I got a have it attached to a carrier to activate it in case I restore it at any time.

  • Query:  Customer Exit variable not getting populated

    Hello Experts,  I created a Customer Exit variable (ZPREV_MTH_OPS) in the query designer (7.0).  I also put the necessary code in the function module "Z_BWFI_QUERY_CELL_MANIPULTN", but the query variable is not getting populated when I run the query using RSRT.  The boxes for "Variable is ready for input" and "variable is without context" boxes when defining the variable.
    This is my code in the exit:
    case i_vnam.
        when 'ZPREV_MTH_OPS'.
         break-point.
          if i_step = 2.
            clear l_s_range.
            if sy-datum+4(2) = '01'.
              wa_prev_month = '12'.
              wa_prev_year = sy-datum+0(4).
              wa_prev_year = wa_prev_year - 1.
            else.
              wa_prev_month = sy-datum+4(2) - 1.
              wa_prev_year = sy-datum+0(4).
            endif.
            concatenate wa_prev_year wa_prev_month '01' into wa_datum.
            call function 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
              exporting
                day_in            = wa_datum
              importing
                last_day_of_month = wa_datum2.
            concatenate wa_prev_year wa_prev_month '01' into wa_datum.
    *        l_s_range-low = wa_datum.
    *        l_s_range-sign = 'I'.
    *        l_s_range-opt = 'BT'.
    *        l_s_range-high = wa_datum2.
    *        l_s_range-sign = 'I'.
    *        append l_s_range to e_t_range.
            l_s_range-low = '20080901'.
            l_s_range-sign = 'I'.
            l_s_range-opt = 'BT'.
            l_s_range-high = '20080930'.
            l_s_range-sign = 'I'.
            append l_s_range to e_t_range.
          endif.
      endcase.
    I also put a break point the exit, but it's not coming to the breakpoint. 
    Any suggestions?
    Thanks.

    Josh,  the link you provided reminded me to include the code in the include ZXRSRU01 also, instead of just changing the function module.  Thanks for your help and all those who tried to help me.
    case i_vnam.
       when 'ZREL12MTH' or 'ZPREV_MTH_OPS'.
         call function 'Z_BWFI_QUERY_CELL_MANIPULTN'
           EXPORTING
             i_vnam        = i_vnam
             i_vartyp      = i_vartyp
             i_iobjnm      = i_iobjnm
             i_s_cob_pro   = i_s_cob_pro
             i_s_rkb1d     = i_s_rkb1d
             i_periv       = i_periv
             i_t_var_range = i_t_var_range
             i_step        = i_step
           IMPORTING
             e_t_range     = e_t_range
             e_meeht       = e_meeht
             e_mefac       = e_mefac
             e_waers       = e_waers
             e_whfac       = e_whfac
           CHANGING
             c_s_customer  = c_s_customer.
    endcase.

  • Trying to set up Apple TV I get to the activating screen and it doesn't go any further. What do I do?

    Help trying to set up Apple TV and it gets to the activating screen and goes no further. What do I do?

    did the google for you
    https://discussions.apple.com/thread/3113685?start=0&tstart=0
    more hits
    https://www.google.dk/search?source=ig&hl=da&rlz=1G1TSEH_ENDK367&q=appletv+error +message+5506&oq=appletv+error+message+5506&gs_l=igoogle.3...296887.300666.0.301 334.9.9.0.0.0.0.108.669.8j1.9.0...0.0...1ac.1.GcaJvzEoeFU

  • If the previous owner of my phone removes it from I cloud would I be able to get pass the activation screen?

    If the previous owner of my phone removes it from I cloud would I be able to get pass the activation screen?

    He must remove it from Find My Phone which he can do signed in to his account at icloud.com.
    Find My iPhone Activation Lock- Removing a device from a previous owner's account

  • Remote Management and Screen Sharing hang on activation

    Hi,
    I'm trying to activate Remote Management using the Sharing System Preferences pane (http://images.macfixit.com/images/ScreenSharingFigure2.jpg) but after I click the checkbox, the whole System Preferences dialog becomes unresponsive and I have to kill it. I get the same behavior when trying to activate Screen Sharing too.
    Remote Management starts fine with the kickstart command:
    sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/k ickstart -activate
    Any idea what's going on?
    Thanks!
    florin

    This doesn't appear to be a question about Apple Remote Desktop, which is a separate package for managing networked Macs, so you may want to take this up in the Mac OS X 10.5 Networking forum. But yes, as long as you can get the network set up correctly on both ends, you can share a screen from anywhere in the world. Using iChat's screen sharing feature usually works out better when working from a mobile Mac, though; fewer issues with routers and firewalls. LogMeIn is another service that many people have reported using to good effect.
    Message was edited by: Dave Sawyer

Maybe you are looking for

  • Itunes was not installed correctly please reinstall. :(

    After upgrading itunes it says ' itunes was not installed corectly please reinstall so i uninstalled everything apple : bonjour apple application support , quicktime ....., than installed itunes again nothing ! same message i'v tried dowload microsof

  • How to create a slideshow at homepage

    how to create a slideshow at homepage like this http://www.thinkfa.com/ if I have to using java script, how do I can get started to use javascript for iweb? Thanks before R.E

  • Oracle XE 11g and Windows Server 2008 - 64 bits

    Hello, my questions are : - is Oracle XE working on 64 bits (windows) - if it doesn't : - is an update coming ? - is there any solution to make Oracle XE running with Win2008 Server 64 bits (i tried, but i had many problems with execution of listener

  • Stored procedure error in universe structure

    Hi, I've inserted a stored procedure in univerese and when i right-click the stored procedure in structure and click table values it is throwing the below error. I am using BO XI R3.1 version and database is MS Sql server 2005. When i checked the con

  • Removing custom camera profiles on a Mac? Lr4

    I have some old colorchecker camera calibration profiles I would like to delete on a Mac. I don't know where to find them. I am using Lightroom 4