How to find the number of idocs generated for a customer on the basis of his purchase order in a day ?

How to find the number of idocs generated for a customer on the basis of his purchase order in a day ?

Dear Friends,
I am absolutely agree with your answer .
But my question is,
Lets say.....
One customer sending X number of purchase orders in a day , so how many IDocs generated on that specific day for that specific customer .
So, Question is , How can we find the no of sales orders(IDocs) generated for the customers on the specific day ?
Hope you all understood my requirement .
Thanks & Regards,
Aditya

Similar Messages

  • How to find serial number, how to find serial number

    how to find serial number on Macbook air for registering Applecare?

    Have you looked at the tiny numbers on the middle of the bottom of your MBA?

  • Single folio number should be generated for a GR excise inv.(Depot receipt)

    Dear all,
    How to fullfill requirment of same folio number should be generated in RG23D in a excise invoice(depot goods receipt)
    for a material with multiple batches ? (This is a depot good receipt from plant using MIGO / J1IG,
    further this material is sold to customer).
    In standard,folio number is unique for each of line items in RG23D register.
    Whether above requirement can be addressed using CIN user exit if any available ?
    If it can be addressed through CIN user exit,what will be implications or results in subsequent process
    for deviating from standard function ?
    Kindly provide your valuable thoughts about this requirment ?
    Thanks in advance,
    Jeyakanthan
    Edited by: Jeyakanthan A on Sep 8, 2011 12:42 PM

    Hi,
    Thanks for enlightening me.Just checked, it is getting triggered before the number is getting generated for the object "J_1IRG23D" and Internal no.
    However was not able to see any loop for CALL FUNCTION 'NUMBER_GET_NEXT'. Anyways kindly keep us updated about your progress on this requirement.
    Regards
    Swapnil Iyer.

  • Limit the number of partner functions for a reltionship category

    Hello All,
    We have a requirement,where we have to limit the number of business partners relationship to two.For example we have to limit  the number of Account Executives for a customer to two.The Account Executive can be AE or Local Account Owner .The Local Account Owner has to be limited to one .
    I know how to limit the number of Account Executives to two.But I am not sure how to limit the Local Account Owner to one.
    Can anyone please guide me .
    Thanks,
    Kitcha.

    Hello All,
    We have a requirement,where we have to limit the number of business partners relationship to two.For example we have to limit  the number of Account Executives for a customer to two.The Account Executive can be AE or Local Account Owner .The Local Account Owner has to be limited to one .
    I know how to limit the number of Account Executives to two.But I am not sure how to limit the Local Account Owner to one.
    Can anyone please guide me .
    Thanks,
    Kitcha.

  • How to find the number of references created for a given  object ??

    How to find the number of references created for a given object in a big application environment.
    That means, if i give any object name (of my application) as input, then how can i find the[b] number of references created for that particular object ??

    Please do not post the same question multiple times.
    As for your original question, there is no direct way to do it.
    Especially not the way you phrased it,
    since objects don't have "names".
    Applications also don't have "names".
    They have classes and instances.
    Also, there are 2 related issues, and I'm not sure which one is the one you asked.
    #1. Finding the number of references to the same object.
    Eg.
    Map<String,String> a = new HashMap<String,String>();
    Map<String,String> b = new HashMap<String,String>();
    Map<String,String> c = a;In this case, there are only 2 objects.
    The first object has (at least) 2 references pointing to it.
    The second object has (at least) 1 reference pointing to it.
    (There may be more, if the HashMap library keeps
    references to these things, or if the HashMap object has
    some internal cyclic references...)
    If you're asking this, then it can't be done.
    It's an active research topic in universities
    and software research labs, called "alias analysis".
    Type it in google, and you'll see people are working hard
    and having little success so far.
    #2. Finding the number of instances created from a class.
    In this case, what you have to do is to add a counter to
    the constructor of the class. Every time an object is constructed,
    you increment the counter. Like this:
       class MyClass
           public static int counter = 0;
           public MyClass( )  { counter++; }
        // Then later in your program, you can do this:
        MyClass a = new MyClass();
        MyClass b = new MyClass();
        System.out.println(MyClass.counter); // It should show 2Note: you won't be able to do this to every class in the system.
    For every class you care about, you have to modify its constructor.
    Also: when an object is deleted, you won't always know it
    (and thus you won't always be able to decrement the counter).
    Finalizers cannot always work (read Joshua Bloch's
    "Effective Java" book if you don't believe me), but basically
    (1) finalizers will not always be called, and
    (2) finalizers can sometimes cause objects to not be deleted,
    and thus the JVM will run out of memory and crash

  • How to find Spool number for a 2 steps background job.

    Hi All,
    How to find spool number (and also the background job name ) for a 2 steps background job.
    in the table TBTCO i can see step numbers but i dont get the spool number. Is there any link between TBTCO and TSP01.
    Also after getting the spool number i need to drill down on ALV report. I hard coded the spool number and was able to drill down using BDC and call transaction but when i press back button it is not returning to the ALV report.
    Thanks,
    Shiva.

    Which one creates the spool? (first one I guess)
    What kind of spool? (WRITE, sapscript, smartform, pdf...)
    Do you use special statements like NEW-PAGE, or other things?
    Are you sure that the spools are generated by these jobs? (did you compare the spool generation times and job run dates to be sure...)

  • Number of IDOC generated

    Hello,
    I am using a outbound IDOC and at the end of IDOC generation want  to know number of IDOC generated.
    I have used message S644(ZSD) for that, but how to write logic to get number of IDOC generated.
    I am using MASTER_IDOC_DISTRIBUTE FM.
    Thanks

    IDOC number would be set in the Control Table parameter COMMUNICATION_IDOC_CONTROL.
      CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE'
        EXPORTING
          master_idoc_control            = ls_edidc
        TABLES
          communication_idoc_control     = lt_edidc  " <<
        READ TABLE lt_edidc INDEX 1 INTO ls_edidc TRANSPORTING docnum.
        lv_idoc_number = ls_edidc-docnum.  " <<
    Regards,
    Naimesh Patel

  • How to find out back end mapping program for Idoc ?

    HI Experts,
    Iam new to ALE IIDOCS .. i have a issue in existing idoc .
    Some data maping problem is there in the existing idocs
    I need to find out back end program for this perticular idoc  no .
    Exactly where they have written the maping code  .
    How to find out this ?
    is there any preceedure to trace the back end program based on the idoc number .
    Regards
    RameshG

    Hi Ramesh,
    If you are looking at Inbound que then we generally double click on idoc go to control datat info and then take partner data info there
    Goto we20 check teh system and there double click the message type and there in inbound option double clik the porcess code it gives you one FM where you can see logic written to process that IDOC
    Regards,
    Poornima

  • How to find port number , when there will be different instance number ?

    In case of portal url,
    port number is 50000 for default instance number 00.
    how to find port number , when there will be different instance number , instead of 00?
    Thanks

    Hi
    You can find the port number by your instance number as follows:
    There is a general format for the port number like you have mentioned.
    For 00 instance the port number is 50000.
    The general format for the port number goes like this:
        <b>5<instance_no>00</b>
    If your <b>instance number is 01</b> then the port number would be <b>50100</b>.
    It depends on the installation type which you perform.
    You can also change the instance number during the installation but normally you dont do this.
    If you have many components or units installed on your system you may have more than one instance in that case it may go like this 00, 01, 02....accordingly port number will be 50000, 50100, 50200...resp.
    Hope this solves your doubt.
    If you need some more clarification please lemme know.
    Regards
      Sumit Jain
    **Rewrd with points if useful.

  • How to find Negative number

    can any one pls tell me how to find negative number ?
    Thanks

    1. One easy method is to look for the giveaway dash in front of the number, e.g. "-1" is a negative number, given the "-" instead of the "1."
    2. Negative numbers can also sneakily be found by multiplying i by itself: i^2^ is a negative number.
    3. Negative numbers can hide in the exponent of e as complex numbers. e.g. e^i*pi^ is a negative number.
    4. If we're referring to Java here, perhaps the following could be of some use:
    final int ZERO = 0;
    public static void main(String[] args) {
    int a = 3;
    int b = -13;
    System.out.println(a + " is negative? " + lessThanZero(a));
    System.out.println(b + " is negative? " + lessThanZero(b));
    boolean lessThanZero(int n) {
    return n < 0;
    }

  • How to find next number range for project definition in tcode CJ20N

    Hai Experts,
          Please help me 'How to find next number range for project definition in tcode "CJ20N". I was trying in function module NUMBER_GET_NEXT. Is it right function module? If its right what input i need to give for this tcode and for the field project definition?
    Note: I searched in forum before posting, but couldn't find the solution.
    Thanks
    Regards,
    Prabu S.

    Hi,
    For project defination internal number is assigned by system.
    When you saves's project then system allocate one number to project defination, you can view it,
    SE11 >>> table  PROJ >> Click on contents >>> execute,
    here you will get your project defination & number is assigned to project defination.
    kapil

  • How to find maximum number of users we can assign for Hyperion Planning.

    HI,
    How to find maximum number of users we can assign for Hyperion Planning.i.e., how to find license limit in hyperion planning 11.1.2.1.
    In Essbase propreties, the system is showing maximum planning users could be 65535.
    what would be the number for concurrent scenario?
    Thanks
    Giri
    Edited by: Giriprasad on Jun 18, 2012 2:18 AM

    The number of users would be based on your license agreement with Oracle, the system is not aware of your license agreement so it is up to you to stick to it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to find serial Number for BCC Plugin?

    Hi,
    How to find serial number for Bcc plugin on FCP?
    I need format my Mac so before that I to find the serial number?
    Please anyone can help me....

    The serial number has the format like E-111-aaa-222-bbb-333-ccc-444-ddd-5ee-ffff, it can be found on a piece of paper which has 3 stickers with it inside the box.

  • How to find imei number in cloud

    how to find imei number on cloud?

    Here are the various ways to learn your iMEI number.  iCloud is not one of them.
    http://support.apple.com/kb/HT4061

  • How to find serial number on Power Adapeter 12Watt

    how to find serial number on Power Adapeter 12Watt

    You posted in the Older Hardware (prior to 1998) forum.
    Is the the 12W adapter http://store.apple.com/us/product/MD836LL/A/apple-12w-usb-power-adapter ?
    This power adapter is for the new iPad, but it can be used on other Apple iDevices.
     Cheers, Tom

Maybe you are looking for