Regarding error message in a different locale

Hi
I have 2 applicaions .
one contains task flow containing 1 jsff having one input text required property set to true.
other contains page template having 2 links to switch language based on locale.
If I use another adf application and import task flow it works well.
but if I import task flow into webcenter portal application as adf jar file and insert TF as region then it gives error message always in english and ok button in appropriate locale.
If I use another adf application and import task flow it works well.
can you suggest some solution for this.
JDEV - 11.4

Yes I am using default error messages generated by adf framework . for ex. required="true"
for changing locale my code is:
  public void setLocaleEnUS() {
    // change the locale
    Locale newLocale = new Locale("en", "US");
    FacesContext fctx=FacesContext.getCurrentInstance();
    fctx.getViewRoot().setLocale(newLocale);
    setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
  public void setLocaleZhHK() {
    // change the locale
    Locale newLocale = new Locale("zh", "TW");
    FacesContext fctx=FacesContext.getCurrentInstance();
    fctx.getViewRoot().setLocale(newLocale);
    setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
  }

Similar Messages

  • MM invoice reversal-"Message No. M8396-Different local currencies CAD USD

    Hi,
    My client created a PO with two line items and both the line items have the plants belonging to the same company code with CAD currency. But the second item in the PO needed an account assignment and they are using a cost center belonging to other company code with USD curr. They have posted an invoice against this PO and now when they are trying to reverse/cancel the invoice they are not able to do. They are getting an error "Message No. M8396 - Different local currencies CAD USD".
    Is there anyway that they can do this?
    Regards,
    Raj/
    Edited by: Raj Ph on Jun 8, 2009 5:44 PM

    Hello,
    Refer SAP
    Note 592312 - MIRO: Termination M8396 'Different local currency'
    Note 457247 - Missing translation for messages
    Regards,
    Ravi

  • Regarding Error message in ME_PROCESS_PO_CUST badi for validation.

    hi Friends,
    I am Using ME_PROCESS_PO_CUST badi for validation in Purchase order (ME21N),
    For that I implemented PROCESS_ITEM method which fires during each row now i  add another validation in same implementation for plant  should be same through out the all line item. Now following code is woking fine but when for second line item user changese plant then it shows error message as per logic which is fine but even after changing plant to correct one the error message is still coming why is it so?
    following is my current validation code
    method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM.
      DATA:ls_poitem TYPE mepoitem,
           ls_poitem_set TYPE mepoitem.
      DATA:ls_poheader TYPE MEPOHEADER.
      DATA:lm_poheader TYPE ref to IF_PURCHASE_ORDER_MM.
      DATA:w_mara TYPE mara.
      DATA:IT_ZMMTBL039 TYPE STANDARD TABLE OF ZMMTBL039 ,
           WA_ZMMTBL039 TYPE ZMMTBL039 .
      DATA:ls_poitem1 TYPE mepoitem.
      DATA:V_KUNNR1 TYPE KNA1-KUNNR.
      DATA:V_KUNNR2 TYPE KNA1-KUNNR.
      DATA:W_WERKS(4),
           w_werks_tmp(4),
           w_flag(1).
      ls_poitem = im_item->get_data( ).
      lm_poheader = im_item->GET_HEADER( ).
      ls_poheader = lm_poheader->GET_DATA( ).
      IF ls_poitem-werks IS NOT INITIAL.
        w_werks = ls_poitem-werks.
        import w_flag to w_flag from MEMORY ID 'FLAG'.
        if w_flag is initial.
          w_flag = 'X'.
          EXPORT w_werks_tmp FROM w_werks TO MEMORY ID 'MEMO1'.
          export w_flag from w_flag to MEMORY ID 'FLAG'.
          clear: w_flag.
        endif.
      ENDIF.
      IMPORT w_werks_tmp TO w_werks FROM MEMORY ID 'MEMO1'.
    break swaroopb.
      IF ls_poitem-werks NE w_werks.
          MESSAGE E010(zparts) with 'Different plants are not allowed in single PO.'.
      ENDIF.
      CLEAR: WA_ZMMTBL039,w_mara.
      REFRESH:IT_ZMMTBL039[] .
      SELECT *
        INTO TABLE IT_ZMMTBL039
        FROM ZMMTBL039
       WHERE bsart EQ ls_poheader-bsart.
      IF sy-subrc EQ 0.
        CLEAR: WA_ZMMTBL039,w_mara.
        SELECT SINGLE *
          INTO w_mara
          FROM mara
         WHERE matnr EQ ls_poitem-MATNR.
        IF SY-SUBRC EQ 0.
          READ TABLE IT_ZMMTBL039 INTO WA_ZMMTBL039 WITH KEY  bsart = ls_poheader-bsart
                                                              mtart = w_mara-mtart
                                                              spart = w_mara-spart.
          IF SY-SUBRC NE 0.
            MESSAGE E009(zparts) WITH ls_poitem-MATNR w_mara-spart ls_poheader-bsart .
          ENDIF.
        ENDIF.
      ENDIF.
    end method

    Hello Swarup
    Since you want to compare all items together (having the same plant) I would suggest to implement this logic either in method CHECK or POST of the interface.
    However, if you want to make your checks within the PROCESS_ITEM method then you should change your logic.
    It does not make sense to work with the ABAP memory within a BAdI implementing class because the class itself is your "memory".
    I would use the following logic to implement your validation:
      lo_poheader = im_item->get_header( ).  " retrieve header instance
      lt_items = lo_poheader->get_items( ).   " retrieve all items
      ls_detail_x = im_item->get_detail( ).  " details of currently processed item
      LOOP AT lt_items INTO ls_item.
        ls_detail = ls_item-item->get_detail( ).
        IF ( ls_detail-werks NE ls_detail_x-werks ).  " validation failed
        " do something...
       ENDIF.
      ENDLOOP.
    However, I would prefer to do this kind of validation in CHECK or POST method.
    Regards,
      Uwe

  • Regarding Error Message for the purchase order

    Hello SRM Experts,
    The Status of the purchase order is Archived and PO is not transferred to the backened system.  I ran the transaction bbp_pd_po_transfer_exec in P36 and check the error message in T-Code RZ20, i get the following error in RZ20 for the PO as:
    1.  Error reading the export data for EXEC of purchase order
    2.   and in P36 system, when i press F5, popup message appears - Error while reading PO in backened system. Inform System administrator.
    I want to know, why this problem appears and how to resolve this issue ?
    Thanks in Advance,
    Regards,
    B.Satyanarayan Reddy

    Hello,
    I checked in the bbp_pd and there also i got the popup message as Error while reading PO in backened system. Inform System Administrator.
    I also checked with the backened team, everything seems to be fine there.
    The thing is that PO is not transferred to the backened system since 13.02.2008 to till date and it stuck up in the EB system.
    Kindly let me know, why this problem occurs and what should i do to resolve the issue.
    Thanks in advance,
    Regards,
    B.Satyanarayan Reddy

  • Query regarding Error Messages

    Dear All,
                Anyone please tell me how to display 'Error Messages in PCUI'.
    I tried using " Message MESAGEID type MESSAGETYPE number MESSAGENUMBER " but it did not work.
    Please provide some pointers on the above.
    Regards,
    Vijay

    You can use the the function module  'CRM_MESSAGE_COLLECT' to add a message to the application log. These are then displayed in the pc ui.
    For example if you are in an application like opportunities which is working on a one order object you can use something like the following to display a message :
    message w123(mymessageclass) into lv_dummy.
    call function 'CRM_MESSAGE_COLLECT'
            exporting
              iv_caller_name = gc_object_name-orderadm_h
              iv_ref_object  = iv_header_guid.
    Regards, Paul
    Don't forget to award points if this helps

  • Regarding Error Message while releasing Process Order

    Dear friends,
                              While releasing process order i m getting following error message.
    " Storage location in PUB(loc1) is not same as storage location (loc2)''.
    how to remove this error and release the order.
    Thanks & regards,
    Sandip Sonar

    Hi Sandip,
    The error message LP 099 'Stor. location in PUB X is not the same as prod.stor. location Y' is issued when the system finds  inconsistancy in your customizing of the couple storage location - Production supply area for your components in your process order.                                                                               
    The logic of the storage location determination is the following ...
    The issuing storage location is determined in three steps:                                                                               
    1. First, the issue storage location of the material to be issued   (MARC-LGPRO) is transferred to the material master from the  MRP    data if it is filled.                                                 
    2. The system overwrites this value with the issue storage location from the bill of material (RC29P-LGORT, STPO-LGORT) if it is     filled.                                                               
    3. If the operation to which the component is assigned in production  order contains a work center with supply area, the storage    location is transferred from this supply area (PVBE-LGORT).     However, this transfer is only carried out if storage location  data (MARD) is maintained for this storage location for the    material.                                                                               
    The logic of the supply area determination:                              
    Priority of supply area determination for WM staging is as follows :     
    1. Supply Area of Work Center               (highest priority)   If no supply area defined look to                                     
    2. Supply Area in item of Bill of material  (second priority)   If no supply area defined look to                                     
    3. Material Master View MRP2                (third priority)         If no supply area defined -> Error message LP 099                                                                               
    I hope this helps in sorting the issue.  
    Regards,
    Mauro

  • Regarding Error Message in RunTime Workbench

    Hi All,
    Could you please tell me how to resolve the following error.
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error Application/UNKNOWN/APPLICATION_ERROR - application fault
    While doing testing in the Integration engine. This is JDBC to SOAP scenario.
    Regards,
    Sai

    Hi Sai,
    I think as per the error message, the WebService is sending back the response.
    Probably you have to use JDBC adapter as Synchronous to capture the respons eof WebService.
    But generally JDBC sender is used to be Async,and I think you have used it the similar way.
    You need to build the Async to Sync Bridge for JDBC to SOAP communication.
    Please refer below links for more details
    http://help.sap.com/saphelp_nw04/helpdata/en/43/65d4dab39b0398e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/45/20d251c20a0732e10000000a155369/content.htm
    The above links are focused for JMS adapter but you could be able to use these Adapter modules for other types of adapters also.
    AF_Modules/RequestResponseBean  &
    AF_Modules/ResponseOnewayBean
    I think the abouve modules need minumum SP 16 onwards
    Either way it can be achivable with BPM also
    Thanks
    Swarup

  • Regarding error message in AXIS --Solution Urgently Required

    I tried to install axis and when I run the server and enter
    http://localhost:8080/axis/index.html
    I get the following exception and the desired result page http://localhost:8080/axis/happyaxis does not open .
    Plz help -----
    The exceptions are :
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Can't find bundle for base name i18n, locale en_US
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:207)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:198)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:138)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2459)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:132)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:593)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:593)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:126)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)
    root cause
    java.util.MissingResourceException: Can't find bundle for base name i18n, locale en_US
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:837)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:727)
         at java.util.ResourceBundle.getBundle(ResourceBundle.java:577)
         at org.apache.jsp.index_jsp.getRB(index_jsp.java:72)
         at org.apache.jsp.index_jsp.getMessage(index_jsp.java:168)
         at org.apache.jsp.index_jsp.getMessage(index_jsp.java:106)
         at org.apache.jsp.index_jsp.getLocaleChoice(index_jsp.java:82)
         at org.apache.jsp.index_jsp._jspService(index_jsp.java:296)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:198)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:138)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2459)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:132)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:593)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:593)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:126)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:595)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:432)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:954)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)

    Yes I am using default error messages generated by adf framework . for ex. required="true"
    for changing locale my code is:
      public void setLocaleEnUS() {
        // change the locale
        Locale newLocale = new Locale("en", "US");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      public void setLocaleZhHK() {
        // change the locale
        Locale newLocale = new Locale("zh", "TW");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      }

  • Regarding error message BTE_01

    Hi Sap Experts
    Please help me for following error. I never seen before
    one of my user is trying to post GR using t-code MB1C and getting following error message
    BTE_01: Account 21000027 must be posted as group account 21000000 with trading partner.
    Message no. /SIE/SF_FI_CL_01106
    How can i slove it.
    thank you

    If you are doing it like this.
    message id 00 type 'E' number 001 with 'This is the error'.
    then you will get the behavior that you are seeing.
    If you do it like this.... then it will be what you want.
    message e001(00) with 'This is the error'.
    Regards,
    Rich Heilman

  • Keep getting error message about my computers local host name already in use

    I keep getting the following random error message popping up on my desktop. The last time it said the same thing, but imac-2.local? Haven't changed anything to my knowledge.
    This computer’s local hostname “glen-cumbuss-imac-2.local” is already in use on this network. The name has been changed to “XXXXX-XXXXXXX-imac-3.local”.

    Sometimes this message means that you have two simultaneous connections to the same local network: probably Ethernet and Wi-Fi. Disconnect the Ethernet cable or turn off Wi-Fi.
    If that's not the issue, shut down any virtual machines (Parallels, VMware, or VirtualBox) that are running.
    Sometimes there's no identifiable reason for the behavior.
    Rename the computer in the Sharing preference pane.

  • Regarding Error Message Deletion

    Hi All,
      We have lots of Fault Messages at R/3(application Error Messages) in our present client. SO when we delete this client and create a new client, will these application errors will alos be deleted or will these errors be persistent. ours is WAS 6.20.
    Thanks and Regards,
    Sundar

    Hi,
    YOu can backup table SNAP and try to restore it in new client if possible.
    THanks
    Amit lal

  • Regarding error message

    hi,
    When I created a simlple XL Reporter and clicked on save, then later after closing it i try to open the same file it is showing this error message:
    An error occured while trying to open (filename) . type mismatch.
    How to rectify this. It was not like this before.
    thanks in advance
    regs priya

    Hi Priya,
    Did you use any special characters in your file? Sometimes using special charaters result in file corruption in XL-Reporter.
    Regards,
    Hamsa

  • Regarding error message received in sunFire-25k

    Pls help in showlogs -d E message is Record stop has been detected in domain E.whats the warining all about
    Record stop has been detected in domain E.

    Yes I am using default error messages generated by adf framework . for ex. required="true"
    for changing locale my code is:
      public void setLocaleEnUS() {
        // change the locale
        Locale newLocale = new Locale("en", "US");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      public void setLocaleZhHK() {
        // change the locale
        Locale newLocale = new Locale("zh", "TW");
        FacesContext fctx=FacesContext.getCurrentInstance();
        fctx.getViewRoot().setLocale(newLocale);
        setPreferredLocale(FacesContext.getCurrentInstance().getViewRoot().getLocale());
      }

  • Time Capsule backup constantly failing with error message - error message 11 but different file.

    Hi
    I have had problems with my backup failing since 12 June
    Most of the time I get error message 11 (have had error message 31 once) and each time it is a different file. The last failure gave this message in console
    17/06/2011 13:20:11          com.apple.backupd[1743]          Indexing a file failed. Returned 200 for: /Applications/Microsoft Office 2011/Office/CalendarCore.framework, /Volumes/Time Machine Backups/Backups.backupdb/Stephen Dalziel’s iMac/2011-06-16-232227.inProgress/10F26F18-689F-47D2-959E-964D07E82445/Macintos h HD/Applications/Microsoft Office 2011/Office/CalendarCore.framework
    I have followed Pondini C3 by excluding the file from the first message but then failure occurred with a different file so excluded that and it failed again.
    Went through repair A5 - that took an age even connecting via ethernet - still not working.
    I have to confess that before I got to Pondini troubleshooting I googled the problem and a forum said delete latest and partial backups from sparse bundle - I did this via Finder and now I can't get rid of them from trash - discovered via Pondini I shouldn't have done this and tried E6 but without success.
    What are my options?
    I can use a computer but technical jargon is like Hieroglyphics to me so if you can reply in simple plain English that would be useful

    Stephen Dalziel wrote:
    a forum said delete latest and partial backups from sparse bundle - I did this via Finder and now I can't get rid of them from trash - discovered via Pondini I shouldn't have done this and tried E6 but without success.
    Did you delete the Latest alias, and/or the most reccent time-stamped backup?  If so, your backups are toast. 
    Your only option is to erase the Time Capsule's disk and let Time Machine start fresh.  See To erase everything on the Time Capsule’s internal disk in #Q5 of Using Time Machine with a Time Capsule.

  • Regarding error message from a transaction

    Hello all,
          I have a scenario where i need to collect all the error message from a trasaction and display it in a pop up.
          i am calling a function module and inturn calling transaction 'FB08' using bdc. i may get one or more error message. if there are more than one messages from my function module then i need to display this messages in a popup.
        Currently i am displaying one message using 'message ID' syntax at the bottom. what should i do to display error messages in a popup if there are more message
    Thanks,
    Raju N.

    use following fm.  
    CALL FUNCTION 'COPO_POPUP_TO_DISPLAY_TEXTLIST'
          EXPORTING
          TASK             = 'DISPLAY'
            titel            = 'Creation Log'
        IMPORTING
          FUNCTION         =
          TABLES
            text_table       = i_documents_log.

Maybe you are looking for

  • Sender mail Adapter - Log in Error

    Hi, I am facing the below error while communicating with the mail server using the POP3 transport protocol. exception caught during processing mail message; java.io.IOException: unexpected password response; read -ERR Logon failure: unknown user name

  • R12 iStore integration with third party content management system

    We are facing several challenges and are already a month behind for Go-Live with the iStore implementation. Hence, I wanted to check if anyone has worked on a similar setup 1. iStore being used only for cart functionality 2. All content, web pages ar

  • Cannot Download FIFA 13 on my Lumia 820

    The game is available on the app store, it says the space needed is 971 MB. I have more than 2GB space in my phone memory. As i initiate the download, get a message that I have reached the storage capacity and need to clear more space. please help

  • Rendering a PDF/Mime Type in cfDIV

    Hi there I have a cfform that looks at files in a directory. The template is meant to allow users to select a document and and view it on the page. The relevant code is: Main Page: <cfform name = "name"> <cfinput name="displayName"  id="displayName"

  • Why am I seeing outgoing and incoming text from another phone number that is on my plan?

    Why am I seeing outgoing and incoming text from another phone number that is on my plan?