Ranges in a class

Hi,
We need to buid  a range in a loop for some field. I declare the syntax as done in the report programe. But it throwing the error as the ranges cannt be used in class.
Suggestion from system as use data type/like.
Thanks in advance.
Mohinder Singh Chauhan

DATA: my_range TYPE RANGE OF spfli-carrid.
matt

Similar Messages

  • Not able to created Number Ranges for Asset Classes in AS08

    Dear Friends,
    I am not able create Number Ranges for Asset Classes in AS08.
    It is giving me an error message as company code does not exist.
    When I Check Consistency under path SPRO -> Financial Accounting -> Asset Accounting -> Preparing for Production Startup -> Check Consistency -> Overview Report: Company Codes. I am getting the following
    RSOL  Reliance Sealink One PLtd                                            
    CoCode no. alloc.    NKTR                                                
    Fiscal Year Variant  V3   Apr.- March, 4 special periods                 
    Start 2nd half month 00                                                  
    Transfer date        31.03.2006                                          
    Chart of dep.        TOLL Chart of Depreciation - For Highway Projects   
    Net worth tax        01   Book depreciation as per Compinies Act 1956    
    Enter net book value                                                     
    Status company code  2                                                   
    Current fiscal year  2007                                                
    Doc. type dep. pstng AF   Dep. postings                                  
    > Number range &1 in co.code &2 for doc.type &3 must be defined as internal
    Calc.insur.value                                                         
    Input tax exempt         
    If you see the above first two line you will find the difference is that Company code RSOL in the first line and NKTR company code in the second line.
    Actually CoCode no. alloc. has been wrongly copied as NKTR while copying CoCode it should be RSOL and not NKTR.
    I think because of this wrong allocation it is giving me an error in AS08. Also it is not showing me CoCode in drop down list in AS08.
    Please help me to resolve the problem.
    Thanks
    Rahul Jain

    Look in TC OAOB if the company code is assigned to a chart of depreciation

  • Number Range for Asset Class

    Dear All,
    We are going to develop a new asset class for the internal purpose. I can dvelop all the scenarios but my concern is how to do the number range?
    Because, our system is already under live and now we are going to create the new asset class and new number range.
    As I understand that for transporting the number ranges, we have to do manual tansport and assign the transport ID. In the taget system, first we have to delete the existing number range and import the transport.
    But in our production server, already some number ranges are being used for existing asset class.
    How should I do transport the new number range to the production server as already functioning?
    Please also tell me what is the table name for Asset number ranges.
    I request you to all, please give your values
    Regards,
    Ran

    Dear Ranesh,
    It is better to create the number range directly in the production system. The path for the creation of the number range is
    SPRO > Financial Accounting (New) > Financial Accounting Global Settings (New) > Asset Accounting > Organizational Structures > Asset Classes >  Define Number Range Interval
    Assign points if useful
    regards
    Venkatesh

  • How to generate random numbers in a range using random class?

    I know how to use Math.random for this, but how would I generate random numbers using the random class?
    Say I want a number between 40 and 50, inclusive--how would I do this?
    What i have in mind is:
    int randomNumber = random.nextInt(max) + min;
    where max is 50 and min is 40. Is this correct?

    Fredddir_Java wrote:
    I know how to use Math.random for this, but how would I generate random numbers using the random class?
    Say I want a number between 40 and 50, inclusive--how would I do this?
    What i have in mind is:
    int randomNumber = random.nextInt(max) + min;
    where max is 50 and min is 40. Is this correct?What happened when you generated a couple hundred numbers that way? Did you get all the ints in the range you wanted?

  • Query to select values that match multiple ranges

    Hi,
    Oracle 10g.
    I have a table POINTS(ID INTEGER, CLASS VARCHAR2(15), CUMUL NUMBER(2,1), ...).
    In my application (APEX application), I show a list of point classes, order by cumul.
    SELECT CLASS FROM POINTS ORDER BY CUMUL;Then user can choose some range of point classes (CUMUL is not shown in the application, it is just for the example) :
    CUMUL     CLASS
    12.2     31458     <- 
    13.4     5S84     <-     range 1 
    13.6     78PPH     <- 
    15.0     3R594     <- 
    15.1     ZB452 
    15.5     54IO 
    17.6     21GFD 
    19.2     A54VV     <- 
    19.9     IC112     <-     range 2 
    20.8     158RC9     <- 
    21.3     G4G5 
    23.0     V22     <-     range 3For each range, I store only first and last classes selected by a user, in a table USER_SELECTION(ID, ID_USER, FROM_CLASS, TO_CLASS), so using the example above it would give :
    ID     ID_USER          FROM_CLASS     TO_CLASS 
    1     12          31458          3R594 
    2     12          A54VV          158RC9 
    3     12          V22          V22
    ...     ...          ...          ...The problem is that in a query, I need to return all points selected by a user, and I really don't know how to achieve that without too much work... :
    SELECT *
    FROM POINTS
    WHERE USER_ID=12
    AND CLASS IN ( *???* );
    Any help would be much appreciated.
    Yann.

    It's not exactly clear what data is in what tables etc. but perhaps something like this...
    select user_selection.id, points.*
    from points, user_selection
    where user_selection.user_id = 12
    and   points.cumul between
          (select cumul from points where class = user_selection.class1)
          and
          (select cumul from points where class = user_selection.class2)
    order by user_select.id, points.cumul

  • In Abap Class, Rage declaration

    Hi,
    How to declare field range in Abap Class and select statement of inner join
    Thanks and Regards,
    Prabhakar Dharmala

    Try this way
    class lcl_range definition.
      public section.
        types:
          t_matnr  type range of dmatnr.
        class-methods:
          r_matnr  importing v_matnr  type t_matnr,
    endclass.

  • StringIndexOutOfBoundsException: String index out of range: 185

    Hi Guys,
    I am getting below mentioned runtime error in my java program.
    The message is: Exception:[java.lang.StringIndexOutOfBoundsException: String index out of range: 185] in class com.sap.xi.tf._MM_RSPD_INFILE_RSPD_OUTFILE_ method SplitRow$[]
    I am writing this program in SAP PI for a User defined function.
    Structure of my file is,
    String contractNo = x.substring(0,10);     //1-10 SAP contract reference
    String quantity = x.substring(10,25);     //11-25 Quantity
    String price = x.substring(25,40);     //26-40 Price
    String delperiod = x.substring(40,46);     //41-46 Delivery period e.g. YYYYMM
    String condate = x.substring(46,54);     //47-54 Contract date e.g. YYMMDD
    String shipwts = x.substring(54,57);     //55-57 Shipped weights e.g. DWT/EWT
    String mtype = x.substring(57,58);     //58 Market Type D/E
    String cif = x.substring(58,73);     //59-73 CIF price
    String comtype = x.substring(73,77);     //74-77 comtype e.g. ZRAW
    String rejreason = x.substring(77,97);     //78-97 Reject reason
    String type = x.substring(97,98);     //98 Type, A =create, B=amend, C= delete
    String usrname = x.substring(98,110);     //99-110 User Name
    String impdate = x.substring(110,118);     //111-118 Date, e.g. YYYYMMDD, imported as Quote date
    String imptime = x.substring(118,124);     //119-124 Time e.g. HHMMSS, imported as Quote time HH:MM
    String vafrdate = x.substring(177,185);     //177,185 Date, e.g. YYYYMMDD, valid from date
    Example Lines of code used for offsetting,
    if ( delperiod.substring(4,6).equals("01") && vafrdate.substring(181,185).equals("0101") )
    Structure of input file,
    0040000305 -153000.000 20.00020110120100817DWTD 0.000ZRAW ANHUK 20100817165602 20110101
    Guys,
    any idea, what mistake i am doing in above code(probably some offsetting mistake).....
    regards.
    santosh.

    When posting code, make sure you use the CODE tags to preserve formatting. Like this:
    System.out.println("Look how pretty I am!");But just looking at this line:
    if ( delperiod.substring(4,6).equals("01") && vafrdate.substring(181,185).equals("0101") )Try printing out vafrdate.length() before you make this call. It better be at least 185. I bet it's not.
    Why are you hardcoding the positions of data in the String like that? That's almost definitely not the way to go.

  • AS01 Error message "Asset Class is not Entered"

    When using the Transaction code AS01, we get an error message stating "Asset class is not Entered" and is not allowing us to use the T.Code but just gives us an option to Exit from the screen.
    Because of this behaviour it is not allowing to enter any data in AS01 but only allows us to exit from the screen.
    This is happening in ECC 6.0 EHP3 system.
    Has anyone come across this kind of behaviour ?
    Thanks in advance !
    Regards,
    Murali Narayanan

    Hi Murali
    Try transaction code OAAY and check if your class is assigned to depreciation area.
    This is the last step before making asset class available for use.
    Of course, all other settings have to be maintained properly.
    OR
    Check the Account determination, Screen Layout, No Ranges and Asset Class Determinations once again. And also check the Chart of Dep assignment to Co.Code.
    OR
    Please check OAYZ for all depreciation areas to be active.
    Rgds
    Zub

  • Regular Expression Pattern maching class to Validate Alphanumeric String

    Hi
    MY DB version is Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    I wanted to use the pattern maching classes given by oracle to check whether a given input string is alphanumeric or not.
    Oracle 10g documentation says about the classes like [:digit:], [:alnum:] and many others.
    http://www.dba-oracle.com/t_regular_expressions.htm
    However these classes seems not to be working with my DB version.
    Can someone tell me the DB version in which these classes works ?
    Below is the code I am using to validate a input string.
    SQL> CREATE OR REPLACE FUNCTION fn_is_alphanumeric
      2  (
      3     pi_value             IN       VARCHAR2
      4  )
      5  RETURN VARCHAR2
      6  IS
      7     lv_length   NUMBER;
      8  BEGIN
      9     lv_length := length(pi_value);
    10     IF ( REGEXP_LIKE(pi_value,'[:alnum:]{'||lv_length||'}')) THEN
    11        RETURN 'TRUE';
    12     ELSE
    13        RETURN 'FALSE';
    14     END IF;
    15  END fn_is_alphanumeric;
    16  /
    Function created.
    SQL>
    SQL>
    SQL> SELECT fn_is_alphanumeric('abc123') alpha FROM DUAL;
    ALPHA
    FALSE
    SQL>
    SQL>
    SQL> CREATE OR REPLACE FUNCTION fn_is_alphanumeric
      2  (
      3     pi_value             IN       VARCHAR2
      4  )
      5  RETURN VARCHAR2
      6  IS
      7     lv_length   NUMBER;
      8  BEGIN
      9     lv_length := length(pi_value);
    10     IF ( REGEXP_LIKE(pi_value,'[A-z0-9]{'||lv_length||'}')) THEN
    11        RETURN 'TRUE';
    12     ELSE
    13        RETURN 'FALSE';
    14     END IF;
    15  END fn_is_alphanumeric;
    16  /
    Function created.
    SQL> SELECT fn_is_alphanumeric('abc123') alpha FROM DUAL;
    ALPHA
    TRUE

    Character classes are working fine with regexp engine in your database version - simply change your function definition to:
    CREATE OR REPLACE FUNCTION fn_is_alphanumeric
       pi_value             IN       VARCHAR2
    RETURN VARCHAR2
    IS
       lv_length   NUMBER;
    BEGIN
       lv_length := length(pi_value);
       IF ( REGEXP_LIKE(pi_value,'[[:alnum:]]{'||lv_length||'}')) THEN
          RETURN 'TRUE';
       ELSE
          RETURN 'FALSE';
       END IF;
    END fn_is_alphanumeric;
    /(brackets should be doubled as compared with your original version).
    You can use both , range-based and class-based expressions, but you have to keep in mind, that range-based are nls dependant as opposite to class-based.
    SQL> alter session set nls_sort=binary;
    Session altered.
    SQL> with t as (
      2   select 'üäö123' s from dual
      3  )
      4  select
      5  case
      6  when regexp_like(s,'^[a-zA-Z0-9]+$') then 'Alphanumeric'
      7  else 'Not Alphanumeric'
      8  end range,
      9  case
    10  when regexp_like(s,'^[[:alnum:]]+$') then 'Alphanumeric'
    11  else 'Not Alphanumeric'
    12  end class
    13  from t
    14  /
    RANGE                CLASS
    Not Alphanumeric     Alphanumeric
    SQL>
    SQL> alter session set nls_sort='GERMAN';
    Session altered.
    SQL> with t as (
      2   select 'üäö123' s from dual
      3  )
      4  select
      5  case
      6  when regexp_like(s,'^[a-zA-Z0-9]+$') then 'Alphanumeric'
      7  else 'Not Alphanumeric'
      8  end range,
      9  case
    10  when regexp_like(s,'^[[:alnum:]]+$') then 'Alphanumeric'
    11  else 'Not Alphanumeric'
    12  end class
    13  from t
    14  /
    RANGE                CLASS
    Alphanumeric         AlphanumericBest regards
    Maxim

  • 169.254 ip range and internet connection

    Hi,
    I've got a iMac connected to a windows network.
    The IP Range for this network is 169.254.92.x. (it's an historical setup, and i can't change it, due to all the PCs and windows servers...).
    The imac can connect to internet via the router for a little time, but after some minutes, all the internet connections (mail, safari) stop working.
    But, Internet Explorer in Parrallels Desktop is running well, which means that the network works fine.
    Does Leopard don't work when it's network setup is set to a 169.254.X.X ip range?
    Thanks for your answers (and sorry for my english )
    Bertrand.

    Bertrand POURCEL wrote:
    Yes, all the network settings are done manually.
    And no, it's not possible to install a new router with DHCP. There's 50 PCs and 3 Windows Servers over the network
    It takes less than 30 seconds to update a Windows machine's IP from fixed to DHCP, and perhaps a minute to either reserve an IP or to set the DHCP pool to exclude certain IPs and then to set those IPs as fixed on the servers. You could be up and running using DHCP in under a half hour. The odds are excellent that you have already spent more time than that dealing with the current problem.
    If you're running Vista, the steps are:
    1 open Network and Sharing Center
    2 click on 'View Status' of your network connection
    3 click on 'Properties'
    4 dismiss UAC pop-up
    5 double-click on 'Internet Protocol Version 4 (TCP/IPv4) Properties'
    6 click on the 'Obtain an IP address automatically' radio button
    7 click OK
    You're done.
    If you're running XP, the steps are:
    1 open Control Panels
    2 double-click Network Connections
    3 right-click Local Area Connection and select 'Properties'
    4 double-click 'Internet Protocol (TCP/IP)'
    5 click on the 'Obtain an IP address automatically' radio button
    6 click OK
    you're done.
    Doing this 53 times may be tedious, but will not take a significant amount of time.
    Most routers from Belkin, Netgear, Linksys, and Apple will allow you to reserve an IP for a specific machine. Required steps are:
    1 get the MAC address of the machine in question, either from the command line or the status dialog; see above to see how to get to the status dialog. You can get the MAC address while setting up DHCP.
    2 launch the router control HTML page (or, in the case of Apple, AirPort Utility) and go to the section of the admin page which sets reservations.
    3 enter the MAC address for the desired machine. The system will reserve a particular IP just for that machine. It will never be handed out to any other machine.
    4 reboot the router
    you're done.
    The only machines which need reserved IPs are the servers and the printers, so you need do this only for the three servers plus whatever printers you have.
    Let me be explicit: if you keep using APIPA for your network range, you will continue to have problems. You can continue using APIPA for something it was not intended for, and continue having to patch things after the fact, or you can move to one of the private network ranges (probably a Class C, as you only have 53 nodes, not counting printers) and eliminate the problem at the source. If you insist on using APIPA, you will have to update the NAT, DNS, and DHCP lists yourself, on each new machine added to the network. And you will not know when there's a network connectivity problem as you will have fixed IPs which show an APIPA address as a normal setting, instead of DHCP-set IPs which show an APIPA address only when there is a problem.
    It's your choice. I'd spend the half-hour, but that's me.

  • Asset master number ranges

    Hi Guru's,
        I am using number ranges as08 1,2,3,4 serious.when i create asset master for which asset class system taking which serious how we can know that where we can assign for

    Happy !!
    While creating Asset..Asset Class is must !!
    Number range is defined in Asset Class. So, system identify the successive asset number as per the number range in asset class.
    Regards,
    Hari.

  • Assign asset class to company code

    Hi All
    Where to assign asset class to particular company code.
    Thanx in advance
    prasad

    Hi,
    1. IMG-FA-Asset Acc-Account Class
    - Specify Account Determination
    -Create Screen layout rules
    -Define no range
    -Define asset class
    2. IMG-FA-Asset Acc-Integration of asset acc and GL
    -assign GL acc
    regards,
    Sridevi
    <i><b>Award points, if useful</b></i>

  • AnyConnect error " User not authorized for AnyConnect Client access, contact your administrator"

    Hi everyone,
    it's probably just me but I have tried real hard to get a simple AnyConnect setup working in a lab environment on my ASA 5505 at home, without luck. When I connect with the AnyConnect client I get the error message "User not authorized for AnyConnect Client access, contact your administrator". I have searched for this error and tried some of the few solutions out there, but to no avail. I also updated the ASA from 8.4.4(1) to 9.1(1) and ASDM from 6.4(9) to 7.1(1) but still the same problem. The setup of the ASA is straight forward, directly connected to the Internet with a 10.0.1.0 / 24 subnet on the inside and an address pool of 10.0.2.0 / 24 to assign to the VPN clients. Please note that due to ISP restrictions, I'm using port 44455 instead of 443. I had AnyConnect working with the SSL portal, but IKEv2 IPsec is giving me a headache. I have stripped down certificate authentication which I had running before just to eliminate this as a potential cause of the issue. When running debugging, I do not get any error messages - the handshake completes successfully and the local authentication works fine as well.
    Please find the current config and debugging output below. I appreciate any pointers as to what might be wrong here.
    : Saved
    ASA Version 9.1(1)
    hostname ASA
    domain-name ingo.local
    enable password ... encrypted
    xlate per-session deny tcp any4 any4
    xlate per-session deny tcp any4 any6
    xlate per-session deny tcp any6 any4
    xlate per-session deny tcp any6 any6
    xlate per-session deny udp any4 any4 eq domain
    xlate per-session deny udp any4 any6 eq domain
    xlate per-session deny udp any6 any4 eq domain
    xlate per-session deny udp any6 any6 eq domain
    passwd ... encrypted
    names
    name 10.0.1.0 LAN-10-0-1-x
    dns-guard
    ip local pool VPNPool 10.0.2.1-10.0.2.10 mask 255.255.255.0
    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
    interface Vlan1
    nameif Internal
    security-level 100
    ip address 10.0.1.254 255.255.255.0
    interface Vlan2
    nameif External
    security-level 0
    ip address dhcp setroute
    regex BlockFacebook "facebook.com"
    banner login This is a monitored system. Unauthorized access is prohibited.
    boot system disk0:/asa911-k8.bin
    ftp mode passive
    clock timezone PST -8
    clock summer-time PDT recurring
    dns domain-lookup Internal
    dns domain-lookup External
    dns server-group DefaultDNS
    name-server 10.0.1.11
    name-server 75.153.176.1
    name-server 75.153.176.9
    domain-name ingo.local
    object network obj_any
    subnet 0.0.0.0 0.0.0.0
    object network LAN-10-0-1-x
    subnet 10.0.1.0 255.255.255.0
    object network Company-IP1
    host xxx.xxx.xxx.xxx
    object network Company-IP2
    host xxx.xxx.xxx.xxx
    object network HYPER-V-DUAL-IP
    range 10.0.1.1 10.0.1.2
    object network LAN-10-0-1-X
    access-list 100 extended permit tcp any4 object HYPER-V-DUAL-IP eq 3389 inactive
    access-list 100 extended permit tcp object Company-IP1 object HYPER-V-DUAL-IP eq 3389
    access-list 100 extended permit tcp object Company-IP2 object HYPER-V-DUAL-IP eq 3389 
    tcp-map Normalizer
      check-retransmission
      checksum-verification
    no pager
    logging enable
    logging timestamp
    logging list Threats message 106023
    logging list Threats message 106100
    logging list Threats message 106015
    logging list Threats message 106021
    logging list Threats message 401004
    logging buffered errors
    logging trap Threats
    logging asdm debugging
    logging device-id hostname
    logging host Internal 10.0.1.11 format emblem
    logging ftp-bufferwrap
    logging ftp-server 10.0.1.11 / asa *****
    logging permit-hostdown
    mtu Internal 1500
    mtu External 1500
    ip verify reverse-path interface Internal
    ip verify reverse-path interface External
    icmp unreachable rate-limit 1 burst-size 1
    icmp deny any echo External
    asdm image disk0:/asdm-711.bin
    no asdm history enable
    arp timeout 14400
    no arp permit-nonconnected
    object network obj_any
    nat (Internal,External) dynamic interface
    object network LAN-10-0-1-x
    nat (Internal,External) dynamic interface
    object network HYPER-V-DUAL-IP
    nat (Internal,External) static interface service tcp 3389 3389
    access-group 100 in interface External
    timeout xlate 3:00:00
    timeout pat-xlate 0:00:30
    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-server radius protocol radius
    aaa-server radius (Internal) host 10.0.1.11
    key *****
    radius-common-pw *****
    user-identity default-domain LOCAL
    aaa authentication ssh console radius LOCAL
    http server enable
    http LAN-10-0-1-x 255.255.255.0 Internal
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec ikev2 ipsec-proposal DES
    protocol esp encryption des
    protocol esp integrity sha-1 md5
    crypto ipsec ikev2 ipsec-proposal 3DES
    protocol esp encryption 3des
    protocol esp integrity sha-1 md5
    crypto ipsec ikev2 ipsec-proposal AES
    protocol esp encryption aes
    protocol esp integrity sha-1 md5
    crypto ipsec ikev2 ipsec-proposal AES192
    protocol esp encryption aes-192
    protocol esp integrity sha-1 md5
    crypto ipsec ikev2 ipsec-proposal AES256
    protocol esp encryption aes-256
    protocol esp integrity sha-1 md5
    crypto ipsec security-association pmtu-aging infinite
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set ikev2 ipsec-proposal AES256 AES192 AES 3DES DES
    crypto map External_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map External_map interface External
    crypto ca trustpoint srv01_trustpoint
    enrollment terminal
    crl configure
    crypto ca trustpoint asa_cert_trustpoint
    keypair asa_cert_trustpoint
    crl configure
    crypto ca trustpoint LOCAL-CA-SERVER
    keypair LOCAL-CA-SERVER
    crl configure
    crypto ca trustpool policy
    crypto ca server
    cdp-url http://.../+CSCOCA+/asa_ca.crl:44435
    issuer-name CN=...
    database path disk0:/LOCAL_CA_SERVER/
    smtp from-address ...
    publish-crl External 44436
    crypto ca certificate chain srv01_trustpoint
    certificate <output omitted>
      quit
    crypto ca certificate chain asa_cert_trustpoint
    certificate <output omitted>
      quit
    crypto ca certificate chain LOCAL-CA-SERVER
    certificate <output omitted>
      quit
    crypto ikev2 policy 1
    encryption aes-256
    integrity sha
    group 5 2
    prf sha
    lifetime seconds 86400
    crypto ikev2 policy 10
    encryption aes-192
    integrity sha
    group 5 2
    prf sha
    lifetime seconds 86400
    crypto ikev2 policy 20
    encryption aes
    integrity sha
    group 5 2
    prf sha
    lifetime seconds 86400
    crypto ikev2 policy 30
    encryption 3des
    integrity sha
    group 5 2
    prf sha
    lifetime seconds 86400
    crypto ikev2 policy 40
    encryption des
    integrity sha
    group 5 2
    prf sha
    lifetime seconds 86400
    crypto ikev2 enable External client-services port 44455
    crypto ikev2 remote-access trustpoint asa_cert_trustpoint
    telnet timeout 5
    ssh LAN-10-0-1-x 255.255.255.0 Internal
    ssh xxx.xxx.xxx.xxx 255.255.255.255 External
    ssh xxx.xxx.xxx.xxx 255.255.255.255 External
    ssh timeout 5
    ssh version 2
    console timeout 0
    no vpn-addr-assign aaa
    no ipv6-vpn-addr-assign aaa
    no ipv6-vpn-addr-assign local
    dhcpd dns 75.153.176.9 75.153.176.1
    dhcpd domain ingo.local
    dhcpd option 3 ip 10.0.1.254
    dhcpd address 10.0.1.50-10.0.1.81 Internal
    dhcpd enable Internal
    threat-detection basic-threat
    threat-detection scanning-threat shun except ip-address LAN-10-0-1-x 255.255.255.0
    threat-detection statistics access-list
    threat-detection statistics tcp-intercept rate-interval 30 burst-rate 400 average-rate 200
    dynamic-filter use-database
    dynamic-filter enable interface Internal
    dynamic-filter enable interface External
    dynamic-filter drop blacklist interface Internal
    dynamic-filter drop blacklist interface External
    ntp server 128.233.3.101 source External
    ntp server 128.233.3.100 source External prefer
    ntp server 204.152.184.72 source External
    ntp server 192.6.38.127 source External
    ssl encryption aes256-sha1 aes128-sha1 3des-sha1
    ssl trust-point asa_cert_trustpoint External
    webvpn
    port 44433
    enable External
    dtls port 44433
    anyconnect image disk0:/anyconnect-win-3.1.02026-k9.pkg 1
    anyconnect profiles profile1 disk0:/profile1.xml
    anyconnect enable
    smart-tunnel list SmartTunnelList1 mstsc mstsc.exe platform windows
    smart-tunnel list SmartTunnelList1 putty putty.exe platform windows
    group-policy DfltGrpPolicy attributes
    vpn-tunnel-protocol ikev1 ikev2 l2tp-ipsec ssl-client ssl-clientless
    webvpn
      anyconnect profiles value profile1 type user
    username write.ingo password ... encrypted
    username ingo password ... encrypted privilege 15
    username tom.tucker password ... encrypted
    class-map TCP
    match port tcp range 1 65535
    class-map type regex match-any BlockFacebook
    match regex BlockFacebook
    class-map type inspect http match-all BlockDomains
    match request header host regex class BlockFacebook
    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 1500
      id-randomization
    policy-map TCP
    class TCP
      set connection conn-max 1000 embryonic-conn-max 1000 per-client-max 250 per-client-embryonic-max 250
      set connection timeout dcd
      set connection advanced-options Normalizer
      set connection decrement-ttl
    policy-map type inspect http HTTP
    parameters
      protocol-violation action drop-connection log
    class BlockDomains
    policy-map global_policy
    class inspection_default
      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
      inspect dns preset_dns_map dynamic-filter-snoop
      inspect http HTTP
    service-policy global_policy global
    service-policy TCP interface External
    smtp-server 199.185.220.249
    privilege cmd level 3 mode exec command perfmon
    privilege cmd level 3 mode exec command ping
    privilege cmd level 3 mode exec command who
    privilege cmd level 3 mode exec command logging
    privilege cmd level 3 mode exec command failover
    privilege cmd level 3 mode exec command vpn-sessiondb
    privilege cmd level 3 mode exec command packet-tracer
    privilege show level 5 mode exec command import
    privilege show level 5 mode exec command running-config
    privilege show level 3 mode exec command reload
    privilege show level 3 mode exec command mode
    privilege show level 3 mode exec command firewall
    privilege show level 3 mode exec command asp
    privilege show level 3 mode exec command cpu
    privilege show level 3 mode exec command interface
    privilege show level 3 mode exec command clock
    privilege show level 3 mode exec command dns-hosts
    privilege show level 3 mode exec command access-list
    privilege show level 3 mode exec command logging
    privilege show level 3 mode exec command vlan
    privilege show level 3 mode exec command ip
    privilege show level 3 mode exec command failover
    privilege show level 3 mode exec command asdm
    privilege show level 3 mode exec command arp
    privilege show level 3 mode exec command ipv6
    privilege show level 3 mode exec command route
    privilege show level 3 mode exec command ospf
    privilege show level 3 mode exec command aaa-server
    privilege show level 3 mode exec command aaa
    privilege show level 3 mode exec command eigrp
    privilege show level 3 mode exec command crypto
    privilege show level 3 mode exec command ssh
    privilege show level 3 mode exec command vpn-sessiondb
    privilege show level 3 mode exec command vpnclient
    privilege show level 3 mode exec command vpn
    privilege show level 3 mode exec command dhcpd
    privilege show level 3 mode exec command blocks
    privilege show level 3 mode exec command wccp
    privilege show level 3 mode exec command dynamic-filter
    privilege show level 3 mode exec command webvpn
    privilege show level 3 mode exec command service-policy
    privilege show level 3 mode exec command module
    privilege show level 3 mode exec command uauth
    privilege show level 3 mode exec command compression
    privilege show level 3 mode configure command interface
    privilege show level 3 mode configure command clock
    privilege show level 3 mode configure command access-list
    privilege show level 3 mode configure command logging
    privilege show level 3 mode configure command ip
    privilege show level 3 mode configure command failover
    privilege show level 5 mode configure command asdm
    privilege show level 3 mode configure command arp
    privilege show level 3 mode configure command route
    privilege show level 3 mode configure command aaa-server
    privilege show level 3 mode configure command aaa
    privilege show level 3 mode configure command crypto
    privilege show level 3 mode configure command ssh
    privilege show level 3 mode configure command dhcpd
    privilege show level 5 mode configure command privilege
    privilege clear level 3 mode exec command dns-hosts
    privilege clear level 3 mode exec command logging
    privilege clear level 3 mode exec command arp
    privilege clear level 3 mode exec command aaa-server
    privilege clear level 3 mode exec command crypto
    privilege clear level 3 mode exec command dynamic-filter
    privilege cmd level 3 mode configure command failover
    privilege clear level 3 mode configure command logging
    privilege clear level 3 mode configure command arp
    privilege clear level 3 mode configure command crypto
    privilege clear level 3 mode configure command aaa-server
    prompt hostname context
    no call-home reporting anonymous
    call-home
    profile CiscoTAC-1
      no active
      destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
      destination address email [email protected]
      destination transport-method http
      subscribe-to-alert-group diagnostic
      subscribe-to-alert-group environment
      subscribe-to-alert-group inventory periodic monthly
      subscribe-to-alert-group configuration periodic monthly
      subscribe-to-alert-group telemetry periodic daily
    Cryptochecksum:41a021a28f73c647a2f550ba932bed1a
    : end
    Many thanks,
    Ingo

    Hi Jose,
    here is what I got now:
    ASA(config)# sh run | begin tunnel-group
    tunnel-group DefaultWEBVPNGroup general-attributes
    address-pool VPNPool
    authorization-required
    and DAP debugging still the same:
    ASA(config)# DAP_TRACE: DAP_open: CDC45080
    DAP_TRACE: Username: tom.tucker, aaa.cisco.grouppolicy = DfltGrpPolicy
    DAP_TRACE: Username: tom.tucker, aaa.cisco.username = tom.tucker
    DAP_TRACE: Username: tom.tucker, aaa.cisco.username1 = tom.tucker
    DAP_TRACE: Username: tom.tucker, aaa.cisco.username2 =
    DAP_TRACE: Username: tom.tucker, aaa.cisco.tunnelgroup = DefaultWEBVPNGroup
    DAP_TRACE: Username: tom.tucker, DAP_add_SCEP: scep required = [FALSE]
    DAP_TRACE: Username: tom.tucker, DAP_add_AC:
    endpoint.anyconnect.clientversion="3.1.02026";
    endpoint.anyconnect.platform="win";
    DAP_TRACE: Username: tom.tucker, dap_aggregate_attr: rec_count = 1
    DAP_TRACE: Username: tom.tucker, Selected DAPs: DfltAccessPolicy
    DAP_TRACE: Username: tom.tucker, DAP_close: CDC45080
    Unfortunately, it still doesn't work. Hmmm.. maybe a wipe of the config and starting from scratch can help?
    Thanks,
    Ingo

  • Use of Official Document number in VAT Books for Italy

    Dear All,
    I would like to share with you a big doubt I have regarding the use of Official Document Number in the VAT Books. This is a requirement for an Italian client.
    According to my clients requierement they would like to manage 5 different VAT Books:
    1. Sale book (for all finished products sold in Italy, EU and outside EU)
    2. Sale book for sundry sales (CAPEX, services, other goods ...)
    3. Purchase book (for all the goods bought in Italy and out-side EU and for all the services bought in Italy)
    4. EU purchase book (for all the goods and services bought from EU suppliers and for all the services bought from not EU suppliers)
    5. EU sale (reverse charge) book (with the same numbers and amounts of the purchase book number 4)
    For every VAT Book they want the Officil Document number to be displayed. Not only that, they want the Official Document Number to end in 1 (XXXXXXX1) at the start of every natural Year for EVERY VAT Book, and have sequential numbering with no gaps.
    My intention is to use: RFKKITVATM. This is a specific VAT report for Italian Companies. The report selects documents that contain regular VAT and that have been assigned an Official Document number (ODN). You run this report to generate such a list for the current month. It selects documents with an ODN based on the invoice or credit memo posting date. You can create as many layout-variants (one per VAT Book??).
    My question is: The VAT Books are based on different VAT Codes. How can we have every single VAT Book to start with an Official Document number ending in 1? The number range will be Document type dependant and not VAT Code dependant.
    As per my knowledger, To use Official Document Numbering (ODN) in Italy we have to make a number of settings:
    - Activate ODN
    - Specify which document types the system is to assign official document numbers to.
    - Assign installation-specific function modules to events
    - Define Number ranges
    Have you faced up a similar requirement? Is this a legal requierement or is my client mixing up with another legal requierement related to this subject:  To print a sequential number and the fiscal year on each page of the reportu2019s output list. The System starts the numbering automatically at 1, as it does for each subsequent year.
    Many thanks in advance for your help.

    Hello All,
    Am facing an issue when implementing the ODN solution for Italy. I cannot replicate the ODN in field BKPF-XBLNR_ALT when posting Invoice via MIRO.
    1. I have Defined a Document Class per VAT Book
    2. I have Assign a Document Class to Document Types (in my example Document Type "RE" to Document class "43". And select "Generate Official Document Number, with date control".
    3. I have mantained Number ranges
    4. I have Assign the Number ranges to Document Class.
    5. In order to transfer the ODN from Billing docs to Accounting docs I have entered the Document Type "RV" at Billing Document Type level.
    It all works as expected except for the Accounting documents coming from Logistic Invoice verification - MIRO transaction. Document Type "RE" is used for posting but my field BKPF-XBLNR on Accounting document remains blank.
    Is there any additional step am missing?
    Thanks in advance.
    Regards,

  • ITALY Localization Question - FI - AR - Invoice Numbering / ODN

    We're rolling out ECC 5.0 in Italy, US-based central instance.
    We will have Customer Invoices coming from SD, and Customer invoices entered directly in FI-AR (FB70).
    Can the invoices coming from the 2 sources (SD and FI) follow the same invoice number sequence, using the ODN functionality (document classes and types)?

    Hello All,
    Am facing an issue when implementing the ODN solution for Italy. I cannot replicate the ODN in field BKPF-XBLNR_ALT when posting Invoice via MIRO.
    1. I have Defined a Document Class per VAT Book
    2. I have Assign a Document Class to Document Types (in my example Document Type "RE" to Document class "43". And select "Generate Official Document Number, with date control".
    3. I have mantained Number ranges
    4. I have Assign the Number ranges to Document Class.
    5. In order to transfer the ODN from Billing docs to Accounting docs I have entered the Document Type "RV" at Billing Document Type level.
    It all works as expected except for the Accounting documents coming from Logistic Invoice verification - MIRO transaction. Document Type "RE" is used for posting but my field BKPF-XBLNR on Accounting document remains blank.
    Is there any additional step am missing?
    Thanks in advance.
    Regards,

Maybe you are looking for

  • How to recover deleted photos from ipad2

    I deleted few photos from my ipad2 by mistake. Is there a software or any other method to recover the deleted photos? I haven't sync. the ipad2 with iTunes since these photos were taken. now they got deleted. (i do not have iphoto application).

  • IOS 7 still wallpapers are not showing up in settings

    Hello!Can anybody help me.When I am going in settings>wallpapers and brightness>stills the wallpapers arenot showing up.There is just a white background with no wallpapers.20 minutes ago I restored my iPhone from iTunes,then put my backup on and stil

  • File-Receiver channel needs 15 hours to write a 12 MB file

    Hi, we use PI/700 SPS 5. I implemented a small scenario File -> XI (with xsl-Mapping) -> File. When I load in a file with 12 MB it took about 15 hours till XI writes the transformed file. The XSL-Transformation is quit simple! The audit-protocol is o

  • Unable to check in PDF into SharePoint 2010 Enviroment with MetaData tags

    Hi we have a client that is modifying a PDF file and then wanting to update and check it back into our SharePoint 2010 enviroment.  We enforce a  MetaData (Term Store) Feild to this Document Library.  When Adobe trys to check in the file it bombs and

  • CS2 created loader, need to update to CS5

    Hello I'm just learning about loaders and i have a loader created in CS2 and im using it in CS5 it seems to work correctly but has a few compiler errors. I tried to clean it up but only made it worse, anybody want to take a shot at it: var my_loader: