EWA Setting in DEV

Hi All,
I am trying to activate EWA for ERP DEV system and presently I don't have QAS and PRD system available for me.
I have done following steps -
1. Install Solution Manager EHP1 and applied all latest patches in ABAP and Java stack.
2. Did Initial setup of solution Manager by using SOLMAN_SETUP. Created Solution XYZ with role Production.
3. Maintained my DEV system in system landscape of SOLMAN and it's logical component ZERP in XYZ solution.
4. All RFC's like SM____BACK, SDCC_OSS which require for EWA are working.
5. Added DEV system in SOLMAN, SMSY->Environment -> Solution Manager Operation -> Administration SDCCN.
6. Also executed the report RCCTOOL in DEV system and did all the requirements suggested by this report. The only last requirement is pending i.e. EWA setup which is showing in yellow.
All above steps are went smooth and without error.
But I am not getting EWA schedule in my Solution XYZ.
I am trying to activate it in DSWP->Solution_manager -> Solution_monitoring -> EWA -> Create, but it's not showing my DEV system. Its only showing EWA for Solution XYZ.
I am also unable to diagnose this problem. Do I missing any important step in this.
I have already gone through the documentation of EWA, I think I am at final stage. So please suggesst some dignostic area where I can check that everything is correct or not?
Please reply with your expert suggestions.
Regards,
Ramesh.

Dear Ramesh,
Because you are using a DEV system and not a production system, when you are adding the system to the SOlution you need to right click and select "Put in Solution". Only production systems are automatically "Put in Solution". The quickest way to tell is if the system in the solution is not highlighted Green, then it is NOT put in solution, and you will need to select the system with aright click and take the option, "Put in Solution". Once this is done, the system should be visible for creating EWA reports, and not just the solution, which is the only option you have currently. Please check for this missing step.
Regards,
Paul

