Unable to capture screen fields in eCATT

Problem description 1 : Unable to capture screen fields in eCATT
Recording using SAP GUI Method.
Problem description 2 :Unable to capture Tab controls while recording
in eCATT using SAP GUI Method.
Thaks for any suggestion you could provide me and once again for your courtesy attention.
Regards,
Eric Monteiro

Hi Phani,
Please try below code:
*data declaration for reading values given by user in the selection screen field.
  DATA: BEGIN OF i_tab OCCURS 0.
          INCLUDE STRUCTURE rsselread.
  DATA: END OF i_tab.
  MOVE: 'LOGSYS' TO i_tab-name,
        'P' TO i_tab-kind. u201CP For parameter
  APPEND i_tab.
  MOVE: 'GP_SIMVE' TO i_tab-name,
        'P' TO i_tab-kind. u201CCheck if field is Parameter
  APPEND i_tab.
*move program name and screen number into local variable.
  l_prog = sy-repid. u201C(Try by directly passing program name also)
  l_dynnr = sy-dynnr. u201C(Try by directly passing Screen number also)
*calling function module to get the value given by user.
  CALL FUNCTION 'RS_SELECTIONSCREEN_READ'
    EXPORTING
      program     = l_prog
      dynnr       = l_dynnr
    TABLES
      fieldvalues = i_tab.
Hope this should slove your issue.
Thanks & Regards,
Gaurav.

