CIN:External number to ARE1 Form

HI Experts
We have maintained external number range for ARE1 document for object J_1IARE1 but during creation of ARE1 or change mode where should i enter external ARE1 Form number (Official Number).
In change mode the form number field is visible in nonmodifiable mode.
During posting i am getting error related to Form number.

Hai Mangesh bhosale     ,
The thread may give some more details regarding the Number ranges in ARE1 document
ARE1 number range object
Still further query please post
Regards,
Mani

Similar Messages

  • SD - Billing - External Number Range

    Hi,
    I have two questions related to SD billing document numbering:-
    1. I am getting error message of [Please specify an internal number range Message no. NR752] while saving a billing document based on the delivery. I have checked only external number range box in VN01. Do I need to use any user-exit for this? If yes then there are 2 user exits available -
    a) USEREXIT_NUMBER_RANGE_INV_DATE USING US_RANGE_INTERN in program RV60AFZC
                              b) FORM USEREXIT_NUMBER_RANGE USING US_RANGE_INTERN in program RV60AFZZ
    but both the cases the variable is US_RANGE_INTERN which is not allowing external number range ID to pass. How this external no range works.?
    2. I have a business requirement for our Mexican company code on external alphanumeric number. There would be 3 billing types say, ZF2, YF2 and ZYF2. Mexican government provides Invoice numbers in advance.
    ZF2 Number range would be A001 to A999
    YF2 Number range would be B001 to B999
    ZYF2 Number range would be C001 to C999.
    All these Invoices would be created at same time. i.e. parallel processing. Also all these invoices would be transmitted thru EDI -IDOC. And accounting document should have same number as billing document will carry i.e. external govt provided numbers.
    How do I map this in systems. My experience says alphanumeric number range is not supported by SAP. Anybody may share his solution on this would be simply great.
    Thanks
    Subrata Das

    FORM USEREXIT_NUMBER_RANGE                                    *
          This userexit can be used to determine the numberranges for   *
          the internal document number.                                 *
          US_RANGE_INTERN - internal number range                       *
          This form is called from form LV60AU02                        *
    FORM USEREXIT_NUMBER_RANGE USING US_RANGE_INTERN.
    Example: Number range from TVFK like in standard
    US_RANGE_INTERN = TVFK-NUMKI.
    *{   INSERT         DEVK905392                                        1
    There was a need to check whether all the mandatory pricing
    conditions have been filled before creation of an invoice so that
    the invoice is released to accounting as and when it is created.
    Piece of code written below ensures the same. Field uvprs = 'X'
    in item table indicates that the item is incomplete with respect to
    pricing.
      LOOP AT xvbrp WHERE uvprs = 'X'.
        EXIT.
      ENDLOOP.
      IF sy-subrc EQ 0.
        MESSAGE e073(vf) WITH xvbrp-posnr.
      ENDIF.
    TABLES : zbd_nr_code.
    data : aa like zbd_nr_code-nr_code.
      IF sy-tcode = 'VF01'.
       SELECT SINGLE *
         FROM tvko
        WHERE vkorg = vbak-vkorg.
       IF sy-subrc EQ 0.
          SELECT SINGLE NR_CODE INTO ZBD_NR_CODE-NR_CODE
            FROM zbd_nr_code
           WHERE vkorg    = vbrk-vkorg
             AND werks    = vbrp-werks
             AND fkart    = vbrk-fkart.
          IF sy-subrc = 0 .
            us_range_intern = zbd_nr_code-nr_code.
          ENDIF.
       ENDIF.
      ENDIF.
    I feel this will help out.
    Regards

  • Some external number range are not valid for equipment creation

    Hi All,
    What could be the reason even though the external number range is maintained for equipment category as a combination of ALFA Numeric, for certain combinations, system accepts while creating Equipment and for certain combination of ALFA numeric number, system is throwing error " equipment number not in external number interval".
    Waiting for your valuable inputs..
    Thanks
    Surya

    Hi
    As your define No. Range is :000AAA-1000 to 000ZZZ-9999.You can Not use No which Involves the Alphbatic Value as "AAA" As it is begaining of your number range .You can Check another upcomimg number which just fall after "AAA" is "ABA"it will accept.Number which come with "AAA" will not accept by system.So you need to start your numbering form the next number of your Define Lower Limit(starting point) value that is "ABA-....."
    Regards,
    Rakesh

  • External number range for billing document (Invoices)

    Hi guys,
    I have a requirement from one of client to implement external number range for billing documents.
    I can only see a provision for internal number range in customising for Billing document type.
    Please can you assist me with detailson how to set up external number range for billing documents (Invoices).
    Thanks, Felix

    Hi Felix
    I think the similar requirement is in Venezuela also.
    So pl. check the SAP Note 849438 . As per the note :-
    The solution is delivered in the indicated support packages. In case you can not implement the correspondin support package for your release immediately, please follow the procedure described below:
    1. In the Data Dictionary Editor (transaction SE11) please open the definition of domain J_1AOFFNREL, go to the fixed values and add value 'P' with description 'Number Assingment using Prenumbered Forms' in a position so that the possible values remain sorted alphabetically.
    2. In the Message Editor (transaction SE91) please go to message class ICC_CN and add the new message 837 with text '&1: Official doc. numbering is not available for delivery documents!'.
    3. If you are implementing the note in release 4.6C, please create the following function modules:
    o     OFF_NUMBER_LOCAL_ASSIGN_VE in function group FIN2, and then copy the interface (all parameters and exceptions) of the function module OFF_NUMBER_LOCAL_ASSIGN_TW
    o     OFF_NUMBER_LOCAL_NUMBERING_VE in function group FIN2, and then copy the interface (all parameters and exceptions) of the function module OFF_NUMBER_LOCAL_NUMBERING_TW
    o     XBLNR_BUILD_AND_SPLIT_VE in function group IDSDCNUTIL, and then copy the interface (all parameters and exceptions) of the function module XBLNR_BUILD_AND_SPLIT_PECL
    4. Implement the source code corrections as shown below.
    The following customizing actions should be also executed when the solution by delivered by the corresponding support package. If you applied the solution manually, then please use the IMG activities listed in the section Cross-Application Components -> General Application Functions -> Cross-Application Document Numbering -> Taiwan as a reference. After the installation of the corresponding support package the customizing node for Venezuela can be used.
    1. Enable the use of business place for country Venezuela as described in the OSS Note 726537.
    2. Define the necessary document classes and configure the document types you would like to get an official document number as relevant for official document numbering in the desired mode. Please check the OSS Note 571376 for some explanations about the meaning of the different settings.
    3. Define the necessary number ranges and intervals and assign them to the combination of company code, business place, document class and validity period. If you use the customizing activity for Taiwan, then please leave the prefix field empty.
    Regards
    Amitesh

  • External number range for Sales Document

    hi,
        I have a requirement to generate external number range for sales document. I tried this user exit (MV45AFZZ) to generate external number.
    FORM USEREXIT_NUMBER_RANGE USING US_RANGE_INTERN.
    Endform.
    between these form and enform i written my logic and passing to US_RANGE_INTERN. But can one suggest where to write to generate external number range.
    Can any one help me out.
    Thanks and regards,
    Vijay.

    Hi
    Here you can assign a different number range for your sales order.
    The number range is linked to the order type (field VBAK-AUART), this link is done in customizing.
    It usually uses this routine if it can't assign the range in customzing because (for example) for different sales area it need have different number ranges for the same order type.
    So you should create an external range by trx SNRO and then assign the number before entering in the main screen of va01 or saving the document.
    When you need to assign the number depends on how you want to manage your range.
    If you assign the number in entering you has to make sure to not assign the same number document to severals order to be created in the same time by several useers.
    Max

  • How to assign numbers in external number range?

    Dear experts,
    Since NUMBER_GET_NEXT can only be used to assign numbers in internal number range, how to assign numbers in external number range?
    So far, I only know the NUMBER_CHECK function module to deal with external number ranges and it only check a number whether it lies in any external number range or not, but it doesn't update any number range status. What I need is a function module like NUMBER_GET_NEXT that supports external number range.
    Thanks in advance.
    Regards,
    Haris
    Edited by: harissahlan on Oct 19, 2011 5:44 AM

    With external number range, there is no updating of the number range objectt. The only thing you need to know is whether the number you wish to assign is allowed according to the external number range. And also check if there isn't already an object/document with the same number in the database.

  • CUCM 8.6 Call Forwarding to External Number Issue

    Hello,
    Call forwarding worked without problems, we could forward our phones to external numbers and everything was ok, when somebody called to my phone, I could  got the call to my cell phone.
    But now when I forward my phone to external number and try to call to my phone I get busy trigger.
    We didn't change configuration or install any update.
    I think its my ISP-s problem, to whom we have SIP Trunk.
    I don't understand log file, so can you tell what is the problem?
    Here is log:
    057729XXXX is called party, cell phone number
    original calling party number is 240XXXXX, but it is forwarded to 2484XXX
    INVITE sip:2484XXX@ISP-IP:5060 SIP/2.0
    Via: SIP/2.0/UDP MY-CUCM-IP:5060;branch=z9hG4bK1003a84126249
    From: <sip:057729XXXX@MY-CUCM>;tag=4052091~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP-IP>
    Date: Wed, 18 Dec 2013 13:34:18 GMT
    Call-ID: 16d82e80-2b11a45a-c43e7-84450d0a@MY-CUCM-IP
    Supported: timer,resource-priority,replaces
    Min-SE:  1800
    User-Agent: Cisco-CUCM8.6
    Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY
    CSeq: 101 INVITE
    Expires: 180
    Allow-Events: presence
    Supported: X-cisco-srtp-fallback
    Supported: Geolocation
    Cisco-Guid: 0383266432-0000065536-0000191815-2219117834
    Session-Expires:  1800
    P-Asserted-Identity: <sip:057729XXXX@MY-CUCM-IP>
    Remote-Party-ID: <sip:057729XXXX@MY-CUCM-IP>;party=calling;screen=yes;privacy=off
    Contact: <sip:057729XXXX@MY-CUCM-IP:5060>
    Max-Forwards: 68
    Content-Type: application/sdp
    Content-Length: 215
    v=0
    o=CiscoSystemsCCM-SIP 4052091 1 IN IP4 MY-CUCM-IP
    s=SIP Call
    c=IN IP4 MY-CUCM-IP
    t=0 0
    m=audio 29790 RTP/AVP 8 101
    a=rtpmap:8 PCMA/8000
    a=ptime:20
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    |2,100,56,1.173711429^MY-CUCM-IP^MTP_3
    17:34:18.526 |EnvProcessUdpPort - EnvProcessUdpHandler::fireSignal() varId = 2|2,100,56,1.173711429^MY-CUCM-IP^MTP_3
    17:34:18.526 |EnvProcessUdpHandler::fireSignal - SEND: index = 2, handler = 0xb2d59c98|*^*^*
    17:34:18.526 |EnvProcessUdpPort::fireSignal - SEND, destination = ISP-IP:5060|*^*^*
    17:34:18.526 |EnvProcessUdpPort - EnvProcessUdpHandler::send(buff, 1172, ISP-IP:5060)|*^*^*
    17:34:18.536 |EnvProcessUdpHandler::handle_input - handle = 334|*^*^*
    17:34:18.536 |EnvProcessUdpHandler::handle_input   Status: 0, Id: 2|*^*^*
    17:34:18.536 |//SIP/SIPUdp/wait_UdpDataInd: Incoming SIP UDP message size 358 from ISP-IP:[5060]:
    [12623361,NET]
    SIP/2.0 100 Trying
    Call-ID: 16d82e80-2b11a45a-c43e7-84450d0a@MY-CUCM-IP
    CSeq: 101 INVITE
    From: <sip:057729XXXX@MY-CUCM-IP>;tag=4052091~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP-IP>;tag=sip+1+b3a00013+867def6a
    Via: SIP/2.0/UDP MY-CUCM-IP:5060;branch=z9hG4bK1003a84126249
    Server: CISCO-SBC/2.x
    Content-Length: 0
    |2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/Stack/Info/0x0/ccsip_spi_get_msg_type returned: 2 for event 1|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/Stack/Transport/0x0/context=(nil)|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/Stack/Transport/0x0/gConnTab=0xf484290, addr=ISP-IP, port=5060, connid=2, transport=UDP|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/Stack/Info/0x0/Return existing connection for port 5060 connId 2|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/Stack/Info/0x0/Checking Invite Dialog|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/Stack/Info/0xb1b50c90/INVITE response with no RSEQ - disable IS_REL1XX|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/SIPHandler/ccbId=0/scbId=0/sip_stop_timer: type=SIP_TIMER_TRYING value=500 retries=3|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/Stack/States/0xb1b50c90/0xb1b50c90 : State change from (STATE_SENT_INVITE, SUBSTATE_NONE)  to (STATE_RECD_PROCEEDING, SUBSTATE_PROCEEDING_PROCEEDING)|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/SIPHandler/ccbId=0/scbId=0/sip_stop_timer: type=SIP_TIMER_EXPIRES value=180000 retries=0|2,100,230,1.4901096^ISP-IP^*
    17:34:18.536 |//SIP/SIPHandler/ccbId=0/scbId=0/sip_start_timer: type=SIP_TIMER_EXPIRES value=180000 retries=0|2,100,230,1.4901096^ISP-IP^*
    17:34:18.561 |EnvProcessUdpHandler::handle_input - handle = 334|*^*^*
    17:34:18.561 |EnvProcessUdpHandler::handle_input   Status: 0, Id: 2|*^*^*
    17:34:18.561 |//SIP/SIPUdp/wait_UdpDataInd: Incoming SIP UDP message size 396 from ISP-IP:[5060]:
    [12623362,NET]
    SIP/2.0 403 Forbidden
    Call-ID: 16d82e80-2b11a45a-c43e7-84450d0a@MY-CUCM-IP
    CSeq: 101 INVITE
    From: <sip:057729XXXX@MY-CUCM-IP>;tag=4052091~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP-IP>;tag=sip+1+b3a00013+867def6a
    Via: SIP/2.0/UDP MY-CUCM-IP:5060;branch=z9hG4bK1003a84126249
    Server: CISCO-SBC/2.x
    Content-Length: 0
    Contact: <sip:ISP-IP:5060>
    [12623363,NET]
    ACK sip:2484XXX@ISP-IP:5060 SIP/2.0
    Via: SIP/2.0/UDP MY-CUCM-IP:5060;branch=z9hG4bK1003a84126249
    From: <sip:057729XXXX@MY-CUCM-IP>;tag=4052091~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP-IP>;tag=sip+1+b3a00013+867def6a
    Date: Wed, 18 Dec 2013 13:34:18 GMT
    Call-ID: 16d82e80-2b11a45a-c43e7-84450d0a@MY-CUCM-IP
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: presence
    Content-Length: 0
    INVITE sip:2484XXX@ISP's-Other-IP:5062 SIP/2.0
    Via: SIP/2.0/UDP MY-CUCM-IP:5062;branch=z9hG4bK1003a95b8f3900
    From: <sip:057729XXXX@MY-CUCM-IP>;tag=4052092~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP's-Other-IP>
    Date: Wed, 18 Dec 2013 13:34:18 GMT
    Call-ID: 16d82e80-2b11a45a-c43e8-84450d0a@MY-CUCM-IP
    Supported: timer,resource-priority,replaces
    Min-SE:  1800
    User-Agent: Cisco-CUCM8.6
    Allow: INVITE, OPTIONS, INFO, BYE, CANCEL, ACK, PRACK, UPDATE, REFER, SUBSCRIBE, NOTIFY
    CSeq: 101 INVITE
    Expires: 180
    Allow-Events: presence
    Supported: X-cisco-srtp-fallback
    Supported: Geolocation
    Cisco-Guid: 0383266432-0000065536-0000191816-2219117834
    Session-Expires:  1800
    P-Asserted-Identity: <sip:057729XXXX@MY-CUCM-IP>
    Remote-Party-ID: <sip:057729XXXX@MY-CUCM-IP>;party=calling;screen=yes;privacy=off
    Contact: <sip:057729XXXX@MY-CUCM-IP:5062>
    Max-Forwards: 68
    Content-Type: application/sdp
    Content-Length: 215
    v=0
    o=CiscoSystemsCCM-SIP 4052092 1 IN IP4 MY-CUCM-IP
    s=SIP Call
    c=IN IP4 MY-CUCM-IP
    t=0 0
    m=audio 29792 RTP/AVP 8 101
    a=rtpmap:8 PCMA/8000
    a=ptime:20
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    |2,100,56,1.173711431^MY-CUCM-IP^MTP_3
    17:34:18.567 |EnvProcessUdpPort - EnvProcessUdpHandler::fireSignal() varId = 0|2,100,56,1.173711431^MY-CUCM-IP^MTP_3
    17:34:18.567 |EnvProcessUdpHandler::fireSignal - SEND: index = 0, handler = 0xa6b4d7c0|*^*^*
    17:34:18.567 |EnvProcessUdpPort::fireSignal - SEND, destination = ISP's-Other-IP:5062|*^*^*
    17:34:18.567 |EnvProcessUdpPort - EnvProcessUdpHandler::send(buff, 1177, ISP's-Other-IP:5062)|*^*^*
    17:34:18.569 |EnvProcessUdpHandler::handle_input - handle = 335|*^*^*
    17:34:18.569 |EnvProcessUdpHandler::handle_input   Status: 0, Id: 0|*^*^*
    17:34:18.569 |//SIP/SIPUdp/wait_UdpDataInd: Incoming SIP UDP message size 394 from ISP's-Other-IP:[5062]:
    [12623365,NET]
    SIP/2.0 100 trying -- your call is important to us
    Via: SIP/2.0/UDP MY-CUCM-IP:5062;branch=z9hG4bK1003a95b8f3900;rport=5062
    From: <sip:057729XXXX@MY-CUCM-IP>;tag=4052092~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP's-Other-IP>
    Call-ID: 16d82e80-2b11a45a-c43e8-84450d0a@MY-CUCM-IP
    CSeq: 101 INVITE
    Server: kamailio (3.3.1 (x86_64/linux))
    Content-Length: 0
    17:34:18.587 |//SIP/SIPUdp/wait_UdpDataInd: Incoming SIP UDP message size 375 from ISP's-Other-IP:[5062]:
    [12623366,NET]
    SIP/2.0 403 Forbidden
    Via: SIP/2.0/UDP MY-CUCM-IP:5062;branch=z9hG4bK1003a95b8f3900;rport=5062
    Call-ID: 16d82e80-2b11a45a-c43e8-84450d0a@MY-CUCM-IP
    From: <sip:057729XXXX@MY-CUCM-IP>;tag=4052092~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP's-Other-IP>;tag=dc6a4ae7
    CSeq: 101 INVITE
    Reason: Q.850;cause=0;text="unknown"
    Content-Length: 0
    |2,100,230,1.4901099^ISP's-Other-IP^*
    [12623367,NET]
    ACK sip:2484XXX@ISP's-Other-IP:5062 SIP/2.0
    Via: SIP/2.0/UDP MY-CUCM-IP:5062;branch=z9hG4bK1003a95b8f3900
    From: <sip:057729XXXX@MY-CUCM-IP>;tag=4052092~294be736-ce3b-450f-a7f1-c801f3cc9a7e-27746002
    To: <sip:2484XXX@ISP's-Other-IP>;tag=dc6a4ae7
    Date: Wed, 18 Dec 2013 13:34:18 GMT
    Call-ID: 16d82e80-2b11a45a-c43e8-84450d0a@MY-CUCM-IP
    Max-Forwards: 70
    CSeq: 101 ACK
    Allow-Events: presence
    Content-Length: 0

    SIP/2.0 403 Forbidden error
    If your router is sending a SIP/2.0 403 Forbidden error to the SIP server you are registered to, there is a good chance your  router is blocking the incoming call due to the toll-faud prevention  feature that was added to IOS version 15.1(2)T.
    How to Identify if TOLLFRAUD_APP is Blocking Your Call
    If the TOLLFRAUD_APP is rejecting the call, it generates a Q.850       disconnect cause value of 21, which represents ‘Call Rejected’. The       debug voip ccapi inout command can be run to       identify the cause value.
    Additionally, voice iec syslog can be       enabled to further verify if the call failure is a result of the toll-fraud       prevention. This configuration, which is often handy to troubleshoot the origin       of failure from a gateway perspective, will print out that the call is being       rejected due to toll call fraud. The CCAPI and Voice IEC output is demonstrated       in this debug output:
    %VOICE_IEC-3-GW: Application Framework Core: Internal Error (Toll fraud call rejected):
    IEC=1.1.228.3.31.0 on callID 3 GUID=F146D6B0539C11DF800CA596C4C2D7EF
    000183: *Apr 30 14:38:57.251: //3/F146D6B0800C/CCAPI/ccCallSetContext:
       Context=0x49EC9978
    000184: *Apr 30 14:38:57.251: //3/F146D6B0800C/CCAPI/cc_process_call_setup_ind:
       >>>>CCAPI handed cid 3 with tag 1002 to app "_ManagedAppProcess_TOLLFRAUD_APP"
    000185: *Apr 30 14:38:57.251: //3/F146D6B0800C/CCAPI/ccCallDisconnect:
       Cause Value=21, Tag=0x0, Call Entry(Previous Disconnect Cause=0, Disconnect Cause=0)
    The Q.850 disconnect value that is returned for blocked calls can also       be changed from the default of 21 with this command:
    voice service voip
    ip address trusted call-block cause
    How to Return to Pre-15.1(2)T Behavior
    Source IP Address Trust List
    There are three ways to return to the previous behavior of voice       gateways before this trusted address toll-fraud prevention feature was       implemented. All of these configurations require that you are already running       15.1(2)T in order for you to make the configuration change.
    Explicitly enable those source IP addresses from which you would like           to add to the trusted list for legitimate VoIP calls. Up to 100 entries can be           defined. This below configuration accepts calls from those host           203.0.113.100/32, as well as from the network 192.0.2.0/24. Call setups from           all other hosts are rejected. This is the recommended method from a voice           security perspective.
    voice service voip
    ip address trusted list
      ipv4 203.0.113.100 255.255.255.255
      ipv4 192.0.2.0 255.255.255.0
    Configure the router to accept incoming call setups from all source           IP addresses.
    voice service voip
    ip address trusted list
      ipv4 0.0.0.0 0.0.0.0
    Disable the toll-fraud prevention application completely.
    voice service voip
    no ip address trusted authenticate
    Two-Stage Dialing
    If two-stage dialing is required, the following can be configured to       return behavior to match previous releases.
    For inbound ISDN calls:
    voice service pots
    no direct-inward-dial isdn
    For inbound FXO calls:
    voice-port
    secondary dialtone

  • Need to Find Total number of InfoPart form in our Web application

    Hello,
    We have to find total number of Infopath forms in our web application. IS there any Power sheell Scripts or anuthing which can output the Infopath Forms location and file count .
    Thanks
    Kundan

    How about something like:
    Get-SPWebApplication http://yourWebAppUrl |
    Get-SPSite -Limit All |
    Get-SPWeb -Limit All |
    Select -ExpandProperty Lists |
    Where { $_.GetType().Name -eq "SPDocumentLibrary" -AND -NOT $_.Hidden } |
    Select -ExpandProperty Items |
    Where { $_.Name -LIKE "*.xsn" }
    Select {$_.Web.Url}, Url
    The above will list all of the files. Do you need counts by library, by site or other?
    Mike Smith TechTrainingNotes.blogspot.com

  • BATCH Management - External number

    Hi
    I am having a scenario where I need to activate the external number assignment for a batch in a specific plant. ( We do have around 50 plants)
    Internal batch number and Automatic batch number assignment is activated at the client level. which is creating worries for me.
    with activation of external numbers for batches , I do want to make this mandatory to put external batch at the time of <b>MIGO for Raw materials</b> and <b>CO11N at the time of operation confirmation for finshed goods</b> <u><i>( obvisously only for the materials having Batch management check activated in material master )</i></u>
    Grateful if somebody could help me in acheving this..
    BR
    Sumit

    Hello Vikesh
    Thanks for the reply.But bro..as I mentioned before also , i caant do the changes mentioned by you as its used by other 10 plants for the same client.
    I need to do this for a specific plant only , and We dont want to create batch manually  , system should create batch number with external number range for the movement typr 101 <b>( for raw materials at the time of MIGO and for finished goods at the time of prod.order operation confirmation in CO11N)</b>.
    Pl coorect me if i am too ambitios for this ..but thts wht we r looking for,,
    BR
    Sumit Sharma

  • How to create a Sales Order with external number using BAPI

    Hi People,
    I am wonderning how to create Sales order using external number range by BAPI (SALESORDER_CREATEFROMDAT202).
    I tried search but could not succeed in finding the solution.
    Please share if anyone has some info.
    Thanks in advance.
    Regards,
    Praveen

    As per my understanding, the BAPI
    SALESORDER_CREATEFROMDAT202
    mentioned by you, is not BAPI. In fact, that is basic IDoc Type.  For processing an Inbound IDoc, we use FM IDOC_INPUT_ORDERS.
    If you want to create sales order other than IDoc, refer FM BAPI_SALESORDER_CREATEFROMDAT2. There you can provide external sales order no in SALESDOCUMENTIN. In addition to that check whether your sales doc type is relevant for external number range or not. If yes. then make sure you are providing external number according to the number range maintained.
    If you still have any concerns, please revert back.
    Thanks, JP

  • Urgent :crm_ic web client adding new field - customer external number-BPEXT

    HI
    I want to add the field <b>customer external number(data element- bpext)</b> is available as a standard  field in  <b>bp transaction</b> , under indentification tab I am trying to bring the same field into the <b>identify account-CRM-IC BSP Application</b>
    when I am trying to do this , I nee to know the below information
    <b>Attribute name
    property name
    context class</b>
    can you help me in Identifying this values which I feel is must for adding the field to the bsp application CRM_IC.
    thanks in advance
    Message was edited by: madhu satya rajasekhar bobbadi

    Hi,
    Following are the steps to add new fields to the existing view.
    - Create a new controller class (ZCL..) with original view class as super class
    - Create new BSP application with View and Controller
    - Attach the above Z class to the view and controller created and activate the BSP appln.
    - Go to transaction BSP_WD_WORKBENCH and type your BSP appln.
    - Expand your controller and at the Context class use Wizard to create new context node and bind this to Custom Controller class available.
    This whole process requires complte understanding of View, Controller, Custom controller and basic custom modifications to IC Web Frame work.
    Kunda Krishna Kishore

  • Creation of HU in auto mode with external number range

    Dear Experts,
             I'm stucking in a scenario related to HUM
    There are two handling units -
    1. Bag
    2. Pallet
    through T code HU02 , it's possible to create an HU and assign it internal generated number.
    But as per our requirement , we want to assign the external number to the HU (which is barcode number of bag or pallet)
    Can you pls let me know the process of assigning External number range to HU.
    Also we want to create the HU automatically after GR in production (MIGO,101) , instead of manually via HU02.
    Pls explin the process of creation of HU automatically also...
    Thanks in advance..

    Check with FM BAPI_HU_PACK.For packing an item into HU.
    For external number range you need configure external number range
    SPRO>Logistics - General>Handling Unit Management>Basics>Technical Basics-->Define Number Ranges for Handling Units.
    After GR  for production you need to confighre internal number range for perticular packing material type then system will automatically pack and place in HU location.
    Please find some FM info
    =========================
    HU_BASIC_BAPIS                 Basic BAPIs for HUs                     
    BAPI_HU_CHANGE_HEADER          Change Handling Unit Header Data        
    BAPI_HU_CREATE                 Create Handling Unit with Items         
    BAPI_HU_DELETE                 BAPI for Deleting Handling Units        
    BAPI_HU_DISPLAY_HISTORY        Displays HU History                     
    BAPI_HU_GETLIST                Read Handling Units from the Database   
    BAPI_HU_GET_LIST_MSG           Select Handling Unit Output             
    BAPI_HU_PACK                   BAPI for Packing an Item into an HU     
    BAPI_HU_PROCESS_MSG            HU Output Processing                    
    BAPI_HU_PROCESS_MSG_DIRECT     Select and Process Handling-Unit Outputs
    BAPI_HU_REPACK                 Repack HUs and HU Items                 
    BAPI_HU_UNPACK                 BAPI for Unpacking an Item from an HU   
    BOR_HU_DISPLAY                 Display an HU in Dialog Mode            
    ===================================

  • Any1 aware of a function module to convert a number in exponential form

    any1 aware of a function module to convert a number in exponential form to normal form...
    eg... a no. like 8.00000000000004E-01 
                     8.88888888888884E-01
    and
    a no. like 1.50000000000000E+00 
               9.44444444444442E-01

    I think you can just move from type F to type p.
    p =  f .
    Regards,
    Rich Heilman

  • HOW TO CREATE EXTERNAL NUMBER RANGE IN OM

    HI ALL
    HOW TO CREATE EXTERNAL NUMBER RANGE IN OM
    PLEASE GIVE ME SPOON FEEDING
    IT IS VERY URGENT FOR ME
    PLEASE PLEASE AND PLEASE
    REGARDS

    ok i understood u want the img path for maintaing
    positions ,jobs , Org units
    Path:IMG->Personnel Mgmt->OM->Basic Setting->Maintain Number ranges.
    IMG go to Personnel Management -> Organizational Management -> Basic Settings
    -> Maintain Number Ranges.
    Select subgroup $$O to maintain number range for Org Unit and click on Number range Maintenance. Then click on change Intervals. Now you can create both internal and external number range for Org Unit according to your requirement.
    Similarly for Position select subgroup $$S and follow the same process.
    Edited by: Sikindar on Feb 7, 2008 11:23 AM
    Edited by: Sikindar on Feb 7, 2008 11:28 AM

  • External number range for purchase order response?

    Hi all,
    is it possible to use an external number range when creating purchase order responses (BUS2209, PCO, POR) manually?
    If I transfer the POR from an external system like SUS via XML, can I use an external number range?
    I'm using SRM 4.0 (EBP 5.0) in standalone scenario with Business Connector 4.7 as XML interface.
    Any help is appreciated,
    Karsten

    Hi
    No need to maintian Internal number range.. Yes you need to use an external number range
    Only the PO, RQ & RS are sync and therefore must correspond with the R/3 number ranges.
    The rest, Shop Cart (SC), Local PO (EBP), Confirmation, Invoice, Bid Inv and Bid, aren't synced and can be assigned to any number range. (FYI- using ECS)
    Re: Extended Classic - Purchase Order Number Ranges
    http://help.sap.com/saphelp_srm50/helpdata/en/87/7cc73cee4fb55be10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/6d/0f343e47fd6b2ee10000000a114084/frameset.htm
    Re: Number range config
    Re: config for Number Ranges ? :-(
    Re: PO Creation with external PO number
    Purchase Order Response BUS2232
    PO number range Issue
    Re: Defining the number range
    Regards
    - Atul

Maybe you are looking for

  • Migration from Mac OS 10.3 to Snow Leopard

    Hi All, I'm trying to transfer the mail account and a few other things (keychain, favorites, bookmarks, etc.) from my dad's old emac running 10.3 to a newer macbook pro running snow leopard. Unfortunately there is not migration assistant on the emac

  • Does Find My Friends need to be installed to work?

    Hey all, I have a problem with something that happened Monday. My fiancee was in the hospital sunday night but went to work monday anyways, and her sister picked her up from our house and dropped her off from work. So she didnt have a car all day. Sh

  • Nikon Jpeg decoding problem.

    Jpeg files saved with the ICC profile "Nikon sRGB 4.0.0.3001" by Nikon PictureProject do not load properly using Java ImageIO.read(). The image is far too dark, but the colors are not swapped. This appears to be similar to the problems reported in bu

  • Call value from jsp

    Hi all I have 3 jsp's. The first one look a little like this: first.jsp: <%String productDesc =""; session.setAttribute("productDesc",productDesc); String productlist=""; session.setAttribute("productlist",productlist); %> <!--Here I call another jsp

  • Why cant i (still) immediately share a picture after taking one from the lock screen camera?

    i put the question here because the ios section is only for specific apps... sorry. seems a bit maddening that we are given such quick access to take a picture, but then have to open up either the photo app or whatever app we want to share the photo/