Please Help!! Error in document : BKPFF $ DEVCLNT

Hi All Gurus,
I am trying to use BAPI - BAPI_ACC_DOCUMENT_POST to post to FB50.
I am using the below paramaters -
DOCUMENTHEADER         
TABLES
       ACCOUNTGL              
       CURRENCYAMOUNT
RETURN.
But I am getting the error -   Error in document : BKPFF $ DEVCLNT. Can someone please help me with this. I have been breaking my head over this. Dont know what is going wrong!                     .
Thanks, Nina.

Thanks for all your help, Aaron.
*T Y P E S *
TYPES: BEGIN OF t_indata,
               t_ddate(8) TYPE c,
               t_ref(17) TYPE c,
               t_dbank(8) TYPE c,
               t_disno(4) TYPE c,
               t_glacnt(10) TYPE c,
               t_descrip(50) TYPE c,
               t_damt(13) TYPE c,
               t_jobid(8) TYPE c,
               t_rexpen(8) TYPE c,
               t_tperiod(8) TYPE c,
               t_tnumb(8) TYPE c,
               t_ctrans(8) TYPE c,
               t_ccenter(10) TYPE c,
       END OF t_indata.
TYPES: BEGIN OF t_error,
               t_ddate(8) TYPE c,
               t_ref(17) TYPE c,
               t_dbank(8) TYPE c,
               t_disno(4) TYPE c,
               t_glacnt(10) TYPE c,
               t_descrip(50) TYPE c,
               t_damt(13) TYPE c,
               t_jobid(8) TYPE c,
               t_rexpen(8) TYPE c,
               t_tperiod(8) TYPE c,
               t_tnumb(8) TYPE c,
               t_ctrans(8) TYPE c,
               t_ccenter(10) TYPE c,
               message(100)     type c,  " Error message
      END OF t_error.
*W O R K A R E A S *
DATA: w_indata TYPE t_indata,
      w_error TYPE t_error.
*I N T E R N A L T A B L E S *
DATA: i_indata TYPE STANDARD TABLE OF t_indata WITH HEADER LINE,
      i_error TYPE STANDARD TABLE OF t_error WITH HEADER LINE.
DATA: i_acgl LIKE BAPIACGL09 OCCURS 0 WITH HEADER LINE,
      i_currency LIKE BAPIACCR09 OCCURS 0 WITH HEADER LINE,
      i_return LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
*V A R I A B L E S *
DATA: v_file       TYPE string,
      v_string(1022),                " To read data from file
      v_ddate(10)  TYPE c,
      v_pdate(10)  TYPE c,
      v_dcre       type wrbtr,            " Dollar Amount credit conv
      v_ddeb       TYPE wrbtr,           " Dollar Amount debit conv
      v_lines TYPE i,                   " used for format message
      v_msg(100),                        " used for Error message
      v_ind   TYPE i,
      v_index type i.
DATA: V_DOCHEADER LIKE BAPIACHE09.
     V_OBJ_TYPE LIKE BAPIACHE09-OBJ_TYPE,
     V_OBJ_KEY LIKE BAPIACHE09-OBJ_KEY,
     V_OBJ_SYS LIKE BAPIACHE09-OBJ_SYS.
*C O N S T A N T S *
CONSTANTS: c_creacnt TYPE string VALUE '111444',  " Liability account
           c_del type x value '09',               " for hash delimited file
           c_fslash VALUE '\',                    " Used for Forward slash
           c_bslash VALUE '/'.                    " Used for backward slash
*S E L E C T I O N S C R E E N
SELECTION-SCREEN SKIP.
SELECTION-SCREEN BEGIN OF BLOCK first WITH FRAME TITLE text-001.
PARAMETERS: p_fname LIKE rlgrap-filename OBLIGATORY DEFAULT 'C:\CorpCard.txt',  " File name
            rd_pserv RADIOBUTTON GROUP radi DEFAULT 'X',                    " Pres. Server
            rd_aserv RADIOBUTTON GROUP radi.                                " App.  Server
Error file
parameters: p_efile type rlgrap-filename default
'/tmp/CorpCard_error'.
SELECTION-SCREEN END OF BLOCK first.
At selection-screen
Check which file is selected
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fname.
Perform to get the current value of the selection screen
  PERFORM get_current_value.
  IF rd_aserv = 'X'.
    MESSAGE i398 WITH 'Can not browse unix directories'(030).
  ELSE.
  F4 help for presentation server file name
    PERFORM get_local_file_name USING 'P_FNAME' CHANGING p_fname.
  ENDIF.
