Find the position of refrence wbs in tx cj02

HI friends,
I need to update one WBS element above the refrence WBS elemnet n tx CJ02 for the project defination.....
The problem is how do i know the position of the Refrenece WBS elment....
Please help finding the position of the refrence WBS...
regards
kanishak

Hello,
You should be able to see it in t-code IM23.
Try this link also
[http://rwd.tennessee.edu/content/zpposition_find_a_position/wi/postscript/index.pdf]
Hope it helps
Thanks,
Pavan.

Similar Messages

  • Finding the position of the end of a line in a JTextPane

    I'm trying to make a JTextPane which expands horizontally if the text being typed in it reaches the right hand edge. To do this I need to know the position in the Document of the end of the current line.
    I've managed to write a method which expands the JTextPane vertically using getEndPosition() in AbstractDocument.
    There is an endLineAction in the DefaultEditorKit which moves the Caret to the end of the line but I don't want to move the Caret, just find the position of the end of the line. I did have a method before which moved the Caret to the end of the line, stored the position and moved it back but that wasn't suitable.
    I suspected the answer was to do with the View but I can't figure out how the View relates to the JTextPane or Document.
    Can anyone help?

    Well, personally I don't think its a good idea to keep changing the size of the text pane as text is being typed and I doubt the solution will be as easy as you think.
    As you type the text will automatically wrap so it will be a little late trying to change the width after the text has wrapped, which means you would need to increase the width "before" text is typed. But then you have another problem because you don't know how much to increase the width by since a single character could be typed or a string of text could be pasted into the text area (people always forget about pasting when doing stuff like this).
    Also if text is removed you would need to iterate through all the line to find the longest line and reset the width.
    Anyway the only way to know the width would be to play with the modelToView() method. If you want to find the end of the current line then you can use the Element.
    Check out my [Text Utilities|http://www.camick.com/java/blog.html?name=text-utilities] class which might give you some ideas on how to use the Element class and modelToView() method.
    which has example of using the above Class and method that might give you some ideas.

  • How to find the position of view in MM02 transaction for coding BDC?

    Hi Guys,
    Is there any FM or BAPI Available to find the position of the view in MM02 transaction. I tried FM SELECTION_VIEWS_FIND. But getting inconsistent results
    i.e Some materials it is giving correct positions but for others i am getting wrong position. So my BDC is getting failed.
    Thanks in advance.
    Vinod.

    Hi,
    data : i_t133a like t133a occurs 0 with header line,
          ch(1),
           viewno(2) type n.
    clear viewno.
      select * from t133a into corresponding fields of table i_t133a
                    where bilds = '21' and guifu like 'SP%'  .
      loop at i_t133a .
        ch = i_t133a-pstat.
        if mara-vpsta na ch .
          delete i_t133a     .
          continue .
        endif .
      endloop.
      sort i_t133a by guifu ascending .
      loop at i_t133a .
        viewno = viewno + 1 .
        if i_t133a-guifu = 'SP01'.  "FOR BASIC DATA1                CHANGES              ACCORDINGLY REFER TABLE T133A TO FIND VTHE VALUE
          exit .
        endif .
      endloop .
    reward if usefull

  • How can I find the position of a robotic arm with a cFP-CTR card?

    Hello,
    I use a CTR-500 to measure the pulses of 3 encoders.
    The encoders are related to the 3 axis (x,y,z), to which a robotic arm is moving.
    Each encoder has 2 channels (A,B) which go to each pair of Count Inputs of the CTR card.
    When the robotic arm is moving on one axis, the corresponding pair of Count Inputs is increasing, but there is a phase between the one Count Input and the second one. What is more, the Count Inputs do not decrease when the robotic arm is moving to the other direction, but they still increase.
    So, I cannot find easily the position of the robotic arm.
    What I have done, is to try finding the position, by using only one Counter Input for each axis. This means that I use the value of the encoder as a counter, and I calculate the position with some software tricks. But for some reason, it does not work properly.
    I have heard that the method I use is not proper. Instead, I have been told that I must use the phase of the 2 Count Inputs, in order to find the direction to which the robotic arm is moving. But, the Count Inputs of the CTR are augmenting in parallel, when the robotic arm is moving forward or backward.
    How can I find the position of the robotic arm, as it is moving like a CNC ?
    Thank you very much.
    Message Edited by nikosfs on 08-21-2009 12:27 PM

    You don't want to use a cFP-CTR-500 card.  What you have are quadrature signals.  You should be using the cFP-QUAD-510.  It has 4 channels that can handle both the A and B signals of a quadrature encoder.  It has the built in circuitry do determine the phasing of A vs. B to know when to count up vs. count down.

  • Need help in finding the position of a SubString in a String

    Hi All,
    I have a VARCHAR2 column in my table which has data similar to '152-425-3265-8-5623-45'.
    I want to find the position of the numbers in the column.
    For example:
    If i give 8 - query should return me 4.
    If i give 425 - query should return me 2.
    The numbers are delimited with '-' value.
    Please help.
    Thanks in advance.
    Edited by: 868171 on Jun 24, 2011 4:33 AM
    Edited by: 868171 on Jun 24, 2011 4:34 AM

    do you know the max number of dashes?
    if so
    with t as (select  '152-425-3265-8-5623-45' code, '425' num from dual union
                   select  '152-425-3265-8-5623-45' code, '8' num from dual)
    select code, num, case num when  regexp_substr( code,'[^\-]+',1,1) then '1'
                   when  regexp_substr( code,'[^\-]+',1,2)  then '2'
                   when  regexp_substr( code,'[^\-]+',1,3) then '3'
                   when  regexp_substr( code,'[^\-]+',1,4)  then '4'
                   when  regexp_substr( code,'[^\-]+',1,5) then '5'
                   when  regexp_substr( code,'[^\-]+',1,6)  then '6'
                   else 'not found' end result
    from t
    CODE     NUM     RESULT
    152-425-3265-8-5623-45     425     2
    152-425-3265-8-5623-45     8     4or if you have 11g you can use regexp_count
    with t as (select  '152-425-3265-8-5623-45' code, '425' num from dual union
                   select  '152-425-3265-8-5623-45' code, '8' num from dual)
    select code, num, regexp_count(regexp_substr(code,'^.*'||num||'.'),'-')
    from tEdited by: pollywog on Jun 24, 2011 7:55 AM

  • Cannot find the ''Positioning Methods'' option on ...

    Hello....I have recently bought the C7-00 and I wanted to test my GPS but I could not find the "Positioning Methods'' option to select the A-GPS, so can anyone help on this.
    Thank you.

    Do you not have a Location app in your Applications Folder ? As CJ mentioned , that is where you set your location methods to on/off. Inside Location you should have 3 sub folders, Landmarks,GPS data and Positioning. Open Positioning and you should be able to change the settings !
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • My 3 apple products, an imac, a macbook air and a macbook lost their contact with their external hard disks. They were LaCie make. And every time I turn my laptops, I find the positions of the keys on their  keyboards changed.  Why is Apple silent?

    After the latest apple IOS upgrade my 3 apple products, an imac, a macbook air and a macbook, lost their contact with their external hard disks. They were LaCie make. And every time I turn my laptops, I find the positions of the keys on their  keyboards changed.  Why is Apple silent? There are so many people complaining about this issue and expecting Apple to correct this issue that they have created.

    Probably because it's not an Apple issue. I have Lacie EHD's connected to my MBAir and iMac, all work perfectly on Mavericks. In addition I don't have any keyboard issues on any of my Apple products. BTW IOS is only for IOS devices such as iPads, iPods and iPhones, Macs use OS X. The two OS's are seperate  products designed to run on seperate products.

  • Rule to find the Position has SAP ID's or not

    Hi,
    I have requirement where i need to find the whether the position in the org chart contain SAP Id's or not and if the position is not empty then i need to send the mail to position if not i need to send the mail to workflow administrator.
    Please can any one guide me in achieving this functionality.
    regards
    manju

    Hi Arghadip Kar  ,
    thanks for your response
    there is one FM RH_OM_GET_HOLDER_OF_POSITION this will retrieve the user ID's for the given position . so i got the solution .
    i have one more query . i need to find the workflow admin SAP id .is there any FM for that .
    thanks for your response
    Regards
    manju

  • How do I find the position of a single character on a page?

    Hi guys,
    I am developing a PDFEditor, but am having trouble implementing the code which finds the location of glyph characters on a page (in device space). I have read the pdf reference on Text, but do not quite understand it.
    I have worked out the individual character spacings, but I cannot accurately find the location of the first character .
    Here is my current attempt:
    float y = CGPDFPageGetBoxRect([current_page pageReference], kCGPDFCropBox).size.height-current_matrix_position.y;
    float x = current_matrix_position.x;
    float xa = a * x + c * y + e;
    float ya = b * x + d * y + f;
    text_position = [NSValue valueWithCGRect: CGRectMake(xa, ya, 15, d)];
    (where text_position is the location of the start character in device space. a,b,c etc come from the Tm operator.
    current_matrix_position is set as a point (e,f) from the cm operator.)
    This code seems to work with some PDF files:
    But does not work with others:
    (Note there is text in the box above the blue which cannot be disclosed for reasons...)
    Is there something I am missing (like another operator?) or is my formula completely wrong.
    Your help would be greatly appreciated

    Hi Irosenth,
    I have been reading the spec and trying to understand it for several weeks. Unfortunately, I am still confused with how to find the coordinates of the text.
    >> You need to parse the content stream(s) that are associated with the page and
    I have done this. My program finds both the cm operator, the tm operator and the font widths etc. Unfortunately, now that I have all of this information, I am unsure what to do with it.
    How do I properly add these two matricies together? I have looked in the spec which describes it as:
    x' = a * x + c * y + e
    y' = b * x + d * y + f
    I tried this and the results worked on some pages, but not on others (several thousand x coordinates out...). I am finding the ISO 32000-1:2008 very confusing in this section.
    >> manage what you find there
    This is the part I am having major trouble with. Using the coordinate transformation matricies, how can I determine the starting coordinate for the first glyph in a text (BT, ET) on a non-scaled page (so 1 unit = 1 pixel) using the matricies?
    Thanks

  • Finding the position of an integer in a string

    I haven't done much Java programming for the past 3 months, but I'm trying to get back into it now, but I'm having some trouble. I'm trying to break up a string of integers, to store each individual integer in an array.
    So, if I had something like 132412344, a for loop would put them all into separate arrays.
    I know that there is a charAt() function, but is there something like that for integers?

    Do you know whether every single character in the string is an integer?
    If it is, then toCharArray will get you the array. Then you could loop through it to parse each character into an int. You can use Character.digit to do that.
    I doubt that there's any method that automatically splits a string and returns the integers represented by the characters in a string. It seems like too specialized a method. But I could be wrong.

  • How to find the position of the deicmal place?

    Hi,
    I have a String '-234.45'. I need to determine it decimal place.
    I have try:
      SEARCH '-234.45' FOR '.'.
    but the sy-fdpos is 0.
    How to get the decimal place? Is there other way to get it?
    Please advise.
    Regards,
    Rayden

    Hi,
    see , if this will help you out.
    DATA: text TYPE string VALUE `Roll over Beethoven`,
          pos TYPE i.
    SEARCH text FOR '. .'.
    SEARCH text FOR ` `.
    IF sy-subrc = 0.
      pos = sy-fdpos + 2.
        SEARCH text FOR 'bth' STARTING AT pos
                              ABBREVIATED AND MARK.
    ENDIF.
    cheers,
    Hetal.

  • Is it possible to find the queue position for a message in a queue?

    just like the subject line says, I am looking for a way to find the position of a message in the queue. Is there a way?

    Please provide the following:
    1. Full and complete version information
    2. A definition of what "queue position" means
    3. An explanation of how you intend to use the information so we can better understand what you are looking for.

  • Finding a position of an item in a list.

    What i am looking to do is find the position of an item in a list. for instance if my list contains [a, b, c, d, e] and on my command line i put a f d, i want it to return a value of 3 for the position of the 'd' in my list. Could anyone please advise the best way to complete this? I think i am having the problem of it recognizing the 'd'. I would appreciate any help. Here is a piece of my code.
    import java.io.InputStreamReader;
    import java.util.LinkedList;
    import java.util.Scanner;
    public class LinknedList {
         public static void main(String args[]) {
              Scanner scanner = new Scanner(new InputStreamReader(System.in));
              // Setting up the link list of strings
              LinkedList<String> list = new LinkedList<String>();
              // MyLinkedList myList = new MyLinkedList();
              while (scanner.hasNext()) {
                   char option = scanner.next().charAt(0);
                   option = Character.toLowerCase(option);
                   switch (option) {
                   // inserts to end of list
                   case 'i':
                        if (scanner.hasNext()) {
                             String value = scanner.next();
                             list.addLast(value);
                             // myList.addLast(value);
                        } else {
                             System.out.println("ERROR: Unexpected end of input \"a\"");
                        break;
                   case 'r':
                        if (!list.isEmpty()) {
                             System.out.println("Removed: " + list.removeFirst());
                        } else {
                             System.out.println("ERROR: List was empty");
                        break;
                   case 'p':
                        System.out.println(list.toString());
                        break;
                   case 'a':
                        if (scanner.hasNext()) {
                             String value = scanner.next();
                             list.add(0, value);
                        } else {
                             System.out.println("ERROR: Unexpected end of input \"a\"");
                        break;
                   case 'd':
                        list.clear();
                        System.out.println("Your list has been deleted.");
                        break;
                   case 's':
                        int num = list.size();
                        if (num == 0) {
                             System.out
                                       .println("The list does not have any items in it.");
                        } else
                             System.out.println("Your list is " + num + " items long.");
                        break;
                   case 'f':
                        // need to find the position of an letter on the command line
                        break;
                   default:
                        System.out.println("Not an option: " + option);
                        break;
                   System.out.println("Java: " + list.toString());
                   System.out.println("Mine: ");
    }

    What i am doing is building a Linked List. It will have a standard input. you have multiple commands. i, a, d, p, s, f. i will insert, a will add, d will delete, p will print, s will display amount of items on the list and f will set the position in the list. For example. if i type:
    a john
    the result will be:
    [john]
    a paul
    the result will be:
    [jon, paul]
    Lets say i have the list with the items [jon, paul, ringo, geroge] in it and i choose:
    f paul
    a stuart
    the result will be:
    [jon, paul, stuart, ringo, george]
    I want the f switch statement to make a new point in the list where the new item will be added.

  • N8 GPS can't find my position

    Hello
    I have a big problem with my N8 GPS. I just use Integrated GPS in positioning methods and I disabled A-GPS, Network and Wi-Fi options. But Ovi Map 3.04 can't find my position. I compare my phone with an N79 and a 5800 in similar situation. They can easily find the position in less than a minute! But my N8 still searching and searching…. . It’s embarrassing!!!
    Can anybody help me?! Any suggestion?

    Grrr ! All that "experts" here...
    1, Use AGPS if you want to get a coarse estimation of your position.
    2. Use internal GPS only if you want to get a precise position.
    3. There are no (NO !) differences in position fix speeds caused by software. GPS works in a sequential way: A sequential data stream is sent by the satellites. To get a full position fix, all of that data stream has to be received, from start to end. THIS causes speed differences: If you start the GPS application at the beginning of the data stream, fix is fast. If you start it in the middle of the stream, the device has to wait for the stream starting again from the beginning. This is for collection "almanach" data - data about where the satellites are at present - they're moving.
    4. If that almanach data was received earlier and no too long ago, GPS fix is fast because the device does not have to wait for that almanach data stream. Again: It has NOTHING to do with different software.
    By the way: This is what AGPS does - downloading that almanach data via internet instead of waiting to get that data via the air and trying to triangulate your coarse position with the help of comparing the signal strengths received by different cell towers. Again: This does NOT provide you with precise positioning data - just estimations. Never use AGPS if you need a reliable position fix. .
    5. GPS signals are high frequency signals. Reception of such signals may vary greatly with the phone's position: One or two cm of placing difference may cause a big change in reception.
    6. GO OUT ! Do NOT try the GPS module indoors. You MAY get sufficient signal strength inside buildings - but this is an exception, not the rule.
    7. N8s GPS receiver is really fine, very sensitive. No problem with that.
    In short: Go outside. Don't use AGPS or network-based GPS. Don't believe people saying "Precise (!) GPS fix is much faster with software blabla..." Don't get fooled by a quick display of an estimated position: The real position fix did not get calculated at that point of time; it's still running in the background. This is what's causing that constant change of your position right after the first fix got displayed. A minute later, your position appears stable; and that's the point of time where real positioning data are used - not just coarse estimations.
    It all depends on that almanach data and a clear view of the sky.

  • Find the Employees for whom Manager is not available

    Hi
    I wish to find all the Find the Employees for whom Manager is not available?
    Can anyone Pls throw some light how I can?
    Regards,
    Sreeram

    Hi
    Get all the Positions without "A002 - Reports" Relationship from table HRP1001 (excluding A002 from input screen).
    After finding the positions, get ee no.s for those positions from table PA0001.
    Hope this helps.
    Best Regards
    Reddy

Maybe you are looking for

  • Problems with selection marquee in Photoshop CS5.5 on MacBook Pro with Hi-Res Display

    A few months ago i bought a 15" MacBook Pro with the hi-res display (not retina display...just the higher res display offered prior to the release of the retina display). I'm having trouble with Photoshop and selection marquees. In particular, anytim

  • Export to pdf - document always opens on 2nd page, not 1st

    Hi As a photographer, I am really liking Pages for creating a pdf for clients to download from my website. Only thing is that the pdf always opens on 2nd page (not first) - at least on my computer. Any suggestions? Example here: http://www.hotelresor

  • Passing radio button values to the backing bean

    Hi all, I need help with passing group of radio button values to a backing bean. I have page which has a dataTable to display a list of alerts. For each alert there are two radio buttons (YES & No) to indicate whether the email option for each alert

  • Reg:Problem with Connection Pool

    Hi all, I copied DAc analysis RPD from the link (http://www.rittmanmead.com/2009/01/analyzing-bi-apps-etl-runs-using-obiee-and-the-dac-repository/ ) into my existing RPD by changing the connection pool of DAC Analysis RPD to the connection pool setti

  • Online portfolio functionality help

    I'm a clothing designer, and in my sector, portfolios are usually in a book format. I'd like to mimic that format in my online portfolio. The closest I can come is with the slideshow feature: I do a picture page containing all the pages of the "book"