Regarding position

Hi All,
when we upload the master data thru LSMW intially im giving position as default position for all the employees....Now once the data is uploded i want the change the default position to actual positions of the company.....
How do i do that ....im sure dat it wil be done by 1001 infotype....
Can anyone give me the procedure for that.....
im new to SAP  and would be very thankful for all ur help
Regards
mohammad

hi
thanks for ur immediate responce...
So intially i have to upload the position data as default like 99999999 den again i can change it by uploading the actual position data ...im right...
intergration is there btwn OM & PA
So in production i will create new positions and assign them to the default positions .......right...
plz confirm me if iam correct in understanding

Similar Messages

  • REGARDING position the cursor at the end of the field

    i friends,
    i have a field having length of 20 ,i need to place the cursor at the end of the filed means at the 20 th position the cursor must be there how will i acieve this...plz help me the value which i will pass to this field is may be of character 4 ,5 what ever but the cursor will be always at the 20th position or at the end of the filed plz help me.......

    parameters:pa_str(20) type c default '11111111111111111111' .
    initialization.                   .
    Set cursor field 'PA_STR' offset 20.

  • Beginner question for java appelets regarding positioning.

    I am creating a java appelet, and I am having issues positioning labels, text boxes , buttons. Is there a way I can specify where each is positioned?
    Thank you!
    for example here is my code:
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    public class AdditionOfFractions extends Applet implements ActionListener {
        Label Num1Lbl = new Label("num1");
        Label Num2Lbl = new Label("num2");
        Label Den1Lbl = new Label("den1");
        Label Den2Lbl = new Label("den2");
        Label ResultLbl = new Label("Result");
        TextField Num1Text = new TextField(4);
        TextField Num2Text = new TextField(4);
        TextField Den1Text = new TextField(4);
        TextField Den2Text = new TextField(4);
        TextField ResultText = new TextField(4);
        Button ComputeBtn  = new Button("Compute");
        Button ExitBtn  = new Button("Exit");
        public void actionPerformed(ActionEvent thisEvent)throws NumberFormatException {
            if(ComputeBtn.hasFocus()){
                System.out.println("test");
                int num1 = Integer.parseInt(Num1Text.getText());
                int num2 = Integer.parseInt(Num2Text.getText());
                int den1 = Integer.parseInt(Den1Text.getText());
                int den2 = Integer.parseInt(Den2Text.getText());
                int newDen = 0;
                if(den1 != den2){
        public void init()
            //initialise
            ResultText.setEditable(false);
            ComputeBtn.addActionListener(this);
            ExitBtn.addActionListener(this);
            //add components
            add(Num1Lbl);
            add(Num1Text);
            add(Den1Lbl);
            add(Den1Text);
            add(Num2Lbl);
            add(Num2Text);
            add(Den2Lbl);
            add(Den2Text);
            add(ResultLbl);
            add(ResultText);
            add(ComputeBtn);
            add(ExitBtn);
    }

    797737 wrote:
    I am creating a java appelet, and I am having issues positioning labels, text boxes , buttons. Is there a way I can specify where each is positioned?Definitely, for your simple Applet you'll probably just want to use a <tt>java.awt.GridLayout</tt>. This will effectively position all your components in a grid pattern that you set in the contructor.
    //make a grid 4 rows, 2 columns
    GridLayout gridLayout = new GridLayout(4, 2);Then you'll need to set this for the Applet like so:
    pubic void init(){
      //initial your components as usual
      setLayout(gridLayout);
      //add components as usual;
    }Now 37, you don't want the <tt>actionPerformed()</tt> method to throw any Exceptions. Instead put your code inside a try/catch block:
    public void actionPerformed(ActionEvent ae)
      int num1, num2, den1, den2;
      try {
        num1 = Integer.parseInt(Num1Text.getText());
        num2 = Integer.parseInt(Num2Text.getText());
        den1 = Integer.parseInt(Den1Text.getText());
        den2 = Integer.parseInt(Den2Text.getText());
      catch(NumberFormatException)
        //provide DEFAULT VALUES HERE;
    }37, try to use the <tt>EventObject.getSource()</tt>, or <tt>ActionEvent.getActionCommand()</tt>.
    public void actionPerformed(ActionEvent ae) {
      //Choose one of the following lines
      //line 2 is probably a better choice here
      Button button = (Button)ae.getSource();
      String actionCommand = ae.getActionCommand();
      if(actionCommand.equals("Compute"))
        //try/catch block here
        //compute here
        //set results
        // OR create a compute() that
        // includes all three lines above
    }Now OP, I have a question for you. Do you see a way to LIMIT the values of <tt>num1, num2, den1, den2</tt> so that your program is safe to run -- so that the compute formula does not throw any ArithmeticExceptions?

  • Question about using library items in forms

    After a long time I am again returning to this perpetual fountain of Dreamweaver knowledge.
    I am converting a site from AGL to DW. In AGL I used a separate template for the forms (there are over 10) and used "components" to create the different forms. Each form shared features with other forms but were not identical, all together 5 components. When I converted over to DW the 5 compnents were made into 5 "library items" but neither the form template or the library items work, by that I mean they do not update if I make a change.
    Hence I want to make 5 new library items to use in the forms my question is this: when I choose an item to put in the form like a text field or radio button I always get this window.
    Though I read the documentation I am still not really clear about the "style" option so I just choose "no label tag." What is this used for? Any examples of how it is used?
    Regarding "position" before or after the item, what is this all about? I have been choosing "after form item" but I don't really know what the difference is and what advantages or disadvantages acrue from these choices.
    Regarding "Access key" and "Tab index" I sort of have the idea of what it is about but an example of how they work in action would clear up any nebulosity.
    But my real puzzle is with the following which pops up at the end when I am inserting a form items.
    Since the library items are not separate forms in themselves I have NOT added the form tag because my reasoning is that when I make the new form templates it will have the requisite form tags. Am I correct in this line of thinking? Or do I have to add form tags every time I add form elements to a form? I really don't want to have to do the whole thing over again if I get it wrong. So if one of you kind souls could guide me in doing it right the first time I would really appreciate it.
    I am using a MBP, OS X 10.6.8, DW CS6
    BvL

    To declare constants create a Package-Specification in a pll and deifne all your constants there, something like:
    PACKAGE PK_CONSTANTS IS
      RC_SUCCESS CONSTANT PLS_INTEGER := 1;
      RC_FAILURE CONSTANT PLS_INTEGER := 0;
      RC_YEAR_DATA_NOT_FOUND := 50;
    END;Then attach that pll to all your forms-modules, and use it like
    IF rc = PK_CONSTANTS.RC_YEAR_DATA_NOT_FOUND THEN
    END IF;A word about exceptions or errors: In my eyes its clearer (and in case of exceptions even better) to raise an exception than to hide it behind return-codes.

  • Is it possible and practical ?

    Is it possible to insert a div tag in o a table layout and is
    it advisable - I want to create a navigation bar with rollovers
    inside a div tag.
    The rest of my page is in tables
    thanks again for all your help
    Michael

    If the div is absolutely positioned you should not insert it
    directly into a
    table cell - rather, you should place it into a relatively
    positioned div in
    that table cell, e.g.,
    <td><div style="position:relative"><div
    style="position:absolute">....
    so that the browsers do not get confused about how to
    position the div in
    question.
    Other than this problem regarding positioned divs there would
    be nothing
    problematic about placing a static div in a table cell.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "MichaelCo" <[email protected]> wrote in
    message
    news:eqe3eb$nsk$[email protected]..
    > Is it possible to insert a div tag in o a table layout
    and is it
    > advisable - I
    > want to create a navigation bar with rollovers inside a
    div tag.
    > The rest of my page is in tables
    > thanks again for all your help
    > Michael
    >

  • Playing video in labview with some basic information output for my program.

    I'm trying to program something similar to NI's product DIAdem CLIP in LabVIEW.  A program that synchronizes test data with video.  I'm trying to find a decent video component that gives me basic information about what is being played.
    My first thought is to use Windows Media Player 10 w/ LabVIEW ActiveX container.  I'm a little confussed as to what I'm doing with it, however.  I can't find any information about Windows Media Player 10 in the Class Browser.
    All I really need is:
    Input:
    1. The file for the embedded media player to play.
    Output:
    1. The framerate of the file being played.
    2. The current frame.
    I think with that I should be able to put a marker in my data graphs that indicates where that data correlates with the playing video.
    Thank you for your input!
    -Nic

    Your best source of information regarding the Windows Media Player object model is MSDN. I've only done a little bit of playing with Windows Media embedded in LabVIEW, but enough to know it was a pain and not worth the effort. NI has a KnowledgeBase article that indicates you will probably need LV8. In terms of your specific query regarding position, you should take a look at the "Controls" object in the object model, as that has properties I think you're going to need.

  • CS3 / Leopard / EPSON R2400 issue

    Hi Everyone,
    I'm a design professional who is pretty dumb when it comes to color management.
    I have an EPSON R2400 at home and have never gotten it to print right. I had CS2
    and had all kinds of problems with it, and have since upgraded to CS3. Over the weekend I upgraded to Leopard and now the prints look horrible. They are really light and have a posterized look to them. I have installed the new EPSON driver that is Leopard compatible. Can anyone walk me through what I need to do to get great prints?
    Thanks, Mark

    Just purchased a Mac Pro 2x2.8GHz Quad-Core Intel Xeon. 16GB 800 MHz DDR2 FB- DIMM
    In the past I have been running my Epson 7600 direct from my PC. printing from Q Image and Photoshop Lightroom 2 with fantastic results.
    It has been frustrating to find out that the Leopard Driver version 3.09 from Epson will not work regarding positioning the image on the sheet (using roll paper). Epson and Apple do not seem to want to help, even Epson state on their site that the printer driver is not a full featured driver for Leopard.
    I then discovered Gutenprint, I have downloaded the driver and have my Mac conected via USB I am printing out of Photoshop Lightroom.
    This has corrected the image positioning problem, the only problem now is the I am getting poor colour, can you tell me if I can still allow the the printer to manage colour ? in the Lightroom settings I have tried different settings to no avail.
    My files are profiled for Adobe RGB 1998.
    If anybody could let me know if they have managed to have the new Epson Driver 3.09 work in their workflow it would be very much appreciated, or maybe they have gone down the same track as myself with the Gutenprint driver .

  • Playing video in tv with hdmi problem...

    I have a laptop with hybrid graphics but the one who is in charge of displays is the intel one. when i put the other monitor to the right, and i play a video in the laptop display, it plays well but as soon as i drag it to the right screen it freezes and began to freeze the computer... This also happens when i put it in twin mode..
    Even when i play the video with the nvidia card it freezes as soon as i drag it to the other screen.
    I also cant pass audio through the HDMI i think it has to be with dwm...
    Last edited by chupy35 (2013-12-06 05:43:24)

    Your best source of information regarding the Windows Media Player object model is MSDN. I've only done a little bit of playing with Windows Media embedded in LabVIEW, but enough to know it was a pain and not worth the effort. NI has a KnowledgeBase article that indicates you will probably need LV8. In terms of your specific query regarding position, you should take a look at the "Controls" object in the object model, as that has properties I think you're going to need.

  • Help regarding Cash Position and groupings

    Hello Everybody,
    I am encountering a problem regarding cash position. I already defined in FS00 all the necessary information needed, like planning levels, ticked cash flow relevant etc. I also made a posting via FB50 to these GL accounts.
    I am not quite sure though how to create groupings? I created one via OT17, but when I was about to create, it said it doesn't belong in table T038P. So what I did was use a standard grouping, but unfortunately that didn't work. When I ran the report FF7A, it said "NO DATA SELECTED". Please help. I am new to cash management. Please comment if the procedure I did was correct. Thanks

    Dear Patrik,
    Have configure Cash journa by useing fbcjc1,fbcjc2,fbcjc0 and fbcj transaction try it will work for your
    srinivasa rao

  • Query regarding the Position Hierarchy.

    Client Version:R12.1.3
    We are setting up Position Hierarchy.
    Have a query in the setup.
    We have a position called Clerk--Number of Holders---2
    Clerk --Holder 1 is reporting to Manager 1
    Clerk Holder2 is reporting to Manager 2.
    When we are trying to set the Hierarchy.
    It is taking both the holders in consideration.
    Request to assist.
    Thanks in advance
    Regards
    Srini

    914612 wrote:
    Dear user13056460,
    your query is very obvious you have a position type pooled and two employees are assigned to this position where in the hierarchy it shows two holder, if you want my opinion let each clerk have his own unique position as Clerk LA and CLerk DC by this you will not go through the headache of having two hierarchies and if youre having two hierarchies you need also to enable the document type (can change approval path option) the workflow engine by your scenario will get lost because two individuals have the same position so it will go to only one, options youre having
    1- let the postion with a two holder but enable the users to select approval path and employee while submiting PO's
    2- give each clerk a unique position name which is easier.
    Let me know if you have any more inquiries
    Regards
    Ammar M. GhazalehAmmar,
    That is what we have the requirment..
    I tried changing the existing hierarchy..but it is not working..
    For 2 clerks here..we created say 100.Purchase Clerk as Job and position as 200.Purchase clerk
    for the second clerk it has same job as 100.Purchase Clerk as Job and position as 200.Purchase clerk1
    (we changed a bit)
    one clerk reports to one manager..and the manager reports to dept head.
    one clerk reports to dept head..
    so while in hierarchy dept has total 3 sub ordinates and when we drill down manager has 1 sub ordinates..
    which makes sense...
    i created approval groups also...and assignments too..
    but when the newly created clerk logins and when he forwards documents..he is not seeing the default heiarchy..we have set this up in documents types..
    and the second old clerk he is seeing this when he is forwading documents for approval..
    where did i miss the setup?
    Please Advise
    Thanks
    Mahendra
    Edited by: 843237 on Feb 16, 2012 4:24 PM

  • Regarding Radio button position

    Hi All,
    I have a requirement in which i have 2 radio buttons and 1 push button and i have declared these three like this
    PARAMETERS: r1  RADIOBUTTON GROUP g1,
                r2 RADIOBUTTON GROUP g1.
    SELECTION-SCREEN: BEGIN OF LINE.
    SELECTION-SCREEN: PUSHBUTTON 30(30) pb01 USER-COMMAND onli
                      VISIBLE LENGTH 15.
    SELECTION-SCREEN: END   OF LINE.
    If i select the first radio button and click on the push button ztable should be updated. i have written code for this but 2nd time when user clicks on the push button with out changing the radio button position, a pop up message should be displayed like 'Nothing has been changedu2019.
    Please suggest me in this issue.
    Thanks in advance.
    Regards,
    Samatha

    text 001 :Selection screen sample
    tex t002 : List
    text 003: Alv
    text 004: None
    CONSTANTS : rbSelected TYPE c LENGTH 1 VALUE 'X'.
    DATA : p_txt type c LENGTH 100.
    SELECTION-SCREEN BEGIN OF BLOCK frame1 WITH FRAME TITLE text-001.
      SELECTION-SCREEN ULINE /10(40).
      SELECTION-SCREEN BEGIN OF LINE.
        SELECTION-SCREEN POSITION 15.
        PARAMETERS: rb1 RADIOBUTTON GROUP rb.
        SELECTION-SCREEN COMMENT 20(30) text-002.
      SELECTION-SCREEN END OF LINE.
      SELECTION-SCREEN BEGIN OF LINE.
        SELECTION-SCREEN POSITION 15.
        PARAMETERS: rb2 RADIOBUTTON GROUP rb.
        SELECTION-SCREEN COMMENT 20(30) text-003.
      SELECTION-SCREEN END OF LINE.
      SELECTION-SCREEN BEGIN OF LINE.
        SELECTION-SCREEN POSITION 15.
        PARAMETERS: rb3 RADIOBUTTON GROUP rb.
        SELECTION-SCREEN COMMENT 20(30) text-004.
      SELECTION-SCREEN END OF LINE.
      SELECTION-SCREEN ULINE /10(40).
    SELECTION-SCREEN END OF BLOCK frame1.
    IF rb1 = rbSelected.
      CONCATENATE 'You selected' text-002 INTO p_txt SEPARATED BY space.
    ELSEIF rb2 = rbSelected.
      CONCATENATE 'You selected' text-003 INTO p_txt SEPARATED BY space.
    ELSEIF rb3 = rbSelected.
      CONCATENATE 'You selected' text-004 INTO p_txt SEPARATED BY space.
    ENDIF.
    WRITE / p_txt.

  • Regarding userexit for pa40 transaction for validating position and persona

    when iam entering the position and  personal area in pa40 transaction , this position is should matched with personal area of the pa13 screen,and that personal area should match with pa40 presoanl area, for this requiremetnt which userexit is suitable.
    please any one worked on this type of requirement please help me on this.

    k

  • Regarding component's x position

    hi
    i dont whether this is the correct forum to ask my doubt.im entirely new to form development.
    so plz help me with this doubt.
    i placed a text item in a form.i specified some x position to that text item.then is specified its prompt.so it displayed in the left side and i adjusted the prompt with proper spacing etc.
    i want to know how can we find out x position form where the prompt is starting.
    ie. if we specify a x position its getting applied to text box starting corner.and the prompt come automatically in front of it.so i want to know how to get the x position from where the prompt starts.
    for eg: if there is text item with prompt "Name" i want to get the x position at "N".
    hope u understood my doubt.plz help me.its really urgent
    rgds

    use Get_item_property to get the prompt distance from the text item use the following property PROMPT_EDGE_OFFSET

  • Error regarding share relocation object or Position Independent Code.

    Problem related to Shared Object relocation or Position Independent code.
    For reference:
    Specification for -b option with ld (link editor/Runtime linker)
    ========================================================================
    In dynamic mode only, does no special processing for relocations that reference symbols in
    shared objects. Without the -b option, the link-editor creates special position-independent
    relocations for references to functions defined in shared objects. In addition, the
    link-editor arranges for data objects that are defined in shared objects to be copied into the
    memory image of an executable at runtime.
    The -b option is intended for specialized dynamic objects and is not recommended for
    general use. Its use suppresses all specialized processing required to insure an object's
    shareability, and can even prevent the relocation of 64-bit executables.
    ========================================================================
    I want -b option, and also I want working application.
    Please help.
    # ls -lrt
    total 6
    -rw-rw-r-- 1 sdk_25 sdk_grp 102 Jan 12 14:01 main.c
    -rw-rw-r-- 1 sdk_25 sdk_grp 24 Jan 12 14:01 aux.h
    -rw-rw-r-- 1 sdk_25 sdk_grp 60 Jan 12 14:02 aux.c
    # cat main.c
    #include <stdio.h>
    #include "aux.h"
    void main() {
    printf("Hello World\n");
    remote_display();
    # cat aux.h
    void remote_display();
    # cat aux.c
    void remote_display() {
    printf("Remote Hello World\n");
    # cc -o libaux_64.so -G -b -xarch=v9 aux.c
    cc: Warning: option -b passed to ld
    # cc -o main_64 -laux_64 -xarch=v9 -b main.c
    cc: Warning: option -b passed to ld
    # ./main_64
    ld.so.1: main_64: fatal: relocation error: R_SPARC_WDISP30: file main_64: symbol remote_display: value 0xffffffff9fc7fe9d does not fit Killed
    # cc -o libaux_64.so -G -xarch=v9 aux.c
    # cc -o main_64 -laux_64 -xarch=v9 main.c
    # ./main_64
    Hello World
    Remote Hello World
    Please tell how may I prepare a working shared object along with the program (with -b option).
    Thank you.

    The problem seems to be due to the use of -b. The manual warns you that it can prevent proper relocation in a shared library.
    You don't say what compiler you are using, so I tried your example without -b, using Sun Studio 12, with -m64 instead of the deprecated -xarch=v9: (I also added the missing #include <stdio.h> to aux.c)
    % cc -o libaux_64.so -G -m64 aux.c -Kpic
    % cc  -o main_64 -L . -laux_64 -m64  main.c -R .
    % ./main_64
    Hello World
    Remote Hello World

  • Nested MC's position regarding stage

    Arrgh! Here it is.
    I have a master MC that's added to the stage via
    addChild(p2_mc).
    Inside that p2_mc, i have others MC'S (added to the stage
    manually, not via addChild).
    One of them is instanced fond_mc
    I want to position that fond_mc in the middle of the stage
    using that line of code WHEN the stage is resized. Obviously, the
    following line is into the resize function:
    fond_mc.x = stage.stageWidth/2;
    I works but returning faulty results because it uses left
    corner of the mc instead of registration point, which is top and
    center.
    I tried all math formula i could think of to no results.
    Keeps positionning the fond_mc wrongly.
    I know this is related to registration OR stage measurement.
    Is there a way to reset stage.stageWidth values INSIDE the
    resize function?
    Thanks!

    ahhh. so then when the container is brought to the stage it
    *is* being aligned at 0, 0 correct?
    ...> nope, it is aligned when created with this
    var p2_mc:MovieClip = new P2;
    MovieClip(root).addChild(p2_mc);
    p2_mc.x = stage.stageWidth/2;
    p2_mc.y = 0;
    The problem is WHEN i resizes, the children clips INSIDE the
    container has no references that i can understands.
    As i said, when i add this inside the resize function at root
    level, it works:
    p2_mc.x = stage.stageWidth/2;
    because in my test files, p2_mc is added BEFORE the resize
    function kicks off. And the childs move accordingly around the
    stage.
    But in my project file, p2_mc is dynamically created only
    when the user press a button. Therefore, the resize function isnt
    seeing p2_mc first hands and gives me error.
    I want to avoid adding ALL of my navigation clips to the
    stage on frame 2 (after the preloader) and BEFORE resize function
    is run. That would work i guess, but ill have to manually rendering
    them visible or not.

Maybe you are looking for