How to replce the ename with last name & first name in this program

Hi all,
The below include program is with the reference of std report CATSSHOW.
in which ename is the field to fetch the employee name, but now we want the emloyee name like last name & first name i.e in two separte column.
how i implement this change in this include program.
ENAME IS Define like that
ename LIKE pernr_list_structure-ename,
If u whant to refer the report put u can execute the std repot CATSSHOW.
Pls help on this.
Send me the code.
pls find the include prgram ZHNO_INCLUDE_CATSDATA from where they declare the ename.
4.6B
QWKP99K050532 13081999 note 167550
4.6A
XQIALRK154280 19.11.98 key date on selection screen
4.0C
YIKALRK098973     30.03.1998  F4 Hilfe für Objektid
  INCLUDE CATSDATA                                                   *
db-tabellen
TABLES:
  prps,
    catsdb,
    catsdb_ext.
Remarked by LuX 11 Dec. 1998
   crhd.                                                 "YIK
dd-structuren
TABLES:
    gdstr,
    gdset,
    catsd,                             "dialogstruktur
    sscrfields,
    t77mt,                             "modulübergreifende texte
    objec.
Remarked by LuX 19981210 - CATS decoupling (seems not used)
  rcr01.
"arbeitsplatz aus sicht pläne
Added by Jerlece on 04/04/2002 - SIR 2836
TABLES:
    pa0001,           "HR Master Record: Infotype 0001 (Org. Assignment)
     hrp1000.          "Infotype DB table : 1000
*End of addition
type-pool enthält feldkatalogstruktur
TYPE-POOLS:
    kkblo.
konstanten
CONSTANTS:
  DATENULL20          TYPE D             VALUE ' ',      QWKP99K050532
    datenull20          TYPE d             VALUE '        ',
    datenull30          TYPE d             VALUE '00000000',
    no                  TYPE c             VALUE 'N',
    off                 TYPE c             VALUE '0',
    yes                 TYPE c             VALUE 'Y'.
Added by Jerlece on 10/04/2002 - SIR 2836
DATA: BEGIN OF i_objid OCCURS 0,
         objid(100),
       END OF i_objid.
End of addition
DATA:
    gt_sp_groups TYPE kkblo_t_sp_group WITH HEADER LINE.
DATA for REFRESH of PCHSOBID
DATA : old_otype LIKE wplog-otype VALUE 'O'.
DATA: BEGIN OF i77eo_key,
         mandt LIKE t77eo-mandt,
         otype LIKE t77eo-otype,
       END   OF i77eo_key.
DATA: BEGIN OF i77eo OCCURS 2.
         INCLUDE STRUCTURE t77eo.
DATA: END OF   i77eo.
DATA: BEGIN OF i778l OCCURS 5.
      INCLUDE STRUCTURE T778L.
DATA:   langu LIKE t778l-langu.
DATA: END OF   i778l.
DATA   allowed_pernr_index       LIKE sy-tabix.
DATA    flag_save                 TYPE c.
DATA:  selcheck_save_struk_index LIKE sy-tabix.
felder
DATA:
    flag           TYPE c,             "Drucktastenbelegung
    saveflag       TYPE c,
    saveflag_esa   TYPE c,
    f_stich        TYPE c VALUE yes,   "1. X sichtag
    daynumber      TYPE c,             "Wochentagnummer 1-7
    pchobjid_count TYPE i,
    i778l_count    TYPE i,
    i77eo_count    TYPE i,
    txtid          LIKE t77mt-txtid,   "Wochentagtext
    exist_werk     TYPE c,             "werk eingegeben
    week           LIKE scal-week,     "Wochen zum Tag
    no_selection   TYPE c.             "YIKALRK167448
DATA: BEGIN OF icatsdb OCCURS 0.
         INCLUDE STRUCTURE catsdb.
       include structure cats_exten.
*data: checkbox(1) type c,
     lights(1)   type c,
DATA:  END OF icatsdb.
DATA: BEGIN OF selcheck OCCURS 0,
         fielname  LIKE dbindfld-field,
         flag(1)       TYPE c,
       END OF selcheck.
DATA: BEGIN OF selcheck_save_struk OCCURS 0,
       FIELNAME(10)  TYPE C,                               NOTE 167550
         fielname      LIKE dbindfld-field,                 "note 167550
         flag(1)       TYPE c,
       END OF selcheck_save_struk.
