List of data targets is not visible during data upload

Hi all,
  I am trying to load user defined transactional data into an info object, i will do all necessary customization steps such as creating application component,assiging data sources,creating info packages and then creating update rules in info cubes, moreover i wrote a routine which calculates sales reveune based on cost and quantity sold.
My problem is that when i created infopackage , it does not list any data targets, Plz any one can give tips in this regard.
thanks in advance
regards,
a.fahrudeen
Message was edited by:
        FAHRUDEEN MUSTAFA

Hi Fahrudeen,
Am a little confused here... you say you want to load Transaction data and load it into the InfoObject?? what was that??
You can load the Transaction data only into your data targets such as InfoCube and DataStore Objects... If you are loading the data into your InfoObjects, then that would mean that you are loading the Master data for which obviously you won't have your data targets listed in your InfoPackage... Only in case of loading the transaction data would you have your Data Targets listed in your InfoPackage...
Regards
Manick

Similar Messages

  • Drop down list(JComboBox) - Bottom border is not visible for the first time

    Drop down list(Combo-box) JComboBox - Bottom border is not visible for the first time i click on the arrow to drop the list down.
    I am using jdk1.3.1_02.
    Did any one face this issue.
    Please let me know.
    Thanks,
    Sridhar.

    I must be a little confused regarding your question.
    You can simply change your code frame.setSize(200, 200); to frame.setSize(400, 400);When you say you are unable to see the border are you specifically talking about the border of the frame or the border of the combo box?
    Lance

  • Added target property not visible in EM12c

    Hi,
    I have added some new target properties using emcli "add_target_property" command. I see them on targets and set values but they are not visible for selection on any EM12c screens i.e. pull down manues or setting up filters for group creation etc. Does any one know how to make them available on EM12c screen menues?
    Thank you.

     
    Hi,
    From the error message you have mentioned, it seems that the web front end servers are out of synchronization. You can use the following steps to fix it:
    Restart the SharePoint 2010 Administration on all of the Web Front End servers (or at least just make sure to restart the one on the WFE where the deployment failed).
    Restart the SharePoint 2010 Timer service on all Web Front End servers.
    The SharePoint 2010 Administration service carries out the actual removing and adding of files the GAC (Global Assembly Cache). This works most of the time and the service will release the handle on a file.
    However, if the Administration service does not release the handle on the file, then you will also need to restart the Timer service. Restarting the timer service on SharePoint 2010 will restart all SharePoint 2010 timer jobs and you will need to delay installation
    for a while, until all of those jobs have had a chance to complete.
    In addition, I suggest that you clear the configuration cache on the server, then test again.
    http://blogs.msdn.com/b/jamesway/archive/2011/05/23/sharepoint-2010-clearing-the-configuration-cache.aspx
    Thanks,
    Rock Wang
    Rock Wang TechNet Community Support

  • Hard Drive not visible during install.

    I recently tried to turn on my G4 and got just a white screen. So I assumed it was the hard drive. I installed a new Hard drive. Put in my Leopard disk and the drive is not visible. I went into Disk Utility to format it, if needed. It was not visible there either.
    Out of suspicion, I plugged in the old HD into a different mac via USB and my data is there and visible.
    What could the problem be? I went back and double checked all of the cables.

    I know it's a pain to take out just to test, however, did you plug the new drive into the other system via USB to see if it's recognized also?
    Usually in this situation, it's a cable problem. Either a cable is not seated completely, or in rarer cases, there's a problem with a cable itself. Since the old drive is visible to the other system, you may have another issue going on, like a logic board problem. I'd want to run the Apple hardware test. On the gray OS X system CDs that came with your system, find the one that says 'AHT Version x.x', insert it, reboot, and choose the extended test when prompted. Either of the TechTool programs can do similar testing.
    By the way, your sig says you have Snow Leopard 10.6.3 installed, which is impossible on a Powerbook. Leopard 10.5.8 is the last operating system release available today for Powerbooks.

  • Enhancement not visible during runtime

    Dear experts,
    I have a problem with getting enhancements up and running in runtime.
    I Changed 2 enhancements in FM J_1B_NF_VALUE_DETERMINATION and activated them. Activation goes fine, but for some reason during runtime (in debug mode), I can not see the code of the enhancement at all. My changes are not triggered, I can not even see the code in debug-mode. The complete code-block is missing. It seems that the enhancements are not active and are just not embedded during runtime. Do I have to activate something else? I guess CMOD and SMOD are not relevant in this case but if they are please let me know.
    Thanks in advance
    William

    if you are usng enhancement framework then there is no need of CMOD/SMOD.
    where have you created your enhancement spots? and what type have you given there?
    goto SE19 and see what actually is the status of the enhancement .. if active, keep breakpoint directly inside your enhancement coding,
    when FM starts executing, you will find a circular swirl(just on the left side of the code ), that mean it will goto your enhancement. it wont direcly show in the deugger, you press F5 and then it will go inside your code.

  • Attachment list for business objects is not visible

    Dear all
    I have connected an external server to SAP.
    Created repository and created Doc types (say for ex : ZFIINV,  ZMM DRW) and created entries using tcode OAC3
    now i have assigned my doc type to corresponding Business Objects (BKPF for accounting doc,BUS2105 for purchase requisition ,MKPF for MM related docs)
    now i have created entries for my scanned docs in table TOA01.
    i can search an display these docs which are already placed  there in my content server. but i can not see these documents links entries in the attachment list of corresponding Business objects entries.
    for example in BO : BKPF  attachment list i cant see al the link entries .
    please suggest whether any BO is not published or R/3 application connection to the generic object service is not done?
    thanks sandeep

    Hi Sandeep,
    I am not totallt getting your point but can suggest following points:
    1. Check whether these object are displaying in DIR's as object links.
    2. If it is there then it shoud be displayed in document data of those objects.
    3. Check that documents are properly checked-in.
    Hope this may help.
    Regards,
    Ravindra

  • List: Scrolled item's label not visible. Help!

    I've created a subclass of List so that I can scroll through the list without the use of scrollbars.  The test application is spin-off of the List sample app.  But when using the buttons to scroll down or up, some of the items in the list are not being shown properly.
    Does anyone know how get the labels of the list items to refresh themselves, or, is there a better approach for performing the manual scrolling so that this doesn't happen?
    Here is the code I'm using to do the scrolling. This is in the subclass of List...
                public function scrollUp(timerEvent:TimerEvent):void {
                    if (_position > 0) {
                        _position = _position - 1;
                        scrollVertically(_position, 1, false);
                    } else {
                        stopScrolling();
    Attached are the files ManuallyScrolledList.mxml and the application that drives it.
    Thanks in advance for any comments or suggestions.

    The label associated with an LOV entry for a Select List.
    If I have a list of areas, say defined as
    STATIC:Hobbiton;1,Bywater;2,Harbottle;3and a branch to a page with a report region showing a report based on the value of the area select list, I want a dynamic region title to show Results for Hobbiton rather than Results for 1, which is what you get if using a title defined as
    Results for &P2_AREA.

  • Insecurity of Keychain Access: "secure" notes visible during authentication

    Sorry if this has been discussed before, but I'm not keen on wading through 137 pages of discussions.
    I recently discovered Keychain Access' ability to create "secure notes," and thought this would be a wonderful way to keep my serial numbers, bank accounts, and other sensitive information secure.
    However, I just tried to actually decrypt this information for the first time, and was rather shocked. When you attempt to open a secure note, and select the "show note" checkbox that prompts the "Deny / Allow Once / Always Allow" dialog box, the dialog box contains the "secure" information from the note!
    In my example, which you can see here (http://www.justinreese.com/media/images/secure_bbedit.png), the entire text of the note is included in the dialog, previous to any password authentication. Of course, because I'm reusing the login keychain, I understand that it's already been decrypted upon logging in; however, I was under the impression that using Keychain Access to store secure notes and other passwords offered a secondary level of protection, and that even if someone were able to compromise my system while I was logged in, at least that sensitive data would remain secure (the way a dedication application such as Wallet or Yojimbo would do it).
    So... is this a bug, an oversight, or simply my own poor planning in using the login keychain to store secure information?
    Thanks to all.
    17" Powerbook G4/1.5Ghz   Mac OS X (10.4.6)   Stock + 1GB of RAM
    17" Powerbook G4/1.5Ghz   Mac OS X (10.4.6)   Stock except 1.5GB of RAM

    My suspicion is that when you created the note, in the "name" field, you used "paste" intending to paste "BBEdit 8 Registration". However, if the clipboard at the time had contained multiple lines, the "Name:" field would then contain the entire contents (Owner Name, Email Address, etc), although it might not be immediately apparent since the main "Keychain Access" window would only display the first line. However, when asking for authentication, the full "Name" is displayed. This scenario is easy enough to replicate.
    The odd thing is that even if the "Name:" is subsequently edited to remove the extra lines, the "authentication dialogue" seems to continue to ask for authentication using the "old" name... it's probably being cached somewhere but I haven't been able to track it down.
    So in this case, I would call this "user error" for putting "secure" info in an "insecure" field in the first place, but there is definitely some sort of bug / oversight / slopiness in that the authentication dialogue doesn't update - so in effect it is asking you to authenticate for one thing, when in reality it is authenticating something that might have a completely different name. That sort of thing might open up "spoofing" opportunities, but for a user's personal keychain, I would suspect that anyone that can get close enough to do something with it would have opportunities to do far worse. Still, it can't be a good thing...

  • Entered Numbers Not Visible During Entry

    Have a oddity on my Mac: If I try to type in values for the sliders in the Develop module, they dissapear duing entry.
    1. Click on an enterable area for a slider. The text highlights.
    2. Type in a value. Value is still visible.
    3. As soon as the slider moves to the entered value, the text dissapears. It looks like it changes to the normally displayed gray value.
    4. Tab out or click outside the area and all goes back to normal.
    Mac Pro Nahalem dual 2.93, 16gb RAM, 10.6.8, ATI 4870 512mb
    Jim

    i note the same problem on the exposure field entry. imac,lion.
    it is distracting and correcting one's errors in this regard requires some effort.
    vince

  • NOKIA N85 NOT VISIBLE DURING SUNLIGHT

    i have a nokia n85 smartphone. During sunlight, it is difficult to see anything. i put the light sensor to maximum but no result. can any one help me solve this?

    sorry, but it's a common issue, nokia's n85 and n86 are performing poorly in direct sunlight, that's just the way oled goes. altough the technology was designed for better clarity and contrast, it lacks on readability under strong lightning. the best thing you can do is set your phone on either a really darkish theme, or on a really bright one, it might help. however, there is a version of the n85 shipped since june 2009, which seems to comport better on direct sunlight. is that the one you have? if not, you might consider it.
    If, from time to time, I actually give a good advice, please click on the Kudos icon, I have cookies and free hats!

  • Missing Functionality:BP Properties not visible during Add

    Have formatted search to determine a new
    bp code based upon business properties, but the variable is not set.
    Select $[OCRD.QryGroup1] always returns 'N' even if the the BP property
    is set when in Add Mode. Tested with an existing bp record the variable
    is set correctly.
    Edited by: Robert Fernandez on Sep 9, 2008 7:56 PM

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • My text messsage is not visible during my program works

    I have write a programm, to write a file format in an other.
    The files are so big that the programm work very long. So I made a text message  that show the program is still working.
    In the beginning was working well. But now the text messages is no longer displayed.
    I have no idea what the problem is.
    some code:
    int CVICALLBACK ReadCallback (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    int iConfiguration;
    switch (event)
    case EVENT_COMMIT:
    SetCtrlAttribute (panelHandle, PANEL_TXTMSG_Load, ATTR_VISIBLE, 1);
    GetCtrlVal (panelHandle, PANEL_Dataset_Conf, &iConfiguration);
    Function_Worker(iConfiguration);
    SetCtrlAttribute (panelHandle, PANEL_TXTMSG_Load, ATTR_VISIBLE, 0);
    break;
    case EVENT_LEFT_CLICK:
    break;
    return 0;
    The function_worker does made nothing with the GUI but it works with a DLL. Is this a problem?
    Do you have any ideas?
    Solved!
    Go to Solution.

    Somewhat more elaborate I'd suggest to modify your code as follows:
    case EVENT_COMMIT:
        SetCtrlAttribute (panelHandle, PANEL_TXTMSG_Load, ATTR_VISIBLE, 1);
        ProcessDrawEvents ();
        GetCtrlVal (panelHandle, PANEL_Dataset_Conf, &iConfiguration);
        Function_Worker(iConfiguration);
        SetCtrlAttribute (panelHandle, PANEL_TXTMSG_Load, ATTR_VISIBLE, 0);
        break;

  • Contact names not displaying during calls, but only in logs

    Many names in the address book not showing up
    Hence, when i get a call or make one, the name doesnt come up with the number
    after the call, the number with the name is visible in call log as outgoing or incoming or missed
    in the database details it shows my address book having 238 numbers (these are the numbers currently visible)
    so how is it that the names are visible in the log and not in the address book and also not visible during a call
    Please help
    (a search for this topic hasnt got me the correct results)

    Same thing happened with mine! Still haven't figured it out, but **bleep** it's annoying!

  • Screen not visible

    Screen flashes, remote client window is listed (in WIndow Menu), but not visible.   It is as if it is off-screen somewhere.  Any ideas?  I have tried deleteing from the all computer list and reconnecting with no luck.  Unfortunately it is a co-located Mini in a secure location - I can't easily get to it to put a real monitor on it.

    I was able to see the log and these are the entries after I ran the kickstart routine.  Is there anything unusual in there?.:
    savantadev:admin admin$ tail -f /var/log/secure.log
    Feb  2 13:57:15 savantadev /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Ma cOS/AppleVNCServer[88972]: Authentication: SUCCEEDED :: User Name: pcottrell :: Viewer Address: xxx.xxx.xxx.xxx :: Type: DH
    Feb  2 14:19:47 savantadev /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Ma cOS/AppleVNCServer[88972]: Authentication: SUCCEEDED :: User Name: admin :: Viewer Address: xxx.xxx.xxx.xxx :: Type: DH
    Feb  2 15:47:20 savantadev sshd[91196]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Feb  2 15:47:25 savantadev sshd[91194]: Accepted keyboard-interactive/pam for admin from xxx.xxx.xxx.xxx port 55603 ssh2
    Feb  2 15:47:25 savantadev com.apple.SecurityServer[46]: Session 0x2f394d created
    Feb  2 15:47:25 savantadev com.apple.SecurityServer[46]: Session 0x2f394d attributes 0x20
    Feb  2 15:57:10 savantadev com.apple.SecurityServer[46]: Session 0x2f04f4 dead
    Feb  2 15:57:10 savantadev com.apple.SecurityServer[46]: Killing auth hosts
    Feb  2 15:57:10 savantadev com.apple.SecurityServer[46]: Session 0x2f04f4 destroyed
    Feb  2 16:01:58 savantadev /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Ma cOS/AppleVNCServer[91468]: Authentication: SUCCEEDED :: User Name: pcottrell :: Viewer Address: xxx.xxx.xxx.xxx:: Type: DH

  • AED not visible in Cenvat Utilization.

    Hi ! All,
    At my Client site, in Excise scenario, in addition to BED,ECess,SE Cess, AED ,is also used.
    Now friends, is this AED cenvatable,  because this AED part is not visible during cenvat utilization.
    Do I need to some configuration so that I will be able to view it.
    Thanks,
    Regards,
    DGN

    hope u talking about AED additional duty of excise  and not ADC additipon duty of customs
    If u talk of AED
    then according to law AED can       be motivated agains AED only
    So you will have to have a sales document with AED amount ,    IF u have     sales doc with AED then     Input AED will also be seen in J2IUN
    hoipe this helps

Maybe you are looking for

  • What is the best camcorder for about $1000. Advise me please I want to buy

    What kind of a camcorder you can advise me to buy for about $1000? Whether new, refurbished or used. The one which uses miniDv tapes. 

  • Function error when calling in background

    Hi people! I need some help please. I have an program that call an RFC function. This RFC function made select in BSAD, and because of the range, will return a lot of registers, so it cause timeout. We tried run it on backgroung, but after 1 hour app

  • Acrobat bookmarks are lost when resaving the file

    Hi, I am converting a docx to pdf using Save as --> PDF --> clicking on options and selecting create bookmarks using headings and publish. The conversion is done perfectly. However after encrypting, or changing a name of a bookmark and saving after t

  • Anonymous Classes

    Can you implement an interface on an anonymous class ? (of course the anonymous class does not belongs or extends of an interface) I know this sound strange but it's in a code I have to maintain and in order to make less changes as posible I want to

  • Will Photoshop CC work with Bridge CS6

    Hi I'm about to download Photoshop CC (Windows 7). I already have Photoshop CS6 and Bridge CS6 installed. My questions is do I have to download and install Bridge CC or will Photoshop CC work ok with Bridge CS6. Thanks