How can i remove particular articles in the idoc before generation of idoc

Hi ,
How can i acheive the below screnaios.
Need to know the feasibility  of the following  while  creating  WP_PLU idoc  using  WPMU ; do we have any  BADI or exit to achieve the following  requirement.
Scenario 1:
Based on a switch from a Ztable we donu2019t want  include few articles in the  IDOC.
Example :  For article   1000  I keep an entry  in  the Ztable that send to store = Fales 
Then  article shouldnu2019t be included in the IDOC
Scenario 2:
Based on a count kept in the Ztable  we restrict the number of  articles   included in the  IDOC.
Example :  In the  in the Ztable we keep a count of 4000 articles  then  we limit the number of articles in the IDOC as 4000.
Optionally can the following also possible in the same scenario ?
Exit the process  of creating  idocs  and  abort the process of updating the change pointer tables )
(Means  when we reach 4000 articles we stop creating  the IDOCS also stop updating the change pointer tables so that next day when
WPMU runs  these unprocessed change pointers will get picket again)
Regards
SriHari
Edited by: srihari haranandan on May 23, 2011 12:28 PM

Hi SriHari,
Surely you know them, but I suggest you to read them:
Note 519685 - Conversion of procedure for work list creation
Note 173587 - Settings for the pricing worklist
Note 858555 - WP_PLU IDocs become too large
Other way, is to set a new customer function module (ie: Z_*) for this IDOC using the actual as a template, where you can write your own algorithm with ABAP.
I hope this helps you
Regards.
Eduardo