AT SELECTION-SCREEN.
perform to validate input file
  PERFORM validate_filename USING p_fname.
S T A R T O F S E L E C T I O N *
START-OF-SELECTION.
Presentation File upload
  if rd_pserv = 'X'.
    perform upload_pre_file.
  endif.
Unix File Upload
  if rd_aserv = 'X'.
    perform upload_unix_file.
  endif.
Perform to populate the internal table to the bapi.
PERFORM populate_debit.
Perform to populate the internal table to the bapi.
PERFORM populate_credit.
Perform to process the input data and post to FB50
  PERFORM post_data.
E N D O F S E L E C T I O N *
END-OF-SELECTION.
*if not i_error[] is initial.
perform to generate error file and send to application server
perform generate_error_report.
endif.
*&      Form  get_current_value
FORM get_current_value .
Local internal table for screen fields
  DATA: BEGIN OF i_dynpfields OCCURS 0.
          INCLUDE STRUCTURE dynpread.
  DATA: END OF i_dynpfields.
  CLEAR   i_dynpfields.
  REFRESH i_dynpfields.
  i_dynpfields-fieldname = 'RD_ASERV'.
  APPEND i_dynpfields.
  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname               = sy-cprog
      dynumb               = sy-dynnr
    TABLES
      dynpfields           = i_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
      OTHERS               = 10.
  IF sy-subrc <> 0.
    MESSAGE i398  WITH 'Unbale to read the selection screen values'(031)
  ELSE.
    READ TABLE i_dynpfields INDEX 1.
    IF sy-subrc = 0.
      MOVE i_dynpfields-fieldvalue TO rd_aserv.
    ENDIF.
  ENDIF.
ENDFORM.                    " get_current_value
*&      Form  get_local_file_name
FORM get_local_file_name USING p_file
                      CHANGING p_cfile.
Local variable
  DATA: l_fname LIKE ibipparms-path,   " File name
        v_repid LIKE sy-repid.
  l_fname = p_file.
  v_repid = sy-repid.
  CALL FUNCTION 'F4_FILENAME'
    EXPORTING
      program_name  = v_repid
      dynpro_number = sy-dynnr
      field_name    = p_file
    IMPORTING
      file_name     = l_fname
    EXCEPTIONS
      OTHERS        = 1.
  IF sy-subrc = 0.
    p_cfile = l_fname.
  ENDIF.
ENDFORM.                    " get_local_file_name
*&      Form  validate_filename
FORM validate_filename  USING p_fname TYPE any.
  IF rd_aserv = 'X'.
Local variable for file length
    DATA : l_len TYPE i.
    l_len = STRLEN( p_fname ).
    IF p_fname CA space.
      IF sy-fdpos < l_len.
        MESSAGE e398 WITH 'File name should not contain spaces'(032).
      ENDIF.
    ENDIF.
    IF p_fname CA c_fslash.
      MESSAGE e398 WITH 'File name should not contain \'(033).
    ENDIF.
    IF p_fname NA c_bslash. " No directory path given
      MESSAGE w398 WITH 'File will be created in home directory'(034).
    ENDIF.
  ENDIF.
  IF p_fname0(1) = c_fslash AND p_fname1 = space.
    MESSAGE e398 WITH 'File name should not contain only /'(035).
  ENDIF.
ENDFORM.                    " validate_filename
*&      Form  upload_pre_file
FORM upload_pre_file.
v_file = p_fname.
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename                = v_file
      filetype                = 'ASC'
      has_field_separator     = 'X'
      dat_mode                = ' '
    TABLES
      data_tab                = i_indata
    EXCEPTIONS
      file_open_error         = 1
      file_read_error         = 2
      no_batch                = 3
      gui_refuse_filetransfer = 4
      invalid_type            = 5
      no_authority            = 6
      unknown_error           = 7
      bad_data_format         = 8
      header_not_allowed      = 9
      separator_not_allowed   = 10
      header_too_long         = 11
      unknown_dp_error        = 12
      access_denied           = 13
      dp_out_of_memory        = 14
      disk_full               = 15
      dp_timeout              = 16
      OTHERS                  = 17.
  IF sy-subrc <> 0.
    MESSAGE e398 WITH 'Unable to upload the file'(002).
  ENDIF.
