Segment wise splitting is not working- moving to dump

Hi Friends,
When posting to cash payments. I have activated New GL concept(Doc splitting segment wise).
The following systax error occured in the program SAPLFAGL_segment "Field "COPABBSEG_GLX" is unknown. it is neither in one of the specifile.
Doc splitting prpfot center wise working, same way configured as Segment wise splitting.
Regards,
Suresh

solved

Similar Messages

  • Splitting is not working for fiscal year 2008

    hai experts,
    The splitting is not working for fiscal year 2008. This is critical for month end.
    pls explain me ful cycle and advise me what i have to do,
    thank you

    Hi
    Please check the documentation in the links below.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/1c/2ed140ed61712ae10000000a155106/content.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/87/3da04028f40160e10000000a1550b0/content.htm
    This gives yuo a brief on Document splitting. Please let me know if you need any further help. Please do award points if found useful.
    Karthik

  • Splitting does not work on a networked drive.

    My iPhoto Library is on a following networked drive connected by cat6.
    Linux:CentOS 4.2+samba 3.0.10-1.4E.12.2.
    In this environment, splitting photos does not work. When splitting photos, initially photos are splitted into two events. Then I change a event's name from 'untitled event' to something.
    After that, new directory is created automatically to store photos of new event, and then photos of a new events are moved into this new directory. However, in actuality, new direcotory was created and was renamed, but none of photo was moved from an original event directory into a new directory. As a result, iPhoto lost links for these photos, and I can't access these photos any more.
    I think permission of iPhoto Library is correct. Because I can add, edit and delete photos manually within iPhoto.
    As a workaround, I create a new event first manually, and then cut & paste photos into that from an existing event.
    According to posted topics in this forum, it seems that iPhoto contains a problem when iPhoto Library is stored on a networked drive. Is this also an issue that only Apple can fix...?
    Any hint would be grateful.
    Thanks in advance.

    My problem was also solved. The root cause of this problem was ':'. When splitting events, iPhoto attempts to create a folder named like '2007:08:16' temporarily. In my case, as I described my Library was stored on a Linux Server via the Samba. But the Samba refuses a folder name which is including ':'.
    That's why, iPhoto was not able to create this temporary folder.
    To solve this problem, you have to throw the Samba away and use another file sharing architecture. I decided to use netatalk. Netatalk can accept ':' as a folder name.
    I already installed the netatalk on my Linux Server actually and tried splitting events. As a result, iPhoto was able to split events as expected.
    FYI:
    From my understanding, most of NAS products are using the Samba as their architecture. People using NAS has a possibility to face this problem.

  • Abap code Logic for splitting is not working

    Hi,
    I have a requirement to split a single amount and product into several parts. so far my logic is not working as only the first row is being fetched.
    TYPES: BEGIN of map_tab,
             ZPRODH4 TYPE NEWMAPPINGTABLE-/BIC/ZNEW_MP,
             ZSPRATIO TYPE NEWMAPPINGTABLE-/BIC/ZSP_RATIO,
             ZMATERIAL TYPE NEWMAPPINGTABLE-MATERIAL,
           END OF map_tab.
    Data:IT_MAP_TAB TYPE HASHED table of MAP_TAB with unique Key ZPRODH4,
         wa_it_map_tab like line of IT_MAP_TAB.
    Data rp TYPE _ty_s_TG_1.
    LOOP AT RESULT_PACKAGE into rp.
    Clear wa_it_map_tab.
    read table IT_MAP_TAB into wa_it_map_tab with table key ZPRODH4 =
    rp-prodh4.
    IF sy-subrc EQ 0.
    select SINGLE /BIC/ZNEW_MP /BIC/ZSP_RATIO MATERIAL into corresponding
    fields of wa_it_map_tab from NEWMAPPINGTABLE
    where  PRODH4 = rp-PRODH4.
    IF sy-subrc EQ 0.
      rp-PRODH4 = wa_it_map_tab-ZPRODH4.
      rp-AMOUNT = rp-AMOUNT * wa_it_map_tab-Zspratio.
      rp-MATERIAL = wa_it_map_tab-ZMATERIAL.
    ENDIF.
    ENDIF.
    MODIFY RESULT_PACKAGE FROM rp.
    ENDLOOP.
    <br><br>
    This is how my tables looks like
    Source Table
    PROD                                       AMOUNT
    900006600999                          1000
    400004400000                           500
    NEW MAPPING TABLE
    PROD                                      NEWPROD                      MATERIAL                             SPLITRATIO
    900006600999                         1000066001111                    7000                                         0.5
    900006600999                         1000066002222                    7001                                         0.4
    900006600999                         1000066003333                    7002                                         0.1
    OLD MAPPING TABLE
    PROD                              MATERIAL
    4000044000000               7100
    TARGET TABLE
    PROD                        PROD3               MATERIAL        AMOUNT
    1000066001111         100006600            7000                 500            
    1000066002222         100006600            7001                 400          
    1000066003333         100006600            7002                 100
    4000044000000         400004400            7100                 500

    Hi,
    I rewrote the code the like this and it is still not working as the new value is not being fetched.
    {* TABLES: ...
    Defining tables
    Tables: /BIC/OLDTABLE,/BIC/NEWTABLE.
    $$ end of global - insert your declaration only before this line -
    The follow definition is new in the BW3.x
    TYPES:
    BEGIN OF DATA_PACKAGE_STRUCTURE.
    INCLUDE STRUCTURE /BIC/CS8ZSEM_TC03.
    TYPES:
    RECNO LIKE sy-tabix,
    END OF DATA_PACKAGE_STRUCTURE.
    DATA:
    DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
    WITH HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    New Material table
    DATA: BEGIN OF I_S_NEWTAB,
    PRODH4 TYPE /BIC/NEWTABLE-PRODH4,
    /BIC/ZNEW_MP TYPE /BIC/NEWTABLE-/BIC/ZNEW_MP,
    /BIC/ZSP_RATIO TYPE /BIC/NEWTABLE-/BIC/ZSP_RATIO,
    MATERIAL TYPE /BIC/NEWTABLE-MATERIAL,
    END OF I_S_NEWTAB.
    Data: i_t_newtab LIKE TABLE OF I_S_NEWTAB.
    *Old Material table
    DATA: BEGIN OF I_S_OLDTAB,
    PRODH4 TYPE /BIC/OLDTABLE-PRODH4,
    MATERIAL TYPE /BIC/OLDTABLE-MATERIAL,
    END OF I_S_OLDTAB.
    DATA: i_t_oldtab like table of I_S_oldTAB.
    data: e_s_result type STANDARD TABLE OF DATA_PACKAGE_STRUCTURE WITH
    HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    data: e_t_result type STANDARD TABLE OF DATA_PACKAGE_STRUCTURE WITH
    HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    data: amount type DATA_PACKAGE_STRUCTURE-/BIC/AMOUNT.
    data: CUSTSOLD type DATA_PACKAGE_STRUCTURE-/BIC/CUSTSOLD.
    selecting data from new table
    Select PRODH4 /BIC/ZNEW_MP /BIC/ZSP_RATIO MATERIAL FROM /BIC/NEWTABLE
    into corresponding fields of table i_t_newtab.
    SORT i_t_newtab by PRODH4.
    Selecting data from old material table
    Select PRODH4 MATERIAL FROM /BIC/OLDTABLE into corresponding fields
    of table i_t_oldtab.
    SORT i_t_oldtab by PRODH4.
    LOOP AT DATA_PACKAGE INTO e_s_result.
    read table i_t_oldtab into i_s_oldtab with key PRODH4 =
    e_s_result-PRODH4.
    if sy-subrc EQ 0.
    MOVE i_s_oldtab-PRODH4 to e_s_result-PRODH4.
    MOVE i_s_oldtab-PRODH4(14) to e_s_result-PRODH3.
    MOVE i_s_oldtab-MATERIAL to e_s_result-MATERIAL.
    APPEND e_s_result to e_t_result.
    ELSE.
    LOOP AT i_t_newtab into i_s_newtab where PRODH4 = e_s_result-PRODH4.
    amount = i_s_newtab-/BIC/ZSP_RATIO * e_s_result-/BIC/AMOUNT.
    CONCATENATE DATA_PACKAGE-SOLD_TO i_s_newtab-PRODH4(10) into AMOUNT.
    MOVE i_s_newtab-/BIC/ZNEW_MP to e_s_result-PRODH4.
    MOVE i_s_newtab-MATERIAL to e_s_result-MATERIAL.
    MOVE i_s_newtab-/BIC/ZNEW_MP(14) to e_s_result-PRODH3.
    MOVE amount to e_s_result-/BIC/AMOUNT.
    MOVE ZASTUOTE to e_s_result-/BIC/CUSTSOLD.
    APPEND e_s_result to e_t_result.
    ENDLOOP.
    ENDIF.
    ENDLOOP.
    REFRESH DATA_PACKAGE.
    MOVE e_t_result to DATA_PACKAGE[].}

  • VPN Split-Tunneling not working

    Hello,
    First off - thanks to all who post here.  I often browse the forums and search for help on here and its very useful, so a great pat on the back for everyone who contributes.  My first time posting so here goes.....
    I have my ASA 5505 v8.2 configured to allow AnyConnect. This is working.  Client can connect and access the remote systems through VPN.  What is causing me a massive headache is that the client loses internet connectivity.  I have played around with my config somewhat so what I am about to post I know for certain is incorrect but any help is greatly appreciated.
    Notes
    1.  The Router was set up for a standard site-to-site VPN which is no longer functional but as you can see all the settings are still in the router.
    2.  The router also has a DMZ setup to allow some clients access to the internet through it using the DMZ
    CONFIGURATION:
    ASA Version 8.2(5)
    hostname MYHOST
    enable password mUUvr2NINofYuSh2 encrypted
    passwd UNDrnIuGV0tAPtz2 encrypted
    names
    name x.x.x.x AIME-SD
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    switchport access vlan 7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.101.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address x.x.x.x 255.255.0.0
    interface Vlan7
    no forward interface Vlan1
    nameif DMZ
    security-level 20
    ip address 137.57.183.1 255.255.255.0
    ftp mode passive
    clock timezone MST -7
    object-group network obj_any_dmz
    access-list 10 extended permit ip 192.168.25.0 255.255.255.0 192.168.6.0 255.255                                                                                        .255.0
    access-list no_nat extended permit ip host x.x.x.x 192.168.25.0 255.255.25                                                                                        5.0
    access-list split-tunneling standard permit 192.168.101.0 255.255.255.0
    access-list nonat extended permit ip 192.168.101.0 255.255.255.0 any
    pager lines 24
    logging enable
    logging buffered debugging
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    mtu DMZ 1500
    ip local pool Internal_Range 192.168.101.125-192.168.101.130 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    global (outside) 10 interface
    nat (inside) 0 access-list no_nat
    nat (inside) 1 access-list nonat
    nat (DMZ) 10 137.57.183.0 255.255.255.0
    route outside 0.0.0.0 0.0.0.0 x.x.x.x 1
    route inside 192.168.8.0 255.255.255.0 192.168.101.2 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    aaa authentication ssh console LOCAL
    http server enable 64000
    http 0.0.0.0 0.0.0.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set batus esp-aes-256 esp-sha-hmac
    crypto ipsec security-association lifetime seconds 28800
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto map batus 100 match address 10
    crypto map batus 100 set peer AIME-SD
    crypto map batus 100 set transform-set batus
    crypto map batus interface outside
    crypto ca trustpoint ASDM_TrustPoint1
    enrollment self
    subject-name CN=MYHOST
    keypair ClientX_cert
    crl configure
    crypto ca certificate chain ASDM_TrustPoint1
    certificate 0f817951
        308201e7 30820150 a0030201 0202040f 81795130 0d06092a 864886f7 0d010105
        05003038 31173015 06035504 03130e41 494d452d 56504e2d 42415455 53311d30
        1b06092a 864886f7 0d010902 160e4149 4d452d56 504e2d42 41545553 301e170d
        31333036 32373137 32393335 5a170d32 33303632 35313732 3933355a 30383117
        30150603 55040313 0e41494d 452d5650 4e2d4241 54555331 1d301b06 092a8648
        86f70d01 0902160e 41494d45 2d56504e 2d424154 55533081 9f300d06 092a8648
        86f70d01 01010500 03818d00 30818902 818100c9 ff840bf4 cfb8d394 2c940430
        1887f25a 49038aa0 1299cf10 bda2a436 227dcdbf f1c5566b c35c2f19 8b3514d3
        4e24f5b1 c8840e8c 60e2b39d bdc0082f 08cce525 97ffefba d42bb087 81b9adb9
        db0a8b2f b643e651 d17cd6f8 f67297f2 d785ef46 c3acbb39 615e1ef1 23db072c
        783fe112 acd6dc80 dc38e94b 6e56fe94 d59d5d02 03010001 300d0609 2a864886
        f70d0101 05050003 8181007e 29e90ea0 e337976e 9006bc02 402fd58a a1d30fe8
        b2c1ab49 a1828ee0 488d1d2f 1dc5d150 3ed85f09 54f099b2 064cd622 dc3d3821
        fca46c69 62231fd2 6e396cd1 7ef586f9 f41205af c2199174 3c5ee887 42b684c9
        7f4d2045 4742adb5 d70c3805 4ad13191 8d802bbc b2bcd8c7 8eec111b 761d89f3
        63ebd49d 30dd06f4 e0fa25
      quit
    crypto isakmp enable outside
    crypto isakmp policy 40
    authentication pre-share
    encryption aes-256
    hash sha
    group 5
    lifetime 86400
    telnet timeout 5
    ssh 0.0.0.0 0.0.0.0 inside
    ssh 0.0.0.0 0.0.0.0 DMZ
    ssh timeout 10
    console timeout 0
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    ssl encryption rc4-md5 rc4-sha1 aes128-sha1 aes256-sha1 3des-sha1
    ssl trust-point ASDM_TrustPoint1 outside
    webvpn
    enable outside
    svc image disk0:/anyconnect-win-2.4.1012-k9.pkg 1
    svc enable
    group-policy ClientX_access internal
    group-policy ClientX_access attributes
    vpn-tunnel-protocol svc
    split-tunnel-network-list value split-tunneling
    default-domain value access.local
    address-pools value Internal_Range
    ipv6-address-pools none
    webvpn
      svc mtu 1406
      svc rekey time none
      svc rekey method ssl
    username ClientX password ykAxQ227nzontdIh encrypted privilege 15
    username ClientX attributes
    vpn-group-policy ClientX_access
    service-type admin
    tunnel-group x.x.x.x type ipsec-l2l
    tunnel-group x.x.x.x ipsec-attributes
    pre-shared-key *****
    tunnel-group ClientX type remote-access
    tunnel-group ClientX general-attributes
    address-pool Internal_Range
    default-group-policy ClientX_access
    tunnel-group SSLClientProfile type remote-access
    tunnel-group SSLClientProfile general-attributes
    default-group-policy ClientX_access
    tunnel-group ClientX_access type remote-access
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect ip-options
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:e7d92a387d1c5f07e14b3c894d159ec1
    : end
    Thank you for any help!!

    Karsten!
    That fixed my internet access problem.  Yippee!
    Unfortunately it seems to have broken my access to the internal network.  Boo!
    I can no longer access/ping anything on the internal IP range (192.168.101.x). 
    I assume this is a nat issue somewhere along the line.  Posting the top half of my config for any assistance and the info requested by Raj (although VPN is connecting fine).  Thank you both for your very prompt replies!!!
    Short Config
    object-group network obj_any_dmz
    access-list 10 extended permit ip 192.168.25.0 255.255.255.0 192.168.6.0 255.255.255.0
    access-list no_nat extended permit ip host x.x.x.x 192.168.25.0 255.255.255.0
    access-list split-tunneling standard permit 192.168.101.0 255.255.255.0
    access-list nonat extended permit ip 192.168.101.0 255.255.255.0 any
    pager lines 24
    logging enable
    logging buffered debugging
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    mtu DMZ 1500
    ip local pool Internal_Range 192.168.101.125-192.168.101.130 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    global (outside) 10 interface
    nat (inside) 0 access-list no_nat
    nat (inside) 1 access-list nonat
    nat (DMZ) 10 137.57.183.0 255.255.255.0
    route outside 0.0.0.0 0.0.0.0 207.229.2.129 1
    route inside 192.168.8.0 255.255.255.0 192.168.101.2 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    Show vpn-sessiondb svc
    Session Type: SVC
    Username     : ClientX                 Index        : 9
    Assigned IP  : 192.168.101.125        Public IP    : x.x.x.x
    Protocol     : Clientless SSL-Tunnel DTLS-Tunnel
    License      : SSL VPN
    Encryption   : RC4 AES128             Hashing      : MD5 SHA1
    Bytes Tx     : 11662                  Bytes Rx     : 62930
    Group Policy : ClientX_access          Tunnel Group : DefaultWEBVPNGroup
    Login Time   : 22:40:56 MST Mon Jul 1 2013
    Duration     : 0h:11m:08s
    Inactivity   : 0h:00m:00s
    NAC Result   : Unknown
    VLAN Mapping : N/A                    VLAN         : none

  • DW9 (CS3) split view not work with ASP files?

    I just installed and ran DW CS3 (ver 9.0 bulid 3481) -- I use
    "coder" view for the screen layout. I like the split-view style
    since I code inline HTML with my ASP and ASPX code. However, the
    new version has the split-screen view button grayed out. How do I
    enable split view when I edit files that are not just ending in
    "htm" or "html" extensions? If the Adobe programmers made an
    ASSumption then they need to issue a patch and remove it pronto. I
    do not want someone else making decisions on how I do my work...I
    get enough of that from Microsoft already, I do not need it from my
    tools also. Please forward this to the developers if there is no
    way to change my preferences, otherwise please tell me how to edit
    a config file or hex-edit the executable to get this funtionality
    back. TIA!

    I still can't figure out why the split view or design view is
    grayed out and not accessible when editing files with an .asp or
    .aspx extension and it is driving me crazy! I called the support
    line and got someone in India who didn't understand my problem. 30
    minutes later I finally got her to agree to transfer me to
    secondary support but they were busy and she promised me they would
    call the next day. That was over a week ago. I didn't even get a
    voicemail, even though I stayed by my phone the whole day. I see
    that support for DW under Adobe is no better than it was under
    Macromedia...how sad. Microsoft Expression Web is looking better
    and better every day....... :(

  • CS5.5 Split view not working

    Hi
    Im having an issue with the split view function of dreamweaver CS5.5
    I only tend to edit HTM and HTML and Dreamweaver has stopped recently being able to display the split view. The split view button isn't greyed out but when i click it,it acts like the button has been pressed but nothing happens.
    I can view both the code view and design view but upon clicking split, it does nothing. It was working fine until last friday and then stopped, i've not changed any configuration or settings.
    Has any one experienced this before or can shed any light on this.
    Thanks
    Lee

    Hmm, never run into that before.
    Have you tried any corrective steps yet, like clearing the program cache?
    http://forums.adobe.com/thread/494811

  • PO split is not working from Shopping cart

    Hi Friends,
                     I am using SRM 7.0 service pack : 9.0 . Extended classic scenario .
    I createad shopping cart with two line items as given below.
    1st line :    supplier1     
    2 nd line : supplier2 .
    My requirement is: SC has to split into two POs. Can you suggest any BADI or SPRO setting related to this.
    Thanks.
    Balaji.T.

    Hi Muthu,
                  Thanks for your response. I did not specify in details.
    In details, here is below :
    line item , Purchase group and supplier, Geneated PO
    1st line : pgp_100     supplier1    - PO1
    2 nd line : pgp_200   supplier2 . -  PO2
    3 nd line : pgp_200   supplier2 .  -PO2
    4 th line : pgp_100    supplier2 . -PO3
    Currently SRM is generating as given above. But our requirement is : we need to get two POs , one is with supplier1 and 2nd PO with supplier2.
    Let me know your idea Please.
    Any configuration can be done.
    Thanks,
    Balaji.T.

  • Import button not working - moving shared music to library

    My import button is showing, but I can't click it (it's faded, not as bright as operating buttons). I have shared my old computer's library and am trying to import the shared music to my library. I currently appears on the new computer, but I can't get the import button to work. Yes, I do have both accounts and passwords matched up.

    You can't load shared music into the iPod. You can play the songs on your computer, but you can't copy them to your own personal library nor to the iPod. The only thing I could suggest you do is move all of the shared music to your own computer and/or copy the songs from the original CD's to your computer.

  • OM PA Integration (PLOGI SPLIT) is not working for all employees

    Hello Experts,
    In our 4.7 system, PLOGI SPLIT (Integration: New IT 0001 record at name change) is enabled.  But there are certain infotype 0001 records which are not updated when descriptions to positions/org units are changed in OM.
    PLOGI ORGA is also activated. 
    RHINTE30 runs as a batch job regularly.
    The PA data should have been updated.
    We have checked RHINTE30 program and it checks table HRINTE30.  When does table HRINTE30 be filled with the employees to be updated?  Do you think that the root of this problem is that table HRINTE30 is not updated?
    Points will be awarded.
    Many thanks
    Regards,
    Olekan Babatonde

    did you check the following switch in T77S0:
    PLOGI SPLIT Integration: New IT 0001 record at name change
    The description (F1) states:
    Integration: New Infotype 0001 Record When Description Is Changed
    If the value entered is 'X' and you change the description of positions,
    jobs or organizational units, new infotype 0001 records for the
    personnel numbers concerned are created on the date of the change(s).
    This means that the system will always display the up-to-date
    descriptions of named objects, both in Personnel Administration
    transactions and in reports on persons.
    If the description of an object is changed on a particular date (as of
    Release 4.5, this is done in Organizational Management by copying a
    record from infotype 1000, "object"), the system first establishes which
    personnel numbers are affected by this, and marks them internally. Then,
    you should use report RHINTE30 (parameter "Open Personnel Numbers Only")
    to create a batch input session. After this session has been processed,
    new infotype 0001 records for the person(s) concerned are created.
    If the field PLOGI SPLIT is blank, the system only creates new infotype
    0001 records if the assignment itself (that is, the number of the
    position, job or organizational unit) changes.
    Seems to be just what you are looking for. However the downside is that this will increase the data in IT0001.

  • Segment space advisor recommendation not working

    my database is 10.2.0.3
    on solaris
    I have table space size of 120Gb .i ran a segment space advisor throiugh grid control on that tablespace and it gave me the following recommendation
    Tablespaces TablespaceSize (MB) Evaluated Space (%) ReclaimableSpace (MB) Extent Management Segment Space Management
    Tabl1 1119,249.00 44.30 2,827.11 LOCAL AUTO
    i implemented the recommendation assuming i might gain 2.8 GB of space in this tablespace and after implementing the tablespace size remains the same
    Tablespaces Allocated size space used
    Tab1 119,249.00 119,171.2
    i beleive the segment hasn't been shrinked.the space used has remained the same.dont know why.
    Any help from experts?Thanks

    This is what in trc file, the trace fiel number was 7316:
    Dump file c:\oracle\product\10.2.0\admin\mpwr01\bdump\mpwr01_j001_7316.trc
    Tue Jan 26 08:30:07 2010
    ORACLE V10.2.0.1.0 - 64bit Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Windows NT Version V5.2 Service Pack 2
    CPU : 4 - type 8664, 1 Physical Cores
    Process Affinity : 0x0000000000000000
    Memory (Avail/Total): Ph:1187M/20479M, Ph+PgF:2850M/22115M
    Instance name: mpwr01
    Redo thread mounted by this instance: 1
    Oracle process number: 147
    Windows thread id: 7316, image: ORACLE.EXE (J001)
    *** ACTION NAME:(AUTO_SPACE_ADVISOR_JOB) 2010-01-26 08:30:07.828
    *** MODULE NAME:(DBMS_SCHEDULER) 2010-01-26 08:30:07.828
    *** SERVICE NAME:(SYS$USERS) 2010-01-26 08:30:07.828
    *** CLIENT ID:() 2010-01-26 08:30:07.828
    *** SESSION ID:(692.3589) 2010-01-26 08:30:07.828
    *** 2010-01-26 08:30:07.828
    ORA-12012: error on auto execute of job 8887
    ORA-20000: ORA-20000: Content of the tablespace specified is not permanent or tablespace name is invalid
    ORA-06512: at "SYS.PRVT_ADVISOR", line 1624
    ORA-06512: at "SYS.DBMS_ADVISOR", line 186
    ORA-06512: at "SYS.DBMS_SPACE", line 1338
    ORA-06512: at "SYS.DBMS_SPACE", line 1554

  • Continuum on Split x2 not working

    I just updated my split x2 to Windows 10 and everything runs smootly . Pretty happy with the results. The only problem is that Continuum doesn't work when i detach the screen from the keyboard, the only way to enter or leave tablet mode is by selecting manually the option "tablet mode" Any thougths?

    Well, you're lucky that Windows 10 is working great on your Split X2. On my HP Split X2 m121-sa, it is a terrible experience. The IDT Sound Drivers don't work at all, when music is played on browser or groove music all you can hear is a buzzing sound. The graphics also has the same problem, blurrly text and missing tiles from the start menu. The 2nd battery doesn't charge at all, it needs to be turned off! And then the continuum isn't working at all, you have to manually enter tablet mode. And yes I have updated all drivers to the lastest version.

  • Cisco 871 to Cisco ASA 5545 Site-to-Site VPN Split Tunnel not working.

    Tunnel comes up and can see and access protected traffic but cannot access web (Split Tunnel). Don't know if access problem or route issue.
    Listed below is configuration for Cisco 871, any help very much appreciated.
    crypto isakmp policy 1
     encr 3des
     authentication pre-share
     group 2  
    crypto isakmp key test address x.x.x.x
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac 
    crypto map SDM_CMAP_1 1 ipsec-isakmp 
     description Tunnel to x.x.x.x
     set peer x.x.x.x
     set transform-set ESP-3DES-SHA 
     match address 100
    interface FastEthernet0
    interface FastEthernet1
    interface FastEthernet2
    interface FastEthernet3
    interface FastEthernet4
     ip address 4.34.195.193 255.255.255.192
     no ip redirects
     no ip unreachables
     no ip proxy-arp
     ip route-cache flow
     duplex auto
     speed auto
     crypto map SDM_CMAP_1
    interface Vlan1
     description $ETH-SW-LAUNCH$$INTF-INFO-HWIC 4ESW$$ES_LAN$$FW_INSIDE$
     ip address 172.200.1.1 255.255.255.0
     no ip redirects
     no ip unreachables
     no ip proxy-arp
     ip route-cache flow
     ip tcp adjust-mss 1452
    ip route 0.0.0.0 0.0.0.0 4.34.195.193 permanent
    ip http server
    ip http access-class 23
    ip http authentication local
    ip http secure-server
    ip http timeout-policy idle 60 life 86400 requests 10000
    logging trap debugging
    access-list 100 remark SDM_ACL Category=4
    access-list 100 remark IPSec Rule
    access-list 100 permit ip 172.200.1.0 0.0.0.255 172.16.2.0 0.0.0.255

    I don't see any NAT configuration above. Check you can PING out to the internet (8.8.8.8 for example) from the router itself as it won't need NAT to PING from the outside interface.
    Have a look at this document on setting up NAT for your inside devices:
    http://www.cisco.com/c/en/us/support/docs/ip/network-address-translation-nat/13772-12.html

  • Videos not working - Moved GeForceGA.plugin and ATIRadeonX2000GA.plugin

    Hi -
    I was locked in safeboot only mode recently which is now fixed after moving the plugins and extension files (listed above) out of the Library/Extensions folder.
    Can someone tell me what I need to move back into there so I'm back to where I should be?
    Thanks guys!

    After modifying extensions, you always need a Restart before the changed extensions are included in the running System.
    It is possible that your graphics card has failed, and that is why you were having trouble in the first place. Which graphics card?
    If you were running 10.6 snow leopard, skip Tiger and go straight back to snow leopard. 10.6 Snow leopard discs (that may even say Upgrade only) almost invariably turn out to be Full Install Discs.
    How you restore after an erase and Install depends on your backup method. If using Time Machine, this site by forum Time Machine whiz Pondini, provides very nice illustrated guidance:
    Setting-up a new Mac from an old one, its backups, or a PC

  • Document splitting not working for customer & vendor Payment

    Hi,
    We have actived Document splitting on profit center for segment level reporting.
    In below scanario Document spliting working fine.
    Vendor Invoice (Docuement type - KR)
    General Ledger view
    Expense Dr 1000      PC1
    Vendor   Cr  1000     PC1
    At the time of Payment (General ledger view) (Document Type - KZ)
    Vendor Dr  1000        PC1
    Bank     Cr   1000       PC1
    In the above scanario we dont have any issue, Based on invoice profit center spliting automaticlly in bank in General Ledgerview.
    How ever in the below scanario Document spliting is not working in payment
    No issues in Invoice
    General ledger view
    Exp  Dr  1000 PC1
    Exp Dr   1500 PC2
    Vendor Cr 1000 PC1
    Vendor Cr 1500 PC2
    When we make payment to vendor Document splitting is not working, it get splitting in zero balance clearing account
    vendor Dr 1000 PC1
    Vendor Dr 1500 PC2
    Bank     Cr  2500  (No profit Center)
    Doc splitt A/C 1000
    Doc Split A/C  1000 PC1
    Doc Split A/C   1500
    Doc Split A/C    1500 PC2
    My Finance Team requires automatic split up in bank based on vendor profit center.
    We are using Business Transation 1000 (Payment) for document Type - KZ & DZ.
    Regards,
    Lokesh

    Can you please confirm if the following settings exist in your system in various IMG nodes.
    1. Bank G/L account is assigned to item category 04000 (IMG node: Classify G/L Accounts for Document Splitting).
    2. Document type KZ is assigned to business transaction 1000 and transaction variant 0001 (IMG node: Classify Document Types for Document Splitting).
    3. In IMG Node "Define Document Splitting Rule", under the method that is assigned to your company code, transaction 1000 and variant 0001, you see 04000 as one of the item categories to be edited.
    4. If the answer for (3) above is yes, if you double-click on 04000 item category line, the processing category is set to 1 (Splitting based on base item categories).
    5. Now when you double-click on 'Base item categories', you see 03000 - Vendor as one of the base item categories in the list there.
    Please respond with Y / N to the above questions and we can go from there.

Maybe you are looking for