Similar Messages

  • EWA Report for DEV/QAS System (if possible)

    Hi Experts,
    I would like to know if it is possible to generate EWA reports for DEV/QAS Systems. I believe i have set up all the necessary RFCs for our SOLMAN to communicate with the DEV/QAS systems.
    When I try to create an EWA session in SDCCN of the DEV/QAS system, the only destination i can choose is "NONE" which is local.
    Any idea how I can send this to my SOLMAN. My SOLMAN is already configured to be the master system of my DEV/QAS system.
    Any help would be appreciated.
    Thanks.

    Hi Prince Jose,
    My problem actually is that I want to set up EWA for a DEV system. I have tested all the RFC connections to and from my SOLMAN.
    Even the RFC connection in SDCCN -> Settings .. -> RFC destination, i have 2, one SAP_OSS and my 'back' RFC to my SOLMAN and everything is working OK.
    Would you be able to give me a step by step guide on how to setup EWA. From what i know:
    1. Setup the system via SMSY (done)
    2. Generate the necessary RFCs (done and tested OK)
    3. Set SOLMAN as the master system of the satellite systems (done)
    4. Create the necessary task for EWA via SDCCN of satellite system
    Are the steps correct?
    Thanks

  • How to set up DEV, TEST and PROD environment?

    We have used BI publisher Enterprise (standalone), Oracle BI Publisher 10.1.3.4.1. Our admin set up DEV, TEST and PROD environment based on the folder. For example, there is DEV folder, TEST folder and PROD folder. Developer is developing reports under DEV folder. Under TEST and PROD folder, there are many sub-folder based on the login user role. Sometimes a report has to be assigned to a multiple sub-folder under PROD. So our admin create symbolic links in the Linux box which BI server is located. That way, if a report is updated, there is no need to update the report in all sub-folder.
    The issue I have is we are not allowed to touch any files under TEST/PROD folder. Only admin will move the report from DEV folder to TEST/PROD folder because those links admin created might be broken. However, as a developer, we still have permission to delete/rename/copy report under those restricted folders. Yesterday one report under PROD has been renamed by a developer. And admin complains because the links he has created not working anymore. Just wonder if admin doesn't allow developers to touch the reports under those folders, is there a way to remove the write permission on those folders? Also do you think this is a good practice to set up DEV, TESDT and PROD environment? Any input will be greatly appreciated.

    We have used BI publisher Enterprise (standalone), Oracle BI Publisher 10.1.3.4.1. Our admin set up DEV, TEST and PROD environment based on the folder. For example, there is DEV folder, TEST folder and PROD folder. Developer is developing reports under DEV folder. Under TEST and PROD folder, there are many sub-folder based on the login user role. Sometimes a report has to be assigned to a multiple sub-folder under PROD. So our admin create symbolic links in the Linux box which BI server is located. That way, if a report is updated, there is no need to update the report in all sub-folder.
    The issue I have is we are not allowed to touch any files under TEST/PROD folder. Only admin will move the report from DEV folder to TEST/PROD folder because those links admin created might be broken. However, as a developer, we still have permission to delete/rename/copy report under those restricted folders. Yesterday one report under PROD has been renamed by a developer. And admin complains because the links he has created not working anymore. Just wonder if admin doesn't allow developers to touch the reports under those folders, is there a way to remove the write permission on those folders? Also do you think this is a good practice to set up DEV, TESDT and PROD environment? Any input will be greatly appreciated.

  • How to set up dev environemnt for iProc in local JDEV.

    Hi,
    I need to do lot of customization and extension for iProc of apps 11.5.10. For this i am planning to set up local jdev envinorment. I want to get all class files of iproc from apps server and decompile and create proper package struture in jdev, rebuit the project for development. Can any one provide steps for doing this.
    Thanks

    package xx.tools;
    import java.io.File;
    import java.io.PrintWriter;
    import java.io.FileOutputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    public class RebuildServerXml {
    private static String SERVER_XML_FILE_NAME = new String ("server.xml");
    public RebuildServerXml (File startDirectory, boolean iterate)
    if (!iterate)
    makeServerFile(startDirectory);
    private String getPackageName(File dir)
    String p1 = dir.getAbsolutePath();
    String path = p1.substring(p1.indexOf("oracle\\apps"),p1.length());
    return path.replace('\\','.');
    private void makeServerFile(File directory)
    try {
    File output = new File(directory.getAbsolutePath()+"\\server.xml");
    System.out.println(output.getAbsolutePath());
    if (!output.isFile())
    if (output.createNewFile()) {
    PrintWriter pw = new PrintWriter(new FileOutputStream(output));
    pw.println("<?xml version=\"1.0\" encoding='windows-1252'?>");
    pw.println("<!DOCTYPE JboPackage SYSTEM \"jbo_03_01.dtd\">");
    pw.println("<!-- $Header: server.xml 99 rebuild $ -->");
    pw.println("<JboPackage");
    pw.println(" Name=\"server\"");
    pw.println(" SeparateXMLFiles=\"true\"");
    pw.println(" PackageName=\""+getPackageName(directory)+"\" >");
    pw.println(" <DesignTime>");
    pw.println(" <Attr Name=\"_version\" Value=\"9.0.3.12.25\" />");
    pw.println(" <Attr Name=\"_ejbPackage\" Value=\"false\" />");
    pw.println(" </DesignTime>");
    File[] fArray = directory.listFiles();
    for (int i=0;i<fArray.length;i++) {
    if (fArray.isFile() && !fArray[i].getName().equals(SERVER_XML_FILE_NAME)) {
    int sepPosition = fArray[i].getName().indexOf(".");
    String basename = fArray[i].getName().substring(0,sepPosition);
    String extension = fArray[i].getName().substring(sepPosition+1,fArray[i].getName().length());
    if (extension.equals("xml")) {
    System.out.println("Basename=" + basename);
    System.out.println("Extension=" + extension);
    pw.println(" <Containee");
    pw.println(" Name=\""+basename+"\"");
    pw.println(" FullName=\""+getPackageName(directory)+"."+basename+"\"");
    if (basename.endsWith("AM"))
    pw.println(" ObjectType=\"AppModule\" > ");
    if (basename.endsWith("VO"))
    pw.println(" ObjectType=\"ViewObject\" > ");
    if (basename.endsWith("VL"))
    pw.println(" ObjectType=\"ViewLink\" > ");
    if (basename.endsWith("EO"))
    pw.println(" ObjectType=\"Entity\" > ");
    if (basename.endsWith("AO"))
    pw.println(" ObjectType=\"Association\" > ");
    pw.println(" </Containee>");
    pw.println("</JboPackage>");
    pw.close();
    } catch (FileNotFoundException fnfe)
    System.out.println(fnfe.getMessage());
    } catch (IOException ioe)
    System.out.println(ioe.getMessage());
    public static void main(String[] args)
    RebuildServerXml rsx = new RebuildServerXml (new File("E:\\jdev_apps\\jdevhome\\jdev\\myclasses\\oracle\\apps\\icx\\por\\req\\server")
    ,false);

  • Solaris8 and 9 (possibly 7) /dev/poll driver bug report.

    Hello,
    I'd like to report a bug in the solaris 8 and 9 /dev/poll driver (poll(7d)).
    As i do not have a support account with sun or anything like that, there
    seems to be no other way to do that here (which is of course a very sad
    thing).
    Bug details:
    The /dev/poll device provides an ioctl-request (DP_ISPOLLED) for checking
    if a particular filedescriptor is currently in the set of monitored
    filedescriptors for that particular /dev/poll fd set (open /dev/poll fd).
    A quote from the documentation of the poll(7d) manual page taken from
    Solaris9:
    "DP_ISPOLLED ioctl allows you to query if a file descriptor is already in
    the monitored set represented by fd. The fd field of the pollfd structure
    indicates the file descriptor of interest. The DP_ISPOLLED ioctl returns 1
    if the file descriptor is in the set. The events field contains the
    currently polled events. The revents field contains 0. The ioctl returns 0
    if the file descriptor is not in the set. The pollfd structure pointed by
    pfd is not modified. The ioctl returns a -1 if the call fails."
    It says that when you query for an filedescriptor which is currently being
    monitored in the set, that it would return 1, and change the events field of
    the pollfd structure to the events it's currently monitoring that fd for.
    The revents field would be set to zero.
    However the only thing which actually happens here, is that FD_ISPOLLED
    returns 1 when the fd is in the set and 0 if not. When the fd is in the
    set, when FD_ISPOLLED returns 1, the events field remains unmodified, but
    the revents field gets changed.
    A small sample code to illustrate:
    #include <stdio.h>
    #include <unistd.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <sys/devpoll.h>
    main() {
    struct pollfd a;
    int dp_fd = open("/dev/poll", O_WRONLY);
    a.fd = 0; /* stdin */
    a.events = POLLIN; /* we monitor for readability, POLLIN=1 */
    a.revents = 0;
    write(dp_fd, &a, sizeof(a));
    a.fd = 0;
    a.events = 34; /* filled in with bogus number to show malfunctioning */
    a.revents = 0;
    printf("DP_ISPOLLED returns: %d\n", ioctl(dp_fd, DP_ISPOLLED, &a));
    printf("a.fd=%d, a.events=%hd, a.revents=%hd\n", a.fd, a.events,
    a.revents);
    According to the documentation of /dev/poll and namely DP_ISPOLLED this
    program is supposed to print the following:
    DP_ISPOLLED returns: 1
    a.fd=0, a.events=1, a.revents=0
    However it prints the following:
    DP_ISPOLLED returns: 1
    a.fd=0, a.events=34, a.revents=1
    You can take any number instead of '34' and it will simply remain untouched
    after the DP_ISPOLLED ioctl-request.
    I hope it's clear now that the solaris8 and solaris9 (and probably solaris7
    with /dev/poll patch too) DP_ISPOLLED implementation is broken.
    This bug is also easily illustrated by looking at the solaris8 kernel sourcecode:
    <snippet osnet_volume/usr/src/uts/common/io/devpoll.c:dpioctl()>
    case DP_ISPOLLED:
    pollfd_t pollfd;
    polldat_t *pdp;
    if (pollfd.fd < 0) {
    mutex_exit(&pcp->pc_lock);
    break;
    pdp = pcache_lookup_fd(pcp, pollfd.fd);
    if ((pdp != NULL) && (pdp->pd_fd == pollfd.fd) &&
    (pdp->pd_fp != NULL)) {
    pollfd.revents = pdp->pd_events;
    if (copyout(&pollfd, (caddr_t)arg,
    sizeof(pollfd_t))) {
    mutex_exit(&pcp->pc_lock);
    DP_REFRELE(dpep);
    return (set_errno(EFAULT));
    *rvalp = 1;
    </snippet>
    its' clearly visible that the code writes the current monitored events to
    the revents field:
    'pollfd.revents = pdp->pd_events;'
    and that it doesnt set revents to zero.
    It's funny to see that this has been like this since Solaris8 (possibly 7). That means nobody ever used DP_ISPOLLED that way or people were simply to lazy to file a bug report.
    Another funny thing related to this. is that Hewlett-Packard did seem to know about this. Since HP-UX11i version 1.6 they also support /dev/poll. From their manual page i ll quote some sentences from their WARNING session:
    "The ioctl(DP_ISPOLLED) system call also returns its result in the revents member of the pollfd structure, in order to be compatible with the implementation of the /dev/poll driver by some other vendors."
    Hopefully this will get fixed.
    I also like to reexpress my very negative feelings towards the fact that you're not able to file bug reports when you do not have a support contract. Ridiculous.
    Thanks,
    bighawk

    Have I mentioned how much i love my playbook now Great job on os 2.0

  • Need help setting up UML290 4g modem on SuSE Linux 11.3

    greetings,
       I have been digging through this forum and found other users that have had success in setting up their UML290 with both Mac and Linux. Ref:  http://community.vzw.com/t5/4G-Discussion/4G-LTE-Data-stick-Mac-Linux-Windows-other-authentication/td-p/347794/highlight/true/page/3   I took the plunge and signed for the new device.  It has been activated and initialized using windows XP Pro.  I have installed the modem device using YaST2 (configuation tool), set as /dev/ttyASM0 , set to #777 [email protected], etc.  I am using Qinternet to make the connections.  Below is the log, as it won't connect.
    Qinternet.logSuSE Meta pppd (smpppd-ifcfg), Version 1.60.46 on linux-ib6d.Status is: disconnectedtrying to connect to smpppdconnect to smpppdStatus is: disconnectedStatus is: connectingpppd[0]: Plugin passwordfd.so loaded.pppd[0]: speed 480000000 not supportedpppd[0]: --> WvDial: Internet dialer version 1.60pppd[0]: --> Initializing modem.pppd[0]: --> Sending: ATZpppd[0]: ATZpppd[0]: OKpppd[0]: --> Sending: AT Q0 V1 E1 S0=0 &C1 &D2 +FCLASS=0pppd[0]: OKpppd[0]: --> Sending: ATM0pppd[0]: ATM0pppd[0]: OKpppd[0]: --> Sending: ATX3pppd[0]: ATX3pppd[0]: OKpppd[0]: --> Modem initialized.pppd[0]: --> Sending: ATDT#777pppd[0]: --> Waiting for carrier.pppd[0]: ATDT#777pppd[0]: NO CARRIERpppd[0]: --> No Carrier!  Trying again.pppd[0]: --> Sending: ATDT#777pppd[0]: --> Waiting for carrier.
      Basically, what am I doing wrong, and how do I correct it?  I have been using the Pantech UM175 over the past years with success. There is also reference in the other post that this can or should be set up as an ethernet device.  How can that be done?
    4G LTE GSM General Device Settings-Phone Number: PhoneNumberAccount name: [email protected]: vzwAdvanced Settings-Carrier: GenericModel: GPRS (GSM/3G)APN: vzwinternetCID: 1
    thanks in advance for any help,
    idee

    OK, I have tested about all I care to at this point.  I have a g3 connection on Linux using the Pantech UML290 from Verizon.
    Open SuSE 11.3
    Kernel Linux 2.6.34.7-0.7 desktop
    Gnome 2.30.0  (using LXDE)
    QInternet for connections
    Modem installed as /dev/ttyACM0
    Tone Dial, Speaker Off, Detect Tone Dial Off
    Details (default settings)
      Buad Rate - 480000000
      Init 1 - ATZ
      Init 2 - AT Q0 V1 E1 S0=0 & C1 &D2 +FCLASS=0
    Enable Device Control Via Qinternet
    Provider information:
       Name: vzw4g #777
       Phone Number: #777
       User Name: [email protected]
       Password: vzw
    Manual (defaults for all of the rest of the settings)
     #777 provided the quickest (almost instant) connection to the carrier.  *99# & *99***3# also worked, but after a 60 second or longer wait.
    The primary reason for the successful 3g connection seems to be the use of the Pantech Tool posted by Toughbook (linked here) at the Verizon forum.  This process is all done under windows.  Be advised, if you have the tool "read" your device, you must write, even if you made no changes.  If you don't it won't work under the VZAccess Manager.
      The default settings (AT+CGDCONT?) on your UML290 should be:
    +CGDCONT: 1,"IPV6","vzwims","0:0:0:0:0:0:0:0",0,0
    +CGDCONT: 3,"IPV4V6","vzwinternet","0.0.0.0",0,0
    +CGDCONT: 4,"IPV4V6","vzwapp","0.0.0.0",0,0
      It seems that the modem might connect directly under SuSE Linux without any complications using the modem configurations and provider information above.  I am in a 3g area right now (4g is support to be here this summer) and when I try to connect with the unit straight out of the box, everything connected, but it found no carrier.  I'll know more once 4g is in our area.  There were a couple of other posts mentioning a direct hook up in Fedora.  I could not find any direct posts confirming that, but I am guessing this is the case.
      Willzzz suggested various options and tests (here post #12) on the Ubuntu forum.  I set up and tried all.  The test was to see if I could force the APN to see the 3g system under the 4g settings (out of the box, without the Pantech Tool alteration).  I was not successful with any.  I tried using all three of the AT+CGDCONT versions above in the Init3 setting.  Phone numbers of *99#, *99***3#, and #777. Even though both options (within the init string & in the dial-up number) are supposed to change the APN, neither worked for me.
    Many of these items have been discussed before in various posts in this forum.  I don't claim credit for anything, but trying various options.  Thanks to Neander, Willzzz88, Irieblue and Toughbook, among the others that added to those posts.  The reason for the detail in this post is simply to document what I tried, what worked and what didn't hoping it might help others connect.  Thank you all for your expertise on this forum.
    idee

  • Setting the right number of thread count

    Hi,
    What's the right number of thread for a server that has 2 CPU? I know the default setting for Dev is 15 and Production is 25. From what I read in the Performance Tuning Guide, it should be somewhere around the number of CPUs on the machine? Is that right? Or keep the default?

    Statement st = con.createStatement();
    st.setFetchSize(no_of_rows_here);
    ResultSet rs = st.executeQuery(query);Sudha

  • Setting permissions for scanner use

    Hello,
    My USB scanner is a Canon Lide 35 and it had been working perfectly in arch. After  a recent update (don't know exactly which because do not use scanner so often), the device is detected and device is set in /dev/bus/usb/005/00x. The problem is that the permissions are not set correctly, I assume by udev?, and my normal user cannot use the scanner because the device remains as owned by root.root and not 0664, group=scanner, as specified in the sane udev rules (/etc/udev/rules.d/53-sane.rules). The rules file is with the new syntax, i.e., ATTRS instead of SYSFS and so forth. My user belongs to the "scanner" group. I have the feeling it is something related with the udev rules but Im not sure what. Here is the relevant line:
    # Canon CanoScan LiDE 35 | Canon CanoScan LiDE 40 | Canon CanoScan LiDE 50
    ATTRS{idVendor}=="04a9", ATTRS{idProduct}=="2213", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes"
    The latest update where kernel stuff and udev stuff were updated resulted in:
    kernel-headers-2.6.24.3-1  udev-119-1...
    Any help greatly appreciated,
    Regards,
    Felipe.

    It appears that udev has problems with rules matching by idVendor when system is up and running but everything is ok if device was online during boot. Please check out this bug http://bugs.archlinux.org/task/9935 and comments. If You have the same problem then please vote for this bug and/or post a comment.
    Thank You.

  • Client-side greek character set problem

    hi everyone,
    i am a .net developer and absolutelly new to oracle, its my first project that i have make oracle and .net co-operate and it's proving to be a nightmare!
    i ll try and provide as much info as possible to you
    we have a unix sap server with oracle 10.something on it (i can check exactly what version if that's of importance) and i am writting a .net app which accesses the oracle db and retrieve some data we need
    the locale settings of the db are american_america.we8dec and i cannot temper with that machine, it is out of the question
    i have made the connection to the db using just connection string info, not tns and stuff, and i have set my dev machine's nls_lang to we8dec everywhere i could find it with a 'find' in the registry
    however my app displays the data (which is in greek) showing random symbols that obviously make to sense
    furthermore when i connect to the db via sql developer or navicat i still get the same symbols
    i understand it is something to do with my client system's settings but i cant work it out
    i would really appreciate your help i am sorry if it is something very simple but i just cant find it
    thanks

    user9084006 wrote:
    i am a .net developer and absolutelly new to oracle, its my first project that i have make oracle and .net co-operate and it's proving to be a nightmare!Welcome. It's a brand new universe, but if you take it step by step I'm sure you'll do fine. Get someone near with Oracle dev and dba background to guide you, so you don't get stuck or go down broken roads.
    we have a unix sap server with oracle 10.something on it (i can check exactly what version if that's of importance)It is of importance most of the time. Down to at least 4 positions (for example, "10g" is just a marketing label and mostly useless in a techincal context - 10.2.0.5 is more like it).
    Also mention platform (unix OS) details.
    and i am writting a .net app which accesses the oracle db and retrieve some data we needHow is the to-be retrieved data loaded or entered to begin?
    >
    the locale settings of the db are american_america.we8dec and i cannot temper with that machine, it is out of the question Please post output from:
    SQL> select * from nls_database_parameters where parameter like '%CHARACTERSET';
    and i have set my dev machine's nls_lang to we8dec everywhere i could find it with a 'find' in the registryDoes your dev (client) machine use a "we8dec" character set? Likely, as you seem to be on Windows, you should have set nls_lang client char set part to match win-1252 or whatever client char set (code page) is in use.
    however my app displays the data (which is in greek) showing random symbols that obviously make to senseNo surprise since DEC character set does not have a greek character in its repertoire. If I'm not all mistaken DEC MCS (or similar) is the charcter set to which WE8DEC corresponds. You could check against mapping table in Locale builder, but available characters should be per following link or close enough.
    http://czyborra.com/charsets/iso8859.html#ISO-8859-1 (second chart is DEC-MCS)
    Please provide a sample of those "random symbols".
    furthermore when i connect to the db via sql developer or navicat i still get the same symbolsIf that's Oracle SQL Developer it should give a true picture of what's actually stored - which, unfortuantely, seem to be invalid character data.
    i understand it is something to do with my client system's settings but i cant work it out See above. But even if you correctly setup client environment, the db won't be able to store the data if databas character set is in fact WE8DEC.
    >
    i would really appreciate your help i am sorry if it is something very simple but i just cant find it I'm not sure, but it would seem as you have been given unfeasible conditions to work from. So maybe it's not up to you, until a character set migration has been taken place.
    In general, the Database character set should be a suitable superset (repertoire) that covers all current (and hopefully future) language alphabets requirements.
    You might want to search forum for 'we8dec' to find previous related discussions.
    Edit:
    - Added url with DEC MCS.
    - platform info
    Edited by: orafad on Jan 26, 2012 12:28 PM
    Edited by: orafad on Jan 26, 2012 12:43 PM

  • Early watch report ( Trcd. SBIW setting ) - Updated

    Hi All
    We have received the early watch report for BW and in that It has mentioned to do SBIW ( IMG ) activity as follows:
    System name Parameter name Current value Recommended value
    APPCLNT001 maxprocs 05 4
    BWPCLNT800 maxsize 000000 20000
    BWPCLNT800 statfrqu 00 10
    BWPCLNT800 maxprocs 00 3
    CRPCLNT100 maxsize 010000 20000
    CRPCLNT100 statfrqu 00 10
    R3PCLNT100 maxsize 010000 20000
    R3PCLNT100 statfrqu 00 10
    SRPCLNT100 maxsize 000000 20000
    SRPCLNT100 statfrqu 00 10
    SRPCLNT100 maxprocs 00 3
    My Questions :
    01. My question is they have mentioned to set this in the respective Source System. i.e. Should I set it in the Production System.
    02. one more thing. It is also required to create a transport request to do the above operation. for that case, should I create a Transport Request in the Production System. ? Is that generally ok ? how it is handled usually ??
    03. To execute SBIW Transaction, what authorization is required ? and how to check which authorization is required to execute SBIW ??
    Please throw me some light on this.
    Thanking you in Anticipation.
    Thanks & Regards
    L Raghunahth
    PS : If you know answer to any particular one also, please feel free to answer.
    Edited by: L Raghunahth on Aug 1, 2008 6:36 PM

    Hi,
    Please find my response below
    My Questions :
    01. My question is they have mentioned to set this in the respective Source System. i.e. Should I set it in the Production System.
    You have to do it in Dev and then migrate these settings to Production.
    02. one more thing. It is also required to create a transport request to do the above operation. for that case, should I create a Transport Request in the Production System. ? Is that generally ok ? how it is handled usually ??
    When u make these setting, you will be prompted for Transport request. So if u do these setting in Dev, enter description for ur transport and move this transport request. This will make the systems consistent.
    03. To execute SBIW Transaction, what authorization is required ? and how to check which authorization is required to execute SBIW ??
    Try SBIW, and if you cant acess it , check with security team.
    Arun
    Assign pts if useful

  • How to transport BO report from Dev to Qas

    Dear all,
    We have three clients for BO, Dev,Qas and Prd. When we transport the BO reports from Dev to Qas, the  parameters in Universe and QAAWS won't be changed automatically,just keep the setting in Dev.
    what can I do to change the setting automatically?
    Best regards
    Tianli

    Hi,
    you can ask basis to maintain logical system conversion settings .
    However  if you post the Query in BO forums you would get better response.
    Regards,
    Satya

  • Same program ran in DEV&QAS but output data is summarized in DEV??

    What could be the causes of having the same identical program ran in different clients with the same variant and same input data but the output is summarized in DEV and not QAS?
    Since DEV is not summarized, grand debits and credits are larger in DEV when comparing the two but the net totals are the same.

    Hi,
    Check if the output is an ALV grid output.  Then there might be a layout change from DEV and QAS and hence their might be a difference between the outputs.  The layout set in DEV wil not be transported automatically.  It has to be transported manually.
    Regards,
    Ravi

  • Unable to set 'tap to click' by command line

    Use case: I'm trying to write a script to set up new macbooks with a set of dev tools and usability configuration options.
    Most configurations are simple enough to change by altering the global application setting e.g. setting the scroll direction with the command:
    defaults write NSGlobalDomain com.apple.swipescrolldirection -bool false
    Apparently the following commands were able to enable the tap to click trackpad behavior in previous OSX versions:
    defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
    defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
    However, as of Maverick (and possibly Mountain Lion) these do not work.
    I checked the defaults values and changing the scroll setting via the GUI does indeed change the actual variable (com.apple.swipescrolldirection) and changing the variable by command line successfully changes the setting. However, the tap to click variable does not exist in the defaults NSGlobalDomain read out and setting the tap to click via GUI has no effect on any variables in this list. When I create and turn on the com.apple.mouse.tapBehavior variable, oddly the GUI's checkbox is checked for tap to click but the feature remains turned off.
    My best guess is that trackpad options have been moved out of NSGlobalDomain and there is still some vestigial code reading for the no longer functional variable that is setting the gui checkbox even though its not enabling the feature.
    My question: how can I set tap to click (and other trackpad options) by the command line?
    Thanks!

    If you do "java -jar ..." on the command line then any "-cp ..." options are ignored. That's because "java -jar ..." assumes you will have set up the classpath in the jar's manifest file like you're supposed to.

  • RAR Rules - DEV and QA

    Hi,
    Our RAR Dev has two active connectors to SAP Dev as well as QA. We have uploaded a Rule Set for QA which is working fine. We can do a risk analysis and we get results. However we are struggling to get results for Dev. How do we go about uploading a test rule set for Dev?
    Please assist.
    Regards.

    Hi,
    Thank you to you all.  My problem is solved:)
    The Master User Source was pointing to Dev and the Function action did have Dev and QA. I however reran a full sync on user, role, profile as well as batch analysis and that did the trick.
    Thanks once again.
    Regards.

  • Terminal won't run - shell set to illegal value

    On my iMac running 10.6.8, I've found I'm unable to run Terminal. My account has full administrator privileges, or should, anyway.
    First, I made sure my specific account had read & write privileges to the app itself, dragged Terminal's preferences file out of my Library, repaired permissions, and logged in and out. That didn't work.
    Then I tried working off of a solution I found elsewhere: I unlocked Accounts in System Preferences and tried right-clicking my account to access Advanced Options so I could check out the login shell field, but it didn't give me a right-click dropdown at all. Am I right in supposing my account's shell is set to /dev/null? Either way, I'm stymied on how to to fix this, and any recommendations are welcome.

    The fact that bash launches successfully in other accounts tells me there is nothing wroing with bash and its related system files (e.g., /etc/profile).
    You've checked that the Account's default shell is /bin/bash.
    You wiped out the shell's plist so it would create a fresh new one.
    The only thing I haven't seen you check is the various shell startup files:
    ~/.bash_profile
    ~/.bash_login
    ~/.profile
    ~/.bashrc
    See if something weird is going on in the ones that are there (assuming some are indeed there).
    I also checked out /private/etc/shell and compared the contents with what others said should be in there, and the problem doesn't appear to be there, either.
    Just to make sure here.  I hope you just had a typo in that statement and meant /private/etc/shells. It should look something like this:
    # List of acceptable shells for chpass(1).
    # Ftpd will not allow users to connect who are not using
    # one of these shells.
    /bin/bash
    /bin/csh
    /bin/ksh
    /bin/sh
    /bin/tcsh
    /bin/zsh
    Although I don't think it matters whether this file exists or not at the time bash is launched.

Maybe you are looking for

  • Mini-dvi to video does not work

    I have the 13-inch white macbook purchased in 2008. I just bought a mini-dvi to video cord and tried hooking it up to my TV using RCA and S-video and neither work. When I plug the cord into my computer, the resolution on my computer changes and then

  • Questions on a newly purchased K8T Master2 Far m/b

    Hi, I just purchased a K8T Master2 Far m/b at a local computer store for $89.99. They had two of them sitting on their markdown table. They where in turned inside out Asus K8N-DL m/b boxes. In other words, the box labels where on the inside. They cou

  • How can i get more than 1000 items in Custom List Displaying Items?

    http://.....sites/_vti_bin/listdata.svc/AddressBook(List) allows 1000 items Only my AddressBook List, but i have more than 1000 items in my AddressBook list. I want to get items from AddressBook list and bind in another place using Autocomplete metho

  • External display sleep

    I have an LG l196wrtq 19 inch monitor hooked up to my macbook using the mini-dvi->vga adapter. The monitor seems to not be able to detect when i put my macbook to sleep and stays on with a message saying" check signal cable". I've called LG about it

  • Trigger Mutating Probelm...Please reply ASAP.

    Dear all, I have a table Hdr which is Header table for all tran tables i want to update a field update_date in Hdr every time update (DML) is fired, i can't enforce this at form level because i want to keep track even at sql prompt changes. there is