Request numbers question

Hi Friends,
What r the steps involved in TRANSPORTING an object to another server?
Why we get two request numbers for an object ( main req number & Sub req number)..what is the significance of those two?
Regards,
Ram.

hi,
Whenever a program is created in Z/Y packages/development class it will prompt for creating transport requests.
Once created you can view form se09/se10 tcodes. These should be released while moving to quality system. Once released basis person will transport the request to quality system from STMS tcode.
The same request will be moved to production once tested.
the one you see as the main node is the transport request number and below as the sub nodes are the different objects or the task you can say.
regards,
pankaj singh
reward points if helpful

Similar Messages

  • Identical request numbers

    Hello, we have two sap system. One of the is the copy of other system. (We have done the migration)
    Now we have the problem with numbering of transport requests in the copied system. We have identical request numbers in both systems. But sometimes we need to transport requests between the system.
    The question:
    How to change number range for request numbering in the copied system to have the different number range from the source system?

    Hi,
    There is maybe a better way but we have been used for several years to set the next requestnumber at the database level when doing a database copy system refresh.
    We use something like :
    Insert into sapr3.e070 values ('<SID>K90xxxx','K','R','XYZ','SYST','<YOUR_USER>','<AAAAMMJJ>', '<HHMMSS>',' ');
    commit;
    Regards,
    Olivier

  • Unable2download any content,site requests security questions.hav not set any up

    unable2download any content,site requests security questions.hav not set any up&amp;unable2proceed with purchases.
    please provide response asap.

    If this was purchased many months ago it may be because Apple changed its security set-up about six months ago at a rough guess. Go to and complete the questions posed at:
    iforgot.apple.com
    this leads you to https://iforgot.apple.com/iForgot/iForgot.html
    as I could not make the link work in draft mode of writing this response.

  • Change Request Numbers

    Hi Gurus,
    We change request numbers using Internal number range, but there are some numbers which are missed and are not traceable.
    Need help as clueless about the missing CR numbers?
    thanks Anand

    Crmd_order is a transaction so if you have selected the option of Early no assignment in spro->scenario specific....service desk...assign transaction type..
    For SLFN if you have this entry then..
    whenver any1 enter this transaction a no is generated....even if you dont save it...
    But if you uncheck it then
    Only when u save the transaction then no is generated.
    Regards
    Prakhar

  • Can we compress the cubes which are having same request numbers at a time?

    Hi all,
    Here is the situation. We have nine cubes which are all having the same request numbers...for some reason the compression has not taken place for all these cubes. Please note that we have design in process chain to compress all the data..but it has failed to do so. Please advise the possible reason....and how to rectify this in future. This is happenning for the last one week.
    Now, trying to do it manually..Can I start doing this manually to all cubes simultaneously or I need to do it one by one cube...
    Please advise.
    Thanks,
    LINDA

    Hi Roberto and Shreya,
    Thanks for your advise. We are observing for the last one week that the process chain is getting failed at compression level. We have checked at the cube level and found that all the data's were loaded successfully and all the aggregates were rolled up successfully.
    Means, for the cubes, in the manage tab,
    1.Roll up status is showing green
    2.Compression status of aggregate is showing green
    3. Request for reporting is available
    4. But, the compression status in infocube is not showing any status (Field is blank.No green tick mark!)
    When we checked the error message in the process chain,
    we have observed as below:
    SYSTEM ERROR:1
    RSCDS_BUILD_STORED_PROC
    BUILD_REPORT
    RSS_TEMPLATE_INSTANTIATE.
    The database view " /BIC/D100299T" is Write -Protecte.
    DIAGNOSIS:
    A SYSTEM ERROR WITH THE FOLLOWING PARAMETERS HAS OCCURED IN DATA MANAGER:
    PARAMETER 1 = &V1&
    PARAMETER 2 = &V2&
    PARAMETER 3 = &V3&
    PARAMETER 4 = &V4&
    SYSTEM ERROR:2
    ROLL UP TERMINATED: DATA TARGET XXXX, FROM OOOO565656 TO 0000565699
    So, we are trying to manually do the compression to all the cubes...
    Thanks for your advise and looking for more detailed expert advise /analysis from you.

  • Import numbering question

    I've recently made the migration from Aperture to Lightroom. I was using a referenced workflow in Aperture so it was easy to simply import my folders into LR2.4. My keywords and metadata even came in without the use of sidecar files. My question is about numbering new imports now that I have my main catalog migrated.
    In Aperture I had been renaming files on import to XXX_000000.CR2. I've imported over 15K images already through Aperture this way. Now that I've migrated into LR how can I continue from where my numbering left off? None of the numbering options seem to be the right solution.
    Sequence gives me the option to set a starting number but resets to 1 on each import.
    Images keeps the running tally I want but no way to set a starting point that I can find.
    Import I'm just unclear on.
    I've been searching and not finding any real answers. I found a tip for editing a LR file to add additional digits to the length of a sequence number (LR stops at 5 digits by default) So I'm wondering if there's a similar workaround or hack for the image number. To possibly complicate matters I have separated my images out into multiple catalogs and I'd like the numbering to be maintained regardless of which catalog I'm importing to.
    Hope I'm not asking too much. For the moment I'm still using Aperture to do my original import to keep the numbering and the adding the new folder of images to LR for processing as my work around.
    Any thoughts? TIA
    Mike D.

    Yes, This helped me!
    Thank you so much for figuring this out. I have been trying to figure this out for months. Finally I can control the numbering.
    I Shoot an event on several different cards everytime I imported LR3 reset to 001. Made my sequencing a hassle. I had to go into Bridge or PM to rename the images for an event.
    Sophia

  • Very Large Numbers Question

    I am a student with a question about how Java handles very large numbers. Regarding this from our teacher: "...the program produces values that
    are larger than Java can represent and the obvious way to test their size does not
    work. That means that a test that uses >= rather than < won?t work properly, and you
    will have to devise something else..." I am wondering about the semantics of that statement.
    Does Java "know" the number in order to use it in other types of mathematical expressions, or does Java "see" the value only as gibberish?
    I am waiting on a response from the teacher on whether we are allowed to use BigInteger and the like, BTW. As the given program stands, double is used. Thanks for any help understanding this issue!

    You're gonna love this one...
    package forums;
    class IntegerOverflowTesterator
      public static void main(String[] args) {
        int i = Integer.MAX_VALUE -1;
        while (i>0) {
          System.out.println("DEBUG: i="+i);
          i++;
    }You also need to handle the negative case... and that get's nasty real fast... A positive plus/times a positive may overflow, but so might a negative plus a negative.
    This is decent summary of the underlying problem http://mindprod.com/jgloss/gotchas.html#OVERFLOW.
    The POSIX specification also worth reading regarding floating point arithmetic standards... Start here http://en.wikipedia.org/wiki/POSIX I guess... and I suppose the JLS might be worth a look to http://java.sun.com/docs/books/jls/second_edition/html/typesValues.doc.html

  • Is seperate request numbers for all prerequisite & applied notes possible?

    Hi
    I understood that using SNOTE for Note execution, all of the changes done including those in the prerequisite notes are covered in one request number.
    The question is, is it possible (any options setting) to automatically generate different request number for each notes (prerequite notes) execution?

    Hi
    You can create a "Approved" notification to be sent out at the last stage of the path, and apply the custom messages to that notification per respective last stage/path.
    However, if you are planning to use the %PROVISIONING% or %PROVISIONING_WITHOUT_PASSWORD% variable within any of these custom notifications, it only seems to work in the notifications sent out at the end of the request/ AR Close set up in the Global section (screen 1 in MSMP).
    There is a note at the end of the SAP note that describes this limitation:
    Remark: Class CL_GRFN_MSMP_BADI_END_OF_PATH implements following logic:
    At end of each path of Access Request, workflow email will be sent to msmp agent GRAC_USER using template GRAC_AR_CLOSE
    Hope that helps.

  • Feature Requests and Questions

    1. Can you mark all emails as read without having to go through 120 emails per day?
    2. Are there profiles for car (bluetooth on) office (ringer off), etc.?
    Features:
    1. My phone, my ringtone!
    2. A (shhh) delightful whisper button so I can be polite. It would amplify the mic. Why don't ALL phones have one?
    3. Open the phone, let us install widgets. (if Apple doesn't do it, others will.)
    4. Unlock the phone so I can use my European sim (It's my phone, I bought it, right?).
    5. Macros?
    6. Voice memos? (Can we do this? I get lost in the parking lot!)
    7. Bluetooth Browse from my Mac!
    8. Am I missing something but where's my car cord? Bluetooth eats up the battery life.
    9.Print?
    10. Can the phone bake bread?
    This ia a great product, but it needs to be enhanced or other products will catch up and wipe it off the map.
    Fow now, there's nothing out there that can touch it's elegance, features and ease of use, but . . . .
    This is a phone and when it comes to phones, Nokia, Motorola and others have excellent reputations and will steal back market share unless Apple continues to agressively innovate
    (please?)
    A few Macs   Mac OS X (10.4.10)   Ate a healthy dinner tonight

    I can't answer your questions here, but there is now a product feedback form (including enhancement requests) at the product feedback section:
    Product Feedback

  • Request Dispatcher question

    Hi all,
    I have a simple question based on RequestDispatcher.
    When we dispatch a file in our servlet, where should we place RequestDispatcher --- Within try block or after try, catch block as defined in this program
    Please see the coding/program---------------
    // import all necessary packages
    public class SimpleServlet extends HttpServlet
    public void doGet()throws ServletException,IOException
    try
    Here I am retrieving data from database and then store them into bean,and doing some coding.
    This Servlet will call MyJsp.jsp file.
    dispatch="/jsp/MyJsp.jsp";
    Should we define RequestDispatcher here ?
    catch
    // OR here---------
    RequestDispatcher dispatcher=request.getRequestDispatcher(dispatch)
    dispatcher.forward(request,response);
    } // end doGet() method
    } // end class
    Thanks
    amitindia

    Hi,
    It`s better to use outside try{}catch{} block if you forward to a page based on some condition like..
    try{
    if(i.equals("soemthing")){
    dispatch="/jsp/MyJsp.jsp";
    else{
    dispatch="/jsp/Error.jsp";
    catch{}
    RequestDispatcher dispatcher=request.getRequestDispatcher(dispatch)
    dispatcher.forward(request,response);
    OR if u`r going to forward to a single page whatever be the condition then you can use Dipatch inside the try{} block itself.
    regards,
    Saravanan

  • Bates numbering question

    I work for a small print shop doing some basic work. Recently replaced someone else, I was asked today to use bates numbering for a print project for raffle tickets.  These tickets were grouped 4 to a page.  The guy before me somehow used bates numbering to insert the ticket numbers onto the tickets in sequential order.  But to my understanding you can only do this in the header and footer.  SO does anyone know how he accomplished this as I need to be able to recreate it using adobe acrobat.  I thought maybe he used something else but when clicking the remove bates option of a past project he worked on I am using for reference it does in fact get rid of all ticket numbers on page.  Any help would be greatly appreciated

    Hi pierre112,
    You've landed in the Acrobat.com forum. If you have questions about Google Drive, please contact Google.
    If you're using Acrobat Pro, however, see Acrobat Help | Add headers, footers, and Bates numbering to PDFs for information about using Acrobat to add Bates numbering.
    Best,
    Sara

  • Open DNS Numbers Question

    I have a 2Wire Router/Modem from AT&T do i have to add the numbers to this or can i just add them to my computer via System Preferences?

    The number is greyed out, because it is the one supplied by your router since your using DHCP. That's all fine. And you're right. Simply delete the OpenDNS numbers to return to the previous state. Some ISPs have slow DNS, so using OpenDNS is usually a good idea, but not absolutely neccessary.

  • Three Numbers questions:how do you change the auto default background or fill color from white to another color to use in multiple succeeding operations?  what is the formula to express the ratio of two numbers as a percent?

    Numbers questioons:
    -how do I change the automatic default background fill color so it stays a non white color?
    -what is the formula to express the ratio of two numbers as a percentage?
    -how do I create a signal formula to be sue against an entire column of data (for example, if I wanted to multiply the each cell in the column by the number 10)?
    -I have created a spreadsheet in Numbers with header and rows labelled and it contains formulas as well.  I now want to create a new 'blank' of this template with same header and row names and formulas, but without the cell entries from my earlier exerciser so I can use again in the future. How do I do this?

    Hi Matt,
    For short columns, the easiest method is to select the cell containing the formula, then grab the fill handle (small circle at the botom right of the selected cell) and drag down.
    For long columns, use either Jerry's suggestion (copy/paste) or Insert > Fill > Fill Down.
    Copy/Paste:
    Select the cell containing the formula. Copy
    Select from the cell containing teh formula to the end of the column. Paste.
    Fill Down:
    After entering the formula, and pressing enter...
    Click on the column reference tab to select the whole column.
    Command click on each cell above the one containing the formula to remove it from the selection.
    When cell with the formula is the top cell in the selection, go Insert > Fill > Fill Down.
    Pick whichever is easiest.
    Regards,
    Barry

  • Help: simple request bean question

    Help!
    I have a request scoped bean GroupHandler which has a list of groups and I display them in a dataTable. Each row is a link to the "viewGroup.jsp" page which shows a detailed view of the selected group.
    Like so:
    <h:dataTable value="#groupHandler.searchResults" var="group" >
    <t:commandLink action="#{groupHandler.showView}">
        <h:outputText value="#{group.name}" />
        <t:updateActionListener property="#{groupHandler.selectedGroup" value="#{group}" />
    </t:commandLink>
    </h:dataTable>When I click the group name link, a breakpoint in the showView method gets hit, and the breakpoint in the setSelectedGroup method gets hit. And the user gets redirected to the correct "viewGroup.jsp" page.
    The problem is the "viewGroup.jsp" page is trying to display the attributes of groupHandler.selectedGroup, but this object is null. I guess what's happening is t:updateActionListener is calling the setSelectedGroup method of request scoped GroupHandler #1, but viewGroup.jsp is accessing GroupHandler #2 which has a selectedGroup of null?
    How am I expected to set the selectedGroup appropriately? Help!
    Robert
    PS. This appears to work fine when I scope the bean as "session", presumably because there's only one GroupHandler in the mix.

    I believe you are using apache tomahawk tags.
    For your requirement, you can do some research on [t:savestate|http://myfaces.apache.org/tomahawk-project/tomahawk/tagdoc/t_saveState.html] tag.

  • File naming/numbering questions

    I have a group of problems with file numbering that I don’t know how to solve.  My goal is to have an organized system.  I’m open to suggestions about how to solve the situation I’m in and what to do in the future.
    I keep my images in LR, primarily in one catalog of 13,000+ images.  After I set up my initial file numbering system I didn’t pay any attention to it.  What I did was to set up a system as follows: Myname_Date(YY)Date(MM)Date(DD)_Filename Number Suffix.
    This worked fine for a year or so.
    Then I went on a trip and came back with about 2500 images on both media cards and on a portable hard drive. Many, but not all of the images on the cards duplicated what was on the HD.  I lost sight of the fact that the numbering system works, not by using the date the image was created but rather the date the image is downloaded into LR’s catalog system and I downloaded my media cards and then dumped the images from the portable HD into LR as well.  What happened in the process is that multiple images got created and I didn’t realize it.  Sometimes I’d edit an image with its number in this format: SB_081102_5402.dng.  Sometimes I’d edit the same image with its number in this format: SB_08_10_22_5402.dng.  I think there are at least 150 images in this 2nd format (plus virtual copies, PSD and JPEGs). (I’ve put the bold here to make it easy to see what’s going on—it’s not in LR).
    To make matters worse, now that I’m taking a careful look at the numbers that I have, I’m finding something that I have no explanation for at all. I see that I have some images, (I have no idea how many) that I’ve found duplicates of as follows: one image will be properly numbered with a Filename Number Suffix: SB_081030_7358.dng. Then I’ll see that I have a second imaged weirdly numbered with, essentially, just my name and the date: SB_081030_1-2.dng.  The image seems to be a copy that has lost its Filename Number Suffix.
    As if this weren’t enough, I’ve got an upcoming trip where I’ll take two camera bodies that are the same model of camera and it’s quite possible I’ll use both the same day as well as multiple cards that might be used on the same day.  It, therefore, seems to make sense for me to switch to a system that scraps the Filename Number Suffix and replaces it with a 4 digit sequence (0001).  But do I just leave my old, fractured and broken non-system sitting there and then import a new system on top of the old one?
    And how do I handle, going forward, importing images that I’ll back up on my portable HD without again getting the mess I’m in now? How do I fix what I've got?  Is there an easy way?  How to even find all the images that are are there with no Filename Number Suffix?
    Hope this mess is clear and a huge thanks to anyone patient enough to plow through it and suggest some answers!
    Stephanie
    Mac OS X, LR 2.4

    Stephani,
    It was bugging me, too, why I wasn't seeing what you were. I did a little research, and a little investigation, and I think I have some things figured out including some things that may make me re-think my approach.
    Basically, the reason we weren't seeing the same things was that I was looking at the rename dialog that pops up when you're in Libary (i.e. you're renaming files that already exist in LR) and you were looking at the rename dialog that appears as part of the import.
    I thought these dialogs were the same, but they aren't!
    The library dialog has Sequence #, Image #, and Total #, and that's what I wrote about in my prior post.
    The import dialog has Sequence #, Image #, and Import #.
    I can't find any hard documentation, either, but here's what I *think* happens.
    Library Renaming:
    Sequence #: Starts with the sequence number you specify, and increments by 1.
    Image #: Out of the total number of images, what image is this (The "x" in Image X of Y)
    Total #: The total number of images selected for renaming (The "y" in Image X of Y)
    Renaming 3 files with a template "Custom Text_Image # (01)_Total # (01)_Sequence # (01)", where custom text is "SB" and  your starting sequence as 17 (just for illustration), here's what your images would be named:
    Image 1: SB_01_03_17.dng
    Image 2: SB_02_03_18.dng
    Image 3: SB_03_03_19.dng
    Import Renaming:
    Sequence #: Same thing as Library
    Total #: Similar to Library, the total number of images being imported
    Image #: Even though it's named the same as the Libary option, I think it works completely differently. Every image imported gets the next available number. This is the high water mark I think I was looking for!
    Import #: Every time you do an import (i.e. click the Import button and import something), this sequence gets incremented by 1.
    So let's say you're importing 3 files, with template "Custom Text_Import #(01)_Image #(01)_Total #(01)_Sequence #(01). Custom text is "SB", and sequence starts with 1.
    Image 1: SB_01_01_03_01.dng
    Image 2: SB_01_02_03_02.dng
    Image 3: SB_01_03_03_03.dng
    Then, you import 4 more images. The interesting thing to note here is that the Import # now becomes 2 (your second import), but the Image # picks up where it left off.
    Image 1: SB_02_04_04_01.dng
    Image 2: SB_02_05_04_02.dng
    Image 3: SB_02_06_04_03.dng
    Image 4: SB_02_07_04_04.dng
    Then, you import 3 more images. The Import # now becomes 3, and again Image # picks up where it left off.
    Image 1: SB_03_08_03_01.dng
    Image 2: SB_03_09_03_02.dng
    Image 3: SB_03_10_03_03.dng
    The interesting thing to note about this is that Image #, if used consistently, would ensure that each image had a unique number. So always specifying an import template of "Custom Text_Image #(00001)" would mean that you could have SB_00001.cr2 through SB_99999.cr2.
    Caveat #1 is that apparently Import # and Image # don't start incrementing until you actually use them. I've done countless imports and have thousands of images, but the first time I used these fields, Import # was 1, and Image # was 1.
    I suspect that it's the fact that you actually USE these fields in a naming template during an import that causes them to be incremented. If you don't use them during import, the fields won't be incremented. I haven't verified this yet.
    Caveat #2 is that I don't see any way of changing these number if you don't like them. For example, if you've already imported 3,0000 images, and want Image # to start at 3001, too bad. If you've never used Image #, it's going to start at 1. Of course, I'm sure it's stored somewhere in the .lrcat file
    Still, I think Import # and Image #  are extremely helpful, and I think I might start using them to ensure unique filenames.
    The puzzler is how all this figures into LR's determining a "suspected duplicate", assuming LR uses filename as part of that.
    If I rename every image upon import to SB_xxxxx.dng, LR thinks that SB_xxxxx.dng is the original name.
    So if I have camera 1 with DSC_1234.nef, and it's renamed to SB_00001.dng upon import, what happens when I try to import the BACKUP of camera 1's DSC_1234.nef? If it was imported, it would be named SB_00002.dng. But hopefully LR know it's a  duplicate, right?
    But what happens if I have camera 2, and it has a completely different image that also happens to be named DSC_1234.nef. Would that be considered a duplicate?
    I've never seen or heard the actual logic for how LR determines a duplicate, but with renaming upon import and multiple cameras, I think it's pretty important to know.

Maybe you are looking for