Currency COnversion Error: RUN_LOGIC:Member LC not exist.......Please help

Hi All,
I am trying to run currency conversion and following is my script logic.
*RUN_PROGRAM CURR_CONVERSION
      CATEGORY  = %CATEGORY_SET% 
      TID_RA = %TIME_SET%
      RATEENTITY = GLOBAL
      CURRENCY = %RPTCURRENCY_SET%
      OTHER = [ENTITY=%P_CC_SET%]
*ENDRUN_PROGRAM
I have also tried the following reading from other post
*RUN_PROGRAM CURR_CONVERSION
      SELECT(%RptCurrency_SET%,"[ID]",RptCurrency,"[CURRENCY_TYPE]='R'")
      CATEGORY  = %CATEGORY_SET% 
      TID_RA = %TIME_SET%
      RATEENTITY = GLOBAL
      CURRENCY = %RptCurrency_SET% 
      OTHER = [ENTITY=%P_CC_SET%]
*ENDRUN_PROGRAM
My RPTCURRENCY dimension had following entries
ID REPORTING CURRENCY_TYPE
USD Y R
EUR Y R
LC       L
Also my Currency Conversion data package selection is as follows:
P_CC: ALL
CATEGORY: ACTUAL
RPTCURRENCY: ALL
TIME: 2008.JAN
Following is the error
RUN_LOGIC:Member "LC" not exist
Failed
Application: PLANNING Package status: ERROR
Please help.
Thanks,
Diksha.

Hi All,
My LGX files is as follow
*RUN_PROGRAM CURR_CONVERSION
SELECT(,[ID],RptCurrency,[CURRENCY_TYPE]='R' )
CATEGORY =
TID_RA =
RATEENTITY = GLOBAL
CURRENCY =
OTHER = [ENTITY=]
*ENDRUN_PROGRAM
If I am not wrong it should have substituted vales for variable %RptCurrency_SET% to USD and EUR.
Please let me know.
Diksha.
Edited by: Diksha Chopra on Dec 22, 2010 5:27 AM

