Background Process doesn't work

Hi Everybody,
i want to change some data on a database table through a background process but the data will not be changed:
I am working on IDES ECC 6.0 (2005)
                CALL FUNCTION 'MY_BACKGROUNDD_PROCESS'
                  IN BACKGROUND TASK AS SEPARATE UNIT DESTINATION 'NONE'
                  EXPORTING
                CALL FUNCTION 'START_OF_BACKGROUNDTASK'
                     EXPORTING
                          STARTDATE = SY-DATUM
                          STARTTIME = l_time
                     EXCEPTIONS
                          OTHERS    = 1.
                IF sy-subrc = 0.
                  COMMIT WORK.
                ENDIF.
If i call the function without: " IN BACKGROUND TASK AS SEPARATE UNIT DESTINATION 'NONE' " it works fine.
What could be the problem?
regards,
Sid

Hi Julius,
i am new to abap so i am trying to find a solution in SDN. I try it also without 'IN  A SEPERATE UNIT' but without success. Is it necessary to call the function: 'START_OF_BACKGROUNDTASK' after it?
                CALL FUNCTION 'MY_BACKGROUND_PROCESS'
                  IN BACKGROUND TASK DESTINATION 'NONE'
                  EXPORTING
Could you please give me an example how i can call my fuction 'MY_BACKGROUND_PROCESS' as a background task?
Thanks in advance!
Sid

