System error on reading screen values

Hi ABAP'ers!!
When I try to unblock the vendor account in FK05 (unblock in all company codes) I get an error :
System error on reading screen values
Message no. F2 109
Would appreciate your suggestions/inputs!!
Thanks for your time!

Hi VR,
in FK05 you cannot unlock vendor.through functionality only u can unblock the vendor.
It display error message.
For these changes ( for blocking / unblocking ) user exit will be triggerd.
Regards,
Narasimha

Similar Messages

  • Read Screen values in Select options

    Hi Experts,
                  I am using FM  'DYNP_VALUES_READ' for reading the Screen values. The problem is, this FM runs fine for parameters where single value is returned but in case of Select-options where i have ranges, How to use this FM?
    Help will be appreciated
    Regards
    Sourabh

    Hi ,
    Thanks for your valuable inputs.
    I have acheived my requirements with FM 'DYNP_VALUES_READ'  itself.
    Here is how i have acheived this. I have passed both LOW and HIGH in the internal table it_fieldvalues.As a result i got both the values of the ranges.
    REFRESH it_fieldvalues.
      it_fieldvalues-fieldname = 'S_AEDAT-LOW'.
      APPEND it_fieldvalues.
      CLEAR it_fieldvalues.
      it_fieldvalues-fieldname = 'S_AEDAT-HIGH'.
      APPEND it_fieldvalues.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname                         = sy-repid
          dynumb                         = sy-dynnr
        TRANSLATE_TO_UPPER             = 'X'
      REQUEST                        = ' '
      PERFORM_CONVERSION_EXITS       = ' '
      PERFORM_INPUT_CONVERSION       = ' '
      DETERMINE_LOOP_INDEX           = ' '
        TABLES
          dynpfields                     = it_fieldvalues
    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.
    Regards
    Sourabh

  • Error when reading chars values when restricting time chars in Query

    Hi all,
    since a few days I am not able to restrict time characteristics in queries on a particular Multiporvider. I can restrict the time chars with variables but not with fixed values.
    I am getting the following error:
    Reading Characteristic Values -> Programm Error in class SAPMSSY1 -> Uncaught exception.
    The problem exists only on one particular multi provider, but when checking the MP it indicates no errors.
    Anyone experienced something similiar? I am appreciating your help.
    Thomas

    actually it is a problem associated with SAP GUI 7.0.
    A solution to this problem is
    Just replace the file wdbspres.dll with in the following location
    C:\Program Files\SAP\FrontEnd\SapGui.
    You can search for this file on google and download it.
    we also had faced this problem earlier...but after replacing the wdbspres.dll...it worked..
    i hope this helps you.
    pls assign points if this answer is of some help

  • BDC read screen value and press button

    Hi,
      How can i read a screen value and press button by BCD??
    Regards,
    Kit

    Hi ,
    There is table bdcmsgcoll which holds the values  so if do like below  you can find out the values
    data: it_tab2 type table of bdcmsgcoll with header line.
       call transaction 'BGM1' using it_tab3 mode 'E' messages into it_tab2.
    now  it_tab2 will hold the values  and you can check that in debugging mode
    do reward if helpful

  • System error on reading internal table DYNTAB, screen 7313

    Hello,
    I'm trying to create a customer master in batch mode. I get this error when saving. If I create the customer on-line, I'm able to create with no errors. When I create using a program, I get the error and have to exit.
    Does anyone have a clue on what to do?
    Thanks,
    Theresa

    Looks like its having a hard time doing something with the tabstrip on the screen.  Does your XD01 screen look the same as it does during the BDC recording?  If not, you may have to compensate.  I don't really now exactly what your problem is, but I can make some guesses.  During the recording,  do you click on the tabs or do you switch tabs by using the tab selector on the right of the tabstrip?
    Regards,
    Rich Heilman

  • Error while reading empty value in DOM

    While I try to read an xml file with data similar to this
    <DisplaySettings>
    <Option1>Company</Option1>
    <Option2>Author</Option2>
    <Option3 />
    <Option4>Project</Option4>
    <Option5>Reference</Option5>
    </DisplaySettings>
    when it comes to assigining data from Option3 it throws a null pointer exception. This is the assignment statement
    for (int i=0; i<nodeLength; i++) {  
    element = (Element) nodelist.item(i);
    //this throws an error since there is no value
    nodeValues[i] = element.getFirstChild().getNodeValue();
    System.out.println( "Node :"+ i +".."+ nodeValues);
    Please help me to read the contents of a element to see if they are empty elements
    regards
    Thahir

    for (int i=0; i<nodeLength; i++) {
    element = (Element) nodelist.item(i);
    if((element.getFirstChild())!=null)
    nodeValues = element.getFirstChild().getNodeValue();
    System.out.println( "Node :"+ i +".."+ nodeValues);

  • Error in reading the value from cmod in BI

    Hi experts,
    We had a requirement in the query, ie when we execute a query the user will be asked to enter the key
    date and after he enters the date which was entered should be populated into other date variable (
    posting date ).
    For this we have written the following coding in cmod inthe bi system:
    ========================
    data: l_s_range type rsr_s_rangesid,
        wa_key type rrs0_s_var_range.
    Case i_vnam.
      When 'CLR_DT' .
      break-point.
        If i_step = 2.
          clear l_s_range.
          Loop at i_t_var_range into wa_key.
            if wa_key-vnam = '0P_CSDAT'.
              l_s_range-low = wa_key-low.
              l_s_range-sign = 'EQ'.
              l_s_range-opt = 'I'.
              Append l_s_range to e_t_range.
            endif.
          endloop.
        Endif.
    Endcase.
    ============================
    When syntax checked there is no errors or warnings.
    But when we executed the query and given the key date, an error is coming saying that the error is in exit.
    Please check the code and let me know whether i need to do any modifications.
    Regards,
    Nishuv.

    Hi Praveen,
    Thanks for the reply.
    I replaced : i_t_var_range into wa_key with the thing given by u i.e
    Loop at i_t_var_range into wa_key where vnam = <your key date variable name>.
    But it is showing error as:
    Field "0P_CSDAT" is unknown. It is neither in one of the specified
    tables nor defined by a "DATA" statement. "DATA" statement. "DATA" statement.          
    What else do i need to change..
    Please let me know.
    Regards,
    Nishuv.

  • 64bitMAPIBroker.exe - system error on Reader XI

    Hello,
    I have a PDF form that uses event.target.Maildoc in the XML source to generate an email message when the button in the form is pressed. We all use Microsoft Outlook as our mail clients and those users that have had 64 bit Office installed have not been able to use the button as intended because previous versions of Acrobat/Reader could not communicate with the 64bit MAPI, this is not new and this is not the reason for this posting.
    I have just tried my PDF form with the Mail button on a fresh install and fully up-to-date test machine which is a Win 7 64 bit system with Office 2010 x64 and Reader XI and have gotten the below error after answering which mail client I would like to use in the box that pops up when I press the mail button.
    My understanding was Reader/Acrobat XI were supposed to be able to handle 64bit MAPI calls.

    At least on my test system Reader did not even installl the 32 bit version.
    edit: Though in the case of this test system I used the small Reader exe installer from adobe website, whereas I normally use the MSI installers from the adobe FTP. So maybe that makes a difference.
    Message was edited by: ChrisDTC

  • In BDC we need to read screen value of table control

    Dear All,
    I was doing a feasibility analysis. One BDC is there where we will have to insert records in table control based on some records of 1st column of table control already populated. We are unable to find a way for reading table control. The BDC is generating batch input session. Can you please suggest on this?
    Best wishes,
    Atanu

    Hi Atanu,
    with BDC, the only possibility is to do as Klaus suggested: you must replicate the SAP's logic in your program, you must know in advance how SAP fills this field. This is a very well known drawback of BDC. You may use the SQL trace to help you to know which tables are read. Ask functional people to help you.
    You may also use SAP GUI scripting, that's another technology (slower I think, and it can only work in dialog). It allows to do different actions between 2 screens. You must program it using OLE, or using external software (VBA for example).
    Sandra

  • Read screen value ( CJ02 Status Value)

    Hi All,
      I am using BADI WBS_SETTLEMENT_RULE in CJ02. In BADI I have to use condition on status for WBS element. when the user will change status to REL I need to update settlement rule. can anyone tell me how to get status in CJ02 runtime?

    I found that FM STATUS_TEXT_EDIT will give run time value for status
    thanks.

  • [OAM] Customize System Error Page

    Hi all,
    we have a protected resource with an already implemented custom login form. This login form is not the one in the war, but an external (an static HTML).
    We also need to customize the System Error page (blue screen) that is thrown when an server error occurs. I am following the OAM documentation but it seems confusing with my scenario here. It says to open the oamcustompages.war, modify the servererror.jsp file and re-deploy it. But then, documentation establish to configure "customWar" in the context of the authentication screen. I can't do this because I would loose the login page (and this is mantained by an external development team so this is not an option).
    The customer wants to modify the blue screen not only for changing the look and feel, but also for catching error and perhaps make redirections (at now, the instruction is to know how to change that page).
    Any help?

    Hi Matt,
    I think the page you are being redirected to is servererror.jsp, which is deployed within oam-server.ear, within its own ngsso-web.war application. You could deploy your own version of this. I assume you could also modify the ErrorPage setting in oam-config.xml to define your own page, though I have not tested this. This would be a customisation, so you would be responsible for the system behaviour when doing this.
    Regards,
    Colin

  • SAP XI 3.0 - Error while reading the ID of own business system from the SLD

    Error while reading the ID of own business system from the SLD for system Quality (QOC) and Client 100. 
    I get this error in the SXMN_MONI.  The business process is that the Interface to send master schedule and finished inventory from the legacy system to SAP to create planned orders in SAP for all Plants.
    I could able to get "SUCCESSFULLY PROCESSED" in development and production.  But only in Quality I getting this error.  Could anyone help me to fix this issue.
    thanks...

    Probably, its due to incorrect RFC Adapter properties in config.
    Go to Integration COnfiguration. Double Click on the Business System for your R/3 system. On the right hand screen, Click  on Service-->Adapter Specific Parameters.
    Check whether the Logical System Name comes up as SAP<SID> and whether R/3 system ID and Client are appropriate.
    If these values are inappropriate, make changes to the corresponding Technical System defined in the SLD. After you have made the necessary corrections, come back to Integration COnfiguration, Double click on Business SYstem for R/3. Switch to Edit Mode. Click on Service-> Adapter Specific Parameters and then click on the Icon between Apply and Cancel buttons, inorder to compare with SLD and make those values reflect in config. Then click on Apply and Save the Business System.
    After this, you can retry sending the message.
    Rgds
    R Chandrasekhar

  • Error while reading the ID of own business system from the SLD for system

    Hello,
    I try to send master material data from a 4.7 system via XI 3.0 to an autoID Infrastructure system 2.1. All Communication Channels, Receiver Agreements, Receiver and Interface Agreements are configured. The IDOC gets propper into the XI, Inbound Message is "green". Now, I get the following message:
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">SLD_NO_OWN_BS</SAP:Code>
      <SAP:P1>ZTA</SAP:P1>
      <SAP:P2>013</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while reading the ID of own business system from the SLD for system ZTA and client 013</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Can anybody help me?

    Probably, its due to incorrect RFC Adapter properties in config.
    Go to Integration COnfiguration. Double Click on the Business System for your R/3 system. On the right hand screen, Click  on Service-->Adapter Specific Parameters.
    Check whether the Logical System Name comes up as SAP<SID> and whether R/3 system ID and Client are appropriate.
    If these values are inappropriate, make changes to the corresponding Technical System defined in the SLD. After you have made the necessary corrections, come back to Integration COnfiguration, Double click on Business SYstem for R/3. Switch to Edit Mode. Click on Service-> Adapter Specific Parameters and then click on the Icon between Apply and Cancel buttons, inorder to compare with SLD and make those values reflect in config. Then click on Apply and Save the Business System.
    After this, you can retry sending the message.
    Rgds
    R Chandrasekhar

  • Satellite A60-102 - Blue screen error appears on screen and system restart

    Sometime Blue screen error showing on screen and system restart
    how can solve this problem

    Hi
    What BSOD code you get exactly?
    Which OS you are using?
    Maybe its a driver problem. Have you checked the device manager for yellow exclamation marks?
    Can you boot in safe mode?

  • Error while reading ID of own business system from the SLD for system DPI

    Hi All,
    My sceanrio is Proxy to JDBC. and its B2B. am sending the data from BI system and based on the country field from the source, table is decided and value is updated in the table.
    In RWB->Component Monitoring->Adapter Engine->Test Message, I have given the Sender component,Receiver Party,Receiver component,Interface,Interface Namespace,userid and password,Quality of Service and pasted the payload.
    Now I am getting the error :Error While Sending Message: Error stack from response: Error while reading ID of own business system from the SLD for system DPI and client 001 Internal error in Landscape Directory
    Please help me out.
    Thanks
    Kiruthi
    Edited by: kiruthiga balusamy on Nov 24, 2009 4:02 PM

    Hi,
    Check transaction SLDAPICUST for correct SLD configuration.
    http://help.sap.com/saphelp_nw70/helpdata/EN/0b/8512417301ee6fe10000000a1550b0/content.htm
    ~Sanv...

Maybe you are looking for