Similar Messages

  • How can I remove multiple copies of the same song from the iTunes listing?

    How can I remove multiple copies of the same song from the iTunes listing. The program seems to be picking up the same songs from, for example, my user area and my public area in the C drive

    As above, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library, however it is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve/merge ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • HT5622 We have two iphones with the same Apple ID. Since I installed iOS this morning I have started receiving all my sons texts and when I send him a text it is delivered to both of us. How can I remove my phone from the joint Apple ID and remove myself

    My son and I both have iphones with the same Apple ID. Since I installed iOS this morning I have started receiving all my sons texts and when I send him a text it is delivered to both of us. How can I remove my phone from the joint Apple ID and remove myself from finding out what he is up to during Freshers week!

    You have to use a different Apple ID for your son.
    Read this note:
    iOS 5 & iCloud Tips: Sharing an Apple ID With Your Family
    still valid for ios 7

  • How can i remove favourite people from the top of my iPhone !

    how can i remove favourite people from the top of my iPhone !

    Hey donyh1,
    Thanks for the question. You can hide the recent contacts in the multitasking screen by navigating to your Contacts settings:
    Contacts settings - iPhone
    http://help.apple.com/iphone/8/#/iph96b20610
    Thanks,
    Matt M.

  • I'm new to Photoshop Elements and just getting started.  While in the organizer I have one group of photos up to learn with and now it says Edit in Progress with a padlock icon.  How can I remove this so that the photos will be restored to normal?

    I'm new to Photoshop Elements and just getting started.  While in the organizer I have one group of photos up to learn with and now it says Edit in Progress with a padlock icon.  How can I remove this so that the photos will be restored to normal?

    Go back to the editor and close the photo there.

  • How can i remove secure files from the trash? I tried click away the secure notification in info, but still i cann't remove them. Is there a buttoncombination to use?

    How can i remove secure files from the trash? I tried click away the secure notification in info, but still i cann't remove them. Is there a buttoncombination to use?

    If you are unable to empty the trash, try holding the Option key while selecting Empty Trash.
    Otherwise, some steps in the following link may help you.
    http://support.apple.com/kb/ht1526

  • How can I remove Personal Hotspot for the iPad

    How can I remove Personal Hotspot for the iPad, I use apple configurator but I still can NOT do it. any idea?

    I mean hide it, or remove it or delete it. I just don't wanna anyone on my enterprises use it because my data plan gonna be high cost.
    supported by my carrier, I asked my carrier if they can remove it ? they said they can NOT.

  • HT201371 How can I remove touch ID when the handset is turned off?

    How can I remove touch ID when the handset is turned off?

    Off it off. The only thing you can do when the phone is off is turn it on either by plugging it into power or by pressing the power button...
    Please rephrase the question.

  • TS1424 How can I remove. Download from the quere

    I recently have been purchasing a few episodes of the office every couple of days... 26 episodes in the season and by the time I got to 15 episodes it said I only owed 2.00 to get reminder of season. I ordered every episode in standard but when I went to download rest of season it deleted all my standard versions and replaced with hd... Now the hd are too big to fit every episode on my iPad and I just want to get them all in standard... iPad won't let me download in standard until the hd versions complete downloading... Takes bout a hour per episode to download... How can I remove the hd episodes from my queer so I can redownload in sd.

    Did you hold the Command (Apple) key while dragging them off the sidebar? That usually makes them go *poof*.

  • How can I remove all returns within the text?

    I copied and pasted text onto pages from the internet, but the text does not go all the way to the end of the set margins that i have on Pages, instead it goes about halfway or so and begins on a new line. how can i remove all of the spaces between the words so that it runs the full length of the page.
    It blows my mind that i have to resort to seeking help on the apple forums for this problem, it seems like something so simple would be a standard feature when adjusting text on the page. The only thing that could frustrate me more is if it impossible to do on this software, or if it is simple to do and I was too stupid to figure it out. If it is impossible then I'm **** out of luck because the document is just to **** long to sit there for hours and manually delete every single last return.

    Not to preempt your fun of playing with AppleScript, but here's my take on it:
    tell application "Pages"
        tell document 1
            -- Make sure there's no selection
            select insertion point before character 1
            set cc to count characters of body text
            set returnOffsets to (character offset of every character where it is return)
            -- Reverse order, since deletion would alter all subsequent offsets
            repeat with n in reverse of returnOffsets
                if (n > 1) then
                    if n < cc and character (n + 1) is return then
                        -- Treat double returns as a true paragraph break.
                        -- Delete the extra.
                        delete character n
                    else if character (n - 1) ≠ return then
                        -- Change single returns into spaces.
                        set character n to " "
                    end if
                end if
            end repeat
        end tell
    end tell

  • How can you remove old conversations from the iMac. Even when I remove them they return when I start a new conversation with the same person. Only happens on iMac with the Beta iMessage program

    How do you remove an old conversation using  the Beta iMessage on an iMac. When I open a new conversation with the same person the old conversation comes back

    Hi,
    Previously iChat had tried a Last Chat/IM option when using Saved Transcripts - which itself was an option.
    iChat has also tried "Saving" the Last Chat by leaving a Chat window open and using something similar to the Lion method of showing an app in the state is was closed in.
    In Messages the option to Save Transcripts has been removed and Chats or all types are saved as a matter of course.
    What this tends to mean for your iChat style Buddy Chats is that it opens all the Transcripts  for that buddy as a sort of History you can scroll back through if you want  (I have  some Buddies with saved chats gong back to 2004)
    With the Syncing of iMessages with iPhones and iPads (or Touches) then it seems this works slightly differently.
    Although you can delete the chat and the contents of the Chat as separate action it is true that in the Beta as soon as you connect to the same Contact that the contents of the previous chats are shown to you.
    I have found that Messages stores a data base of info on iMessages in Your Home Folder/Library/Messages
    I have found that deleting this chat-db removes the "History" that keep popping up.
    By default the Saved "iChats" are also stored in the Home Folder/Documents/iChats (At least this is the default place iChat used and they go to the same iChats folder where ever you had it)
    Some people claim removing iMessages saved here stops the "History" reappearing.
    In Lion the only access to the Home Folder/Library is via the Finder's Go Menu and hiding down the ALT key
    10:00 PM      Sunday; June 10, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.7.4),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can I remove a device from the iCloud?

    I upgraded my iPad, replacing the old one, the new one does not sync with iCloud Drive, in other words my iPhone 6 used to sync data with the previous iPad.
    I have already checked the iCloud login and made sure iCloud drive is on on both devices and made sure the app in question is also on on both devices.
    I believe the reason is because now my iCloud account shows two iPads, the old and the new one.
    How can I delete the old iPad from my iCloud account?

    After logging into iCloud, you can select devices, and then remove the old device. Have you gone on the old device and disabled iCloud Drive, or signed out of iCloud on the old iPad. That would be the easiest I believe.

  • How can I send an article in the news as a text message?

    I would like to send a article in the news to a friend but not sure on how I can do that. Like how can I send a link to my friend?

    Hello there,
    You can copy and paste the URL and send it via SMS. https://support.mozilla.org/en-US/kb/how-do-i-copy-and-paste-text-android
    For other sharing options follow these steps: https://support.mozilla.org/en-US/kb/how-do-i-share-things-firefox-android
    Hope this helps!

  • How can I remove automatically scratches preserving the other areas of the photo?

    I scanned negatives.  Most of the scanned images show scratches.
    For a given photo, I can easily remove manually all the very small scratches using Filter>Noise>Dust and Scratches>Radius = 1 and Threshold = 0 (Step 1). Then I can easily remove the remaining bigger scratches with the Spot Healing Brush Tool (Step 2).  The only issue is that I have 13 000 photos to fix, and I don't have the time to correct them manually one at a time. 
    I have automated Step 1.  How can I automate Step 2?
    How can I automate Photoshop to scan a photo for scratches and when it find one apply a Spot Healing Brush Tool just on that spot with the required pen size?   
    Any other suggestions are welcome, as long as the quality of the picture is preserved and that the processing is automated.
    Please see pictures attached. 
    This could save me days of work.  Thankyou.
    Environment Information:
    ·  I am running Photoshop 12.1 *64 bit
    ·  Windows 7 Professional 64 bit
    ·  Amount of installed RAM: 6GB
    ·       Scanner:  Canon CanoScan 8800F
    ·  Amount of free disk space:
                C:\ - OS and Software disk - Total size:139GB showing 20GB free
                G:\ - Data disk - Total size:1.81 TB showing 437GB free
    ·  Make/Model of Video Card: NVIDIA GeForce 9600 GT

    Removing the bigger scratches cannot be automated.
    Please do not be angry now - I don't want to offend you:
    It is not reasonable to retouch all the 13000 pictures just now and one after another.
    Not all the pics are of the same inestimable value and you never will need all of them at once for web galleries, a photo show or print.
    And your digital photo frame is patient and is as happy with 25 pics as with 2500.
    Therefore let the pictures sleep peacefully on your hard drive. It's good that you have digitized them and it's enough.
    Someday you will need - say - 40 pictures for a gallery on your website, another day you want to make a gift of 3 pictures to a friend.
    Then the day is come to retouch exactly these 40 or 3 pictures, individually.
    :-) miss_marple

  • How can i remove a LOV from the item on runtime?

    dear firends
    i have a problem
    Ihave a tabular block.
    the item "element_value' could have free writen value or sometimes reistrected values
    if the value in :DETAIL.UVLS_ID is not null then a LOV is attchaed to the item"element_value" on runtime so that user select a avlaue from LOV.
    this code fire on WHEN-NEW-RECORD-INSTANCE
    BEGIN
    :DETAIL.UVLS_ID := RSK_GET_PKG.F_GET_ELM_VLS(P_ELM_ID);
    IF :DETAIL.UVLS_ID IS NOT NULL THEN
    SET_ITEM_PROPERTY('DETAIL.ELEMENT_VALUE',LOV_NAME,'CG$VALUESETDETAIL');
    Else
    -- SET_ITEM_PROPERTY('DETAIL.ELEMENT_VALUE',LOV_NAME,'NULL');
    null;
    END IF;
    END;
    my problem is
    i want to remove the LOV from the item"element_value" incase the
    :DETAIL.UVLS_ID is null.
    how can i do that
    please help
    Edited by: [email protected] on Sep 7, 2008 10:45 AM

    If I understood,
    You can assign a NULL lov to an item
    Set_Item_Property( ..., LOV_NAME, '' ) ;
    or
    IF case-a THEN
    Show_LOV ('A');
    ELSE
    &lt; NO LOV &gt;
    END IF;
    Regards

Maybe you are looking for