ENDFORM.                    " upload_pre_file
*&      Form  upload_unix_file
FORM upload_unix_file .
  open dataset p_fname for input in text mode encoding default.
  if sy-subrc <> 0.
    message i398 with 'File open error(012)'(012) p_fname.
    stop.
  else.
    do.
      clear: v_string.
      read dataset p_fname into v_string.
      case sy-subrc.
        when 0.
          split v_string at c_del
               into  i_indata-t_glacnt
                     i_indata-t_descrip
                     i_indata-t_damt
                     i_indata-t_ccenter.
            append i_indata.
          clear i_indata.
        when 4.
          exit.
        when 8.
          message i398 with 'Unable to Read the File'(008) p_fname.
          stop.
      endcase.
    enddo.
    close dataset p_fname.
  endif.
ENDFORM.                    " upload_unix_file
*&      Form  post_data
FORM post_data .
V_DOCHEADER-BUS_ACT = 'RFBU'.
*V_DOCHEADER-OBJ_TYPE = 'BKPF'.
*V_DOCHEADER-OBJ_KEY = '$'.
V_DOCHEADER-USERNAME = 'VSAWANT'.
V_DOCHEADER-COMP_CODE = 'BP01'.
V_DOCHEADER-DOC_DATE = SY-DATUM.
V_DOCHEADER-PSTNG_DATE = SY-DATUM.
*V_DOCHEADER-FIC_PERIOD = '00'.
V_DOCHEADER-HEADER_TXT = 'Amex Card Upload'.
V_DOCHEADER-DOC_TYPE = 'SA'.
   CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
     EXPORTING
       DOCUMENTHEADER          = V_DOCHEADER
     CUSTOMERCPD             =
     CONTRACTHEADER          =
   IMPORTING
      OBJ_TYPE                = V_DOCHEADER-OBJ_TYPE
      OBJ_KEY                 = V_DOCHEADER-OBJ_KEY
      OBJ_SYS                 = V_DOCHEADER-OBJ_SYS
     TABLES
       ACCOUNTGL               = i_acgl
     ACCOUNTRECEIVABLE       =
     ACCOUNTPAYABLE          =
     ACCOUNTTAX              =
       CURRENCYAMOUNT          = i_currency
     CRITERIA                =
     VALUEFIELD              =
     EXTENSION1              =
       RETURN                  = i_return.
     PAYMENTCARD             =
     CONTRACTITEM            =
     EXTENSION2              =
     REALESTATE              =          .
refresh i_acgl.
refresh i_currency.
clear i_acgl.
clear i_currency.
if V_DOCHEADER is initial.
  i_error[] =  i_indata[] .
    read table i_return index 1.
    i_error-message = i_return-message.
    append i_error.
    clear  i_error.
else.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    wait up to 3 seconds.
endif.
ENDFORM.                    " post_data
*&      Form  populate_debit
FORM populate_debit .
DATA: l_debamt(16) type c.
clear: v_index,
       l_debamt.
loop at i_indata from 2.
v_ddeb = i_indata-t_damt.
  v_dcre = v_dcre + i_indata-t_damt.
  v_index = v_index + 1.
    i_acgl-ITEMNO_ACC = v_index.
    i_acgl-GL_ACCOUNT = i_indata-t_glacnt.
    i_acgl-ITEM_TEXT = i_indata-t_descrip.
    i_acgl-DOC_TYPE = 'SA'.
    i_acgl-COMP_CODE = 'BP01'.
    i_acgl-COSTCENTER = i_indata-t_ccenter.
    i_acgl-DE_CRE_IND = 'S'.
    append i_acgl.
    clear i_acgl.
   write v_ddeb to l_debamt currency 'USD'.
    i_currency-ITEMNO_ACC = v_index.
    i_currency-CURRENCY = 'USD'.
    i_currency-AMT_DOCCUR = i_indata-t_damt.
    append i_currency.
    clear i_currency.
   clear: v_ddeb.
endloop.
ENDFORM.                    " populate_debit
*&      Form  populate_credit
FORM populate_credit .
DATA: l_creamt(16) type c.
clear: l_creamt.
  v_index = v_index + 1.
    i_acgl-ITEMNO_ACC = v_index.
    i_acgl-GL_ACCOUNT = c_creacnt.
   i_acgl-ITEM_TEXT = .
    i_acgl-DOC_TYPE = 'SA'.
    i_acgl-COMP_CODE = 'BP01'.
    i_acgl-DE_CRE_IND = 'H'.
    append i_acgl.
    clear: i_acgl.
   write v_dcre to l_creamt currency 'USD'.
    i_currency-ITEMNO_ACC = v_index.
    i_currency-CURRENCY = 'USD'.
    i_currency-AMT_DOCCUR = v_dcre.
    append i_currency.
    clear: i_currency.
    clear: v_index.