Similar Messages

  • Leave to list-processing doesn't work

    Hi 2 all!
    I have a problem with LEAVE TO LIST-PROCESSING. I have developed a module pool (type M) and screen with the screen painter of type Normal. Now I want to go to the report from my screen with LEAVE TO LIST-PROCESSING, but it doesn't work. I am trying to do this when the button is pressed ( at my application status). The operation is performed but then the Init_screen_xxxx module is called again. Highly appreciate your help.

    Hi Nata
    Yes U can do it.
    We go from module pool program to report program and vice-versa.
    1.  From report to screen (transaction)
           Call transaction
          Leave to list-processing and return to screen
    2.  From screen to list (report)
             we can write a report program for fuction key available in the screen.
              for example.
        case sy-ucomm.
          when 'fctcode'.
           select .......... from tabl   into ..
        write:/.........,
    endcase.
    reward if useful.

  • Outlook 2007 - Automatic processing doesn't work unless logged in

    Hi guys,
    I'm working with an equipment mailbox in an Exchange 2007 / Office 2007 and am having some difficulty getting it to work properly.
    Basically, I've set the equipment mailbox up appropriately and have checked all three of the 'Resource Scheduling' tasks to automatically accept meeting requests and process cancellations as well as to decline conflicting and recurring meeting requests
    As long as I am logged in 'as' the user account of the equipment mailbox (for example, 'PipetteBalance') meeting requests are processed automatically from my own account (and other users)
    However, as soon as I log out of the PipetteBalance account the automation halts until I log back in to it again (and thus connect to Exchange via Outlook)
    I've disabled cached exchange mode and have forced the 'AutoAccept' powershell cmdlet against the mailbox to no avail
    Even adding the mailbox as a shared mailbox doesn't work. I have to log in as the account directly and have an 'active' connection with Exchange for the automation to work
    This is the full list of properties set against the equipment mailbox:
    AutomateProcessing : AutoUpdate
    AllowConflicts : False
    BookingWindowInDays : 180
    MaximumDurationInMinutes : 1440
    AllowRecurringMeetings : True
    EnforceSchedulingHorizon : True
    ScheduleOnlyDuringWorkHours : False
    ConflictPercentageAllowed : 0
    MaximumConflictInstances : 0
    ForwardRequestsToDelegates : True
    DeleteAttachments : True
    DeleteComments : True
    RemovePrivateProperty : True
    DeleteSubject : True
    DisableReminders : True
    AddOrganizerToSubject : True
    DeleteNonCalendarItems : True
    TentativePendingApproval : True
    EnableResponseDetails : True
    OrganizerInfo : True
    ResourceDelegates : {}
    RequestOutOfPolicy : 
    AllRequestOutOfPolicy : False
    BookInPolicy : 
    AllBookInPolicy : True
    RequestInPolicy : 
    AllRequestInPolicy : False
    AddAdditionalResponse : False
    AdditionalResponse : 
    RemoveOldMeetingMessages : True
    AddNewRequestsTentatively : True
    ProcessExternalMeetingMessages : False
    DefaultReminderTime : 15
    RemoveForwardedMeetingNotifications : False
    Is there something I may have overlooked or not set up properly?
    Thanks,
    Adam

    Hi,
    Please try to use Windows Search to search for words or phrases that you expect to find in email messages. In this way, we can determine if Outlook data is being indexed.
    If no results were returned, please try to search other files (not Outlook emails) with Windows Search to check if the Windows search feature is broken. If so, we can try to reinstall the Windows search feature to check if it helps. To do this, please follow:
    1. Go to Control Panel > Programs > Turn Windows features on or off.
    2. Untick "Windows Search".
    3. Press OK and wait until the installer is finished.
    4. Reboot your computer.
    5. Repeat steps 1-3 to enable it again.
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • Page level process doesn't works for tabular form.....

    I am developing an application on inventory of an chemical factory.......
    I have an master-detail form where detail table is in tabular form.......
    I have an LOCATION1 AND QUANTITY1 COLUMN in detail table..........
    I have location say...LT01A02 AND limit of each location to hold an quantity is .....say 1000.
    I wrote an process for these but it doesn't work.......
    declare
    x NUMBER(6);
    z number(6);
    begin
    selecT NVL(SUM(QUANTITY1),0) INTO x from RM_LOCATION1 where LOCATION1 = :P3_LOCATION1;
    z := x;
    if :P3_LOCATION1 LIKE'%1)' or :P3_LOCATION1 LIKE'%2)' then
    if z > 1200 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 1ST OR 2ND PALLETE ,WHICH CAN HAVE MAXIMUM 1200KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%3)' or :P3_LOCATION1 LIKE'%4)' then
    if z > 800 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 3RD OR 4TH PALLETE ,WHICH CAN HAVE MAXIMUM 800KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%5)' or :P3_LOCATION1 LIKE'%6)' then
    if z > 750 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 5TH OR 6TH PALLETE ,WHICH CAN HAVE MAXIMUM 750KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%7)' or :P3_LOCATION1 LIKE'%8)' OR :P3_LOCATION1 LIKE'%9)' or :P3_LOCATION1 LIKE'%10)' OR :P3_LOCATION1 LIKE'%11)' or :P3_LOCATION1 LIKE'%12)' then
    if z > 600 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 7TH OR 8TH OR HIGHER PALLETE ,WHICH CAN HAVE MAXIMUM 600KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    end if;
    end;
    I HAVE SEEN THAT APEX DOESN'T PICKS VALUE CALLED... _:P3_LOCATION1_*
    NOW WHAT TO DO ,CAN ANY ONE HELP ME....HOW TO RUN THESE PROCESS......

    Hi User XY,
    tabular forms do not have Page Items. The values you entered in the tabular form are stored in arrays like APEX_APPLICATION.g_f01 to g_f50.
    Here are some links you might find helpful: http://www.talkapex.com/2008/07/manually-creating-tabular-form.html
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21676/apex_app.htm#CHDICJDA
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

  • JTabbedPane background color doesn't work in Win XP - SP 1 with JRE 1.4.2

    Setting background color for JTabbedPane doesn't
    work in "Windows XP with SP 1" when using JRE 1.4.2.
    For example, following call doesn't set the
    tab to green:
    tabbedPane.setBackgroundAt(0, Color.green);
    It always displays TABS with the white background.
    Is anybody aware of this problem?
    Thanks-in-advance for any help / suggestions!
    Sundar

    Thanks, bbritta and vairavan.
    I tried setOpaque also, but still doesn't work,
    On my system also:
    UIManager.getSystemLookAndFeelClassName() = com.sun.java.swing.plaf.windows.WindowsLookAndFeel
    I have given below the sample code that doesn't display tab color. Please let me know if you suspect something is wrong here, or any suggestions to make this work under Windows XP - Service Pack 1.
    Thanks,
    Sundar
    // CODE STARTS HERE
    import javax.swing.JTabbedPane;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.UIManager;
    import java.awt.*;
    import java.awt.event.*;
    public class TEMP_TABBED_PANE extends JPanel {
    public TEMP_TABBED_PANE() {
    JTabbedPane tabbedPane = new JTabbedPane();
         tabbedPane.setOpaque(true);
    Component panel1 = makeTextPanel("Howdy");
    tabbedPane.addTab("One", panel1);
    tabbedPane.setSelectedIndex(0);
    tabbedPane.setBackgroundAt(0, Color.green);
    Component panel2 = makeTextPanel("Howdy Howdy");
    tabbedPane.addTab("Two", panel2);
    tabbedPane.setBackgroundAt(1, Color.yellow);
    Component panel3 = makeTextPanel("Howdy Howdy Howdy");
    tabbedPane.addTab("Three", panel3);
    tabbedPane.setBackgroundAt(2, Color.red);
    Component panel4 = makeTextPanel("Howdy Howdy Howdy Howdy");
    tabbedPane.addTab("Four", panel4);
    tabbedPane.setBackgroundAt(3, Color.cyan);
    //Add the tabbed pane to this panel.
    setLayout(new GridLayout(1, 1));
    add(tabbedPane);
    protected Component makeTextPanel(String text) {
    JPanel panel = new JPanel(false);
    JLabel filler = new JLabel(text);
    filler.setHorizontalAlignment(JLabel.CENTER);
    panel.setLayout(new GridLayout(1, 1));
    panel.add(filler);
    //panel.setOpaque(true); <<-- UNCOMMENTING THIS ALSO DOESN'T HELP :(
    return panel;
    public static void main(String[] args) {
    JFrame frame = new JFrame("Tabbed Pane Demo for Color");
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    // UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
    JOptionPane.showMessageDialog(frame,
              "UIManager.getSystemLookAndFeelClassName() = " +
              UIManager.getSystemLookAndFeelClassName(),
              "Look And Feel",
              JOptionPane.INFORMATION_MESSAGE);
    catch(Exception e) {
    e.printStackTrace();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}
    frame.getContentPane().add(new TEMP_TABBED_PANE(),
    BorderLayout.CENTER);
    frame.setSize(400, 125);
    frame.setVisible(true);
    // CODE ENDS HERE

  • Update process doesn't work

    Hello all,
    I created the following PLSQL Trigger but it doesn't work as it should.
    If there is a change in the colomn "stunden" in table cn_pl_std_peplanung, the trigger should write the attributes (pl_id, l_art_id, pe_id, idee_id, abt_id, version_id) from cn_pl_std_peplanung into the table cn_pl_aenderungen.
    The problem is that this trigger doesn't just write the row where attribute "stunden" was changed into cn_pl_aenderungen, it writes all rows into cn_pl_aenderungen where the attributes (pl_id, l_art_id, pe_id, idee_id, abt_id, version_id) are matched. I just need the row where attribute "stunden" was changed. cn_pl_aenderungen is a table to log the changes made on cn_pl_peplanung.
    I hope you understood the problem... :-)
    create or replace trigger "CN_PL_STD_PEPLANUNG_T1"
    AFTER
    insert or update on "CN_PL_STD_PEPLANUNG"
    for each row
    DECLARE
    pragma autonomous_transaction;
    cursor c_peplanung(in_stunden number)
       is select pl_id, l_art_id, pe_id, idee_id, abt_id, version_id, stunden FROM cn_pl_std_peplanung
       WHERE stunden = in_stunden;
    rec_plan c_peplanung%rowtype;
    BEGIN
    OPEN c_peplanung (:old.stunden);
    LOOP
    FETCH c_peplanung INTO rec_plan;
    exit when c_peplanung%NOTFOUND OR c_peplanung%NOTFOUNd is Null;
    IF rec_plan.stunden != :new.stunden THEN
    INSERT INTO CN_PL_AENDERUNGEN (l_art_id, pe_id, idee_id, version_id, benutzer, datum)
    VALUES
    (rec_plan.l_art_id, rec_plan.pe_id, rec_plan.idee_id, rec_plan.version_id, v('APP_USER'), sysdate);
    COMMIT;
    END IF;
    END LOOP;
    CLOSE c_peplanung;
    END;

    All you need is just this
    CREATE OR REPLACE TRIGGER CN_PL_STD_PEPLANUNG_T1 AFTER INSERT OR UPDATE ON CN_PL_STD_PEPLANUNG FOR EACH ROW
    BEGIN
         IF :NEW.student != :OLD.student
         THEN
              INSERT INTO CN_PL_AENDERUNGEN (l_art_id, pe_id, idee_id, version_id, benutzer, datum)
                   VALUES (:NEW.l_art_id, :NEW.pe_id, :NEW.idee_id, :NEW.version_id, v('APP_USER'), sysdate);
         END IF;
    END;Don't use ATONOMOUS_TRANSACTION. You dont want to log if nothing happens to the Main table right? Think what happens if the main transaction rolls back.
    Note: Code not tested.

  • On load process doesn't work

    I have translated my application. The process that are On load before header doesn't execute. My application is translated from fr-ca to en-us.
    Any idea ?

    My process is a PL/SQL process with firing point : On load : Before Header.
    Here is the process :
    --Procédure permettant de copier le contenu de la table ass_groupe_usager dans la table de travail copy_travail où le PEIN correspond au PEIN sélectionné.
    --Dernière modification : 27 mars 2006
    for curseur IN (select asso_groupe_usager.CODE_GROUPE, asso_groupe_usager.PEIN from asso_groupe_usager where PEIN = :TB_PEIN_2) LOOP
    insert into COPY_TRAVAIL(CODE_GROUPE, PEIN, PEIN_CREATION)
    VALUES(curseur.CODE_GROUPE, curseur.PEIN, :USAGER_ACTIF);
    END LOOP;
    commit;
    I do not have conditions, build option or authorization scheme.
    This process only fill a work table.
    I can not put it on the web.. sorry..
    Chantale

  • Background encoding doesn't work

    hello, I'm a macbook pro 15' user and I just got into burning dvds with iDVD.
    What I've noticed is that it takes **** of a time to burn it because of the encoding.
    So I searched the internet and realized I can encode in the background while I work on my project.
    The problem is, my preference was already set for a background encoding, but apparently, iDVD wasn't doing it.
    I tried deselecting and selecting the checkbox again in the preference settings, but no difference.
    I just can't imagine burning another dvd again without encoding it beforehand, because last time it took me about 2hours or more.
    The content of dvd was three .avi files, just in case it matters.
    Please, help me.
    p.s. the actual burning time didn't take long, but the encoding part took forever.

    Even with the quality set to "Best performance" and background encoding on, iDVD still goes through the encoding process on assets imported into the project when I burn. The project info window tells me that background encoding of these assets is complete, so why should iDVD have to go through this process when burning (or creating a disk image)?
    I realize that the menus aren't encoded in the background - so they will be encoded at burn time - but the movies that have been encoded in the background should be ready to go, right?
    Why is iDVD going through the encoding process despite having "completed" it in the background? Or am I misunderstanding what iDVD is encoding in the background?
    ...I've only used iDVD on three computers: a power mac G5, Powerbook G4 Titanium, and MacBook Pro C2Duo, but I've always had this issue. Background encoding happens but never seems to be actually used.

  • BPM Studio 11g: New Process doesn't work

    Hi,
    Just downloaded JDeveloper 11.1.1.3 and extension "Oracle BPM Studio 11g".
    I created a BPM application, a BPM project and in this project a try to make a new Process, but after new > BPM Tier > Process, nothing happens.
    Am I missing something?
    Thanks,
    HJH

    After installing the extension "Oracle SOA Composite Editor" extension it works...
    I can create processes now.
    Groeten,
    HJH

  • Approval Process doesn't work correctly

    Hi,
    I developed custom request template for self-request provisioning for resource with child table data. Also I deployed custom Request Dataset only with child attribute field definition for this resource:
    <request-data-set
    xmlns = "http://www.oracle.com/schema/oim/request"
    xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation = "http://www.oracle.com/schema/oim/request"
    name = "ProvisionResourceHP"
    entity = "HP"
    operation = "PROVISION">
    <AttributeReference
    available-in-bulk = "true"
    length = "100"
    widget = "text"
    type = "String"
    attr-ref = "UD_HP_ROLES"
    name = "Roles">
         <AttributeReference
         lookup-code = "Lookup.HP.AppRoleList"
    available-in-bulk = "true"
    required = "false"
         length = "100"
    widget = "lookup"
         type = "String"
         attr-ref = "AppRole"
         name = "AppRole"
              primary="true"/>
    </AttributeReference>
    </request-data-set>
    When this request approved by all participants of the approval process, Resource do not in provisioned status! In the resource history only - System Validation status Pending!!!

    I resolved this issue but not complitly. I checked Auto Save Form check box on Process Form and its worked.
    But I do not need Auto Save, because on child table attrubute i don't have any prepop adapter so it always been unpopulated during direct provisioning....
    How to solve this new issue???

  • Process doesn't work

    Hi Experts,
                I created a PC, which loads  records from APO into an ODS and from the ODS to IC1.and IC1 to IC2.
    When i schedule the pc, it works fine till activation of ODS but upon looking at RSMO, it throws a error in the details tab under Extraction ( For load from ODS to IC1) the error msg reads Error occured in data selection and the error says "Delta update for ODS is invalidated- Error in source system". 
    Iam doing just full upadte in the process chain for all the loads.
    Any help??
    Thanks
    Dave
    Message was edited by: Dave Marcus

    Hi Dave,
      Pls. refer to the earlier posted forum. This may be helpful for ya..
    Delta load from ODS to Cube
    You may also look into
    Delta Update from ODS is invalidated
    this has been mentioned in the previous forum link .
    Hope this helps...
    Thanks,
    Raj

  • Istat Pro "Processes" doesn't work since upgrade to OS X 10.8.2

    Ever since I upgraded the OS to 10.8, the istat Pro widget on the dashboard doesn't list anything but a stack of empty white squares under "Processes". Is this a known bug?

    Thanks CT! Here are the steps from the macrumors.com link:
    Steps:
    1. Locate your widget, it will be under /Library/Widgets or ~/Library/Widgets
    2. Right click it and select: "Show Package Contents"
    3. Open Wide.js or Tall.js file in some editor (Wide is for horizontal view, Tall for vertical)
    4. Locate the line
    Quote: 
    WideSkinController.prototype.updateProcesses = function(){
    var _self = this;
    var exclude = "";
    if(p.v("processes_excludewidgets") == 'on')
    exclude = " grep -v DashboardClient | "; if(p.v("processes_sort_mode") == 'cpu')
    widget.system('ps -arcwwwxo "pid %cpu command" | egrep "PID|$1" | grep -v grep | ' + exclude + ' head -7 | tail -6 | awk \'{print "<pid>"$1"</pid><cpu>"$2"</cpu><name>"$3,$4,$5"</name></item>"}\'', function(data){ _self.updateProcessesOut(data);});
    else
    widget.system('ps -amcwwwxo "pid rss command" | egrep "PID|$1" | grep -v grep | ' + exclude + ' head -7 | tail -6 | awk \'{print "<pid>"$1"</pid><cpu>"$2"</cpu><name>"$3,$4,$5"</name></item>"}\'', function(data){ _self.updateProcessesOut(data);});
    Change "PID|$1" to "PID| $1" (Add space before $ sign)
    5. Save the changes
    6. remove widget and re-add it Dashboard, and it should be fixed

  • Title Background Transparency Doesn't Work

    Hello,
    I can't get the title background transparency to work. I'm running Premiere CS6 6.04. Clicking on the background button does nothing. Sometimes, I can randomly change the background settings to get it to become transparent, but that is not working now. Very frustrating.

    This is me setting up a title. The cursor is on the spot on the timeline that has a red christmas background. Everything appears normal.
    When I close this window, and move the title onto the timeline this happens. I haven't touched anything else (including the cursor location)

  • LR Enfuse Problem - Batch Processing Doesn't work

    Hi,
    I'm relativley new to Lightroom - and am trying to learn about Enfusing multiple different exposures.
    I've followed all the instructions to the letter, and I'm able to enfuse great looking shots if I do them 1 group at a time. However, I've taken heaps of bracketed shots, and want to 'Batch Process' them.
    LR/Enfuse appears to have the functionality, and plenty of people online seem to be able to make it work. But even when I stack each bracketed shot, and select all. It still comes up with the error message below:
    "No Stacks
    No Stacks containing selected photos were found.  If you are trying to blend the selected images then please turn off the batch mode option."
    Any ideas? I'm using Lightroom 5.2
    Cheers, Thomas

    Hi,
    I am not sure what operating system you are using, I don't have any problems with Win 7 x64, but if you are using Apple OS there may be issues with permissions on the folders you are using e.g. the folder for temporary files.
    You may also want to look at his tutorial http://digital-photography-school.com/save-time-with-batch-exposure-blending but disregard the Auto Stacking explained as it is difficult to get it to work.
    I am not sure but it looks as though the stacks in the image you posted are expanded. Make sure the individual stacks are collapsed.
    Apart from that I just don't know as it works fine for me.

  • Email process doesn't work

    Hello,
    I have procedure in my application that must send emails, but it is not working. So I tried to send a normal email from application using this block
    "DECLARE
    l_body CLOB;
    BEGIN
    l_body := 'Thank you for your interest in the APEX_MAIL
    package.'||utl_tcp.crlf||utl_tcp.crlf;
    l_body := l_body ||' Sincerely,'||utl_tcp.crlf;
    l_body := l_body ||' The APEX Dev Team'||utl_tcp.crlf;
    apex_mail.send(
    p_to => 'my_email', -- change to your email address
    p_from => 'Another_email', -- change to a real senders email address
    p_body => l_body,
    p_subj => 'APEX_MAIL Package - Plain Text message');
    END;"
    But this is also not working, am I missing something? Knowing that I am working in a local network.
    Thanks!

    Is this the way that you have it setup??
    DECLARE
    l_body CLOB;
    BEGIN
    l_body := 'Thank you for your interest in the APEX_MAIL
    package.'||utl_tcp.crlf||utl_tcp.crlf;
    l_body := l_body ||' Sincerely,'||utl_tcp.crlf;
    l_body := l_body ||' The APEX Dev Team'||utl_tcp.crlf;
    apex_mail.send(
    p_to => 'my_email', -- change to your email address
    Is this e-mail address correct??
    p_from => 'Another_email', -- change to a real senders email address
    Same question here?
    p_body => l_body,
    p_subj => 'APEX_MAIL Package - Plain Text message');
    END;Simple question, do you have APEX configured with an E-Mail server??
    Thank you,
    Tony Miller
    Ruckersville, VA

Maybe you are looking for

  • HP5502 Can't scan to computer

    Have seen previous solutions which appear easy enough. However, I dont have printer icon to click on! Suggestions please.

  • Dreamweaver CS6 keeps freezing when clicking on "live" or "design"

    My dreamweaver cs6 keeps freezing. I posted a screenshot: https://www.dropbox.com/s/vf3i6njgpwy53x3/site.png I have updated all adobe software so it's the latest build.. My computer is working fine, the only thing that crashes is DW. Help?

  • Pack and Unpack in HU

    Hi MM Gurus, I have a requirement of packing one HU of say 5EA Qty and Unpack in two HUs say 4EA & 1EA.Is this scenario is  possible in Handling Unit Management. If possible please explain. Regards, Manikyappa

  • Re: Roles of  ABAPER in implementation project

    HI experts, What s the Roles of  ABAPER in implementation project?and responsibilities in support project?

  • Java Review Program for Perforce

    Hi, I have a problem with a program that integrates with Perforce. (The sources for the program can be found under: http://public.perforce.com/public/perforce/utils/reviewd/reviewer/index.html ) I tried to contact the developer of the program but the