Can someone explain me well when the infopackage use batch or dialog?

Hi Gurus,
can someone explain me well when the infopackage use batch or dialog?

Hi ,
first of of in Bi_btch job nothin comes in the log .. but if you use PSa and then into data target then it willl definatly create background jobs .. but i feel it doesnt relate to the concept you are taking about ..
if you us e a sepeate update from PSA step the it will create backgroung jobs ..of  king bi_btch and if you push the packets maually then it will create jobs like bi_book .. thats the diff ..
The initialization and execution of an InfoPackage is implemented as a process type in the process chain maintenance. The Start Later in Batch setting is hidden if the InfoPackage is used in a process chain. This is because the start of the request is determined by the process chain itself.
If you do not use the InfoPackage in the process chain maintenance and you want to process the data request in the background, select the radio button Start Later in Batch and define the required start time. If start times already exist for this data request, this is indicated with a  next to the Scheduling Options pushbutton. You can change the start time using Settings Options. You can also enter an end date for the data request with a background job.
If you schedule an InfoPackage in the batch later, the background request job runs until all data is updated in BW. This is displayed with a corresponding indicator in the Schedule tab page.  The load process remains active until the data is updated.
For example, this gives external scheduling tools the option of monitoring the request job. The job then also runs with a request from an SAP source system as long as the source system has sent the data to the BW system and posted it or until the monitor sets the request to red. In the job log, a success or error message is displayed according to whether the request was posted successfully or not.
regards,
shikha