Similar Messages

  • Error: Javax.mail does not exist, please help

    I have copies mail.jar and activation.jar in the classpath directory as instructed, then try to compile but got the below error: package javax.mail does not exist
    please help.
    G:\CRD>javac SendMailBean.java
    SendMailBean.java:22: package javax.mail does not exist
    import javax.mail.*; //JavaMail packages
    ^
    SendMailBean.java:23: package javax.mail.internet does not exist
    import javax.mail.internet.*; //JavaMail Internet packages
    ^
    SendMailBean.java:43: cannot resolve symbol
    symbol : class Session
    location: class SendMailBean
    Session l_session = Session.getDefaultInstance(l_props, null);
    ^
    SendMailBean.java:43: cannot resolve symbol
    symbol : variable Session
    location: class SendMailBean
    Session l_session = Session.getDefaultInstance(l_props, null);
    ^
    SendMailBean.java:48: cannot resolve symbol
    symbol : class MimeMessage
    location: class SendMailBean
    MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
    ^
    SendMailBean.java:48: cannot resolve symbol
    symbol : class MimeMessage
    location: class SendMailBean
    MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
    ^
    SendMailBean.java:50: cannot resolve symbol
    symbol : class InternetAddress
    location: class SendMailBean
    l_msg.setFrom(new InternetAddress(p_from)); // Set the From address
    ^
    SendMailBean.java:53: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.TO,
    ^
    SendMailBean.java:54: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_to, false));
    ^
    SendMailBean.java:57: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.CC,
    ^
    SendMailBean.java:58: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_cc, false));
    ^
    SendMailBean.java:62: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.BCC,
    ^
    SendMailBean.java:63: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_bcc, false));
    ^
    SendMailBean.java:68: cannot resolve symbol
    symbol : class MimeBodyPart
    location: class SendMailBean
    MimeBodyPart l_mbp = new MimeBodyPart();
    ^
    SendMailBean.java:68: cannot resolve symbol
    symbol : class MimeBodyPart
    location: class SendMailBean
    MimeBodyPart l_mbp = new MimeBodyPart();
    ^
    SendMailBean.java:72: cannot resolve symbol
    symbol : class Multipart
    location: class SendMailBean
    Multipart l_mp = new MimeMultipart();
    ^
    SendMailBean.java:72: cannot resolve symbol
    symbol : class MimeMultipart
    location: class SendMailBean
    Multipart l_mp = new MimeMultipart();
    ^
    SendMailBean.java:83: cannot resolve symbol
    symbol : variable Transport
    location: class SendMailBean
    Transport.send(l_msg);
    ^
    SendMailBean.java:98: cannot resolve symbol
    symbol : class MessagingException
    location: class SendMailBean
    } catch (MessagingException mex) { // Trap the MessagingException Error
    ^
    19 errors

    Another person who doesn't understand how to set CLASSPATH.
    Move those JARs into the same directory as your SendMailBean.java and do it like this:
    javac -classpath .;mail.jar;activation.jar -d . *.java
    java -classpath .;mail.jar;activation.jar SendMailBeanRead how to set CLASSPATH properly:
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html

  • Error message ORA-27101 shared memory realm does not exist,Please help me

    My oracle(oracle 8.1.6) is installed successfully,But when I connect to the database it shows me the error:
    ORA-27101 shared memory realm does not exist.
    How can I deal with it?Please help me.

    The OTN Customer Service - Feedback forum answers questions relating to the OTN site and other customer service issues. It does not answer technical or installation questions. Please post your topic in the appropriate forum.
    Best Regards, OTN Team

  • ORA-27101: shared memory realm does not exist - Please help!!!!!

    OS : Win 2000 server
    After good installation, when I want to connect instance ORCL by using SQLPLUS worksheet (as system/manager), I got this 2 error messages :
    ORA - 01034 : Oracle not available
    ORA - 27101 : shared memory realm does not exist
    In regedit: Ora_home = "my true path to Orahome directory
    Default_SID = ORCL
    Thank you for help !!!!!!

    Can you connect using plain SQL*Plus (sqlplus.exe)? Your database may not be started, try this:
    c:\sqlplus /nolog
    SQL>connect / as sysdba
    SQL>startup
    Then try connecting as one of the default users:
    SQL>connect scott/tiger

  • Javax.servlet does not exist  (please help)

    i was going to try my first example nad follwing head first
    package com.myweb.trying;
    import  javax.servlet.*;
    import  javax.servlet.http.*;
    import  java.io.*;
    public class Serv1 extends HttpServlet {
         public void doPost(HttpServletRequest request,HttpServletResponse response)throws IOException,ServletException{
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("Shutup and see this");
              String c = request.getParameter("color");
              out.println("<be>the color selected is"+ c);
    }on giving the command
    C:\project1\app1>javac -classpath c:\Tomcat6\lib\servlet-api.jar:classes:. -d classes src\com\myweb\trying\Serv1.java
    this is what i got
    src\com\myweb\trying\Serv1.java:3: package javax.servlet does not exist
    import  javax.servlet.*;
    ^
    src\com\myweb\trying\Serv1.java:4: package javax.servlet.http does not exist
    import  javax.servlet.http.*;
    ^
    src\com\myweb\trying\Serv1.java:7: cannot find symbol
    symbol: class HttpServlet
    public class Serv1 extends HttpServlet {
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                                                         ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class ServletException
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                         ^
    6 errors please help what im doing wrong
    i have latest ver.6 of tomcat installed

    exchange the : in your classpath with a ;
    windows, in its infinite wisdom, uses a semi-colon as the path separator. the colon is what you would use if you were on unix, macosx, or linux.
    == eldrich

  • Transporting Process Chain - error  Source system does not exist

    Hi,
    I tried to transport a local PC by itself (not including its main meta chain) since I have only done modifications in the local PC only. In the PC, there are PSA Processing, ODS Processing, ODS Activation, ABAP Program w/ variants and Infocube Rollup.
    However, I got the following transport error: Source system does not exist
    =======
    Diagnosis
    Source system  is not known.
    System Response
    The imported data for DataSource  was deleted again because the referenced source system does not exist and no mapping is defined in table RSLOGSYSMAP on an existing productive source system.
    Procedure
    Create the referenced source system in the Data Warehousing Workbench or define mapping to a known source system in table RSLOGSYSMAP.
    You get to maintenance using Tools -> Conversion of the logical system names.
    ============
    I have checked at the table RSLOGSYSMAP and all source system mappings are in order.
    And the weird thing is, upon checking the PC itself in the transport-to box, I can activate it without any error.
    FYI, we are currently upgrading to BI Accelerator. Am not sure if this could be one of the reasons.
    Any inputs and tips are highly appreciated and will be rewarded with points accordingly.
    Thanks

    Hi,
    This error is due to the fact that the
    mapping table for the after import (RSLOGSYSMAP) is not correct maintained in PB7 system.
    You need to maintain table RSLOGSYSMAP in each system
    You can find the steps to do it in the attached note 127326:
    o  Maintain table 'RSLOGSYSMAP' in the target BW with view
       'V_RSLOGSYSMAP' and enter as 'original source system' the logical name of the source system in the source BW and as 'target source system' the logical name of the source system in the target BW.
       This maintenance is required since it allows the correct source system reference of the InfoSources to be transported.
    This source system reference in turn is absolutely necessary to activate the transfer structure.
       Example:
       Source BW with source system AAA.
       Target BW with source system BBB where the source system AAA
       corresponds to the source system BBB.
       Entry in RSLOGSYSMAP in the target BW:
       Original source system: AAA, target source system: BBB.
       Give the DDIC user in the source BW in client 000 the
       authorization profile S_RS_ALL to create BW objects.
    Cheers
    Rajesh

  • Unable to create shopping cart due to currency conversion error.

    Hi,
    We are currently working in a extended classic scenario. We have about 8 users connected under a common entity ( dept). Out of which for one user (user1) we are able to create the shopping cart and able to run the entire procurement cycle the entire cycle.
    When we are trying to create a SHC with any other user ( user2 to 8)  its giving the errors like
    1) Currency Conversion Error ( to GBP). Please inform help desk.
    2) Error in account assignment for item 0.
    Attributes for all the users ( user1 to user8) are same and we are not getting any error in the attribute check as well.
    Please suggest.

    Look up note 419423 + related notes to repair incorrect SRM users. What you report sounds a bit strange. A debugging session might be helpful too. Especially the 2nd error looks like something 'home-made'...

  • Error: Selected disk does not exist (21) Module-SRE-700

    Already tried everything that the recovery cisco commands, anyone have idea how to solve the problem of the print shown in print?
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    ServicesEngine boot-loader> install_key waas-accelerator-4.4.5c.4-k9.bin     
    Keyfile Size 202814577 over limit 32768 will not burn into flash
    ServicesEngine boot-loader> verify                                            
    Loading disk:/bzImage ... Unable to load image
    Error: Selected disk does not exist (21)
    Unable to boot image
    Unrecognized command
    ServicesEngine boot-loader>                                                   
    #service-module sm 1/0 session
    Trying 172.20.245.1, 2067 ... Open
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    Please enter '***' to change boot configuration:
    Trying to reset Service Module SM1/0.
    May  7 11:27:33.055: %SRE_SM-6-STATE_CHANGE: SM1/0 changing state from SERVICE_MODULE_STATE_ERRQ to SERVICE_MODULE_STATE_SHDN
    Initializing memory #1. Please wait...
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    Please enter '***' to change boot configuration:
    Detect and Initialize network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Finding (hd1,3)/296e03bc-3236-4a68-a178-688e56400a1e, failed
    Local install not supported
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait ................... done.
    May  7 11:29:03.331: %SM_INSTALL-6-INST_RBIP: SM1/0 received msg: RBIP Registration RequestLoading disk:/bzImage ... Unable to load image
    Error: Selected disk does not exist (21)
    Unable to boot image
    þ
    Initializing memory #1. Please wait...
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  
    Now booting from primary boot loader....  
    Authenticating boot loader....  
    Primary Boot Loader Authenticated - booting....  
    Please enter '***' to change boot configuration:
    Detect and Initialize network device
    Backup current platform configurations....
    SRE step 1 - SM registration...
    Finding (hd1,3)/296e03bc-3236-4a68-a178-688e56400a1e, failed
    Local install not supported
    Response - no installation needed (len: 422)
    SRE Installation Not Needed
    Restoring orignial configuration...
    Updating flash with bootloader configuration.
    Please wait ................... done.
    May  7 11:30:31.339: %SM_INSTALL-6-INST_RBIP: SM1/0 received msg: RBIP Registration RequestLoading disk:/bzImage ... Unable to load image
    Error: Selected disk does not exist (21)
    Unable to boot image
    ú
    Initializing memory #1. Please wait...
    Initializing memory #2. Please wait...
    This may take a minute....
    Serial ATA Port 0 : Hitachi HTE545050B9A300                
    DDR Memory 4096 MB detected
    Intel(R) Core(TM)2 Solo CPU    L3400  @ 1.86GHz
    BIOS SM 3.52.8,  BIOS Build date: 02/08/2011
    System now booting...
    Please wait... 
    Please press P to select Primary Boot Loader ...  
              or S to select Secondary Boot Loader ...  
              or wait to boot from default configuration ...  

    Hi,
    Opened a tac and managed to get the resolution of the problem. For those with the same problem reported by me above just follow the procedure below:
    1. uninstall existing SRE-V software
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/sre_v/1.5/user/guide/software.html#wp1055364
    2. run sm-hw-util to set sata mode to IDE
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/sre_v/1.5/user/guide/software.html#wp1091438
    3. configure a static, 32bit route to point the service module IP address to the SM slot/0 interface
    ip route 255.255.255.255 SM slot/0
    4. install WAAS:
    http://www.cisco.com/en/US/docs/app_ntwk_services/waas/waas/v421/module/installation/guide/wssmcfg.html#wp47040
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/sre_v/1.5/user/guide/software.html#wp1091438

  • Error ACLContainer: 65315 does NOT EXIST in  the Object Cache for parentID:

    Expert,
    I did the following steps to upgrade the OWB repository from 10g to 11g
    • Created a dummy workspace in the 11.2 repository
    • Created users in the destination environment
    • Run Repository Assistant against the 11.1 source database
    • Then selected *“Export entire repository to a file”* and selected the MDL(10g) to import
    After 99% of completing I have got the below error
    Error ACLContainer: 65315 does NOT EXIST in  the Object Cache for parentID: 65314
    Please let me know the solution.
    Thanks,
    Balaa...

    Hi I had the same error and worked on it for almost a week with no success but there is few work around for this try it it might work for you.
    Step 1>Run a health check on OWB 10.2 enviroment(make sure you clone your OWB 10.2 enviroment and then do this healthcheck ,these checks are tricky )
    refer
    Note 559542.1 Health Check of the Oracle Warehouse Builder 10.2 Metadata Repository
    This will give you info about your missing ACL
    Step 2> download these two scripts fixLostACLContainer.sql ,fixAllACLContainers.sql
    please refer :
    Note 559542.1 Health Check of the Oracle Warehouse Builder 10.2 Metadata Repository
    OWB 10.2 - Internal ERROR: Can not find the ACL container for object (Doc ID 460411.1)
    Note 754763.1 Repository Cleanup Script for OWB 10.2 and OWB 11.1
    Note 460411.1 Opening Map Returns Cannot find ACL Containter for Object
    Note 1165068.1 Internal Error: Can Not Find The ACL Containter For for object:CMPPhysical Object
    It might resolve this ACL issue but it did not work for me.
    If none of these work then
    Perform export from design center of OWB 10.2 and import through design center of OWB 11.2.(ONLY OPTION)
    It worked for me.
    Varun

  • HTTP Error 404 :File does not exist

    Hi all,
    On Test instance we are not able to open the help file,it give an error
    HTTP Error 404 :File does not exist
    can anybody have solution for this
    it's very urgent
    Thanks
    shekhar

    I have changed the note server definition in the external app to add the mail directory in front of the mail file name 'mail/mufile.nfs' and I get the following error:
    05/04/21 15:15:07 lotusnotes: [instance=(null), id=97176201941,7] ERROR: LotusServiceSession: getConfigProperties(): An error occured
    while reading/ retrieving the properties from the the configuration file.
    05/04/21 15:15:07 lotusnotes: [instance=(null), id=97176201941,7] ERROR: Unhandled exception in SOAP call
    oracle.portal.provider.v2.ProviderException: LotusServiceSession: getConfigProperties(): An error occured while reading/ retrieving the
    properties from the the configuration file.

  • Excise Invoice creation error -Billing document does not exists

    Dear Experts,
    I have created supplementary sales order, billing with refernece through sales order by VF01.
    Now I want to create Excise Invoice but system gives error Billing Document does not exists
    I have checked billing document in VBRK table & it is showing in table.
    My item categroy is L2N -and set it to C
    I have assigned Billing type under Outgoing excise invoice ->Assign billing type to delivery type still my excise invoice is not generating.
    Pl. guide me.
    Thanks
    Trupti

    Resolved my problem.
    Actually in Billing item categroy if you put SD Doc. Catg. as M you can do excise invoice even if you have not created the
    outbound delivery.
    So cycle will be Supplementary Sales Order->VF01 with ref. to SO->J1IIN -Excise invoice creation.
    Thanks to all.
    Trupti.

  • Error "Item 000010 does not exist" while creating sales order in VA01

    Dear All,
    As per customer requirement we are trying to validate shipping data( item level) and unloading point( item level)  by customer enhancement.
    Enhancement:       V45A0003
    Function Module:    EXIT_SAPMV45A_003
    INCLUDE:                ZXVVAU05
    Inside include we have written validation code that if user enters any wrong value for shipping data or unloading data
    system will throw error message accordingly.
    It is working fine and we are getting error message if wrong shipping data or unloading data is entered.
    But after the error message is displayed if we try to save the sales order  again system throws a STOP message as a POPUP
    saying "Item 000010 does not exist".
    Now,if we enter proper shipping data or unloading data and try to save the salesorder it is throwing error "Item 000010 does not exist"..
    Please let me know your valuable input on this.
    Regards
    Arindam
    Edited by: Arindam Ganguly on Mar 11, 2010 1:55 PM

    It sounds like your error routine has prevented the insertion of the data in VBAP or XVBAP internal tables.  Therefore, upon return to the screen and SAVE, SAP is examining the VBAP or XVBAP table, comparing to the 'I' index table probably, and finding that there is supposed to be an item 10, but it's not in the necessary table(s).    This may be resulting because your internal tables are now inconsistent.
    Look at where your inserted error coding is occurring...you may want to move that to the SAVE_DOCUMENT_PREPARE routine in MV45AFZZ, so that everything will have been built, and a final check of the content will stop the sales order save until the data is corrected.
    Edited by: Breakpoint on Mar 11, 2010 3:29 PM

  • Sales Order Error Message 'Product does not exist in system'

    Hi Gurus,
    we recently upgraded from CRM 4 to 7.0. There is a ECC attached (which was also upgraded from 4.7 to 6.0 before).
    Scenario: materials are replicatd from ECC to CRM. All mandatory customizing objects were initially loaded succesfully.
    Because of the upgrade we already have "old" products in CRM. We requested a single product from ECC, the bdoc went through with green. The product can be found via commpr01 and also on database in comm_product. But when try to add the product to an sales order e.g. quotation, it gives the error message "product does not exist in the system.
    We then tried to delete that product using the report com_product_delete_single. When entered the selection criteria for that report, we used the f4-valuehelp to enter the product. We found the product and then executed the report. But gives the message 'product not found'.
    We also created a product for testing purposes directly in crm, but it shows the same behaviour in sales orders and for the deletion report.
    Please help me with that issue. Your help will be highly appreciated!!!
    Kind regards
    Hannes

    Solved with the help of SAP.
    Keywords: COM_PRODUCT
    COM_PRODUCT_GUID_GET_INTERNAL
    CONVERSION_EXIT_PRID1_INPUT
    CRM_ORDERADM_I 501
    Relevant notes:
    Note 1449146 - Dump While Creation IP via WebUI
    Note 1445079 - Unable to add products to contract
    The notes do not exactly described our issue but the code corrections were still relevent for us.

  • Short dump with error FORM "CLEAR_SPECIAL_TABLES" does not exist"

    Hi All,
    We are experiencing an issue in our development system. We have recently upgraded to ECC6 from ECC5. While executing FBL3N transaction, we are getting a dump with description Syntax error in program "RFEPOS00 ".
    The following syntax error occurred in program "RFEPOS00 " in include "RFPOSFZ0  "                                                                           
    line 1072:                                                                     
    "FORM "CLEAR_SPECIAL_TABLES" does not exist"                                   
    I checked in our previous systems, the subroutine CLEAR_SPECIAL_TABLES exists with an empty body in include RFPOSFC1.
    And it is created by DDIC.
    As per the comments in the include RFPOSFC1, we tried to generate the program RFXPRA33. But it is giving same error FORM "CLEAR_SPECIAL_TABLES" does not exist"  .
    Any help to resolving this issue will be appreciatable.
    Thanks in advance.
    Edited by: Kumar.ktk on Jun 8, 2010 1:36 PM

    Hi,
    We just had this issue after an upgrade and the solution was to compare the coding with an unupgraded system,
    there we found that this missing form exists in an include with this documentation:
    Function LINE_ITEMS_SPECIAL_FIELDS
    caller L0F14I01, AFTER_SAVE_T021S, tcode O7R3
    In case of errors: Start RFXPRA33
    FORM CLEAR_SPECIAL_TABLES.
    ENDFORM.
    After we executed program: RFXPRA33 all errors were resolved,
    Hope this helps,
    Mickey

  • Currency conversion Error in 0sd_c15

    Hello Experts,
       I am having a problem in the ETl of the cube 0SD_C15 .Its showing Currency conversion error
    0MEANTODAY while loading data.Please help me in this regard
    Prasad

    Hi
    You will find the transfer global settings for the source system where you are extracting the data.
    Select the source sytem, right click,go to transfer gloabal settings, (select the currencies in this)
    Then Reload the data into the cube,
    After, Reloading the data into the cube replicate the master data, and activate the mappings,and load the data.
    I think, this will work....
    Regards
    Sudheer

Maybe you are looking for

  • Special characters problem

    I am having the file-xi-proxy inerface. In the input file i have one field called "description"(50 in length). The vendor is giving the input file with special characters in the description field. XI is able to read the file. BUt during the mapping i

  • 1. WHere can i find my synced Notes

    Where do i find the Synced Notes & bookmarks in iCloud? Also my phone starts to sync over wifi with itunes without any power conected to the phone. I thought it only works when ower is conected?

  • Custom-sized photobooks

    I have already been printing my photobooks through Apple, which have a few size options, but at least one doesn't correspond to Kodak or Shutterfly (10x13). I would like to continue using Apple for consistency on size and other attributes Apple offer

  • 240 Gt with Cuda enabled and I can't get AME (6.0.1) to encode the file

    I have 240 Gt with Cuda enabled and I can't get AME (6.0.1) to encode the file, when I switch to software only it will encode. Any help on how to get to encode in Cuda mode? 

  • QT Rookie   Edit - Add to Selection and Scale does not work

    Nothing happens when I try to add a photo to a section of a movie. Following page 35 of the QT 7.3 User Guide: I copy the photo from QT View Photo. I select the section of the movie I want to paste it in. I position the playhead over the start of the