ENDFORM.                    " populate_credit
*&      Form  generate_error_report
FORM generate_error_report .
data: credit(16) type c.
WRITE :/1 'Title: Corporate Card Upload'(006),
         / 'Program:'(007), sy-repid,
         /  'Date:'(008), SY-DATUM.
  skip 1.
  uline:/(200).
  format color col_heading on.
  write:/(1) sy-vline,
         (8) 'Posting Date'(020),
         (1) sy-vline,
         (12) 'GL Account'(021),
         (1) sy-vline,
         (17) 'Description'(022),
         (1) sy-vline,
         (17) 'Dollar Amount'(023),
         (1) sy-vline,
         (17) 'Cost Center'(024),
         (1) sy-vline,
         (100) 'Error/Success Message'(028),
         (1) sy-vline.
  uline:/(200).
  format color off.
  write:/(1) sy-vline,
          (8) sy-datum,
          (1) sy-vline,
          (12) '113000',
          (1) sy-vline,
          (17) 'Clearing Account',
          (1) sy-vline,
          (17) v_dcre,
          (1) sy-vline,
          (100) i_error-message,
          (1) sy-vline.
  uline:/(200).
  loop at i_error from 2.
    write:/(1) sy-vline,
           (8) sy-datum,
           (1) sy-vline,
           (12) i_error-t_glacnt,
           (1) sy-vline,
           (17) i_error-t_descrip,
           (1) sy-vline,
           (17) i_error-t_damt,
           (1) sy-vline,
           (17) i_error-t_ccenter,
           (1) sy-vline,
           (100) i_error-message,
           (1) sy-vline.
  endloop.
  uline:/(200).
clear: v_dcre.

