Syntax error after convert data : LSMW

Hi,
  I am doing a LSMW for MM01. After the convert data step I get the following syntax error:
The following syntax error was found in program
/1CADMC/SAP_LSMW_COMV_00000168
For typr "C", a max length specification of 65535 is allowed.
Can anybody help me in figuring out where I am going wrong.
Thanks,
Nilesh

just execute ur lsmw in this, there is tab button user menu next to execute button , click on that , u come across a pop screen where u have a check box in that just select generate conversion program and display conversion program. and press enter.
afterwards select the radio button generate conversion program , it will shows the program in this do systax check. u will findout the error .
do syntax check by running step generate conversion programe,
and also check source fields step , r u giving correct length or not for each field.
Thanks
null

Similar Messages

  • LSMW - inforecord / material master - syntax error when converting data

    Hi all,
    I used LSMW for classification uploads (material master, vendor master) so far - it was easy :-). But..I tried to create/update inforecords by object 0060, method 0000, program RM06IBI0. I declared source structure, source fields, field mappings and conversion rules (in my batch input I use only fields which we defined as required for infrecs.), files etc. LSMW reads the data but when I try Convert data - the is syntax error in program /1CADMC/SAP_LSMW_CONV_00000018 and dump with message "For type "C", a maximum length specification of 65535 is allowed." When I tried to create material master (object 0020, method 0000), Convert data command worked the same.
    Any help would be appreciated. (? sample from your batch input file which works well to compare)
    Tomas

    Hi Tomas,
    Please do me a favor. In the initial screen of LSMW, there is a pushbutton for 'Personal Menu'. Once you press that it will pop-up a screen with a bunch of checkboxes. Select the checkbox for 'Display Conversion Program' and press enter. Now you should see the 'Display Conversion Program' option in your initial screen. Select that and go into the conversion program. Put a break-point in the conversion program on the statement 'perform execute_data_conversion.'.
    Debug it and find out exactly where the error is occuring. Perhaps that will help you figure out what the error is, if not, let the forum know where you hit the error. Even looking at the dump, you should get more information.
    Srinivas

  • HP Prime Syntax Error in Convert

    Hello,
    I have a new HP Prime Graph Calculator.  My old 48G was dying on me, so decided to make the switch.  It is so much different than what i am used to.
    First Off, this is my HP Prime info :
    Software Version : 2014 3 31 (6030)
    Hardware Version : A
    CAS Version : 1.1.0-46
    One function i use alot on my 48G was converting units.
    So I tried starting using Convert on my HP Prime and when i tried to convert i got a Syntax Error.  Looked around in forums and at some place it said to update firware, which I did.
    Now I get 2 errors.  First when I press "Convert" I get a new error : Bad Argument Count
    Then when I try to convert i get the same Syntax Error.
    I think I know where the problem resides for the Syntax Error, when converting it should put the units in ( )  I think.  But for some reason for lenght it does not, for other units it does (km2).
    I tried the function on the Virtual Calculator on windows and on the virtual one everything works, but on my physical one, I still get the same 2 errors (even when the units are in ( ), without any results.
    Can anyone help please ?
    Thank you
    This question was solved.
    View Solution.

    Please let us know some examples of expressions that you tried, what you expected, and what happened instead.  ALSO please let us know what modes your Prime is in (e.g. RPN Entry mode, or CAS view), because Prime behaves very differently depending on the Home Settings and CAS Settings.  Which app is the currently active app (shown in the display's title bar) can also alter Prime's behavior.  When you let us know these things, we'll be able to discern why you are getting syntax errors.
    If I were a betting man, I'd wager a nickel that the problem is due to your Prime being in RPN mode.  If so, you have to use RPN syntax, not algebraic syntax.  Example: 5_ft, Enter, 1_in, Enter, CONVERT --> 60_in (just like on your HP 48).  Do I win a nickel?
    Disclaimer: I do not work for HP. I'm just another happy HP calculator user.
    -Joe-

  • Syntax Error after creating enhancements for subroutine

    Problem:
    Creating enhancement sections gives a syntax error when creating enhancement options and implementations for a subroutine and then ceating enhancement options and implementations for the call to that same subroutine.
    <p>
    Syntax Error:
    "Different number of parameters in FORM and PERFORM (routine: SET_LAYOUT, number of formal parameters: 2, number of actual parameters: 1)
    </p>
    <p>
    Here's the following scenario:
    </p>
    <p>
    A subroutine is defined in a program.
    The subroutine is called within the same program.
    </p>
    <p>
    I then executed these steps:
    <br>     1. Defined an enhancement section around the subroutine definition
    <br>     2. Defined an enhancement section around the subroutine call.
    <br>     3. Implemented the enhancement section around the subroutine definition and add an additional parameter.
    </p>
    <p>
         Currently, this gives a syntax error as expected, since the call to the subroutine needs 1 more parameter.
    </p>
    <p>
         4. Implemented the enhancement section for the subroutine call.  I change the call in the implementation so it passes the new parameter.
    </p>
    <p>
    A syntax check to this gives an error.  The syntax checker is not only checking the new implementation, but also the original subroutine that should have been overwritten.
    </p>
    <p>
    The enhancement sections use the same enhancement spot, and the enhancement implementations use the same implementation.
    </p>
    <p>
    I tried various combinations of using different enhancement spots and/or implementations, but all give the same syntax error.  I tried separating the subroutine in a different include and  retried my testing, but it still gave the same syntax error.
    </p>
    <p>
    Here's the sample code I first created to try troubleshooting the problem:
    </p>
    <p>
    <pre>
    ENHANCEMENT-SECTION ZEP_Z_MICHAEL_02 SPOTS ZES_Z_MICHAEL .
         PERFORM set_layout
              CHANGING
              wa_layout.
    END-ENHANCEMENT-SECTION.
    $$-Start: ZEP_Z_MICHAEL_02----
    $$
    ENHANCEMENT 2  ZEI_TEST_SECTIONS.
         "inactive version
         PERFORM set_layout
         using 'X'
              CHANGING
              wa_layout.
    ENDENHANCEMENT.
    $$-End:   ZEP_Z_MICHAEL_02----
    $$
    ENHANCEMENT-SECTION ZEP_Z_MICHAEL_01 SPOTS ZES_Z_MICHAEL STATIC .
    FORM set_layout
    CHANGING p_wa_layout TYPE slis_layout_alv.
    p_wa_layout-zebra = 'X'.
    wa_layout-no_colhead = 'X'..
    p_wa_layout-colwidth_optimize ='X'.
    wa_layout-window_titlebar = 'Woot'.
    ENDFORM. "set_layout
    END-ENHANCEMENT-SECTION.
    $$-Start: ZEP_Z_MICHAEL_01----
    $$
    ENHANCEMENT 1  ZEI_TEST_SECTIONS.
         "inactive version
    FORM set_layout
    using p_test type boolean
    CHANGING p_wa_layout TYPE slis_layout_alv.
    p_wa_layout-zebra = 'X'.
    wa_layout-no_colhead = 'X'..
    p_wa_layout-colwidth_optimize ='X'.
    wa_layout-window_titlebar = 'Woot'.
    ENDFORM. "set_layout
    ENDENHANCEMENT.
    $$-End:   ZEP_Z_MICHAEL_01----
    $$
    </pre>
    </p>
    <p>
    Please let me know if you think I am doing something wrong. 
    </p>
    <p>
    Thanks, <br>
    Mike
    </p>
    Edited by: Michael Herman on Mar 8, 2010 8:11 PM

    Yes, Sandra.  That is what did and it worked with no syntax errors!
    I'm not sure if this is getting off topic or not, but the SAP documentation(taken from the SAP help after pressing F1 on the keyword static in ERP6) seems misleading:
    "The STATIC addition is intended for the enhancement of data declarations, while the statement ENHANCEMENT-POINT without the STATIC addition is designed for the enhancement of executable coding."
    I would think the enhancement section ZEP_Z_MICHAEL_02 would fall under the category of executable code, while the enhancement section ZEP_Z_MICHAEL_01 would fall under the category of declarative code.
    Unfortunately, all the SAP enhancement sections I come accross are dynamic.  The SAP help explains the reasoning for this:
    "In contrast to the statement ENHANCEMENT-POINT, the addition STATIC of the statement ENHANCEMENT-SECTION can only be used with maximum caution for changes of data declarations, because a replacement and no completion is carried out. Especially application development within SAP should not use the addition STATIC at all with ENHANCEMENT-SECTION as the change will be active in the entire customer system. "
    I do not know what the word "completion" means in the previous quote, so I can't determine why it would matter.  Regardless, if a developer wanted to change a standard subroutine declaration, they would also have to mod an enhancement section to change it to static.  This seems to defeat the purpose of using enhancements, but maybe this scenario is not what enhancements were intended for.

  • Fox syntax errors after SEM 600 Patching to SP12

    Greetings all you experts out there..
    Pre patching to SP12,  all our Fox formulas using the following syntax to convert a fiscal period to a fiscal year worked without problem:
    PER = 0092008.
    YEAR = PER/0001000.
    This would return a value for YEAR = 0002008.
    Yes, it worked with the 3 leading zero's....!!!
    Post patching, system no longer likes this syntax and throws out an syntax error message.
    Please understand that I have no difficulty in changing the code - say using SUBSTR - to simply get the 4 digits only relevant to the fiscal year.......BUT...because we have these fox functions all over our solution, we were hoping for a more general fix which then would not require changes (and thus transports to production) etc.....
    So, any ideas on how to fix WITHOUT changing the Fox code...???
    Thanks and regards,
    Rael

    Hi Hans,
    Sorry, well spotted.....a typing mistake...
    Yes, the fiscal period is in format 2008009....and when you apply following Fox statement:
    PER = 2008009.
    YEAR = PER / 0001000.
    the result is
    YEAR = 0002008.
    and this is where the Fox formula editor is throwing up the syntax error....because it expects a 4 digit number for the year, i.e., no leading zeros.......
    Remember, these Fox formulas have beein working correctly for years, and it is only after patching that we are receiving the syntax error....
    Regards,
    Rael

  • Too many syntax errors after upgrade to ECC 6.0

    Hello,
    We have made a test upgrade from 4.6C to ECC 6.0. OS --> AIX 5.3; DB --> DB2 8.2. After upgrade we have a lot of syntax errors, why? Anybody has the same problem? Do I must to check all my programs?
    Thanks.
    Martin

    Hello, here there is an example in Z program, but I have seen in no Z programs too with includes or userexits in the second example.
    Thanks.
    Martin.
    first example:
    Error in the ABAP Application Program                                                                               
    The current ABAP program "GBT10CO0" had to be terminated because it has        
    come across a statement that unfortunately cannot be executed.                                                                               
    The following syntax error occurred in program "ZGGBR000 " in include "ZGGBR000
    " in                                                                          
    line 279:                                                                      
    ""SYST-MODNO" must be a character-type data object (data type C, N, D, "       
    "T or STRING) ."                                                               
    second example:
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLGBL5" had to be terminated because it has       
    come across a statement that unfortunately cannot be executed.                                                                               
    The following syntax error occurred in program "GBT10FI0 " in include "GBT10FIB
    " in                                                                         
    line 1288:                                                                    
    "The FORM "SEND_CMPLX_DATA_015" does not exist."

  • Query syntax error after multiprovider change

    Hi everyone,
    I removed key figures from a multicube, changed a query on top afterwards and saved it. The key figures are no longer in the key figure list of the query in the Query designer, and are no longer used in any place within the query.
    Now, I'm getting a syntax error on query execution, since the compiled query still contains a reference to the old key figures. Regeneration via RSRT or saving under a new name doesn't work, and to delete the generated report I need a developer key.
    Any ideas?
    Regards,
    Tilman

    Hi Shashank,
    thanks for your response.
    I did try the "check query" button, it didn't return an error. When executing the query via rsrt, I get a dump due to "Syntax error in program GP48VM7K0MSF08DRO2382A2PSTI ". The program still contains data type references to the removed infoobjects. When checking the program via SE38, you get just that syntax error.
    I'm looking for a way to clean these things up. Even when creating a new query on the aggregation level (I was talking about a multiprovider earlier, which is located underneath), the error pops up. I activated all the objects along the way, with no effect.
    Regards,
    Tilman

  • Syntax error after 6.20 SP53

    Hello,
    we get a syntax error in previously error-free BSP pages after basis support package SP53 6.20.
    The line with error is
    <yhr_pd_pm:button onClick="return fSubmitNewWindow('<%=<l_mgr_detail>-act_ioper%>', '<%=l_selval%>')"
                      text="<%=<l_mgr_detail>-act_text%>"
                      enforce_width="X" />
    The error message is
    After "")", there must be a space or equivalent character (":", ",", ".").
    Adding a dot after the closing bracket
    '<%=l_selval%>')."
    resolves the error message but will obviously be a JavaScript syntax error. Adding a simple space (as the error message suggests) does not help. But adding a semicolon works:
    '<%=l_selval%>');"
    It seems like SAP is trying to check code inside of a parameter string to a BSP extension tag.
    This is similar to the problem described in note 868333 and in this forum threads
    Menu Bar
    Syntax error while activating BSP with OTR in htmlb element
    BSP error after SP53
    but is a new problem.
    We already implemented note note 851647 and got rid of the first bunch of problems but than this one came up.
    Hope this helps you when you get the same problem.
    Best regards,
    Christian.

    Well, I finally resolved the issue. The problem was actually against another method of the same class. The method had some comments/remarks in the header and therefore found it to be different to the new version. The code was identical thouugh. It's about time some logic was built in to ignore comments and just compare the code. Anwyay, problem solved, I compared the other method and the lock was released. Suddenly, the Method DO_PREPARE_OUTPUT did have code behind it, so I did not actually have to do anything after this.
    Regards
    Jason

  • Syntax error after applying NOTE 2028544

    Hello Experts,
    We implemented Fiori My Timesheet application and it was working fine except while saving the time data from Fiori we were getting short dump saying conversion error (found during debugging) as mentioned in below screenshot.
    To overcome this error we implemented SAP NOTE 2028544 in ECC using SNOTE but it was throwing an syntax error in a interface /IWBEP/IF_MGW_MED_ODATA_TYPES. While during version comparision we found out that the NOTE has removed a line from the program (Below screenshot) which is causing the error. Also we are currently in SAPK-20009INIWBEP version of IW_BEP.
    Can anyone please let us know what wrong we did and how to overcome this situation since we cannot revert back the changes because it is asking for access key to manually change the code and when we are trying to reset the NOTE implementation using SNOTE then we are getting syntax error in the above program?
    Thanks in advance.
    Regards,
    Rahul
    Tags edited by: Michael Appleby (but please start doing this on your own)

    Hello Pankaj,
    While checking the NOTE 2032088 and the correction instructions, it was mentioned that the prerequisites is to apply NOTE 2028544 (The one in which we are facing error).
    But the main problem now is we applied the NOTE 2028544 but it caused a change in a program (mentioned earlier) and we activated it forcefully. Now when we are trying to open My Timesheet application it is giving error. When we try to reset this NOTE implementation then we cannot do because it is saying there is a syntax error in your program.
    We are now in deadlock situation where we cannot move forward or backward
    Regards,
    Rahul

  • SYNTAX error please refres data.

    spool on to 'E:\Batch\Apps\TOG_DET\Logs\replication.out';
    login xyz xyz on alawdin3000.xxx.com;
    refresh replicated partition TOG_DET.GLDetail to WFStest.COMBINED at alawdin3000.xxx.com all data;
    spool off;
    it says syntax error as' . ' Could any one help me how to fix that. I tried in many many ways.
    Regards
    Kumar
    Edited by: user9252492 on May 12, 2010 6:41 AM

    as Glenn Mentioned try putting a single quote around the Host alias that you are using
    'alawdin3000.xxx.com'
    If that doesn't work I would try using the host name or the IP name instead.
    There is a section in the tech ref about using host names when doing transparent partioning, which to me implies (if they have a section devoted to it) that their may be issues around it.
    Using Host Name Aliases When Partitioning
    If you want to use network aliases for the data source or data target names, you must make sure that the aliases are propagated to all computers on your system. Otherwise, use the full server name.
    To propagate an alias to all the computers on your system, edit the /etc/hosts file (on UNIX systems) or the %WINDIR%/system32/drivers/etc/hosts file (on Windows systems), adding an entry with the IP address, followed by the host name, followed by the alias.
    For example, if you want to use an alias abcdefg.hijk.123 for a system with host name hostname.domainname having IP address 172.234.23.1, then the host file entry should be:
    172.234.23.1 hostname. domainname abcdefg.hijk.123
    In case of multiple aliases, append the aliases following the hostname. For example, if you want to use multiple aliases abcdefg.hijk.123 and lmnopqrs.tuvw.456 for a system with host name hostname.domainname having IP address 172.234.23.1, then the host file entries should be:
    172.234.23.1 hostname. domainname abcdefg.hijk.123 lmnopqrs.tuvw.456
    172.234.23.1 hostname. domainname lmnopqrs.tuvw.456 abcdefg.hijk.123
    Notes
    Do not use localhost as an alias to specify source and target server names.
    The user should have root or admin privileges for the system to edit the hosts file.
    See Also

  • Syntax error after upgrade to ECC6

    Hi,
    I have customized infotype and BAPI in SAP 4.6. After upgade to ECC6, my Infotype is working fine, but my BAPI give this error : 
    The following syntax error was found in the program SAPLZBAPI_HR :
    "INCLUDE report "%_HR9000" not found."
    If I goto SE38 to recreate %_HR9000, SAP not allow me to continue and appear message "Do not use any special character".
    May I know how to resolve this problem ?
    Thanks a million.
    Regards,
    Eric

    Hi,
    In the ECC6.0 version, it seems that one of the INCLUDE that was generated for that infotype in 4.6 C ending.. with words....HR9000 was not transported or not found for that infotype. Please check all the includes..
    In SE38 you can enter the characters like %, so that error  is coming
    % means LIKE PATTERN ....HR9000 .
    Hope you understood.
    Regards,
    ANJI

  • Autoconfig error after convert to charachter set

    Hi all;
    I made character set converstion by using adadmin to American_America.UTF8 to WE8ISO8859P9... after this convertion i want to edit my xml file which is in application node.. I edit xml file and i change parameter to:
    American_America.UTF8 to American_America.WE8ISO8859P9... I just didnt change one parameter..
    its :
    <dbcset oa_var="s_dbcset">UTF8</dbcset>
    now when i run autoconfig its gives me that error:
    ************* Start of AD Character-set Conversion session *************
    AD Character-set Conversion version: 11.5.0
    AD Character-set Conversion started at: Thu Feb 12 2009 09:25:19
    ERROR DESCRIPTION:
    (*******FATAL ERROR*******
    PROGRAM : (/data/CLON/prodcomn/admin/install/CLON_bmuhapp/txkFrmUTF8.pl)
    TIME : Thu Feb 12 09:25:19 2009
    FUNCTION: TXK::Process::run [ Level 3 ]
    MESSAGES:
    Command error: <rc> = 512, <command> = /data/CLON/prodappl/ad/11.5.0/bin/adncnv /data/CLON/prodora/8.0.6/forms60/admin/resource/TR/fmrweb_utf8.res utf8 /data/CLON/prodora/8.0.6/forms60/admin/resource/TR/frmweb_WE8ISO8859P9.res WE8ISO8859P9
    STACK TRACE
    TXK::Error::abort('TXK::Error', 'HASH(0x815425c)') called at /data/CLON/prodappl/au/11.5.0/perl/TXK/Common.pm line 299
    TXK::Common::doError('TXK::Process=HASH(0x80c7a68)', 'Command error: <rc> = 512, <command> = /data/CLON/prodappl/ad/11...', undef) called at /data/CLON/prodappl/au/11.5.0/perl/TXK/Common.pm line 314
    TXK::Common::setError('TXK::Process=HASH(0x80c7a68)', 'Command error: <rc> = 512, <command> = /data/CLON/prodappl/ad/11...') called at /data/CLON/prodappl/au/11.5.0/perl/TXK/Process.pm line 434
    TXK::Process::run('TXK::Process=HASH(0x80c7a68)', 'HASH(0x8ae50a4)') called at /data/CLON/prodcomn/admin/install/CLON_bmuhapp/txkFrmUTF8.pl line 212
    eval {...} called at /data/CLON/prodcomn/admin/install/CLON_bmuhapp/txkFrmUTF8.pl line 112
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    I found this note:
    Subject: Running "perl adcfgclone.pl appsTier" Failed on TXKFRMUTF8.PL, fmrweb_utf8.res utf8 Doc ID: 417562.1
    in the note, the parameter is in my xml file is %s_at_cset% =WE8ISO8859P9
    But i controlled one other instance and this parameter whihc we made convertion successfully its same as upper... My db is UTF8 now.. it can be cause of this error?
    Thanks alot
    Helios

    American_America.UTF8 to American_America.WE8ISO8859P9... I just didnt change one parameter..
    its :
    <dbcset oa_var="s_dbcset">UTF8</dbcset>What about the following parameters?
    <APPL_TOP_CSET oa_var="s_at_cset">WE8ISO8859P9</APPL_TOP_CSET>
    <NLS_LANG oa_var="s_tools_nlslang">American_America.WE8ISO8859P9</NLS_LANG>
    <NLS_LANG oa_var="s_nlslang">American_America.WE8ISO8859P9</NLS_LANG>
    <NLS_LANG oa_var="s_weboh_nlslang">American_America.WE8ISO8859P9</NLS_LANGAs applmgr user, set NLS_LANG to the new value manually and run AutoConfig again.
    Note: Make sure you backup your existing context file before modifying it.

  • Syntax error in reading data from another DSO

    Hi all,
    I have written a end routine to read business area from another dso the code is as follows.
    DATA:lw_c_wa type tys_TG_1-BUS_AREA.
        LOOP AT RESULT_PACKAGE ASSIGNING -BUS_AREA  = lw_c_wa-bus_area.
          refresh lw_c_wa.
               ENDIF.
        endloop.
    but i am getting the following error:
    E:"FROM ...", "CONNECTION ...", "BYPASSING BUFFER", "PACKAGE SIZE ...",
    or "UP TO ... ROWS" expected after "LW_C_WA".
    i am not able to debug this.
    Pls any input on this.
    Regards,
    suyash

    Try to debug using DTP. (Goto DTP ---> Execute Tab ---> Choose processing mode as "Serially in Dialog Process (For Debugging).
    Or goto transformation -
    > Extras --> Display generated code ---> put a break point here and execute the DTP. Then you can debug the code.

  • SRDemo in tomcat 5.5.x got ERROR after added data bindings

    hi all,
    it is success to deploy the project into tomcat 5.5.x, and it works fine when no data bindings added into jspx.
    after i added a data bindings,
    it works find at embed OC4J, but not in tomcat 5.5.x
    and tomcat comes this error:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: javax.naming.NameNotFoundException, msg=Name SRPublicFacade is not bound in this Context
    how can i bound the SRPublicFacade into tomcat5.5.x ?
    Many Thanks!
    Best Regards,
    S. H. Wong
    Edited by: user9218028 on Apr 13, 2012 10:04 PM
    Edited by: user9218028 on Apr 13, 2012 10:09 PM
    Edited by: user9218028 on Apr 13, 2012 10:13 PM
    Edited by: user9218028 on Apr 13, 2012 10:14 PM

    Please help,
    Many Thanks.
    Best Regards
    Wong Sai Ho

  • Overflow Error After Sending Data

    Dear Expert,
    I have a problem, After sending the data, I receive error "ExecuteBaseLogic::Error in RunLogicAgainstSelection: Overflow"
    Please let me know if somebody have idea to fix the problem.
    This the captured screen:
    ==================================================
    Book Name:Production Mill Final v10.xlt
         Application     :     FINANCE
         Status     :     Success
         Submitted Count     :     1
         Accepted Count     :     1
         Rejected Count     :     0
              - Error Message -
    ExecuteBaseLogic::Error in RunLogicAgainstSelection: Overflow
    Thanks,
    Ruswandi

    Hi Ruswandi,
    Do you have a logic that is being called in the Default logic? The Default logic runs every time you send data, try to comment out those logic one by one and then send data again to see which is causing the overflow problem.
    Hope this helps,
    MVS

Maybe you are looking for

  • Is my pap2 faulty

    Hi Any pap2 user out there who can answer this question for me? I think I'm right that the unit has to log into the SIP server to get a dial tone but I should still be able to dial 4 stars for the IVR menu? When I plug my phone into the unit it is de

  • Weird clipping issue..Please help!

    I am recording vocals, and the wave forms are not clipping. They are healthy, good looking waves, but when played at 0 dB, some parts clip in the meter. I can turn the volume down to avoid the clipping, but then the lead vocal get too quiet. What sho

  • Multiple business group situation

    Hi, I am working on a project for a company having multiple BG. HR manager, whose in formation resides in BG lets say BG1 wants to views the record of employees who are residing in another BG say BG2. Can anyone provide step by step guidance in this

  • Production Order - relese rejected

    Hi SAP Gurus while releasing production order it shows the following error due to which i can not release the order "Object ACT 1000921 0010 has system status WCRE (Work center until release).  According to this status, transaction 'Release operation

  • Error - oracle.dss.d4o.administration.D4OConnectionException-D4O-1103 Error

    Hi We have the following configuration installed, 1. Oracle 10G enterprise edition 10.2 2. Application Server Control 10.1.2.0.2 3. Analytic Workspace Manager 10.1.04 The D4OSYS user is unlocked, but still when we try to manage the discoverer catalog