Hoping for a particular piece!

Is there any avenue to "requesting" the Store to include missing artists' materials?
And does anyone know of a "request" actually being fulfilled?
I pine for a copy of "Smooth Criminal" video! Anyone else into "leaners"?
Aloha
And thanks for any helpful answers
G4 Dual 1.25   Mac OS X (10.3.9)   22" display

Thanks for the response....but it'll just be some dead-end I'm afraid.
I was "told" I would NOT receive an answer....so I'll just H O P E!
Thanks again
Aloha
G4 Dual 1.25   Mac OS X (10.3.9)   22" display

Similar Messages

  • How to findout the Function module for a particular object

    Hello friends,
       Related to my thread, there was one thread in the forum,to find out the function module for a particular object.I tried the solution provided my our experts but couldn't got the results.Thats why i am putting this thread again.
      I want to find out the function modules used for the particular object, i.e. Production order.
       solution i tried is, first go to T.C SE37, then in function module field put the object name like Production order and enter, than it will show another screen, there also put object name in function module field and than press enter, it will show all the function modules available for that object.
        So could you guys help me out to find out where i am wrong in the process of finding out the function module for a particular object.
                           Plz don't bother abt the point.Helpful answers will definitely get awarded.
                                Thanking you guys for your valuable support till now and hoping to get in future too.

    Dear
    When the problem is solved please give points too. Otherwise why people will help others, give time and share their valuable knowledge. This will build up self confidence.
    If not solved and closing, then mention the difficulties what u exactly looking for. Simpy closing is not enough because who ever is providing solution will not able to know the real problem.
    How to give points I believe u already know that and need not explain.
    I had seen many times this problem with others too. Even if the problem is totally resolved they give 2 in stead of 10.
    Edited by: BNR on Sep 21, 2008 6:10 PM

  • How to keep Anchor links for all small piece of Images in a BIG Image?

    Hey,
    I have a Bigger Image, in which I have some number of Images (created it through Fireworks)..
    Now I need a links to all those piece images
    For more info: pls check my actual thread here: http://forums.adobe.com/message/4695100#4695100
    Hoping for quick soln..
    Thanx!

    HI,
    I just did what mentioned in that link, i was able to create an image with links..
    BUT my requirement is quite different:   Iam using Nivo Slider JQuery Plugin in which Iam thinking to place an Images in which it displays some 3 products in each images.. so If I place 3 images, it means it displays 9 products (3 products in each Image).. that means, there should be 3 differnt anchor links in each image and total 9 anchor links for 3 images.
    I guess iam clear.. BUT iam not sure whether this is POSSSIBLE practically or not..
    COuld you please suggest whether this is possible or not..?
    FYI, here is a  jqurey plugin you can get freely: http://nivo.dev7studios.com/
    I will be glad if anyone helps me out in this..
    Thanks!

  • Hoping for a better docking solution for pen

    I was really close to buying a Thinkpad 10, but eventually got the old Thinkpad Tablet 2 instead. One of my primary mobile applications is making annotations on PDFs while reading them, so the pen is really important. At the time the whole device should be light enough to effortlessly carry it on the run. Although the new pen may be better than the good old "toothpick", it just does not fit into the device and may get lost easily. Besides I just hate when things are scattered in pieces. I have also looked for a hard case sleeve with a full size compartment for the pen but have not found any.
    So what I am hoping for is that the new product iteration will either have a version that can house the pen within the device or have a optional lightweight sleeve that can entirely house the pen. The current solution for Tablet and Helix is just clumsy at best.  

    Hi, Audrey,
    quote:
    Before that, though, does anyone have any suggestions for
    working around the CHM search limitations?
    If you can educate your users to add wildcards to their
    search terms, they can find all the words that you provided as
    examples in your message. For example, searching for
    auto* will find
    AutoComments,
    [Auto Release],
    [AutoCap],
    auto-run, and
    [Autocomment].
    See this article for more information:
    http://helpware.net/htmlhelp/hhfindingtext.htm
    Pete

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • How to find out the list of field exists for a particular transaction

    Hi all,
    Can u please help me find out the list of field exits available for a particular Tcode?
    Is it similar to User exit or . . . . ?
    Thanks,
    C.Selvaraj
    SAP-QM

    Create a program and add this code to find user exit
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
      select single * from tadir where pgmid = 'R3TR'
      and object = 'PROG'
      and obj_name = tstc-pgmna.
      move : tadir-devclass to v_devclass.
      if sy-subrc ne 0.
        select single * from trdir where name = tstc-pgmna.
        if trdir-subc eq 'F'.
          select single * from tfdir where pname = tstc-pgmna.
          select single * from enlfdir where funcname =
          tfdir-funcname.
          select single * from tadir where pgmid = 'R3TR'
          and object = 'FUGR'
          and obj_name eq enlfdir-area.
          move : tadir-devclass to v_devclass.
        endif.
      endif.
      select * from tadir into table jtab
      where pgmid = 'R3TR'
      and object = 'SMOD'
      and devclass = v_devclass.
      select single * from tstct where sprsl eq sy-langu and
      tcode eq p_tcode.
      format color col_positive intensified off.
      write:/(19) 'Transaction Code - ',                        "#EC NOTEXT
      20(20) p_tcode,
      45(50) tstct-ttext.
      skip.
      if not jtab[] is initial.
        write:/(95) sy-uline.
        format color col_heading intensified on.
        write:/1 sy-vline,
        2 'Exit Name',                                          "#EC NOTEXT
        21 sy-vline ,
        22 'Description',                                       "#EC NOTEXT
        95 sy-vline.
        write:/(95) sy-uline.
        loop at jtab.
          select single * from modsapt
          where sprsl = sy-langu and
          name = jtab-obj_name.
          format color col_normal intensified off.
          write:/1 sy-vline,
          2 jtab-obj_name hotspot on,
          21 sy-vline ,
          22 modsapt-modtext,
          95 sy-vline.
        endloop.
        write:/(95) sy-uline.
        describe table jtab.
        skip.
        format color col_total intensified on.
        write:/ 'No of Exits:' , sy-tfill.                      "#EC NOTEXT
      else.
        format color col_negative intensified on.
        write:/(95) 'No User Exit exists'.                      "#EC NOTEXT
      endif.
    else.
      format color col_negative intensified on.
      write:/(95) 'Transaction Code Does Not Exist'.            "#EC NOTEXT
    endif.
    at line-selection.
      get cursor field field1.
      check field1(4) eq 'JTAB'.
      set parameter id 'MON' field sy-lisel+1(10).
      call transaction 'SMOD' and skip first screen.
    Rewards if useful........................
    Minal

  • Project Management Wishlist (hoping for software or online solutions)

    hi all.
    i've converted the office to mac over the last two plus years and need to put a second level of organization to bed.
    would anyone mind helping me find other websites and/or suggestions on how to get this finalized? apologies for the length and intricacy of the post but THANKS for any help on this! even just one good lead or recommendation (say for FileMaker or one of the Devon tools could help me get moving forward with it and not have to backtrack).
    i work on PROJECTS that seem to need various kinds of data. some notetaking, imagery, url's. pages documents, pages documents printed to pdf, some pdfs that others created, spreadsheets, various creative files such as CAD, photoshop, indesign etecetera - and of course email and text and phone conversations. i would really ideally love to pull all this together but of course i know this is not realistic.
    i also really need to communicate some of this information with clients and have them communicate back to me, right now this is a terrible mess and extremely unproductive with widely dispersed and duplicated information (at a bare minimum).
    i have finally customized my images in Aperture but still need to organize my pdf's and my videos. i also find Spotlight to be rather unhelpful for some items and in reading up on Devon, one of their tools has a /graphic/ search display that somehow shows linked items and whether they have been "read" or not. this kind of VISUAL ORGANIZATION would be absolutely fantastic [http://www.devontechnologies.com/products/devonagent/overview.html]. i should also add that what i /don't/ want to do is to have to catalog my project file by file and simply DRAGGING and DROPPING files to create a link if my ideal organizational method. tagging items with the GTD tools that i have tested is a non-starter for me and i actually don't even use tags in my Aperture database. i just drag and drop them to an appropriate Project.
    currently an example workflow for my Aperture database is that i POST these images to flickr to let a client see what kind of imagery i am using in their project (but they cannot upload /their/ imagery). nevertheless, this is very convenient because i can simply create an ALBUM in Aperture and drop the (pre-organized) imagery in there and post it to flickr from within the Aperture UI. this is really great but getting this link to a client is a bit of a pain because even flickr Pro uses some silly thing where you have to decide whether the recipient is a "friend" or "family" and ostensibly anyone that gets determined as one or the other can see all the other images in this category. it would be a whole lot better if i could just create an Album for a particular client. of course it would be great to
    in any event -
    in an ideal world (off the top of my head i would like) the ability to create a "Project" in my computer which organizes the following and /also/ allows me to post this to a place where Clients can have a LOGIN and PASSWORD that allows them to both view and UPLOAD information.
    1. bookmarks
    2. pdfs
    3. spreadsheets
    4. contact list
    5. images
    6. other files
    7. a lot that i am forgetting to include here.
    it would also be great to be able to organize PHONE CALLS and TEXTS and EMAILS on my computer so that i can have a record of communication with and FOR this client.
    i would also like to get most or much of this to my iPhone if at all possible!
    Devon for project organization and possibly other needs [http://www.devontechnologies.com]
    FileMaker for project organization [http://www.filemaker.com]
    Campfire for project management [http://campfirenow.com] 
    Papers for academic research [http://www.papersapp.com/papers/]
    Highrise for contact and prospect management [http://highrisehq.com]
    Project Wizard for critical path management [http://www.projectwizards.net/en/merlin/]
    Diigo for online bookmarking [https://www.diigo.com]
    what i use now:
    Notational Velocity (oh so awesome) iphone compatible [http://notational.net]
    Reminders (nice for the location tools but i have not maxed out my use of this tool)
    Contacts (for personal contacts and syncs usually well with my laptop and desktop and iphone. however, managing email addresses in here is a nightmare for a small business)
    Cardscan (for business card contacts. resides currently only on the Mac Pro and i am not sure how to get Cardscan to talk to my other devices)
    Mac Mail (meh)
    Sparrow (cool and quick but somewhat feature light)
    iPhone (yes-sir-eee bob)
    Safari (good at what it does)
    1Password (dig the syning across devices)
    Transmit (nice FTP tool)
    i also work on windows where i do quickbooks and CAD so i am open to software suggestions for windows if there is nothing for the mac (though i suspect i can do much of the above on the mac, even if i cannot corral all of it together).
    THANKS FOR READING and thanks for any constructive input!

    Ipolucci,
    I am a teacher and so I do not have your needs to really understand your requests.
    That said, I would reccomend you FileMaker Pro and Journler ( currently at version 1.1.62, running by Mac OS X 10.3.9 , the version I have and already in versio 2.0.1 for those who have 10.4).
    The first one is a relational commercial DB of an Apple subsidiary, with several template solutions ( probably one will fill your needs ) and the second one is a freeware, that has integration with Mail, Adress Book, Blogs, Photos, Audio recordings, iTunes and more.
    Just in case does not come anyone else with the complete solution, you should consider a free trial of FileMaker Pro (just released the version 8.5) and take a look at Journler.
    Both at <http://www.apple.com/downloads/macosx/>
    Regards,
    Jorge Lucas (the guy from Rio Grande do Sul)

  • Unable to see a column of a table in portal for a particular User

    Hi,
    A particular user is unable to see a particular column of a table in the portal . The application is developed in Webdynpro ABAP. The table contains two columns. Both the columns contain text type fields. What appears to the user is that the left column has disappeared and the right hand column has shifted to the left.
    This is occuring for a particular user only. We have checked in our development and quality systems but we are unable to replicate the issue. Please help.
    Thanks and regards,
    Satya.

    Hi Vikas.
    You can use BAPI in LSMW to craete Material or You can use direct input method. Both methods as follows below:
    Using BAPI in LSMW:
    First maintain IDOC Inbound Processing steps by giving PORT and Partner Type and Partner Numberby clicking 'settings' icon in menu path in LSMW Screen.
    Adn then execute LSMW and maintain the values as below in the first step.
    BusinessObject Method(BAPI)
    Business Object       BUS1001006                      Standard material
    Method                     SAVEDATA                        Create and change materia
    Message Type         MATMAS_BAPI                   Create and change materia
    Basic Type               MATMAS_BAPI03               Create and Change Materia.
    For the selecting of views, you can maintain fields for all views(From Basic view to costing view) in your excel and populate with 'X' in respective fields for activating views.
    In the 6th step (Maintain field mapping and conversion rules). you can map those fields for views which you want to activate since we have all views are in the standard structure.
    Using Direct Input Method:
    Standard Batch/Direct Input
    Object                      0020                                             Material master
    Method                     0000
    Program Name          RMDATIND
    Program Type           D                                                  Direct Input
    For the selecting of views, you can maintain fields for all views(From Basic view to costing view) in your excel and populate with 'X' in respective fields for activating views.
    In the 6th step (Maintain field mapping and conversion rules). you can map those fields for views which you want to activate since we have all views are in the standard structure.

  • Resp Person Tab is not coming in CJ20N for a particular project type

    Hi All,
    I am unaware of the standard SAP screen in CJ20N but we have a screen in CJ20n wherein we can assign a person / link a person this particular tab is not coming at all for a particular project type (Resp Person) rather a different tab (cust enhancement) is coming but our problem is we have a mass program which works on BDC and hence if the required screens are not there it fails.
    Can someone please tell me if there is come config i can check/ maintain for this resp person tab so that it starts coming for all project types.
    Regards
    Anmol Pareek

    Hey Sarang,
    Thanks a lot, it was helpful, one more thing though, In Resp Persons tab there is something called Link Employees and my problem is that i have a mass linking program (using BDC) which cannot work if i dont see that screen in my BDC (without changing BDC). The way you have told is in OPUK/ OPUJ check for proj type and see if person responsible is hidden or not. I dont think that is what i am asking because no matter what this person responsible is hidden, but for certain project types Resp Person tab itself is not coming and that is the problem.
    Regards
    anmol

  • How to get the connected Adapter Object for a particular BDoc Type?

    Hi All,
    I have a scenario in which CRM system is connected to ERP system.
    In SMW01 transaction, I can see one BDoc with BUS_TRANS_MSG as the BDoc Type in CRM.
    Now, how do I get to know if this one BDoc is a SALESDOCUMENT or SALESCONTRACT.
    Is there any way thorough which I can get to know the Adapter Object for this particular BDoc.
    Regards,
    Madhuri

    Hi Madhuri,
               Happy new year.
    In Transaction : R3AC1.
    You can observe the Linked BDOC for the adaptor objects. For example Sales docuemnt and Sales contrcat will have the same linked BDOC as "BUS_TRANS_MSG".
    If you see an error in SMW01, you want to find whether it is salesdocument or contract.
    1. Please take the Queue name from SMW01.
    from the queue name you can find whether it is sales contract or sales document.
    Queue name is customized in tables: SMOFQFIND.
    I hope this helps you.
    regards,
    Sri...

  • How to create a sequence for an particular item in my apex form

    Hi friends,
    I created an database application, of a form with a report, and it is working fine...
    But in my form, i have a requirement....The below are the existing fields in my form
    issue no
    created by
    start date
    status
    priority
    due date
    Among these fields in my form i need to create a 'Sequence' for my field "issue no",
    So that whenever i opened the form the 'issue number' must generate automatically like 1 for the first time, 2 for the second time and so on..
    For that i created a sequence
    CREATE SEQUENCE "ORDERS_SEQ"
    MINVALUE 1
    MAXVALUE 999999999999999999999999999
    INCREMENT BY 1
    START WITH 1000
    NOCACHE
    NOCYCLE;
    But for validation where i need to write the sequence query for the particular item 'issue no'....i dont have any idea of where to write the validation query for the sequence..
    please tell where i need to write in step wise manner..please help me friends...
    As the below is my validated sequence query for item 'issue no'
    'select seq.issue_id.nextval into issue_no'
    This is my above validation query whether the query that i mentioned is right..if not let me know the validation query..
    And also i need where to apply this validation query in steps..
    Thanks in advance
    Regards,
    Harry...

    Harry,
    Rik is on the right track. Here is a sample insert trigger: Would need to substitute you sequence ORDERS_SEQ with my sequence las_log_seq, how you define or use timestamps is up to you.
    DROP TRIGGER LASDEV.BINS1_LAS_LOG_TBL;
    CREATE OR REPLACE TRIGGER LASDEV."BINS1_LAS_LOG_TBL"
       BEFORE INSERT
       ON las_log_tbl
       FOR EACH ROW
    BEGIN
       -- Description: Insert log_seq, creation_dt, creation_id,
       --              lst_updt_dt and lst_updt_id.
       -- Maintenance:
       -- Date        Actor          Action
       -- ====        =====          ======
       -- 07-Sep-2010 J. Wells       Create.
       :new.creation_id := nvl( v( 'app_user' ), user );
       :new.creation_dt := SYSDATE;
       :new.lst_updt_dt := :new.creation_dt;
       :new.lst_updt_id := :new.creation_id;
        SELECT las_log_seq.NEXTVAL
          INTO :new.las_log_seq
          FROM DUAL;
    END bins1_las_log_tbl;
    /Heff

  • PO report for a particular department

    Hi
    We would like to run a report of all PO's of the technical department from 01-01-2007 till now and with their costs and the grand total.
    This report should list:
    -          PO number (only for PM PO's)
    -          Cost centre
    -          Item description
    -          Item amount
    -          Item Ir-l
    -          Vendor
    Is there Any standard report in SAP coming close to this.
    One standard report ME2K provide POs for a particular Cost center . but i want all the cost incurred on a department like material, labour , service, in short all PO by a deprtment ..
    Thanks and Regards..
    Akkshaya

    Hi Akkshaya,
    ME2K should be able to provide most of what you are needing from a PO perspective.  I would also suggest changing the scope of list to ALV (if you have that option) to list the output in a more user friendly format plus you are able to include more additional fields on the output. 
    The point I am not clear about is your explanation around showing all cost.  If that is the case you may want to go through the cost center reporting route.  I would suggest using KSB1.  On this report you have the ability to pull most of what you are needing including PO details.  The report is driven more from the CO side and shows breakdown at the GL level.  You may not get the vendor and invoice details since cost center usually is posted against at the time of GR and not IR (unless you have a variance).
    Hope this helps.

  • Opening and closing balance for Excise duties for a particular plant

    Dear Experts,
                         Please suggest how I can get balance of excise duties for a particular plant at a given date in registers(RG23A & RG23C PartII).
    Thanks
    Lokesh

    Dear Lokesh,
    Just find the Google with "J33_BPP_32_CHEM_EN_IN" you will find the Word document  for standard SAP document
    With all the steps in details

  • Re:Query for Stock Statement for a particular item..!!!!

    Dear SAP Experts,
    I need a stock statement query  for a particular item which contains:
    1.ItemCode
    2.Item Description
    3.Item Price
    4.Opening
    5.Receipts
    6.Issues
    7.Closing
    8. Value
    The selection criteria are:
    1.Warehouse code
    2.Item Name
    3.Posting Date
    Plz give me a good solution for this issue.
    With Regards,
    Revathy

    Check this
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    set @FromDate =
        (Select min(S0.Docdate) from OINM S0 where S0.Docdate >='[%0]')
    set @ToDate =
        (Select max(S1.Docdate) from OINM S1 where S1.Docdate <='[%1]')
    select * from
        SELECT T0.itemcode,
        min(T0.Dscription) as 'Item Description',
        min(B1.ItmsGrpNam) as 'Item Group', W1.Whscode, C1.Location,
        (isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate ),0)-
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate<@FromDate),0)
        ) as [Opening Stock],
        isnull((
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode
            and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate
            and O1.docdate<=@ToDate and O1.inqty>0
            and O1.transtype in (20,18)),0
        ) as [Purchase Quantity],
        isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate
            and O1.outqty>0 and O1.transtype in (21,19)),0
        ) as [Purchase Return Quantity],
       isnull((
            Select sum(isnull(outqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate>=@FromDate and O1.docdate<=@ToDate and O1.outqty>0
            and O1.transtype in (13,15)),0
        ) as [sale Quatity],
        (isnull
            Select sum(isnull(inqty,0))
            from OINM O1
            where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
            and O1.docdate<=@ToDate),0
            isnull((
                Select sum(isnull(outqty,0))
                from OINM O1
                where O1.itemcode=T1.itemcode and O1.Warehouse=W1.Whscode
                and O1.docdate<=@ToDate),0)
        ) as [Closing Stock]
        FROM OINM T0
        INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode
        INNER JOIN OITW T2 ON T1.ItemCode = T2.ItemCode
        INNER JOIN OITB B1 ON T1.ItmsGrpCod=B1.ItmsGrpCod
        INNER JOIN OWHS W1 ON T2.WhsCode = W1.WhsCode
        INNER JOIN OLCT C1 ON W1.Location=C1.Code
        Group by T1.itemcode, T0.Itemcode, W1.WhsCode, C1.Location
    ) a
    where (a.[Opening Stock]
            +a.[Purchase Quantity]
            + a.[Purchase Return Quantity]
            +a.[sale Quatity]+a.[Closing Stock]
           ) !=0
    Regards,
    Bala

  • How to find total recs in a local table for a particular condition

    Hi,
    How to find total recs in a local table for a particular condition?
    Thanks,
    CD

    Well, you may want to try this as well, and compare to the LOOP way.  Not sure what kind of overhead you may get doing this way. Here ITAB is our main internal table, and ITAB_TMP is a copy of it.  Again I think there may be some overhead in doing the copy.  Next, delete out all records which are the reverse of your condition.  Then whatever is left is the rows that you want to count.  Then simply do a LINES operator on the internal table, passing the number of lines to LV_COUNT.
    data: itab type table of ttab.
    data: itab_tmp type table of ttab.
    itab_tmp[] = itab[].
    delete table itab_tmp where fld1 <> 'A'.
    lv_count = lines( itab_tmp ).
    Regards,
    Rich Heilman

Maybe you are looking for

  • Image size and mime type.. non-java guy needs help

    Image size, mime type.. non-java guy needs help Im not at all familiar with java so this is really weird for me to work out. I?ve been doing it all day (and half of yesterday). Im trying to write a custom clodFusion tag in java that gets the width, h

  • How to deactivate an active partition?

    I accidentally made another active partition on another hard drive. How do I deactivate that partition under windows (XP and Vista)? Thanks!

  • Infoset Query Returns Wrong Data

    Hi there exports, I created a infoset query based on 3 DSO's 0PUR_O01 (Purchase Order Items), 0PUR_DS03 (Purchase Order Item Schedule Line) & a Z-DSO (Material Consumption). I need information by PO Number (Item, Material) and the total consumption f

  • Setting up a PHP Dev Environment

    Hello! I am setting up a PHP development environment and following instructions given at http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html#articlecontentAdobe_number edheader_1. All seems to be fine until I try to view my page in 'Live

  • Session Stickness problem on weblogic load balancer

    Hello All I having trouble related to session stickiness for weblogic load balancing, am using httpclusterservlet on a proxy server that forward requests to 3 managed server that are members of the same cluster. I tried to search for a solution to th