Similar Messages

  • Please help error -9808 when downloading apps in itunes store anyone can help me out

    please help error -9808 when downloading apps in itunes store anyone can help me out

    Click here >  iTunes: Advanced iTunes Store troubleshooting
    Then "expand" Specific Conditions and Alert Messages
    Then click 9808

  • Please help--Error message in PSE 7

    When I open PSE 7 I'm getting an error message that says:
    Microsoft Visual C ++ Runtime Library
    Runtime Error Program....Adobe Photoshop, etc
    This application has requested the Runtime to terminate in an unusual way. Please contact the application support team for information.
    and a couple times the message just says Adobe Photoshop has stopped working and must close.
    When I click "okay" the entire program shuts down.
    This started about 10 days ago.  I uninstalled the program and re-installed and it worked okay.  Now today the message is back again.  I've tried unplugging everything, restarting the computer and nothing is working.   I am using Windows Vista.
    Please help.
    Thanks, Doris

    I do not know enough about my computer etc. to
    follow the troubleshooting
    information that you referenced. But  I was able to check my system
    information and everything was okay in that area.  I've been using
    the PSE 7 program for almost a year with no problem until now.  Is there some way that I can talk to
    a "real live" person to get help.   Thank you for taking time to try and help me.  I'm just not computer savvy enough to follow the instructions as given.
    Thanks,Doris

  • Urgent Please help: Error Testing EJB in Universal Test Client

    Hi,
    I have to get this working by tommrow guys - can you please help.
    I wonder if someone can assist. I am new to WSAD 5.1 and am trying to test an EJB I have created with both local and remote interfaces.
    The bean has been created OK and ithe stub files have created for the bean via Generate->Deploy and RMIC code.
    The RJB project has been defind in my WAS server correctly. The JNDI name in the EJB is \ejb\MyEJBHome
    I start the Universal Test client (UTC) via the options on my WAS Server and then click on the JNDI explorer icon option and see my local EJB Folder and an ejb folder (plus others). If I go to the local EJB folder the stub for my local home inteface appears , I am able to click on it and consumme the bean.
    However if I go to the ejb folder I see my home stub for the remote inteface , I do indded need to click on this to get at the remote inteface for my bean. However on clicking it I get a WAS error "null reference found".
    It does not appear to be able to get at the MyBeanHome stub (no reference to it).
    Ok what am I doing wrong! The project build with no errors and I can see all the stubs in the ejbModule folder. Now is the UTC expecting these stubs to be sitting in a particular directory? if so where?

    Hi Problem is with
    public class MyEJBBean extends AbstractStatelessSessionBean {
         private javax.ejb.SessionContext mySessionCtx;
    extends AbstractStatelessSessionBean causes a problem in UTC.
    Regards.

  • HT201210 Please help - error message saying 'filmware file is not compatable', and videos will not transfer from phone to computor.  what can i do?

    As title says, I keep having this error message 'filmware not compatable' and my videos will not load. 
    Can someone please help this very non-tech-savy lady???!!
    Cheers in advance

    Bad news: It sounds as if you were sold a jailbroken iPhone.
    Good news: File a SNAD with eBay. Make sure all your correspondence has been through eBay Messaging. The fact that the seller has been ignoring you will not sit well with them.
    You will get 100% of your money back, including shipping. Paypal will simply seize his funds and return what is yours.
    Lesson: Don't buy a used iPhone.
    It's much worse for the seller. His PayPal and eBay accounts will be frozen. Until he squares up with both you and eBay, he's out of money and out of business.

  • HBR running error (Urgent, please help) Error connecting to Essbase Server

    Hello All Expert
    When running business rule either from Planning Web (Planning 9.3.1.1.8) or EAS, sometime there will be a error "Error connecting to Essbase Server" appear.
    After the error appear, all the can't be run.
    But after a while, problem may disappear and all the rules can be run.
    Anyone having this problem before, please help
    Eric

    I am actively using the EAS, but the error is suddenly come that I think I am not logout by server

  • Please help: Error using Jakarta-tomcat 4.0 beta

    Hi all,
    Could you please help me with a following error?
    I am trying to start Jakarta-tomcat 4.0:
    C:\ Jakarta-tomcat 4.0\bin\startup.bat and I receive the error:
    Catalina.start: LifecycleException: null.open: java.net.BindException: Address
    already in use: JVM_Bind
    LifecycleException: null.open: java.net.BindException: Address already in use:
    JVM_Bind
    at org.apache.catalina.connector.http.HttpConnector.initialize(Unknown S
    ource)
    at org.apache.catalina.core.StandardService.initialize(Unknown Source)
    at org.apache.catalina.core.StandardServer.initialize(Unknown Source)
    at org.apache.catalina.startup.Catalina.start(Unknown Source)
    at org.apache.catalina.startup.Catalina.execute(Unknown Source)
    at org.apache.catalina.startup.Catalina.process(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:30)
    at sun.reflect.InflatableMethodAccessorImpl.invoke(InflatableMethodAcces
    sorImpl.java:48)
    at java.lang.reflect.Method.invoke(Method.java:306)
    at org.apache.catalina.startup.Bootstrap.main(Unknown Source)
    ----- Root Cause -----
    java.net.BindException: Address already in use: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:310)
    at java.net.ServerSocket.bind(ServerSocket.java:305)
    at java.net.ServerSocket.bind(ServerSocket.java:265)
    at java.net.ServerSocket.<init>(ServerSocket.java:201)
    at java.net.ServerSocket.<init>(ServerSocket.java:150)
    at org.apache.catalina.net.DefaultServerSocketFactory.createSocket(Unkno
    wn Source)
    at org.apache.catalina.connector.http.HttpConnector.open(Unknown Source)
    at org.apache.catalina.connector.http.HttpConnector.initialize(Unknown S
    ource)
    at org.apache.catalina.core.StandardService.initialize(Unknown Source)
    at org.apache.catalina.core.StandardServer.initialize(Unknown Source)
    at org.apache.catalina.startup.Catalina.start(Unknown Source)
    at org.apache.catalina.startup.Catalina.execute(Unknown Source)
    at org.apache.catalina.startup.Catalina.process(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:30)
    at sun.reflect.InflatableMethodAccessorImpl.invoke(InflatableMethodAcces
    sorImpl.java:48)
    at java.lang.reflect.Method.invoke(Method.java:306)
    at org.apache.catalina.startup.Bootstrap.main(Unknown Source)
    Thanks a lot
    Yahya

    please do not double post and please post your question to the appropriate forum.

  • PLEASE HELP - error Jdbc/jsp

    Hello
    I have a jsp file myfile.jsp?id=...
    This file was working fine before. I was ready from my testing and i needed to clean my access database's data so i deleted some records manually and copied database again onto live through ftp.
    After this step, myfile.jsp?id=.. was giving me errors only on certain ids for eg. it worked fine myfile.jsp?id=3, but did not work fine for myfile.jsp?id=6 giving this error:
    The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.NullPointerException
         org.apache.jsp.viewprofile_jsp._jspService(viewprofile_jsp.java:320)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    I tried an id which does not exist in database and it worked fine ie. jsp page was executing the html message that i composed for unexisting ids.
    I also checked the records' data and these all look fine and appropriately filled.
    PLEASE HELP - any ideas?
    Thanks lodes
    sabcarina

    You could try adding logging statements or SOPs in the JSP. It would help you locate the line where the exception is occuring.

  • Please help Error while creating JCo

    Hi experts,
    I am working with the tutorial to display the flight details through Bapi in Webdynpro Java . I successfully deployed the project and now when i logon the content Administrator and select my project form local tree where on the JCo Connections tab when i click create button it saying
    500 Internal Server Error
    Failed to process request. Please contact your system administrator.
    The initial exception that caused the request to fail, was:
    java.lang.NullPointerException
    at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.checkStatus(SystemLandscapeFactory.java:991)
    at com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscape.checkStatus(WDSystemLandscape.java:469)
    at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateJCODestinations(NameDefinition.java:285)
    at com.sap.tc.webdynpro.tools.sld.NameDefinition.updateNavigation(NameDefinition.java:250)
    at com.sap.tc.webdynpro.tools.sld.NameDefinition.wdDoInit(NameDefinition.java:157)
    ... 45 more
    Experts please help me what's the problem and what i have to do.
    -Neo

    Hi Neo,
    Sorry for the typo mistake...it is Visual Administrator and not Visual Composer.
    Steps are as follows:
    1. D:\usr\sap\PI1\JC01\j2ee\admin\go.bat
    2. Connect using your administrator password.
    3. Goto Server->services->SLD Data Suppier->HTTP Settings/ CIM Client Generation Settings
    4. Enter details: Host, port, user, password for SLD system.
    5. Save and Test the CIMClient test.
    Regards,
    Sangeeta
    PS: Do award points if you find the reply helpful

  • PLEASE PLEASE HELP ERROR 4261 CAN'T BRUN CD'S

    SOMEONE PLEASE HELP ME I CAN 'T BURN ANY CD'S AFTER INSTALLINF 7.02 ITUNES. I WILL BEGIN TO BURN, IT PROCEEDS TO "CHECKING PLAYLIST" THEN "WRITING SONG" THE CANCELS BURN!!!! I HAVE GONE THRU A WHOLE PACK OF CD'S. oNE ERROR MESSAGE SAID THAT THE CD HAD TO BE CALIBRATED BUT I DON'T KNOW WHAT THAT MEANS?! PLEASE HELP!!!!!!

    I have this problem as well. I can burn CDs at the highest speed using both media player and Sonic. I have:
    1. repaired, uninstalled and reinstalled itunes
    2. uninstalled and reinstalled my CD burner and IDE channels in device manager
    3. disabled my anti-virus software
    4. Updated my burner drivers and intel chipset drivers to the latest version
    5. turned off the DLA on the burner properties
    6. disconnected from the internet
    7. selected the slowest burn speed in itunes
    8. tried 2 different CD brands (memorex and maxell)
    9. uninstalled some misc junk software that was on my pc, just in case it was causing the problem.
    It will setup the cd by burning all the track labels, but stops usually partway through the first song, sometimes it does make it to the second song.
    Any help would be appreciated quite a bit. Seems like a common error, but with few solutions.
    Here is the diag data from itunes:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Computer Corporation Dell DE051
    iTunes 7.0.2.16
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.1
    LowerFilters: PxHelp20 (2.0.0.0), DRVMCDB (1.0.0.1), DLACDBHM (1.0.0.1),
    UpperFilters: GEARAspiWDM (2.0.6.1),
    Video Driver: Intel(R) 82865G Graphics Controller\Intel(R) 82865G Graphics Controller
    IDE\DiskWDCWD1600JB-75GVC0____________________08.02D08, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomHL-DT-STDVD+-RW_GWA4164B_______________E113___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is an administrator.
    D: HL-DT-ST DVD+-RW GWA4164B, Rev E113
    Audio CD in drive.
    Found 7 songs on CD, playing time 19:00 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 03:55:61
    Track 3, start time 06:46:15
    Track 4, start time 09:39:39
    Track 5, start time 12:20:45
    Track 6, start time 14:40:72
    Track 7, start time 16:45:18
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 8 10 16 40 48.
    The drive CDRW speeds are: 8.
    The drive DVDR speeds are: 8.
    The drive DVDRW speeds are: 8.
    Force Optical Power Calibration before burn is turned on in the preferences.
    The last failed audio CD burn had error code 4261(0x000010a5). It happened on drive D: HL-DT-ST DVD+-RW GWA4164B on CDR media at speed 16X.
    Dell   Windows XP  

  • Please Help: Error Message:"IP Configuration: IP Address Already In Use..."

    I'm not sure where to post this, but I'm going to start here... I have been having this issue and its really beginning to scare me.
    *_The Problem:_* I keep getting a message with a RED Exclamation Sign and its titled "IP Configuration" and says this: *123.456.0.1 already using DHCP 123.456.0.100*
    I have been clicking okay, but finally one day got annoyed and called the mac people to get help and... they didnt help a bit.
    So now I am trying to find help from others.... please help. give as many suggestion as possible and i'll continue to google for help. Thanks.
    *So is someone else using my address?*
    *Is someone able to see my screen and information and stuff?*
    *Why is this happening?*
    Please answer these questions if possible.

    To really help, a description of how the network you use to get online is configured is needed. Are you using wireless? Are there other computers that use this network and if so, what operating system are they running? What sort of router and modem are you using? etc.
    So is someone else using my address?
    Either another machine is using your IP address, or something is wrong with the DHCP server.
    Is someone able to see my screen and information and stuff?
    Probably not.
    Why is this happening?
    My guess is that the firmware on your router needs to be updated.

  • Please help error regarding GPShell 1.4.2 with Java Card 2.2.1

    Hi masters..
    please help me regarding GPShell + Smart Card Reader (namely Omnikey Cardman 5321)..
    currently i've a smart card reader (Omnikey) and a sample java card that support for Java Card 2.2.1..
    i've installed Smart card reader's driver, and it has already completely function..
    When i try to run this command in GPShell 1.4.2, i get this report :
    C:\GPShell-1.4.2>GPShell helloInstallgemXpressoProR3_2E64.txt
    mode_201
    gemXpressoPro
    enable_trace
    establish_context
    card_connect
    * reader name OMNIKEY CardMan 5x21 0
    card_connect() returns 0x80100069 (The smart card has been removed, so that furt
    her communication is not possible.
    select -AID A000000018434D00
    Command --> 00A4040008A000000018434D00
    Wrapped command --> 00A4040008A000000018434D00
    select_application() returns 0x00000006 (The handle is invalid.
    Yes, i know that in that script (helloInstallgemXpressoProR3_2E64.txt), there's a script for load helloworld.cap into Java card..
    i tried that because i just want to make sure whether my Java Card run well or not..
    Please help me regarding this..
    Thanks in advance..

    Hi safarmer, thanks for your reply :)..
    Sorry before, i still don't understand about your last reply.. :(
    especially for check the crytpogram.. :(
    could you describe what mean of each line of code from that snippet code?..
    Sequence   : 0002
    challenge  : 598dd3961bfd
    cryptogram : 24cccf18c18437bb
    host       : 5a7787ba91497948
    DEBUG [] - Input to session S-ENC derivation: 01820002000000000000000000000000
    DEBUG [] - S-ENC: adc1163ba2a146fbb94af44c8676fb7cadc1163ba2a146fb
    DEBUG [] - Input to session DEK derivation : 01810002000000000000000000000000
    DEBUG [] - S-DEK: fd01086b6db03bdfe0d5cb61d03ed3abfd01086b6db03bdf
    DEBUG [] - Input to session CMAC derivation: 01010002000000000000000000000000
    DEBUG [] - S-MAC: 3e07b0c8fdfd798a573b9b9889d0cb513e07b0c8fdfd798a
    Input to card cryptogram verification: 5a7787ba914979480002598dd3961bfd8000000000000000
    DEBUG [] - Signature : 24cccf18c18437bb
    DEBUG [] - Cryptogram: 24cccf18c18437bb
    Card cryptogram authenticated=======================================================================================
    =======================================================================================
    i've added script "mode_211" to my script, as follow :
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    select -AID a0000000030000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    delete -AID a00000006203010c0101
    delete -AID a00000006203010c01
    delete -AID a00000006203010c0101
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    card_disconnect
    release_contextbut when i executed that script in the console, i got this :
    C:\GPShell-1.4.2>GPShell helloInstallChan.txt
    mode_211
    enable_trace
    establish_context
    card_connect -readerNumber 2
    * reader name OMNIKEY CardMan 5x21-CL 0
    select -AID a0000000030000
    Command --> 00A4040007A0000000030000
    Wrapped command --> 00A4040007A0000000030000
    Response <-- 6F108408A000000003000000A5049F6501FF9000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4
    f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    Command --> 80CA006600
    Wrapped command --> 80CA006600
    Response <-- 664C734A06072A864886FC6B01600C060A2A864886FC6B02020101630906072A864
    886FC6B03640B06092A864886FC6B040215650B06092B8510864864020102660C060A2B060104012
    A026E01029000
    Command --> 80500000083C4E03633407EC1800
    Wrapped command --> 80500000083C4E03633407EC1800
    Response <-- 0000715457173C2B8FC1FF020002598DD3961BFD8B6F2963C070FF949000
    Command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Wrapped command --> 8482010010E17B69E2A3DFEA320B0B457657362614
    Response <-- 9000
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C0101D259A163E654B99900
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c01
    Command --> 80E400800B4F09A00000006203010C0100
    Wrapped command --> 84E40080134F09A00000006203010C01094A9BF13AD2CC3E00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID a00000006203010c0101
    Command --> 80E400800C4F0AA00000006203010C010100
    Wrapped command --> 84E40080144F0AA00000006203010C010156679B9711B83FAB00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    install -file HelloWorld.cap -nvDataLimit 500 -instParam 00 -priv 2
    file name HelloWorld.cap
    Command --> 80E602001F09A00000006203010C0107A0000000030000000AEF08C60201A8C80201
    F40000
    Wrapped command --> 84E602002709A00000006203010C0107A0000000030000000AEF08C60201
    A8C80201F400D35F07F1D11A31E500
    Response <-- 6985
    install_for_load() returns 0x80206985 (6985: Command not allowed - Conditions of use not satisfied.)What it does mean?..
    so, can i reset THE RETRY COUNTER of my Java Card?..
    could you give me an example script that reset the Retry Counter?..
    Thanks in advance..
    Sorry i really confuse.. :(

  • Please help:error w/ adobe download assistant"application could not be installed because another..."

    Application could not be installed because another application is already being installed. Please finish the first application before preceeding with this one". It says something like that. I hit the download button and then hit save. It downloaded something, but that was it. So I went back and hit "save and run" and this message appears. I am not sure how to run what I saved initially if that is even the problem. Please help. I need to use this program tonight - the trial of CS5 Extended. Thank you!

    Have you tried restarting your computer?  It is possible you have a pending update or even another piece of software being installed which is preventing the installation.

  • Please Help - Error message when trying to open itunes

    Hi
    Can someone help pls? I was in the middle of upgrading my version of itunes and my computer crashed. Now when I try to open itunes I get an error message as follows: 'iTunes has encountered a problem and needs to close. We are sorry for the inconvenience'.
    I don't know what to do! I am worried I have lost all of my music!?

    hiya!
    'Quick time failed to initialize. Error # - 2095. Please make sure QuickTime is properly installed on this computer'.
    okay, let's try a careful standalone QT reinstall:
    download and save a copy of the QT 7.1 standalone installer to your hard drive. (we'll run the install from there rather than online.) switch off antivirus and antispyware applications prior to the install.
    Quicktime 7.1 Standalone Installer
    if that install goes through okay, does your itunes launch properly again?
    (if you get an error message on the QT standalone reinstall, let us know what it says. include error message numbers if you're getting any.)
    love, b

  • Please help: error message says ipod cannot be read from or written to

    Hi
    I have been using my iPod Video for a couple of months now without any problems, until yesterday. I tried to sync it after I downloaded a couple of new songs when I got this error message: "Attempting to copy to the disk 'Jason's Ipo' failed. The disk could not be read from or written to."
    The 'Jason' in 'Jason's Ipo' is me.
    Any help would be very much appreciated!
    2002 PC   Windows XP  

    Thanks, that was helpful.
    While I was waiting for your answer I restored my iPod to its original settings. The screen is now black and white and the font changed to something smaller. Is this normal? How do I put the playlists and songs back in? Please post a link if there is a page on this subject.
    Thanks again.

Maybe you are looking for

  • Will apple fix my cracked screen for free?

    How much does it cost for apple to fix a broken iphone 4s screen? Or will they do it for free?

  • Oracle 8i NLS Solaris 7

    Hi, I am getting a little desperate here. I have a Solaris 7 box here and want to have a database that supports the following features: *) Support of european special characters (Umlaute, ...) *) Correct sort order of those characters I can type Umla

  • Is printing to generic text printer and hand-coding the report possible?

    We have created Oracle Reports that are formatted to print to Zebra printers. We code the report in Report Layout and the text printed is for generic text printers, what our Zebra printers requires. Can this be done with APEX reports? Example: ^xa ^i

  • Thumbnails for QuickTime MOV files?

    Hi Is there a way to make Windows Explorer create thumbnails for QuickTime MOV files? I'm really desperate to get a solution. Any help will be appreciated. Thanks Alfred

  • "java Web Service from WSDL" just hands me a SOAPElement, no java mappings

    Another beginner question. I've used jdev and built a WSDL starting from a somewhat complex xsd. I've used the wizard "Java Web Service From WSDL" taking defaults. It seems to correctly generate class files for all my xsd types. It produces a fancy l