There's a way to add field to infotype 0000

hi everyone !
i would like to add field substitude position to infotype 0000.
there's a way ?

The "Common Tools" panel is not available by default. You're more likely to find it under Tools - Pages - Insert From File...

Similar Messages

  • Is there an easy way to add a location map to Pages?

    Hi,
    Using the latest version of Pages, is there an easy way to add a location map?
    Many Thanks
    Simon.

    Are you trying to copy an image from the Maps application? 
    If you are, the easiest way I have found to do this is by going to Edit>Copy in Maps and then pasting the image in the Pages document. 

  • Why apple doesn't allow the users just to add more photos from our pcs instead of requiring us to re-sync the existing albums? I can't sync additional photos cause I have my pc  reformatted. =( is there any other way to add these photos? please help me.

    I can't sync additional photos cause I have my pc  reformatted. =( is there any other way to add these photos? please help me. these existing photos are very important to me. ='((

    Apple has not saidwhy they did it that way and it is against the terms of this forum to speculate on the reasons. It says not to:
    "Discussions of Apple policies or procedures or speculation on Apple decisions."
    The are third-party programs like TouchCopy that I think will allow you to do what you want.  You can import photos via DropBox.  The third-party programs will I know allow you to transfer the photos to your "new" computer.

  • P0000-STAT1 (Customer Specific Status) field on Infotype 0000

    Hi All,
    I have a requirement on Customer specific status field on infotype 0000,  Where I should be able to maintain that field through PA40.
    As this field is standardly delivered as output field only through SAP I am unable to force that field as input field in module pool.
    did any one used this field before as input field in IT0000? I couldn't find OSS note on this issue.
    Please let me know if any one has solution on this.
    Thanks,
    Sang

    Hello sangarshitha
    try using field symbol ,
    asssign field symbol to p0000-stat1
    like
    field-sybmbols : <fs> type p0000-stat1.
    ASSIGN ('(MP000000)PSPAR-STAT1') TO <fs>. "check table pspar in debug wether field stat1 is there else go for P0000-stat1
    <fs> = "assign what you want to here.
    write this in PBO of User Exit/Badi for IT-0000
    reward points if helpful

  • Updating action type field in infotype 0000.

    Hi experts,
    I have to update the action type(MASSN)field and reason for action(MASSG)field in infotype 0000 for the existing record. I am trying to use function module HR_INFOTYPE_OPERATION to update it,but i am not able to update the action type field.Below is the code.Can anybody please give me a solution for this.
    DATA:ls_p0000 type p0000.
    DATA : RETURN like BAPIRETURN1.
    DATA : KEY like BAPIPAKEY.
    DATA : RETURNE like BAPIRETURN1 .
    DATA :NOCOMMIT like BAPI_STAND-NO_COMMIT.
    PARAMETERS:is_pernr type pernr.
    ls_P0000-SUBTY = 'IG'.
    ls_P0000-PERNR = IS_pernr.
    ls_P0000-BEGDA = '20100101'.
    ls_P0000-ENDDA = '99991231'.
    ls_P0000-MASSN = 'IG'.        "action type
    ls_P0000-MASSG = '01'  .      "reason for action
    CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
    EXPORTING
    NUMBER = IS_PERNR
    IMPORTING
    RETURN = RETURNE.
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    EXPORTING
    INFTY = '0000'
    NUMBER = ls_P0000-PERNR
    SUBTYPE =   ls_P0000-SUBTY
    OBJECTID = ls_P0000-OBJPS
    LOCKINDICATOR = ls_P0000-SPRPS
    VALIDITYEND = ls_P0000-ENDDA
    VALIDITYBEGIN = ls_P0000-BEGDA
    RECORDNUMBER = ls_P0000-SEQNR
    RECORD = ls_P0000
    OPERATION = 'INS'
    TCLAS = 'A'
    DIALOG_MODE = '0'
    NOCOMMIT = NOCOMMIT
    IMPORTING
    RETURN = RETURN
    KEY = KEY.
    CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
    EXPORTING
    NUMBER = IS_PERNR
    Thanks in advance.

    operation "INS" is for insertion,check the FM documentation for value to be passed to operation parameter for change.
    I think its "MOD"
    Edited by: abapuser on Sep 15, 2010 2:02 PM

  • Any way to add fields to ESS screen without coding?

    Hello Experts,
    I am attempting to add a single field - Religious Denomination (KONFE) to the Personal Data ESS screen for Great Britain.  It is included in the standard screen for maintaining Personal Data in PA30 but for some reason not on the ESS screen.
    Is there any way to add this field to the ESS screen without having to modify the code of the ESS screen in the NWDI?
    Thank you,
    Mike Wellens

    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable
    You can check via V_T588MFPROPC, but not sure this will show as it is not in structure

  • Is there an easy way to add a sketch to Apple Email?

    I struggled with a new-to-me sketch program that I found on an Internet website, but I was finally able to copy and paste it to an Email message. It was supposed to have been easier than that, but that was the best I could do.I then realized that I had to add a few lines and notes. That got me to thinking. By now, you'd think that there would be an easy way to add graphic material to Apple Email. Is there?
    I have an iMac.

    Closing for lack of response

  • Is there an easy way to add a desktop shortcut for all users?

    Looking for an easy way to add a shortcut to an app for all users.

    William is correct. There are global system settings, and then there are personal user settings. Adding a shortcut to the desktop, or more commonly the Dock is a personal setting.
    Unless its in some kind of mass deployment scenario where you can create a pre programed image for large amounts of computers which has it already has your app shortcut setup, its easier to just do it one user at a time.

  • Is there a better way to add int arrays together?

    I'm working on a project that will add arrays of integer together...all element are nonnegative integers
    For example
    A = [0 1 2 3]
    I need to find an algorithm to find 2A= A + A, 3A = A+A+A....., hA = A +...A ( h times)
    For 2A, the result array will look like this
    2A = [ 0 1 2 3 1 2 3 4 2 3 4 5 3 4 5 6]
    Then using Array.sort(2A) i will have 2A= [ 0 1 1 2 2 2 3 3 3 3 4 4 4 5 5 6].
    Lastly I will write another code to get rid of repetitions to get the desired array 2A = [ 0 1 2 3 4 5 6]
    public static int[] hA(int[] a, int h){
       // mon = null;
       //mon = MonitorFactory.start("myFirstMonitor");
           if (h==1) return a;
           if (h==2){          
                  int[] b = new int[(a.length)*(a.length)];
               int count = 0;
               int maxa = a.length,maxb=b.length;
               for (int i = 0 ; i < maxa; i++)
               for (int j=0 ; j <maxa; j++)
                 b[count]=a[i]+a[j];
                    count++;
                return b;
               else
               return hA(a,h-1);     
           }I still don't know how to write recursive code to get it to find 3A, 4A....hA....
    is there any better way to do this?

    sorry for not defining it better
    2A ={ a + a' | a,a' E A}
    that means for A = { 0 1 3} , 2A ={ 0 1 2 3 4 6}
    but to get to [ 0 1 2 3 4 6], i don't know of any better way to achieve it.
    Also to find 3A = { a+a'+a'' |a,a',a'' E A}
    that means for A = { 0 1 3} ,3A={ 0 1 2 3 4 5 6 7 9}
    the idea is simple but to put into java code is not...at least for me

  • Have download 350 movies to Ext HD using itunes. Left itunes library on desktop drive. My computer now runs very slowly. Is there a better way to add movies without slowing my computer down?

    Using 3 TB Western Digital HD to store 350+ converted personal movies from my collection. Want to add more movies from my collection but this process is slowing my computer down considerably. Although I have downloaded the movies to my Ext HD, have left my itunes library on my desktop main drive. Is there a way to add more movies without slowing down my computer?
    Tks.

    Using 3 TB Western Digital HD to store 350+ converted personal movies from my collection. Want to add more movies from my collection but this process is slowing my computer down considerably. Although I have downloaded the movies to my Ext HD, have left my itunes library on my desktop main drive. Is there a way to add more movies without slowing down my computer?
    Tks.

  • Can someone tell me if there is any way to add a fully editable layer mask in pse 8?

    Hi I am a web designer and ahve been working hard recently in adding new web  graphic skills to my arsenal. Now, the problem I have been expiriencing with elements 8 is that while trying to reproduce a mirrored text effect, following a tutorial online I found myself not being able to add a layer mask on top of one of the text layers, to then apply a gradient. In the end I did it with Fireworks but is there any way around it in Photoshop Elements 8.
    Thanks in advance
    Carlo

    Sure. You can grab the mask from an adjustment layer, or there are a number of add-on downloads. A popular one is here:
    http://www.elementsvillage.com/forums/showthread.php?t=51319&highlight=grant%27s+tools

  • I have an iPod touch(5th gen.) and i was wondering if there is any way to add a phone number instead of my email address

    Is there a way to add a phone number instead of email on ipod touch

    Only if you have an iPhone using same Apple ID for Messages
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage

  • Is there an easy way to add general holidays and such into iCal?

    I would like to have my iCal show me general holidays, thanksgiving, christmas, etc. I can't understand why there cannot be an option to show or not show various holidays. I realized a few weeks ago as I was trying to make some holiday travel plans on iCal, that I didn't have a way to import such dates.
    Am I going to have to add these for each year?? Is there a better way?

    Ahhhh, neber mind, I just saw the sticky on the top of this section which led me to all sorts of calendars. I've never heard of these before. Are these generally known?

  • Why isn't there an easy way to add a photo to photoStream from the finder?

    Apple makes it easy to share your photo with Twitter, FB, Flickr, etc. Why not Photo Stream? As far as I know, the only way to add a photo to photo stream is to open iPhoto and then add the photo to that.  This seems to be a very poor way of quickly adding a photo.

    If you have a suggestion make it here: Apple Feedback. This is the wrong venue.

  • PSE10: Is there an easy way to add a vignette?

    Besides using Filter > Correct Camera Distortion, is there an easy way to put a vignette on a picture?  The method I just named doesn't give me the smooth, uniform fade that I need for creating collages, etc.  Thanks!

    Sure, just use any selection tool to make your selection.  Here, I simply used an elliptical selection:
    Then, use Select...Feather to feather the selection.  I used 10px.  Hit the Ctrl+J keys to copy that feathered selection to a new layer with a transparent background:
    Ken

Maybe you are looking for