Similar Messages

  • Can someone explain to me what the Terminal does?

    Can someone explain to me what the Terminal application does? A good explanation would be greatly appreciated, thanks!
    NA

    Can someone explain to me what the Terminal
    application does? A good explanation would be greatly
    appreciated, thanks!
    Sure, go here:
    http://www.macdevcenter.com/pub/a/mac/2001/12/14/terminal_one.html
    Powermac G5 - Macbook C2D   Mac OS X (10.4.8)   Both macs are heavily upgraded and used frequently.

  • I am trying to use an external HD and need to configure it for the MAC. Can someone explain how to configure the HD (Western Digital - My Passport SE)?

    Can someone help explain how to add an external HD to the Mac? I have a Western Digital My Passport SE and need to configure if for the MAC and add it to the HD location on my Mac.

    Connect the external drive to the Mac. You can do that while the Mac is on, (If the drive is one that has to be plugged into a wall outlet do that too and turn the power on.) If there is a light on the drive it should turn on.
    Now double click on the hard drive icon - top left of the screen of your computer. When it opens look for the Applications folder. Double click that. Next look for a folder called Utilities. Double click. In there you will see a file called Disk Utility.app. Double click on that.
    You will now see something like this, with two items on the left. The second one is your new drive.
    Select it - one click. And click on Erase - one of the buttons at the top, You will see this.
    You must select the Format, it's a drop down - the one shown in the image above is best. You can change the name from Untitled if you want. The name can be changed later if you prefer.
    At this point look at the bottom right. There is a button there called Erase. Click on it. Then go get yourself a cup of coffee - this will take a few minutes.

  • Can someone explain how to set the focus to a component

    Hello,
    What is the best way to ensure that a component gets the focus with code. I have tried requestFocus and requestFocusInWindow and none of them seems to do there work. The frame containing the components that should get the focus is displayed, the component is focusable so that is not the problem. What I found out is that if the component is deep in a nesting of panes (where the top pane is in the frame) is that calling requestFocus or requestFocusInWindow does not give the component where this focus is called on the focus but either the pane that contains it, one of the parent panes of this pane or one of the components in these panes, in almost all cases the component requesting the focus does not get the focus at all. I always have to write a work around in defining a focus listener for all these panes that transfer the focus back to the component that requested the focus originally, I can't believe that this is the way to ensure that a component has the focus via code. I have searched for documentation but found nothing on what requestFocus(inWindow) is actually dooing (a lot about focus traversibility but I don't want to control this, just make sure that a component gets the focus).
    Again I'm pretty sure that the toplevel window is activated and that the component that requested the focus is focusable (I had created a derived version of the DefaultFocusManager that showed who has focus). Personally I think (and I'm not alone if you do a search in this forum on focus management) that there is either a big problem in the documentation of focus management or that it is still not possible to even try to set the focus on a component in a easy way.
    Marc

    Hello,
    thanks for your reply, here is some example code that illustrates the problem I have (the actual code is to big to show here, which is the raison why I did not posted it here). The code wil create a frame with a JPanel with a JTextField, a 'New' Jbutton and a 'Delete' Jbutton, a tabbed pane in the center ('New' will create a new JPanel, add it to the tabbed pane and set the focus on it, either by calling RequestFocusInWindow() directly or by calling it via InvokeLater (someone on this forum suggested to use this). I changed also the focusmanager to show the component that has the focus when you type something. To test compile and run the program (either with a call to requesteFocusInWindow directly or indirectly (by changing the comments), on my system I get the following behaviour:
    1. requestFocusInWindow called directly
    Start program en type, the tabbed pane has the focus
    Press New and type something, a button has the focus not the created panel
    Press New again and type something, a button has the focus not the created panel
    2. requestFocusInWindow be called indirectly
    Start program and type, the tabbed pane has the focus
    Press New and type, the created panel has the focus (I thought at one moment that I had found the solution there, but alas ...)
    Press New again and type something, a button has again the focus.
    Note that with my real program it is not always a button that will have the focus, sometimes it is a combobox or a TextField (I tried to get this with the example code (the JTextField) but did not succeed.
    Hopes this clarify the problem a little bid, what I want is when the window is visible to set focus on newly created panes (or in the real program on the panel that is selected via the tabbed pane or via a key combination to shift the focus between the panels) but requestFocusInWindow seems to behave unpredicatable. I can't imagine that what I see is a bug so I must make some assumptions which are not valid but I don't see them, btw listening on the WindowListener is I think not the solution because the frame is already displayed when I want to set the focus and I do not use a modal dialog box.
    The example code follows here
    Marc
    * Main.java
    * Created on December 21, 2004, 8:58 AM
    package testfocus;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    * @author marc
    public class Main
    static int counter;
    /** Creates a new instance of Main */
    public Main()
    * @param args the command line arguments
    public static void main(String[] args)
    JFrame frm=new JFrame();
    JPanel content=new JPanel();
    frm.setContentPane(content);
    final JTabbedPane paneContainer=new JTabbedPane();
    JPanel bar=new JPanel();
    JButton create=new JButton(new AbstractAction("New")
    public void actionPerformed(ActionEvent ev)
    counter++;
    final JPanel pnl=new JPanel();
    pnl.setName("test"+counter);
    paneContainer.add(pnl);
    pnl.setFocusable(true);
    pnl.requestFocusInWindow();
    /* Either use this or the previous line
    SwingUtilities.invokeLater(new Runnable()
    public void run()
    pnl.requestFocusInWindow();
    JButton delete=new JButton(new AbstractAction("Delete")
    public void actionPerformed(ActionEvent ev)
    int i=paneContainer.getComponentCount()-1;
    if (i>=0)
    paneContainer.remove(i);
    JTextField dummy=new JTextField("Test");
    bar.add(dummy);
    bar.add(create);
    bar.add(delete);
    content.setLayout(new BorderLayout());
    content.add(bar,BorderLayout.SOUTH);
    content.add(paneContainer,BorderLayout.CENTER);
    frm.setSize(300,400);
    FocusManager.setCurrentManager(new DefaultFocusManager()
    public void processKeyEvent(Component component,KeyEvent ev)
    System.out.println("Focus owner"+getFocusOwner());
    super.processKeyEvent(component,ev);
    frm.setVisible(true);
    }

  • Can someone please tell me when the unlocked iPhone 5 is coming in U.S???!!

    Please someone tell me when the iPhone 5 unlocked coming out or if isn't..

    This is a user forum. We don't have such information.

  • Could someone explain on examples when do we use dynamic link?

    I noticed hashmarks (#) around some MII expressions and I still don't understand when should I use them...
    What was the intention to introduce dynamic link into MII?
    thx
    1. at certain places the hashmarks must be there
    2. at certain places the hashmarks mustn't be there
    3. at certain places the hashmarks could be there

    Hi Tibor,
    basically, hashmarks are used when you want to subsitute some values dynamically.
    Let's say you have a local variable named Temp whose value is section ID which changes depending on employee ID.
    Now you want to pass this to a query, you cannot obviously pass the ID but assign it to Local.Temp and Pass '#Local.Temp#' to it to substitute the value dynamically.
    So the query is called with different Temp values generated dynamically depending on some logic.
    Hope this helps.
    Best Regards,
    Swaroop

  • XFL - can someone explain CUBICS attribut in the EDGE tag?

    As there is no XFL documentation, I would like to ask if someone knows what's the CUBICS attribut in EDGE tag used for. I have a script which creates new shapes in XFL, but I don't know how to deal with the cubics part. I don't create it, but than I notice that there are issues when I try to edit shape whithout the cubics info in the IDE (like adding new point). The solution is to touch the shape a little bit, save and reload the source which creates the CUBICS records, but anyway, I would like to understand it a little bit.
    Here is a simple example how cubics looks like:
    <edges>
          <Edge fillStyle0="1" edges="!3786.5 0.5S1|0 0.5!0 0.5|0 3542.5!0 3542.5|3786.5 3542.5!3786.5 3542.5|3786.5 0.5"/>
          <Edge cubics="!3787 3543(;3787,3543 3787,1 3787,1q3787 3543 3787 1);"/>
          <Edge cubics="!0 1(;0,1 0,3543 0,3543q0 1 0 3543);"/>
          <Edge cubics="!3787 1(;3787,1 0,1 0,1q3787 1 0 1);"/>
          <Edge cubics="!0 3543(;0,3543 3787,3543 3787,3543q0 3543 3787 3543);"/>
    </edges>

        Upgrading is always exciting, gbright! You can save up to $25 per line when upgrading with Edge. This does require you upgrading your device and accepting an Edge agreement. You will still qualify for your monthly employee discount off the More Everything access charges as long as the plan is $34.99 or higher. Each line has its own contract/edge agreement. You do not need to wait for the 4th line to be eligible to take advantage of Edge or the discounts. If you are eligible for the standard Edge, you do not need to trade in your current devices. You only trade in the devices when it is early edge. I can provide you more details in a private message.
    I just sent you a follow request. Please follow back and send me this information in a private message.
    Thank you,
    LenaA_VZW
    Follow us on Twitter @VZWSupport

  • Can someone explain to me what the history state slider does?

    Hi everyone!
    Why use the slider when I can easily click a previous state from the list in the history panel?
    Does the slider have some extra function that I may have overlooked?
    Thanks for your help,
    It's been bugging me for ages.
    Kelly
    (using Photoshop CS5.1)

    I had to boot my old XP machine to fire up CS5 and remind myself of this feature. It's called the Active State Marker and merely shows the currently active history state. Some documentation indicates you move this slider to another history state to make it active. By why bother; just click a history state to make it active. This slider is no longer available in CS6 or CC because -- as you indicate -- it doesn't do anything useful.

  • Can someone explain how to resolve the error "Error al intentar cambiar los módulos"?

    I just reinstalled Lightroom 5, but when i run it, it show the message"Error al intentar cambiar los módulos",
    Does someone know how to fix that? Thanks!

    Error changing modules | Lightroom

  • Can someone explain to me about the "Facebook" interfacing with mountain lion?

    I've been hearing about one of the new features of Mountain Lion can now interact with facebook?  If this is true how?

    Pending.  Facebook integration will be launched in the fall.
    http://www.apple.com/osx/whats-new/features.html#facebook

  • HT4061 MY ipad has been stolen and i am looking for serial number for insurance purposes can someone explain how to finf the serial number by looking within Itunes and finding hardware that has been used with my itunes account

    any help finding my ipad serial number please
    Thanks

    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
     Cheers, Tom

  • Can someone explain to me what the "loose hinge" issue is all about?

    my gf just bought a new MB and have had the pleasure of playing around on it for a little while. love it and it practically out performs my late 2007 MBP! the only con imo is the glass in front of the screen, but it's not my computer!
    i read on here about people claiming there is a loose hinge issue? i know if i close the lid to a certain point it shuts itself (maybe about 1/4 - 1/2 inch gap before the lid is fully closed), but i'm pretty positive that it's really just the magnets for keeping the lid closed.
    i mean, is it simply an issue of the magnets being a little stronger than what people are expecting or is the lid shutting on its own with a gap of several inches?
    anyways, the hinge on her MB seems perfectly fine.

    The Lightnng cable hasactive components and are not just wire
    Lightning cable's authentication chip found to offer "just enough" security
    Thus it appears that Apple is still having difficulty making cable that last.
    - Make an appointment at the Genius Bar of an Apple store. Bring the cable too
      Apple Retail Store - Genius Bar
    I have not has any problem with the Lighning cables that came with my iPad 4 and my 7G iPod Nano

  • Please can someone explain how to delete email addresses?  I have people who when I type in their name it comes up with the correct email address but then when you hit return to confirm it promptly changes the name to someone else (always the same someone

    Please can someone explain how to delete and email address that when typed in brings up one name but when you hit return to confirm it jumps to another name.  I can't find them in my contacts list but they do come up when you type the first few letters of a name.
    EG If I type xyz and the name of the person comes up, when I press return to confirm that's the one I want then it jumps to [email protected],  always the same def address.
    I can't fathom it out.
    Thanks
    Terri

    Try this:
    Start a new email.  In the To address bar, type in xyz like you normally do, press return to confim, and when the address you want to remove shows up in the address bar, move your cursor over the address you want to delete.
    A small triangle next to the name will show up.  click on it, a drop down menu will open, click Remove from Previous Recipients List.  Then do the drop down menu again and Remove Address.
    Good luck.

  • I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this.

    I have a lot of various book mark folders with websites contained within each folder. I am able to sort the websites within each folder alphabetically by name but I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this other than manually dragging them as this is extremely hard for me due to the fact that I am a quadriplegic with limited hand movement dexterity

    Bookmark folders that you created are in the Bookmarks Menu folder. "Sort" that folder.
    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically

  • Can someone explain the icloud to me please? Where are all my old pictures and how can I see them? Photostream only holds 1000 and when I sync my icloud to my mac it only imports what is on my photo stream.

    Can someone explain the icloud to me please? Where are all my old pictures and how can I see them? Photostream only holds 1000 and when I sync my icloud to my mac it only imports what is on my photo stream.

    When you enable photo stream on your Mac, in imports photos currently in your photo stream.  However, photo stream only keeps photos for 30 days, even though up to 1000 photos will remain on your device until you delete them.  When you enable photo stream on your Mac, you will only receive photos added in the last 30 days, as the others are no longer in your photo stream.
    If you want to get all your old photos on your Mac, save them to your camera roll (if they aren't already there) by opening your photo stream album, tapping Edit, tap the photos, tap Share, tap Save to Camera Roll.  Once they are in your camera roll, import them to your Mac as explained here: http://support.apple.com/kb/HT4083.
    Another option would be to create a shared photo stream containing the older photos and invite yourself (as explained here: http://help.apple.com/icloud/#mmc0cd7e99).  Then check Shared Photo Streams in iPhoto>Preferences>Photo Stream and you will see this shared photo stream on your Mac.

Maybe you are looking for

  • Problem with GROUP BY/HAVING in Sybase -- Oracle Migration

    Having problem converting SQL from Sybase to Oracle. The SQL statement in Sybase does not work in Oracle (ORA-979). When make changes the Oracle result is incorrect. Oracle Version is 8.1.6.3. #1 Sybase SELECT BIRTHDTE, FSCDTE, MINCDE, RETDISDTE, RET

  • GRC App Names

    So from my understanding... Risk Analysis and Remediation = Compliance Calibrator Compliant User Provisioning = Access Enforcer Enterprise Role Management = Role Expert Superuser Privileged Management = Firefighter This might be a silly question but

  • Renderer issues with 1.1

    Hello all, Upgraded my iprint appliance with the export + import function. Had 1 renderer. After the upgrade I was not able to see the old 1.0 renderer. On the render page I get the error: com.novell.admin.common.server.rpc.beans.RpcExcept ion: com.g

  • Show VI from another VI as a popup dialog

    Hi there, I have a beginner question. I created a VI which displays some data, and I have an Edit button to edit the selected data. When I press the Edit button, I want to show another VI, preferrably as a modal dialog. How to do this? Thanks, Csaba 

  • Opening .psd files in Elements

    Can Photoshop Elements open .psd files created from older versions of "regular" Photoshop, including Photoshop 7.0? And can .psd files created in Elements be opened in Photoshop 7.0? Thanks.