DATA: BEGIN OF selcheck_save OCCURS 0,
       FIELNAME(10)  TYPE C,                               NOTE 167550
         fielname      LIKE dbindfld-field,                 "note 167550
       END OF selcheck_save.
DATA : BEGIN OF maco_objects OCCURS 5,
          plvar LIKE plog-plvar,
          otype LIKE plog-otype,
          objid LIKE plog-objid,
        END   OF maco_objects.
RANGES so_datum_save FOR catsdb-workdate.
INCLUDE .
datendeklarationen für CATSSTRC                                     *
TYPE-POOLS: kkblo, capp.
TYPES: tabix LIKE sy-tabix OCCURS 0.
TYPES: BEGIN OF icatsdb_lst_type.
         INCLUDE STRUCTURE catsdb.
TYPES:   checkbox(1) TYPE c,
          lights(1) TYPE c,
          ename LIKE pernr_list_structure-ename,
       END   OF icatsdb_lst_type.
TYPES: icatsdb_lst_type_table TYPE icatsdb_lst_type OCCURS 0.
TYPES: BEGIN OF allowed_pernr_type,
         pernr LIKE catsdb-pernr,
         ename LIKE pernr_list_structure-ename,
         begda LIKE catsdb-workdate,
         endda LIKE catsdb-workdate,
       END   OF allowed_pernr_type.
TYPES: allowed_pernr_table TYPE allowed_pernr_type OCCURS 0.
DATA: allowed_pernr TYPE allowed_pernr_table WITH HEADER LINE.
DATA: yx TYPE c VALUE 'X'.
DATA: is_variant LIKE disvariant.
DATA: es_variant LIKE disvariant.
DATA: fcode(4).
DATA: subrc LIKE sy-subrc.
DATA: approve TYPE c.
rhx-f4-objid-data.                    "YIKALRK098973
INCLUDE rhodat00.
Added by Lu Xiaozhou for CATS decoupling 10 Dec. 1998
DATA: sys_type LIKE tcesyst-devtype.
DATA: posid TYPE ps_posid.
*added by anand on 8/21/02 TD 1480 ========>D20K908220
*ranges for date to build & then put in selection criteria
RANGES r_datum FOR sy-datum.
*end of addition on 8/21/02 TD 1480=======>D20K908220
*added by anand on 9/10/02 TD 1513 =======> D20K908525
*New internal table to get the begin & end date also with ENum
DATA: BEGIN OF it_pers OCCURS 0,
        pernr LIKE pa0001-pernr,
        begda LIKE pa0001-begda,
        endda LIKE pa0001-endda,
       END OF it_pers.
*end of addition on 9/10/02 TD 1513 ======>D20K908525
begin of anc01
DATA: BEGIN OF i_pernr OCCURS 0,
       pernr LIKE pa0003-pernr,
       END OF i_pernr.
DATA: BEGIN OF i_persa OCCURS 0,
       persa LIKE t500p-persa,
       END OF i_persa,
       BEGIN OF i_persk OCCURS 0,
       persk LIKE t503k-persk,
       END OF i_persk.
DATA: BEGIN OF i_orgeh OCCURS 0,
       orgeh LIKE t527x-orgeh,
       END OF i_orgeh.
DATA: BEGIN OF i_pa0105 OCCURS 0,
       pernr LIKE pa0105-pernr,
       usrid LIKE pa0105-usrid,
       END OF i_pa0105.
end of anc01
begin of TD 4107 Anand
store sub org units
DATA: BEGIN OF i_sobid OCCURS 0,
       sobid LIKE hrp1001-sobid,
       END OF i_sobid.
store user entered org units
RANGES: r_orgeh FOR pa0001-orgeh.
end of TD 4107 Anand
*Added by Ketan Joglekar, SIR6599 05/08/2006  D20K921585
DATA: ws_mandt LIKE sy-mandt. "#EC NEEDED
*Added by Ketan Joglekar, SIR6599 05/31/2006  D20K921851
DATA: BEGIN OF wa_catsco_temp,
       counter LIKE catsco-counter,
       belnr LIKE catsco-belnr,
       trans_no LIKE catsco-belnr,
       docnr LIKE catsco-belnr,
       END OF wa_catsco_temp.
*End of changes Ketan Joglekar, SIR6599 05/31/2006  D20K921851
DATA: BEGIN OF i_cobk OCCURS 0,
      counter LIKE catsco-counter,
      docnr LIKE catsco-belnr,
      budat LIKE cobk-budat,
      END OF i_cobk.
