Best way of creating request for a query

hi,
    what will be the best process to create the request for the query.
1.go to rsa1-> transport connection -> select query -> select  BEx bus-> create the request, then change the query and save
                                                                                OR
2. change the query first and assign the request in the transport connection
Please help me put.

Hi,
You would get problems when you transport it by the second method, like the Variable might get missed out when you edit the query and save it to the request.
First method through Transport connection is the best way to do it, to make sure all the objects are collected.
Regards,
Mani

Similar Messages

  • What is the best way to create space for a Yosemite download?

    What are the best ways to create space for the download of Yosemite.  I can't install it as I don't have enough space.

    Did you empty Trash?  Very important!
    How much space do you have available?  Click in the HDD icon on the desktop, COMMAND+I.
    Also try a Safe Boot:
    http://support.apple.com/kb/HT1564?viewlocale=en_US
    That will temporarily create some additional space.
    Ciao.

  • What is the best way to create videos for my website?

    Hi,
    I'm a public speaking coach in Sydeny Australia.  I've started a blog and want to include videos to my newsletter subscribers.  I do not want to use YouTube, because I want to only share these videos to people on my list.
    What is the best way / program to create good videos for my customers?  I think I might need to upload these videos to my server and only share the links...?  Any suggestions welcome.
    Thank you
    Trevor Ambrose
    http://www.changingtools.com

    Trevor:
    This may be more information than you asked for, but here goes:
    Get a Samsung S10 Video camera (under $400) and a Zoom H4n Professional audio recorder.  Get Adobe Production Premium CS5. The camera shoots 1920 x 1080 square pixel in a better quality than a $6000 Panasonic P2 from 4 years ago. The downside, the audio from the Samsung is poor. That's why I recommend the Zoom H4n. On the Premiere timeline, you simply align the waveform of the video with the higher quality wave from the H4n. You can buy a medium sized fold up greenscreen and place any background behind your talent.  CS5 has Ultra built in, so you can easily key out the green right on the Premiere timeline revealing a nice background of your choice.
    I would design a web page based upon your current website's look and feel that will be a template for your videos. You export your finished video from the Premiere timeline as an f4v. I would recommend 16x9 widescreen and use the Flash preset of "Web Large Widescreen". You can also specify a "Fullscreen" button on the video's controller. The quality is so good that the video will look good even when your client watches it full screen. You import the video into Flash CS5 using the same document dimensions as your video size.  You create a Flash template and "Publish" your Flash movie TO your template. Then all that is necessary is to upload all of the associated Web ready files to your server via FTP or Dreamweaver. This workflow streamlines the process and saves hours of fiddling around.
    As far as the Web page goes that has your video, give the pages an HTML name like; vid0096hvc.html and use the Robots No Follow tag:
    <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
    This is the next best thing to having a client log-in and works in a setting where people aren't paying
    to see the video, but you still don't want them plastered all over the internet.

  • Best way to create chapters for IDVD

    Ok, so I got ILife '08 and downloaded this for free so I could make chapters. Let's say I take a whole feed from my VCR to my computer using the Elgato Hybrid. What is the easiest way to make clips using iMovie? Should I split the clips into smaller clips, or use the part about chapters?

    I use iDVD because it is easy to use.
    My head is already crammed with HD, Avid, FCP, After Effects Photoshop, Pro Tools and Grass Valley information...not to mention all the knowledge on the art of the edit...so that I don't have much room left for DVDsp.
    Shane

  • What is the best way to create a SSRS 2005 Line Chart Report for a 12 month period?

    I'm looking for advice on how to create a SQL Server 2005 query and line chart report for SSRS 2005.
    I need to display the peak number of patients assigned to a medical practice each month for a 12 month period based on the end-user selecting a
    single month and year.
    I've previously created a report that displays all patients assigned to the practice for any single month but I’m looking for advice on how to
    how to produce a resultset that shows the peak number of patients each month for a 12 month period. I thought about creating a query that returns the peak count for each month (based on my previously created report which displays all patients assigned to the
    practice for any single month) and then use a UNION statement to join all 12 months but I'm sure that isn't the most efficient way to do this. The other challenge with this approach (twelve resultsets combined via a UNION) is that the end-user needs to be
    able to select any month and year for the parameter and the report needs to display the 12 month period based on the month selected (the month selected would be the last month of the 12 month period).
    For the report I’ve previously created that displays all patients assigned to the practice for any single month, the WHERE statement filters the
    resultset on two fields:
    Start Date - The date the patient was assigned to the practice. This field is never null or blank.
    End Date - The date the patient left the practice. This field can be null or blank as active patients assigned to the practice do not have an End Date. When the patient
    leaves the practice, the date the patient left is populated in this field.
    Using these two fields I can return all patients assigned to the practice during Nov 2012 by looking for patients that meet the following criteria:
    start date prior to 11/30/2012 (using the last day of the month selected ensures patients added mid-month would be included)
    AND
    end date is null or blank (indicates the patient is active) OR the end date is between 11/1/2012 -11/30/2012 (returns patients that leave during the month
    selected)
    Regarding the query I need to create for the report that displays the peak count each month for 12 months, I'm looking for advice on
    how to count patients for each month the patient is assigned to the practice if the patient has been assigned for several months (which applies to most patients). Examples are:
    John Doe has a start date of 6/01/2012 and an End Date of 10/07/2012
    Sally Doe has a start date of 8/4/2012 and no End Date (the patient is still active)
    Jimmy Doe has a  start of 7/3/2012 and an End Date of 9/2/2012
    Given these examples how would I include John Doe in the peak monthly count each month for May - October, Sally Doe in the peak monthly count for
    August - December and Jimmy Doe in the peak monthly count for July – Sept if the end-user running the report selected December 2012 as the parameter?
    Given the example above and the fact I'm creating a line chart I think the best way to create this report would be a resultset that looks like
    this:
    Patient Name              
    Months Assigned
    John Doe
    June 2012
    John Doe                     
    July012
    John Doe                     
    Aug 2012
    John Doe                     
    Sept 2012
    John Doe
    Oct 2012
    Sally Doe                     
    Aug 2012
    Sally Doe                     
    Sept 2012
    Sally Doe
    Oct 2012
    Sally Doe                     
    Nov 2012
    Sally Doe
    Dec 2012
    Jimmy Doe                  
    July 2012
    Jimmy Doe
    Aug 2012
    Jimmy Doe
    Sept 2012
    From the resultset above I could create another resultset that would count\group on month and year to return the peak count for each month:
    June 2012 - 1
    July 2012 – 2
    Aug 2012 - 3
    Sept 2012 - 3
    Oct 2012 - 2
    Nov 2012 - 1
    Dec 2012 - 1
    The resultset that displays the peak count for each month would be used to create the line chart (month would be the X axis and the count would
    be the y axis).
    Does this sound like the best approach?
    If so, any advice on how to create the resultset that lists each patient and each month they were assigned to the practice would be greatly appreciated.
    I do not have permissions to create SPs or Functions within the database but I can create temp tables.
    I know how to create the peak monthly count query (derived from the query that lists each patient and month assigned) as well as the line chart.
    Any advice or help is greatly appreciated.

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • What is the best way to create shared variable for multiple PXI(Real-Time) to GUI PC?

    What is the best way to create shared variable for multiple Real time (PXI) to GUI PC? I have 16 Nos of PXI system in network and 1 nos of GUI PC. I want to send command to all the PXI system with using single variable from GUI PC(Like Start Data acquisition, Stop data Acquisition) and I also want data from each PXI system to GUI PC display purpose. Can anybody suggest me best performance system configuration. Where to create variable?(Host PC or at  individual PXI system).

    Dear Ravens,
    I want to control real-time application from host(Command from GUI PC to PXI).Host PC should have access to all 16 sets PXI's variable. During communication failure with PXI, Host will stop data display for particular station.
    Ravens Fan wrote:
    Either.  For the best performance, you need to determine what that means.  Is it more important for each PXI machine to have access to the shared variable, or for the host PC to have access to all 16 sets of variables?  If you have slowdown or issue with the network communication, what kinds of problems would it cause for each machine?
    You want to located the shared variable library on whatever machine is more critical.  That is probably each PXI machine, but only you know your application.
    Ravens Fan wrote:
    Either.  For the best performance, you need to determine what that means.  Is it more important for each PXI machine to have access to the shared variable, or for the host PC to have access to all 16 sets of variables?  If you have slowdown or issue with the network communication, what kinds of problems would it cause for each machine?
    You want to located the shared variable library on whatever machine is more critical.  That is probably each PXI machine, but only you know your application.

  • What is the best way to create the layout for a single page website in Adobe Muse?

    I was wondering the best way to create the layout for a single page website in Adobe Muse. Does anyone have any suggestions?

    I know how to create a website but will that help me create a single page website? Below I will leave a demo of what I want. I want it to only have one page but multiple sections. What is the easiest way to create a single page website like the demo below?
    Demo Website

  • Hi all! What is the best way to create the correct space for baseball jersey names and numbers? along with making sure they are the right size for large printing.

    What is the best way to create the correct space for baseball jersey names and numbers? along with making sure they are the right size for large printing.

    Buying more hard drive space is a very valid option, here.  Editing takes up lots of room, you should never discount the idea of adding more when you need it.
    Another possibility is exporting to MXF OP1a using the AVC-I codec.  It's not lossless, but it is Master quality.  Plus the file size is a LOT smaller, so it may suit your needs.

  • Best way to create a Keynote presentation for use in Windows Powerpoint?

    Hi all, as mac users, I know we have all been here,  I am being forced to use Powerpoint and a Windows machine for a presentation.   I am wondering what is the best way to create a keynote presentation (on my mac), and export it to powerpoint (on a windows machine). The goal here is try to get as few errors and missing components of the presentation as possible. I frequently have to export and import documents through Microsoft word and pages, and everytime I open a doc I get a message saying that some things couldn't be imported. This cannot happen in this situation! This is a very important presentation that needs to go as smooth as possible. I am going to be presenting this presentation on a windows 7 machine running microsoft office 2010.
    What extra steps should I take (if any) to make sure everything gets exported and imported correctly?
    Thanks in advance,
    - A Mac user under Windows Oppression

    Thanks, the presentation went well. I just had to try out different transitions and animations to see which ones worked with Pp. But I'm going full keynote next time!
    Happy Computing,
    - A Mac user no longer under windows oppression

  • Best way to create customized counter for slideshow.

    Hello everone. I am stuck on this one. What is the best way to create a customizable for the slideshow widgets. Im looking to create circles or boxes that change color in relation to the picture in the slideshow. I am sure that I have seen it on a muse site before, but just can't figure how to get it done. Thanks!

    Have you tried using:
    Effect > Text > Numbers ?
    You could also have found that answer by searching for "numbers" at the Community Help site. It's really a great resource in addition to the online help files. Try it out!
    (It would have been the first result returned from the search...)
    http://www.adobe.com/support/aftereffects/

  • Best way to create a UI for a Composite app

    Hi all,
    What is the best way to create a UI for a Composite app that we are developing using CAF and GP.
    1) WebDynPro Callable Object that implements GP Interface.
    2) Consume the Application services(exposed as web services) in WebDynPro app
    3) Creating a WebDynPro Model for the CAF Services.
    4) Create a WebDynPro Application Callable Object (If yes how can we map the input and output params b/n WebDynPro app CO and CAF Application service).
    Plz do remember we are using GP here.
    Thanks in advance,
    Best Regards,
    Sudheer.

    Hi,
    You can use Web Dynpro or Visual Composer for designing UI for your CA.
    1) WebDynPro Callable Object that implements GP Interface.
    You can use Web Dynpro Component CO to use a single Web Dynpro component in your GP Activity.
    4) Create a WebDynPro Application Callable Object :This is for entire Web Dynpro Application(multiple components).
    2) Consume the Application services(exposed as web services) in WebDynPro app :
    3) Creating a WebDynPro Model for the CAF Services.
    For example, in updating operations first we have to get the existing data from Database.For getting this data you can use application services in your Web Dynpro component.Later expose this WD component as CO insert in a GP activity.
    For creating operations, you can use Web Service CO(Application Service)  directly in GP Activity.
    These links are useful for you.
    [link1|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a00c07d0-61e0-2a10-d589-d7bc9894b02a]
    [link2|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10b99341-60e0-2a10-6e80-b6e9f58e3654]
    [lnk3|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1078e3b0-ec5d-2a10-f08a-c9b878917b19]

  • Best way to create an IPhone Application for my Blog

    What's the best way to create an Iphone application for my Blog? I've seen several blogs that have their own application.
    Could use some help,
    Used Car parts Guy
    <Edited by Moderator>

    Thanks for this info... I too am interested in creating my own application... Would love to hear from others...
    Do you think it brings in traffic?
    Are you charging for your application or free?
    Thanks,
    <Edited by Moderator>

  • Figuring the best way to create a web site

    hi
    i am an inexperienced java developer. i need to create web application where the user logs in. i want to know wish is the best way to go about.
    for eg,: should all my content be in one jsp file(logic, presentation and db logic) or should i servlets or should develop a j2ee application and have a web server send requests to an application server. i just wanna know which is the best way to develop a sophisticated web site that will not require major code rewriting in future and that won't be difficult to maintain. any advice will be warranted.
    also, what is an application server and is there a free one available.
    regards
    bluJava

    Tas (or anyone) can you perhaps help me design my project....I understand the concept of separating presentation from business and db logic but its difficult to implement while actually coding. For example...
    On one of my jsps a user must select departure and destination cities for a trip. these available cities must be extracted from a database.
    heres the code...
    <th width='50%' class='rowDef' align='left' valign=top>
    <select name='boardingCity'>
    <%
    try {
    cityList = st.executeQuery("SELECT CityCode, CityName FROM CityList");
    while (cityList.next()) {
    out.println("<option value='" + cityList.getString(1) + "' />" + cityList.getString(2));
    } catch (Exception e) {
    System.out.println("checkForAvailability.jsp...Error:" + e);
    cityList.close();
    %>
    </select>
    </th>
    <th width='50%' class='rowDef' align='left' valign=top>
    <select name='destinationCity'>
    <%
    try {
    cityList2 = st.executeQuery("SELECT CityCode, CityName FROM CityList");
    while (cityList2.next()) {
    out.println("<option value='" + cityList2.getString(1) + "' />" + cityList2.getString(2));
    } catch (Exception e) {
    System.out.println("checkForAvailability.jsp...Error:" + e);
    cityList.close();
    %>
    </select>
    </th>
    now how do i go about separating the db logic from the presentation. where will it be coded. do u have sample code?
    regards
    ushanta

  • Request for sap query

    can u tell me how to create a transport request for sap query

    i  dont know the exact way to create the transport request but i have done by this way.
    after creating the query come out and go to se38 by default it will show a program name like asbksll------- like this  and now i have copied it to one z program and transport it.
    it may solve your problem.
    regards
    shiba dutta

  • Best way to create pop-up menu's

    Hi All,
    I have been having a heck of a time doing something that i
    would have assumed to be relatively simple - specifically creating
    a pup-up menu.
    My first set of approach was to dynamically create a movie
    clip on a button rollover, and within that movieclip create several
    other movie clips that i then assigned actions too. The problem was
    that since i applied a action on "rollout" on the initial movie
    clip, it became a button, and as such all of the sub
    movieclips/buttons became in active (any click was only detected on
    the parent).
    My second set of attempts have been around the MenuComponent
    (see other posts), but here too i have hit problems, initially with
    animation and depth. I solved the animation issue, but the depth
    problem remains.
    Now, i see pop-up menu's everywhere, so i assume that this is
    a relatively simple problem - so what am i missing. A google search
    showed up lots of examples of how to do using menu that are created
    in the UI (rather than purely in AS), using purchased components.
    The first case is not an option since i need to create it fully
    dynamically, the second would be an option - however i typically
    need a far greater level of visual control than off the shelf
    components provide (hence i have needed to build up my own class
    library for many common tasks).
    So after all that, i have a simple question.
    "What is the best way to create a dynamic popup menu in
    AS2?"
    Regards
    Neil

    I guess you want to make your own popup menu, if I understand
    correctly. Nothing simpler, your first attempt was in the right
    direction, you just don't assign button actions to the parent clip,
    because you won't get the child clips to work, but add another
    child at the lowest level inside the parent, that acts as a
    "background" clip/button.
    And for the rollout for the entire popup, you can add a
    transparent clip just under the popup (which is at the currently
    topmost depth) covering the entire stage, give it rollover that
    acts as your rollout, and make it not use the hand currsor, so you
    can't tell it's there.
    That's how I do it, anyways..

Maybe you are looking for

  • Join in Physical Layer

    hi all, is it possible to give right outer join in physical layer? if so how can we do that? actually Type options is not visible in physical diagram. thanks

  • Easy to follow blog for learning NWBPM

    Hi all I am new to NWBPM with PO 7.3.1 although I have experience developing on PI and some ccBPM. Over the last 2 days, I have been trying to look for blogs on NWBPM that are easy to follow. Unfortunately, I came up empty. Please share the links if

  • Calendar Server Roadmap

    Hi Does anyone know when the Calendar Server will again ship with an HTML administration interface? The feedback I have from several customers is that the current incarnation (5.whatever) is pretty impossible to administer. Thanks Rob

  • Why are some TV seasons only available for purchase "by episode only"???

    Hello, I'm just wonderng why certain seasons of certain shows (most often the first season) are only available for purchase by episode and not the whole season...????

  • Scratch Disc Full?

    I am trying to capture video but it says that the scratch drive is full. My hard drive has 7 gb open though. What do i do ? Message was edited by: homedawg678