CN43N: No objects were selected using the criteria

Hi;
recently i have loaded WBS into system through a BDC programme.
When i check those WBS in Project Builder i can see them, on other hand when i execute CN43N it does not show me any record.
Your valuable input is required.
Thank you.

Hi Guru,
Could you please check the reasons why the system does not display anything in CN43N based on your criteria?
1) The system could not find any objects which meet the specified selection criteria.
2) The controlling area set is not the same as the controlling area in your project.
Change the controlling area in the information system, as necessary, by choosing:
   o Extras -> Set controlling area
   o Environment -> Set controlling area in the Project System area
     menus - for example, when accessing the hierarchy reports in the
     project information system.
   Set controlling area
   o In the selection screen when accessing the cost element reports
Could you also review note 107605 which it may help to solve your issue?
Thanks a lot and kind regards,
Enrique Sosa

Similar Messages

  • How to copy videos from iPhone to iPhone? The videos are in QT format and were taken using the iPhone camera.

    How to copy videos from iPhone to iPhone? The videos are in QT format and were taken using the iPhone camera.Help me, anyone? Thanks in advance.

    Just to add.....I created a folder on my PC to store all videos taken from my iPhone and my wife's iPhone.
    I just cannot sync those videos taken using my wife's iPhone to my iPhone.

  • Occasionally,  some of the image borders turn dark grey (medium grey is the default) and then random other  images cannot be opened with a double click.  They only open when selected using the arrows on the keyboard.  They also cannot be moved to collecti

    Occasionally,  some of the image borders turn dark grey (medium grey is the default) and then random other  images cannot be opened with a double click.  They only open when selected using the arrows on the keyboard.  They also cannot be moved to collections.  Anyone have a solution for this?

    When you say  "could not be opened"- what are you referring to?  A double click of the mouse should view the clicked image in Loupe view- the same as pressing [E] on the keyboard for an enlarged view. (And a second double-click will take you back to library grid view.)
    To "open" an image in the Development module requires you to select the image then press [D] or click on the [Develop] button.
    When you say "could not be ...moved" -what are you referring to?  Are you trying to move an image file from its place in a folder to another folder? Are you just wanting it in a collection? When you drag an image to a collection you are only placing a link to the image in the collection- not actually moving any file. The image will stay exactly where it is in its original folder and will remain as a thumbnail preview in the Library Grid view.
    Are you having any "mouse" problems that may be changing its actions in LR ?
    Do you see an exclamation mark on any image borders ?
    Let's keep working on this. I am curious to see you find an answer.
    Rob

  • API0408: Within same namespace domain one object has already used the name

    Migration of dimensions from 10.2.0.4 to 11.2.0.1 getting above message
    Noticed when dimensiions imported in via mdl file, onl levels tab, applicable items box are al unchecked
    When try add check the box to match what existed in 10.2.0.4 get message
    Within same namespace domain one object has already used the name <object_name>
    Can recreate the dimensions but didn't wantto have to.

    Are you going to be deploying the dimensions? The namespace was changed in the database for dimensions and tables and I think that's why you are getting that error from OWB. If you are not deploying the dimensions then I think you can configure the module to generate 10gR2 code and avoid the validation error - otherwise you will have to change the dimension names ... I think.
    Cheers
    David

  • Creating Links to Object but not using the record id field in the web add

    Hello,
    Im trying to create a link between OnDemand an another system but the other system is the source system so it will be creating the HTML Link based on values the user selectes.
    What i am trying to do is create a link link the following:
    https://secure-ausomxdsa.crmondemand.com/OnDemand/user/ServiceRequestDetail?ServiceRequestDetailForm.Id=ADSA-73J818&ocTitle=484426-429198955&OMTGT=ServiceRequestDetailForm&OMTHD=ServiceRequestDetailNav&ocEdit=Y&OCTYPE=&ocTitleField=SR+Number
    but without "ServiceRequestDetailForm.Id=ADSA-73J818" at the end i want something like
    https://secure-ausomxdsa.crmondemand.com/OnDemand/user/ServiceRequestDetail?ServiceRequestDetailForm.SRNumber=484426-429198955&ocTitle=484426-429198955&OMTGT=ServiceRequestDetailForm&OMTHD=ServiceRequestDetailNav&ocEdit=Y&OCTYPE=&ocTitleField=SR+Number
    As this is not using the ID field, Is this possible can someone point me in the right direction on how i should start?

    Hi Jonno,
    It is not possible to use links to object without Id field. U can pass other values but Id is important- based on that only OnDemand identifies the record.
    So what i would suggest is
    1) Either use Id along with SR Number in ur source system.
    Since what i understood is u are not creating new SR so u have the Id of the SR. Along with SRNumber save Id also in the external system
    2) Or use Webservices to query with SR Number for the Id then use it in the link.
    Hope this helps.
    Regards,
    Lemu

  • IH08 : No objects were selected after vla

    Hi,
    I am working on IH08,
    1.     gave input as
    Class u2013 002
    Class type u2013 NOSTOLAITTEET (Got the class type from IE02 for the equipment) and
    2.     When I click on valuation button pop up comes, Input for the field PRODUCER is entered as test and click on enter
    Green tick mark appear next to the valuation tab
    3.     Gave  function location and execute the I get msg as u201CNo objects were selectedu201D
    But when I donu2019t go to valuation meaning having Red Cross mark at valuation button and then click in F8
    Am able to view the equipment
    But according to the requirement I should first evaluate and then select he equipment.
    Please help.

    In IH08, you are basically selecting a equipment with Class type 002, class NOSTOLAITTEET, and char value PRODUCER. Hence for the the value entered for char is not correct. So you are not getting any o/p. Pl check IE02, enter a equipment and then GOTO----> class overview and check which class is assigned and chat value. If you enter tis combination in IH08, you will get the o/p.
    hope it is clear

  • File Selection using the SDK

    Hello
    Is their a way that the SBO SDK UI exposes the file selection like the one use for add bit maps etc? I tried doing this by using writing code but cannot get this to display on the screen it is called from. The code is:
    Public Function Open_FileView()
       Dim OpenFileDialog1 As New OpenFileDialog
       OpenFileDialog1.InitialDirectory = "C:\"
       OpenFileDialog1.Filter = "txt files (.txt)|.txt|All Files (.)|."
       OpenFileDialog1.FilterIndex = 2
       OpenFileDialog1.RestoreDirectory = True
       If OpenFileDialog1.ShowDialog = DialogResult.OK Then
          Dim sr As New System.IO.StreamReader(OpenFileDialog1.FileName)
          MessageBox.Show(sr.ReadToEnd)
          sr.Close()
       End If
    End Function
    Thanks
    John

    Try something like this:
    System.Windows.Forms.Form winForm = new System.Windows.Forms.Form();
    winForm.TopMost = true;
    System.Windows.Forms.SaveFileDialog sfd = new System.Windows.Forms.SaveFileDialog();
    sfd.Filter = "XML (*.xml)|*.xml";
    if(sfd.ShowDialog(winForm)==System.Windows.Forms.DialogResult.OK) {
    //Do stuff
    This work for me (Save dialog, but openfiledialog works the same way)

  • I'm trying to print a custom envelope fro address book and keep getting the message No Pages were selected from the document.

    I'm trying to print a custom envelope from Address book using one of my groups. I keep getting a No Pages were selected message. Anybody have any Ideas?

    Hello, I find that only entries with Home or Work filled in with an address will show.
    Might try right clicking on this link & saving Apple's Addy, then import this vCard, select it & see if it shows one envelope...
    http://web.fastermac.net/~bdaqua/AppleComputerInc.vcf

  • Inspecting the current selection using the HTML5 SDK

    I have been banging my head against the wall trying to get what I thought would be something very simple working.
    What I want to do is have an InDesign panel, the contents of which changes based on the current selection on the page.
    Now, I can access the event "afterSelectionChanged" in the native scripting environment, but there appears to be no way for the native environment to trigger an event in the HTML5 panel unless I use a C++ hybrid extension and call the PlugPlugDispatchEvent() method.
    The events available in the HTML5 API are incredibly limited and don't seem to include any selection-based events.
    This makes it nigh-on impossible to use an HTML5 panel as an inspector of any kind without making an overly complex hybrid extension, which I want to avoid.
    Is this correct? If so, it seems amazingly short-sighted. If there is a way to do this, can someone please show me the way?

    Hi Samuel,
    I didnt clearly understood  your problem. When you are selecting a particular row in a table you are executing a web service named Get Mail. Are you passing any input parameter(any selected row data)  while executing a web service. And when you get the response node where you have a attribute in the node getmail. Am I right.
    If this is the case, then first check if the GetMail node is present or not by comparing it will null or checking its size. If the node is null then you will not get attribute as the element itself is null as nothing is retrieved in response. And if the node is not null then the element at 0th position is selected by default. you can retreieve the attribute by directly using the following code
    if(wdContext.nodeGetMail() !=null)
        String profileId= wdContext.currentGetMailElement().getProfileID();
    Check if this works for you.
    Regards,
    Ardhendu Sarkar

  • Range selection using the NI 4351 example "435x fast.vi" in LabView 2009.

    I am using the NI 4351 DAQ board and the example "435x fast.vi" in LabView 2009. I wanted to add a range function and have the scale labels reflect the proper values. How can I programmatically change the Minimum and Maximum parameter values for the "Y" Axis of the “Scaled Data" Waveform chart properties.
    Solved!
    Go to Solution.

    You can programmatically change the Y axis range as well as many other properties of the waveform chart using a property node. If you are not familiar with property nodes, you can create one for the chart by right clicking the chart in the block diagram and selecting to create a property node. From there you can select what property you would like to change. For your specific question, right click the chart and select Create > Property Node > Y Scale > Range > Minimum/Maximum. Once you create the property node, you'll have to specify that you want to modify properties by right clicking it and selecting "Change all to Write." Each of the properties can then by controlled using a control or constant.
    I've attached a basic example (in LV 8.6, let me know if you need older) that modifies the Y axis range of a waveform chart using two controls on the front panel. Note that I have a third property, YScale.ScaleFit, set as 0 by a constant. This programmatically turns off autoscaling on the chart. Autoscaling must be turned off if you want to manually scale an axis. Alternatively you can just turn autoscaling off from the front panel by right clicking the chart.
    Hopefully this helps.
    Chris G
    Applications Engineer
    National Instruments
    Attachments:
    Chart Property Node.vi ‏9 KB

  • If two iphones were updated using the same apple id and now are receiving the same messages, how do i fix this?

    Hey guys. So i recently downloaded ios7 for my iphone 4s and so did my mom. But my mom decided to update her phone as well using the same apple id. Now she is recieving all of my messages instead of me. Please let me know how I could fix this. Thank you.

    Have your wife log in to her user account on the laptop. Launch iTunes, then connect her phone to the computer with the USB cable. Sync. That should put back all apps and media. Since you already upgraded her to iOS 5 she'll have to manually enter all her settings and preferences, and organize her home screens.

  • Undefined is not an object error when using the Output Generator with Glossary Restyling script to create WebHelp

    When I use the Glossary Hotspot Wizard to create links within my topics to the terms, I then generate the project using the script (because I want to use popups instead of having the text display in-line). I did not edit this script before running it - do I need to? If so, where does the script reside? Any suggestions would be appreciated so that I can get this working as intended :-).

    The error occurs during the WebHelp generation. If I generate the project
    without using this script, there is no error.
    The error indicates
    Line no: 395
    Thanks!
    Julie
    Julie Haddon-Cook
    Senior Specialist
    Messaging Engineering   
    Direct:      +1 770 303 3507
    CVS:         224 3507
    Address:   SITA | 3100 Cumberland Blvd | Atlanta, GA 30338 | USA
    Website:   www.sita.aero

  • Printer Selection using the PLD

    My current customer is automatically printing a Sales Order to the user's default printer when the Add button is pressed in Sales Order Entry.  This works well, but my latest challenge is depending upon the time of day ( that is, morning vs afternoon, by a User Defined Field set at Order entry time) to print the Order on a different printer, which is actually a different color of paper that resides in a different tray in the printer.
    Is there a way to have Print Layout Designer direct the Sales Order to the desired tray in the printer  from the value in the User Defined field  with out having the person entering the Sales Order select a printer?  
    I hope this makes sense and thanks in advance.
    Dana

    Hi,
    Cannot confirm whether your issue is same or not but
    In 2005A you can check :
    If your different trays have different colour paper :
    - Via Windows, define each Tray as a different printer (i.e. PRT1yellow; PRT1red; PRT1green)
    - Via PLD   > Document Properties   > Paper Format   > Printer section select the desired tray (i.e. PRT1green) and click OK.
    Regards,
    Jitin

  • The Control Panel (top bar) no longer shows the location or size of an object when I select an object using the black arrow.

    I'm only able to see/adjust the location or size of the object by opening the Transform panel. 
    This is what I used to see:
    Now my Control panel looks like this where the above information used to be when an object was selected using the black arrow:

    tracyelaine,
    It may be time for the list (you may skip 5) in this case).
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media, see below. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html
    External media: It is always recommended here to open/save from/to own hard disk, and to copy from/to networks and removable media. You may be lucky (for a while), but the chances of file corruption and other unpleasantnesses are immensely greater when you use anything but the harddisk, and it is better to be safe than sorry.
    In addition to the (far greater) risk of file corruption, some issues are mentioned here:
    http://helpx.adobe.com/illustrator/kb/illustrator-support-networks-removable-media.html

  • Objects that were anchored using CS2 change when opened in CS3

    Hi -
    I am using Adobe Indesign CS3 on a Windows XP operating system over a network of about 20 people (but the software is on my computer, files are on the network).
    We just upgraded to Adobe CS2 from CS3, and we are finding that on files where the objects were anchored, using the custom anchor feature, aligned to the anchor point - are now moving to the pasteboard or opposite page when we open the files in CS3, and they behave bizzarely. When we try to move them to the right, they move to the left, and likewise. Anyway, I was able to make them behave by changing the alignment to the column edge... but we do not want to have to do this for every file cuz we have a ton of files created that way in CS2. Any suggestions or workarounds?
    Thanks!

    I try to re-create your problem, but in my case, overlaid text was fine and whole thing was not flattened. I couldn´t ungroup it either, so something was wrong there anyway. With Direct select tool (white arrow) I could pick all the parts one by one and cut/paste them off the original button.
    EDIT: Oh, I forgot to mention that I had to convert it back to object before I could do anything to it.

Maybe you are looking for