DATA: ws_week LIKE scal-week.
*End of Changes.
-> D10K919801
DATA: w_aut_zhr15  type c,
       w_aut_zhr17  type c.
-> D10K919801

Completely support!
I yesterday switched from I-mate PDA2K and got over 200 contacts from Outlook to my 6820 in format of first name space father name space second name. Terrible!
My phone fails to search by the last name - search is useless in fact. And last names are almost invisible because of long first and father names in Russian.
It's a nightmare. Could anybody help please? How to sync with Outlook to have last name first???
Best Regards,
Vladimir.

Similar Messages

  • HT2486 My mail account is linked to my address book. The address book shows First Name, Last Name. When I try to insert a name into an email, the order is reversed...Last Name, First Name.  How can I make the email read in the same order...First Name, Las

    My Mail Account in linked to my address book. The address book shows First Name, Last Name. When I start an email in Mail, the name does appear but the order is reversed...Last Name, First Name. I must have changed a setting somewhere but I don't know where. Does anyone know how to correct it?

    I don't have any problem with my system. My guess is there is something there you aren't quite getting. I'd recommend a visit to your Apple Store, AASP or to contact AppleCare so they can coach you personally.
    You can also play with the Address Book Preferences. However to see how changing a Preference affects the Address Book drag the Preferences window off of the Address Book so you can see both the Preferences window and Address Book Windows. Then toggle a Preference and you will see it instantly changes in the Address Book. 

  • How to delete the file with space in name

    Hi
    I want to delete the file "test ex.txt" file.
    i run the following command in command prompt.i can delete the file successfully.
    /bin/rm -f /mnt/"test ex.txt"
    I want to run the command from java.So i am using the following code
    String cmd = "/bin/rm -f /mnt/\"test ex.txt\"";
         Runtime rt = Runtime.getRuntime();
    process = rt.exec(cmd);
    The file was not deleted.
    How to delete the file with space in name?
    Help me

    Use the form of exec that takes an array of command + args.
    arr[0] = "/bin/rm"
    arr[1] = "-f"
    arr[2] = "/home/me/some directory with spaces";Or use ProcessBuilder, which is the preferred replacement for Runtime.exec, and which Runtime.exec calls.

  • How long is the iPad battery last while watching video on YouTube with 3G?

    How long is the iPad2 battery last while watching video on YouTube with 3G?

    My iPad 2 battery can use only ~7 hours 15mins when surfing the web using cellular data network. Is it normal?
    I would say that's normal. Cellular uses more power than wifi. Your screen brightness is also a factor. Lower the screen brightness & battery will last longer.
    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
     Cheers, Tom

  • How to copy the photo with file name at window 7 and search specific one in iphone 4s?

    How to copy the photo with file name at window 7 and search specific one in iphone 4s?

    Clendenen02 wrote:
    2) It would be equally helpful if there was something that would take the name of the picture file and spotlight comment, copy and paste it to a movie file's comments with the same name but obviously has different extention. For an example
    In a Pictures folder
    Name: Dark Knight, The.jpeg       Comment: (2008) Genre: Action...             <- copy comment
    In a Movie Folder
    Name: Dark Knight, The.m4v       Comment:                                               <- paste 
    and do this for all 700 files
    This Bash script will do it.
    Edit "PicDir" and "MovDir" to the location of your Folders
    (Note: The comment is written to the m4v file using xattr, so the Spotlight comment field appears blank in Finder, but the comment metadata is still indexed by Spotlight (If you add a Spotlight comment from Finder, it is stored both as an extended attribute and in a .DS_Store file)
    #!/bin/bash
    PicDir=$HOME/Desktop/Pictures
    MovDir=$HOME/Desktop/Movies
    for f in $PicDir/*
    do
         if [ ! -d "$f" -a "${f##*.}" == "jpeg" ]; then
              comment=$(mdls -raw -name kMDItemFinderComment "$f")
              if [[ $comment != "(null)" ]]; then
                   picname=${f##*/}
                   movname=${picname%.*}.m4v
                   if [ -e "$MovDir"/$movname ]; then
                         xattr -w com.apple.metadata:kMDItemFinderComment "\"$comment\"" "$MovDir"/$movname
                   fi
              fi
         fi
    done

  • How long does the IPhone5c battery last for without hardly any usage with about 2/3 to 3/4 left?

    How long does the IPhone5c battery last for without hardly any usage with about 2/3 to 3/4 left?
    Has the side affect of charging, where the battery's life gradually decreases overall with each charge, been fixed ?

    Eric,
    They did say 12-14 hours, but as is always the case with such estimates, they invariably quote the 'best possible scenario' and almost never mirror 'real world' conditions.
    If, from a fully charged position, you simply switch on your nano, and set it to continuously play through a long set of songs, with EQ off, backlight off, modest volume (50%) don't touch it during playback, then you might just get somewhere near this figure - and if you don't then it's either not been conditioned properly or it's faulty.
    If you use it like me, daily for a couple of hours, with 2 secs backlight and switch songs regularly, using fairly high volumes then 6-8 hours is more likely. It'll even drain when it's not in use, even in sleep mode, albeit very slowly. They also tend to drain more quickly before they've been through their first few charge cycles (the conditioning period).
    Personally I haven't got a problem with this though I can understand why some people have. It's not very impressive in this respect. Apple should be able to come up with something much better - maybe they should talk to Sony

  • Mail AND entourage showing contacts in the order last name, first name?

    hi, I want to use mail and entourage parallel. mail can display the name in the "correct" order last name, first name. using entourage I cannot find this option. it´s always a mess, sorted by last name, but in the order: first name last name.
    Does somebody know the solution how to tell entourage to behave like mail in this matter ?

    Templeton's suggestion is best if needing help with Microsoft Entourage. Since I know the answer is "not possible" I can at least steer you toward an AppleScript that will give you a workaround. Have a look here <http://www.barryw.net/weblog/files/category-5.html>.
    Further questions about this script should be directed either to its author or to Microsoft's Entourage newsgroup <http://groups.google.com/group/microsoft.public.mac.office.entourage>.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.9)  

  • How to use the namespace with a parser?

    I want to use the namespace in my project. For this reason, I use a sample
    from
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/sax/7b_pe.html
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/dom/5_ns.html
    to test my understanding.
    The slideshow2.dtd refer to the definition in 'xhtml.dtd'. Because in these
    two files, they all use the 'title' as the element names. To solve these
    conflicts, The namespace is used to qualified the one in slideshow2.dtd.
    But the parser still complain that the 'title' in slideshow2.dtd is declared
    more than once.
    I use apache's Xerces.
    I want to know if Xereces realy support namespace spec. now, or how to use
    the namespace with a parser. Can anyone kindly tell me where to find some
    material that demo the use of namespace in Java program.
    Thanks for any help!!!
    #############FILE: slideshow2.dtd ###############
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT slideshow (slide+)>
    <!ELEMENT slide (title?, item*)>
    <!ENTITY % xhtml SYSTEM "xhtml.dtd">
    %xhtml;
    <!ELEMENT title (#PCDATA)*>
    <!ATTLIST title
    xmlns CDATA #FIXED "http://www.example.com/slideshow"
    >
    <!ELEMENT item (#PCDATA)>
    ##############FILE: xhtml.dtd #########################
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT html (head)>
    <!ATTLIST html
    xmlns CDATA #FIXED "http://www.example.com/xhtml"
    >
    <!ELEMENT head (title,style*)>
    <!ELEMENT title (#PCDATA)>
    <!ELEMENT style (#PCDATA)>
    #############FILE: slideshow.xml ####################
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE slideshow SYSTEM "slideshow2.dtd">
    <slideshow>
    <slide>
    <title xmlns="http://www.example.com/slideshow">Wake up to
    products!</title>
    </slide>
    </slideshow>

    I want to use the namespace in my project. For this reason, I use a sample
    from
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/sax/7b_pe.html
    http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/dom/5_ns.html
    to test my understanding.
    The slideshow2.dtd refer to the definition in 'xhtml.dtd'. Because in these
    two files, they all use the 'title' as the element names. To solve these
    conflicts, The namespace is used to qualified the one in slideshow2.dtd.
    But the parser still complain that the 'title' in slideshow2.dtd is declared
    more than once.
    I use apache's Xerces.
    I want to know if Xereces realy support namespace spec. now, or how to use
    the namespace with a parser. Can anyone kindly tell me where to find some
    material that demo the use of namespace in Java program.
    Thanks for any help!!!
    #############FILE: slideshow2.dtd ###############
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT slideshow (slide+)>
    <!ELEMENT slide (title?, item*)>
    <!ENTITY % xhtml SYSTEM "xhtml.dtd">
    %xhtml;
    <!ELEMENT title (#PCDATA)*>
    <!ATTLIST title
    xmlns CDATA #FIXED "http://www.example.com/slideshow"
    >
    <!ELEMENT item (#PCDATA)>
    ##############FILE: xhtml.dtd #########################
    <?xml version='1.0' encoding='us-ascii'?>
    <!ELEMENT html (head)>
    <!ATTLIST html
    xmlns CDATA #FIXED "http://www.example.com/xhtml"
    >
    <!ELEMENT head (title,style*)>
    <!ELEMENT title (#PCDATA)>
    <!ELEMENT style (#PCDATA)>
    #############FILE: slideshow.xml ####################
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE slideshow SYSTEM "slideshow2.dtd">
    <slideshow>
    <slide>
    <title xmlns="http://www.example.com/slideshow">Wake up to
    products!</title>
    </slide>
    </slideshow>

  • How to rename the SharePoint Document Library existing file name using Web service

    Hi,
    How to rename the SharePoint Document Library existing file name using SharePoint Web service.
    Is it possible. How could i do it?
    Thanks & Regards
    Poomani Sankaran

    Hi,
    Lists.UpdateListItems Method
    would be helpful for your requirement.
    Here is a blog with code demo for your reference:
    http://blogs.msdn.com/b/knowledgecast/archive/2009/05/20/moss-using-the-list-web-service-to-rename-a-file.aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to retrieve the value of last identity has been updated in a database?

    how to retrieve the value of last identity has been updated in a database

    Hi,
    Oracle 10g, FGA - Fine grained auditing, supports DML statements (9i only select).
    Set up FGA using the DBMS_FGA.ADD_POLICY procudure:
    sql> BEGIN
    DBMS_FGA.ADD_POLICY (
    policy_name => 'AUD_EMPLOYEE_SAL',
    object_schema => 'HR',
    object_name => 'EMPLOYEE',
    audit_column => SALARY',
    audit_condition => '',
    statement_type => 'UPDATE');
    END;
    NEXT:
    sql> SELECT dbuid, lsqltesxt FROM sys.fga_logs$;
    The database inserts the audit record into the FGA_LOG$ table using an autonomous transaction; even if you roll back the update statement, the update action will still be logged in this table. The fga_log$ tracks the session, machine id, timestamp, schema, scn, etc:
    SQL> desc fga_log$
    Name Null? Type
    SESSIONID NOT NULL NUMBER
    TIMESTAMP# DATE
    DBUID VARCHAR2(30)
    OSUID VARCHAR2(255)
    OSHST VARCHAR2(128)
    CLIENTID VARCHAR2(64)
    EXTID VARCHAR2(4000)
    OBJ$SCHEMA VARCHAR2(30)
    OBJ$NAME VARCHAR2(128)
    POLICYNAME VARCHAR2(30)
    SCN NUMBER
    SQLTEXT VARCHAR2(4000)
    LSQLTEXT CLOB
    SQLBIND VARCHAR2(4000)
    COMMENT$TEXT VARCHAR2(4000)
    PLHOL LONG
    STMT_TYPE NUMBER
    NTIMESTAMP# TIMESTAMP(6)
    PROXY$SID NUMBER
    USER$GUID VARCHAR2(32)
    INSTANCE# NUMBER
    PROCESS# VARCHAR2(16)
    XID RAW(8)
    AUDITID VARCHAR2(64)
    STATEMENT NUMBER
    ENTRYID NUMBER
    DBID NUMBER
    LSQLBIND CLOB
    SQL> spool off

  • How to get the table with no. of records after filter in webdynpro

    Dear Gurus,
    How to get the table with no. of records after filter in webdynpro?
    Thanks in advance.
    Sankar

    Hello Sankar,
    Please explain your requirement clearly so that we can help you easily.
    To get the table records from your context node use method get_static_attributes_table()
    data lo_nd_mynode       type ref to if_wd_context_node. 
    data lt_atrributes_table  type wd_this->elements_mynode. 
    lo_nd_mynode = wd_context->get_child_node( name = wd_this->wdctx_mynode ). 
    lo_nd_mynode->get_static_attributes_table( importing table = lt_atrributes_table ). 
    Note: You should have already defined your context node as a Dictionary Structure.
    BR,
    RAM

  • How to do the lsmw with bapi?

    hi
    while upload the vendor master data using (xk01) from nonsap to sap
    how to do the lsmw with bapi? pls could u give the steps with scren shot to me.
    regards
    eswar.

    Hi
    BAPI - BAPIs (Business Application Programming Interfaces) are the standard SAP interfaces. They play an important role in the technical integration and in the exchange of business data between SAP components, and between SAP and non-SAP components. BAPIs enable you to integrate these components and are therefore an important part of developing integration scenarios where multiple components are connected to each other, either on a local network or on the Internet.
    BAPIs allow integration at the business level, not the technical level. This provides for greater stability of the linkage and independence from the underlying communication technology.
    LSMW- No ABAP effort are required for the SAP data migration. However, effort are required to map the data into the structure according to the pre-determined format as specified by the pre-written ABAP upload program of the LSMW.
    The Legacy System Migration Workbench (LSMW) is a tool recommended by SAP that you can use to transfer data once only or periodically from legacy systems into an R/3 System.
    More and more medium-sized firms are implementing SAP solutions, and many of them have their legacy data in desktop programs. In this case, the data is exported in a format that can be read by PC spreadsheet systems. As a result, the data transfer is mere child's play: Simply enter the field names in the first line of the table, and the LSM Workbench's import routine automatically generates the input file for your conversion program.
    The LSM Workbench lets you check the data for migration against the current settings of your customizing. The check is performed after the data migration, but before the update in your database.
    So although it was designed for uploading of legacy data it is not restricted to this use.
    We use it for mass changes, i.e. uploading new/replacement data and it is great, but there are limits on its functionality, depending on the complexity of the transaction you are trying to replicate.
    The SAP transaction code is 'LSMW' for SAP version 4.6x.
    Check your procedure using this Links.
    BAPI with LSMW
    http://esnips.com/doc/ef04c89f-f3a2-473c-beee-6db5bb3dbb0e/LSMW-with-BAPI
    For document on using BAPI with LSMW, I suggest you to visit:
    http://www.****************/Tutorials/LSMW/BAPIinLSMW/BL1.htm
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • How to find a routine with it's technical name

    Hello!
    I am wondering how to find a routine with it's technical name (e.g. "ROUT 7QAXE7SDXIVW4BJ2S2UL3HLAS" as shown in the error message in a transport log).
    So I would like to find out, where this routine is located (w.g. which characteristic/key figure in which transfer/update rule).
    Any ideas welcome. Thanks, Thomas

    Hi Thomas,
    You can try the following:
    Look up table <b>RSUPDROUT</b>with the GUID of your routine (like 7QAXE7SDXIVW4BJ2S2UL3HLAS)in the ABAP Code ID field selection. This will show you the InfoObject it is created on, and the GUID of the update rules. If you click on the Check Table button, you can find out the data target and InfoSource of the Update Rule.
    In table <b>RSAROUTT</b>you can again use the GUID of your routine to check the description assigned to the routine during its creation.
    I am not sure if this works for the routines of transfer rules....still checking it and will update if anything turns up.
    Hope this helps...

  • How to configure the iTunes,to display only folder name as Album.

    How to configure the iTunes,to display only folder name as Album under Music.
    I have a folder with name "English" under this I have plenty of folders which are either movie names or custom names created by me,inside of these are the music files. I just want all the files to be copied to the iPod with out any album artwork(which the itunes display under "Album By Artist" contains).The "Album By Artist" doesnt seem to contain just the folder name,it gets something else like the website from where the music file downloaded. This makes me irritating to browse through iPod or iTunes.
    Please help me in configuring,so that I can just see the same folder/music hierarchy I see in my windows machine in the iPod.

    Yep, I agree with Jurjen. It is not only limited to ACTVT, but rather fields of other objects as well which are "action" or "activity" related.
    I would start the other way around - give them '03' only and investigate any transaction specific claims that it is not enough. There will be a few...
    Cheers,
    Julius

  • A friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as yahoo address is no longer valid. Erasing the phone doesn't solve the issue. How to register the phone with Apple?

    A computer illiterate friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as his yahoo address is no longer valid. Erasing the phone doesn't solve the issue as the Apple server identifies the hardware as registered. How to register the phone with Apple?
    I helped him create a new email address and new iCloud account on my Mac but when we try to register the phone with Apple it says: Maximim accounts limit reached for this device. How can he register the phone? I read different threads and found out that only Apple care can do that. We're in Romania and don't know where to call. Any suggestions on how we fix this?

    When I checked the support site for Romania, you apparently don't have an Apple Care contact center.  You "may" try calling the US Apple care number to verify the account and have the password reset sent to a different email address.  800-694-7466

Maybe you are looking for