Similar Messages

  • User exit for IW31 which capture screen field Po number

    Hi all
    I have the requirement that when we save work order created by IW31. It shud trigger any user exit or BADI.
    In that we have to validate the screen field Purchase order number BSTKD from the Ztable entries.
    My problem is that no user exit passes this value as export parameter. so without that how can I get this value in the include program. Please let me know the user exit which hit after save and passes PO value so I can validate this field.   Thanks!!!
    Quick answer will highly be appreciated!!
    Nikhilesh Vyas

    Hello Kiran
    Thanks for ur reply
    But this Badi does not have purchase order number as parameter in any method which call after user press save button.
    Please let me know any other alternative if u have ...thanks!!

  • Unable to capture Input field value on BSP page

    Hi
    I have copied ROS (SRM) standard application ROS_PRESCREEN3 into custom and added one input field .
    Now when user enters some value in it , i am not able to get that value in my back-hand code.
    I have treid the availble code on Fourm , its not working .
    Regards
    Raul

    Hi ,
    I am getting the input field values in my back hand using MVC .
    Regards
    Raul

  • Unable to capture data from drop down list in custom added field in migo tcode at item level

    Hi guys,
    need bit help in resolving query related to custom added field in Tcode migo.
    i have added a field in migo at item level ,in this i have used drop down list
    to get data but unable to capture data from drop down list.gown through
    many blogs in scn but unable to resolve.
    Please help me out in this.
    Thanks,
    Umakant.

    Hi,
    U can use following code to fill the list box
    write this code in PBO
    In layout editor please select listbox in dropdown attribute of input field and put some fctcode attribute
    TYPE-POOLS vrm.
      DATA values TYPE vrm_values WITH HEADER LINE.
      TABLES: <ur custom Database table>.
      clear values, values[].
      SELECT * FROM <ur custom Database table>.
        values-text = <TABLE FIELD TO DISPLAY IN DROPDOWN> .
        values-key = <TABLE KEY FIELD TO DISPLAY IN DROPDOWN>.
        APPEND values.
      ENDSELECT.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = '<SCREEN INPUT FIELD NAME>'
          values          = values[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    Also please define the following before accessing the listbox value
    data: <listbox input field name> type <table field name>,
            <inputfield name where text to display> type string  in top include
    In PAI, select the text from the table into <inputfield name where text to display>  depending on value selected which will be called when enter key is pressed or any vale is selected

  • Unable to capture field values in Master agreement  Line Items

    I am trying to get the field values from master agreement line items page. I have written the following code to get the line item details which is working fine to capture part number and quantity->
    agreementBean = doc.getRootParentIBean();
    lineItemCollection = agreementBean.getLineItems();
    collectionsize = lineItemCollection.size();
    for(i=0;i<collectionsize;i++){
         collectionbean = lineItemCollection.get(i);
         partNum = ""+collectionbean.getPartNumber() ;
         Quantity = ""+collectionbean.getQuantity();     
         throw doc.createApplicationException(null,partNum + " , " + Quantity );
    Now, my problem is that I am unable to capture the following field item values in the master agreement > line items page.
    1. Price Unit
    2. Unit Price
    3. Product Category
    4. Plant
    Please help me to find the values.
    Thankx in Advance.
    Su
    Edited by: subrataindra on Aug 10, 2010 11:11 AM

    This will return the name of the plant.
    .getExtensionField("PLANT").get().getDisplayName(session);
    Check if this returns the product category
    collectionbean.getExtensionField("ITEM_CAT").get().getDisplayName();
    This will Return the Price
    collectionbean.getExtensionField("PRICE").get().getPrice();
    (return type :BigDecimal)
    This will return the currency
    collectionbean.getExtensionField("PRICE").get().getCurrency;
    (Return type:String)
    Similarly to retrieve other fields for which there are no standard functions, use .getExtensionField("Field ID")
    Hope this helps
    Regards,
    Immanuel

  • Unable to capture value inside parameter T_LFBK of FK03 in display mode

    Hi Experts,
    I have to trigger a mail whenever there is a change in fields that are captured in parameter t_ffbk.
    However i am unable to capture the the screen values for this parameter as FK03 is in display mode.Please tell me how can i capture the screen field values in parameter T_LFBK.
    <Point offer removed by moderator>
    Thanks in advance.
    Edited by: Vinod Kumar on Jul 28, 2011 5:48 PM

    Hi Experts,
    I have to trigger a mail whenever there is a change in fields that are captured in parameter t_ffbk.
    However i am unable to capture the the screen values for this parameter as FK03 is in display mode.Please tell me how can i capture the screen field values in parameter T_LFBK.
    <Point offer removed by moderator>
    Thanks in advance.
    Edited by: Vinod Kumar on Jul 28, 2011 5:48 PM

  • Unable to Capture ALV output in an Internal Table, after CALL TRANSACTION

    Dear all,
    My requirement is to run multiple materials in T-code CK86_99 but as we know CK86_99 is only adequate to one material at a time.
    So, I want to capture the Output of the T-code in my Internal table with respect to all the Material Numbers I use in the Select-Options of my Z Program.
    Below is the Code I developed so far, but the Class
    cl_salv_bs_runtime_info=>get_data_ref(
            IMPORTING r_data = lf_ref ).
    is not capturing the Ouput...
    Please have a look and enlighten me how it could be solved.
    TABLES : mara.
    DATA : BEGIN OF wa_mara,
      matnr TYPE mara-matnr,
      END OF wa_mara.
    DATA: it_bdcdata TYPE TABLE OF bdcdata,
          wa_it_bdcdata LIKE LINE OF it_bdcdata,
          it_mara LIKE TABLE OF wa_mara.
    *      BELNR(10).
    FIELD-SYMBOLS:<fs_tab> TYPE ANY TABLE,
    <fs_line> TYPE any.
    DATA:lf_ref TYPE REF TO data,
         lf_ref1 TYPE REF TO data.
    SELECT-OPTIONS so_matnr FOR mara-matnr.
    PARAMETERS p_werks LIKE t001w-werks.
    *BELNR = 'Z92'. " Give Document Number here
    SELECT matnr FROM mara INTO TABLE it_mara WHERE matnr IN so_matnr.
    DATA opt TYPE ctu_params.
    LOOP AT it_mara INTO wa_mara.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-program  = 'SAPMKKB0'.
    wa_it_bdcdata-dynpro   = '0300'.
    wa_it_bdcdata-dynbegin = 'X'.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'BDC_CURSOR'.
    wa_it_bdcdata-fval = 'KKB0-MATNR'.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'KKB0-MATNR'.
      wa_it_bdcdata-fval = wa_mara-matnr.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'BDC_CURSOR'.
    wa_it_bdcdata-fval = 'KKB0-WERKS'.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
      wa_it_bdcdata-fnam = 'KKB0-WERKS'.
    wa_it_bdcdata-fval = p_werks.
      APPEND wa_it_bdcdata TO it_bdcdata.
      CLEAR wa_it_bdcdata.
    wa_it_bdcdata-fnam = 'BDC_OKCODE'.
    wa_it_bdcdata-fval = 'OSNY'."'ONLI'."=CRET'.
      APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-program  = 'SAPLKKRSOO'.
    * wa_it_bdcdata-dynpro   = '0100'.
    * wa_it_bdcdata-dynbegin = 'X'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-fnam = 'BDC_OKCODE'.
    *  wa_it_bdcdata-fval = 'BACK'."=CRET'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-program  = 'SAPMKKB0'.
    * wa_it_bdcdata-dynpro   = '0300'.
    * wa_it_bdcdata-dynbegin = 'X'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
    *  CLEAR wa_it_bdcdata.
    * wa_it_bdcdata-fnam = 'BDC_OKCODE'.
    * wa_it_bdcdata-fval = 'EXIT'."=CRET'.
    *  APPEND wa_it_bdcdata TO it_bdcdata.
      opt-dismode = 'N'.
    cl_salv_bs_runtime_info=>set(
        EXPORTING display  = abap_false
                  metadata = abap_true
    data     = abap_true ).
      CALL TRANSACTION 'CK86_99' USING it_bdcdata OPTIONS FROM opt.
      TRY.
    cl_salv_bs_runtime_info=>get_data_ref(
            IMPORTING r_data = lf_ref ).
          ASSIGN lf_ref->* TO <fs_tab>.
        CATCH cx_salv_bs_sc_runtime_info.
          MESSAGE 'Unable to retrieve ALV data' TYPE 'E'.
      ENDTRY.
    cl_salv_bs_runtime_info=>clear_all( ).
      IF <fs_tab> IS ASSIGNED.
        CREATE DATA lf_ref1 LIKE LINE OF <fs_tab>.
        ASSIGN lf_ref1->* TO <fs_line>.
      ENDIF.
    *LOOP AT <FS_TAB> ASSIGNING <FS_LINE>.
    *ENDLOOP.

    Hi Abhay,
          If you go to Transaction code SE93, enter the tcode "CK86_99" and click display, you may see the default value for transaction is "KKBB" and the screen field for P_SCREEN = 0300, P_TCODE = ck86_99.
          You may need to copy the transaction code "KKBB" and go to SE93 again, enter the tcode for "KKBB" then click display, now you may see the program name is "RKKB1000".
          Hope this answer your question.
    Thanks
    Hock Lin

  • Unable to capture from my Canon hv30

    I just tried to capture some footage from my hv30, the first time I've tried, and it say's on the capture screen that the capture device is off line. I have the camera properly connected and its in the right setting, is there some setting in premiere that's i have wrong? I have another program that came with the camera, and it can't connect to the camera either, saying that its not connected. Not sure what to do at this point, so if anyone has any ideas that would be awesome.

    This is the most weird camera I have ever seen, you have a miniDV tape camera appartently without a Firewire I/O connector.  I just looked at this Canon specification  http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=177&modelid=1620 6#ModelTechSpecsAct
    and there is nothing about a Firewire/IEEE-1394/etc.  Without a firewire interface Premiere is unable to capture video.  apparently there is some software supplied with the camera, maybe it can capture the video via the USB interface to your computer and then (if it is the correct format) you can import it to Premiere.

  • Unable to capture new KUNNR in Exits from XD01

    Hi all,
    I am creating a new customer in XD01 and trying to capture the new customer number in an EXIT. Here, the customer number is (internally)automatically generated as a result of which this customer number cannot be captured in the exit. I am using SAPMF02D user exit.
    Can somebody kindly give me some idea on how to capture this new customer on saving XD01?
    Thanks,
    Max

    Hi Max,
    http://help.sap.com/saphelp_46c/helpdata/en/63/ed2c7dd435d1118b3f0060b03ca329/frameset.htm
    Re: Customer Master / Vendor master Creation
    Re: How to transport Custom Screen Fields from XD01/XD02 screens to KNA1
    Re: Customer (FD01,FD02) Enhancement
    Hope it helps..
    <b>Reward points if useful..</b>
    Thanks & Regards
    ilesh 24x7

  • Unable to capture user comments and responder in RESPOND API

    We are building a custom application that uses Oracle Workflow underneath. The application users and responsibilities have been integrated into Workflow. Notifications are acknowledged and responded to directly from the application using the PL/SQL Notification APIs.
    When using the wf_notification.respond API with the appropriate user and comment information filled in, we are still unable to capture the responder information as well as the reponders comments. In other words, the RESPONDER and USER_COMMENT fields in the WF_NOTIFICATION is blank. However, the response does seem to go through otherwise. Do we need to set some kind of user context outside of just setting the response attributes and calling the respond API? Following is the code....
    owf_mgr.wf_notification.setattrtext(p_nid,
                   'RESULT'          ,
                   'APPROVED');
    -- This procedure then caused the WF to advance to next step
    -- Respond to notification, depends on RESULT setattrtext above
    owf_mgr.wf_notification.respond(     p_nid, -- notification id     
         p_respond_comment,     -- response_comment
    p_responder     );     --responder role
    Any help is greatly appreciated.
    Thanks,
    Raj

    If you are on 11.5.10 or greater or standalone 2.6.4 if you pass the responder value to wf_notification.respond API it should be updated in wf_notifications.responder column. The comments is now updated in wf_comments table against the notification id and not wf_notifications.user_comment column.
    Thanks, Vijay

  • Unable to Capture Video PE 3.0

    I'm using Premier Elements 3.0 and am unable to capture a video from my DV camera. I have reviewed all the instructions that might relate to the problem and have re installed the program. When I go to capture a video, in the top left of the screen indicates "Capture device off line" however I can start and stop my camera with the buttons on the capture screen. The get video button is not active. It will not download. Again if run through the start up instruction with no results.  The program use to work fine but I have not used it in a while. Any suggestions?

    A couple of questions:
    Do you have the 3.0.2 update?
    What make/model of camera?
    Does Windows give you the "bing-bong" sound, when you have the camera plugged-in via FireWire and you turn it on?
    What mode does the camera's manual tell you to set the camera in, for capture?
    Good luck,
    Hunt

  • I am unable to capture pictures on my Iphone 4s

    Any one assist me how to fix this problem, I am unable to capture the pictures using back camera but I am seeing through it and when I click, it automatically come to home screen.

    If there is No 'X' on any apps you have Downloaded... then check in Restrictions... Settings > General > Restrictions > Deleting Apps  =  Off / On
    Understanding Restrictions  >  http://support.apple.com/kb/HT4213

  • Unable to capture with FCP5

    With correct connexions and I-link OK, FCP is unable to capture DV with the
    camera either with recorder. I,ve the text (in french) :
    "Périphériques suivants sont introuvables
    Apple Firewire PAL (720x576) .... "
    The capture is OK using a Mc-Book with 10.4.7 OSX , but not with the G5. I ve verify QT is version 7.
    All programms have been updated and still the images not captured, but only
    the mechanical commands such "play, FFW, stop... "
    How can I make the Camcorder, or the DVR recognized with FCP ?
    Thanks for an help.

    Hey everyone. Thanks for all the troubleshooting. Getting close to identifying the problem.
    I brought the deck home with me to try it out on my personal MacBook Pro system. Same problem. the tape would play back, you could control the deck, but it would not import.
    David brought up the tape itself, which, logically, I hadn't even thought of. So I threw in a completely different tape and voila! No problems. Was able to control the deck, view the video on my Mac's display (finally!) and yes, capture video to disk.
    Just to make sure the deck wasn't being screwy, I tested both the original tape and the other on my personal miniDV camera and yielded the same results. Except when playing back the original, video wouldn't even display on the camera's LCD screen..
    In short:
    There has to be something funky with this tape that they gave us. We will probably ship it to another post house and see if they can get it to work out on a different deck. When I return to the office, I will try the other tape just to confirm there's nothing wrong with our Mac Pro system there..
    Thank you all for you troubleshooting wisdom. I owe you all one.

  • "Unable to capture window image"

    if I select a window to be screenshot, I get this error:
    Your screen shot can’t be saved.
    Unable to capture window image.
    (shortcut: cmd-shift-4 and then space)
    It seems to be new in Lion. Never had that problem before. And regular screenshots seem to work fine (cmd-shift-3).
    Thanks for any help! ~ Kai

    Thanks Davide ...
    I created com.apple.screencapture.plist with Terminal and restarted the Mac.
    The first couple of window screenshots worked on a Chrome browser window (command-shift-4, then space bar). But it did not work on other app's windows (Finder, Carousel).
    Then I switched back to Chrome and I didn't work there too anymore. Crazy thing is that now it works on Finder windows. Very very strange.
    All this is only true for capturing a whole window content (command-shift-4, then space bar)
    ~ Kai

  • Unable to capture screenshot of Agentry Client v 7.0.1.207

    Once you have logged a user in the Agentry Client application, it is no more possible to capture screenshots of the Agentry client application.
    I got an error "Unable to capture screenshot. USB storage may be in use"
    However you can take screenshots of other application (Gmail for example) or you can take screenshot of the Agentry client logging page.
    This is occurring with Agentry client v 7.0.1.207.  It was working before with v6.0.14
    Is there a possibility to remove this security feature?
    regards.

    With the Encrypted DB checked, it is not possible to take screenshots.  There is an option in the newest versions of Agentry 6.0 (would need to wait until it is rolled up to SMP) that next to the Encrypted DB option, you can check an option to enable screen share again.  I know this was put into around 6.0.42 or 6.0.44.  Don't know if or when it will get to SMP.
    Stephen

Maybe you are looking for

  • How to make preceding reference mandatory

    Hi gurus, could you please help in the following question. It's necessary to make impossible creation of operation (for example Sales order) without reference to a preceding document (another Sales order). There are fields in Definition of Item Categ

  • Legend Problem in multiple series chart

    Hello, I am getting problem in displaying legend. I have created a chart with  multiple series and custon color. Here is my code. You can copy paste it. Out of 3 only one legend marker n label coming. <?xml version="1.0" encoding="utf-8"?> <mx:Applic

  • Need a sql query to get multiple dates in rows

    Hi All, i need a query to get dates for last 7 days and each dates should be in one row... but select sysdate from dual..gives one row... Expexcted Output Dates: 01-oct-2013 30-sep-2013 29-sep-2013 28-sep-2013 27-sep-2013 26-sep-2013

  • Fading images slideshow

    I am looking to create a fading image slideshow to use in Dreamweaver. I created in flash but having problems viewing in internet explorer. Wanted to know if there was an easier way to do this.

  • How To Post Sites On Non .Mac Servers

    Hi Everyone! I like iWeb - very easy to use indeed. My wife has a small company that could do with a decent web site, but the business already has its own .co.uk site and I would like to create a new web site for her and then upload it onto the curre