My database insertion doesn`t quite work

I have a ALV table in a WwbDynpro component.
I have a ON_DATA_CHECK event handler for my INTERFACECONTROLLER.
I`m trying to insert a new row in the table. Even if it gets to the succes message when I check the database table is does have a new row but it`s empty!
Does somebody know why?
Regards,
         Ilinca

method ON_DATA_CHECK .
  DATA: node_angajati TYPE REF TO if_wd_context_node,
        elem_node_angajati TYPE REF TO if_wd_context_element,
        lt_angajati TYPE wd_this->elements_angajati,
        cod_angajati TYPE wd_this->element_angajati-cod_angajat,
       .......declaration for each attribute in node angajati
        data_nasteree TYPE wd_this->element_angajati-data_nastere.
   node_angajati = wd_context->get_child_node( name = wd_this->wdctx_angajati ).
node_angajati->get_static_attributes_table( IMPORTING table = lt_angajati ).
DATA: itab              TYPE STANDARD TABLE OF zangajati,
           itab_angajati LIKE LINE OF itab.
itab_angajati-cod_angajat = cod_angajati.
itab_angajati-nume = numee.
itab_angajati-email = emaill.
itab_angajati-data_nastere = data_nasteree.
INSERT itab_angajati INTO TABLE itab.
INSERT zangajati FROM TABLE itab ACCEPTING DUPLICATE KEYS.
COMMIT WORK.
message_text = 'Data was successfully saved.'.

Similar Messages

  • Import offline database objects doesn't always work

    import offline database objects doesn't work when database table to import has a Date column with a default value NULL.
    Return message:
    An error was encountered:
    table.column
    table.column Datatype DATE "NULL"
    Invalid default value expression : NULL expected a Date or Timestamp expression.
    JDev 10.1.3

    Any ETA on when this will be fixed? We work with the Siebel CRM products and the underlying data model is full of DATE fields whose default value is NULL. As a result, there are very few tables which can be imported for diagramming.
    Thanks,
    Jason

  • Using ALT key in list view doesn't quite work like it used to...

    I haven't used this feature since OS9 so please excuse my ignorance!
    In OS9 when viewing files in Finder in List view, one used to be able to open subfolders by holding down the ALT key while clicking the folder triangle. Close the main folder and ALT-clicking open again would open a second level of subfolders et cetera.
    However, in OS X it appears that ALT-clicking a folder's triangle now opens ALL subfolders in one go (which can hold up the Finder quite a bit if you have a lot of stuff), and ALT-clicking the folder's triangle to CLOSE the folder doesn't close all the subfolders in one go (they are all open within the main folder).

    A faster way, which works for me when I have logged out, is to log in, get the Discussions home page and then hit reload, which takes me to the thread I was looking for.
    Hope this works for you,the alternative is to keep logged-in in your browser and avoid all this.

  • Bootcamp image automated backup almost completed, but doesn't quite work.

    Hi. Long story short -
    Trying to create backup image of bootcamp partition onto external HDD. Using winclone perl script and automatically creating and replacing relevant backup folders depending on times of previous backups. I have set up root user. I have edited sudo visudo so I am not prompted for password while running perl script and everything works…. almost.
    The ‘run the script’ section within the applescript takes 20-30 minutes to run. Later on the Finder move action takes about 10-15 minutes to run which is why I have inserted the timeout statement to avoid Finder timing out while waiting for the move to finish.
    The disk ‘Otherstuff’ exists. The folder within it called Backups exists and the 3 folders within that folder called WindowsMonthlyBackups, WindowsWeeklyBackups and WindowsDailyBackups all exist. Macintosh HD:Users:leeandnessahome:Documents:windowsbackup exists.
    The delete and recreate works fine. Check that Bootcamp and Otherstuff exist works fine. The perl script works fine. The Windows.sparsebundle plus 3 other files are successfully created in the folder Macintosh HD:Users:leeandnessahome:Documents:windowsbackup:backup but then it falls apart. In the example Event Log below you can see that the applescript started checking for the date of the ‘size’ file if it exists and just decided to stop for no reason. I left t for an hour after it stopped but it was just hung. 4 hours later I ran it and it worked fine. On this occasion there was no need to copy files because Daily, Weekly and Monthly backups were up to date. Sometimes it runs through this section successfully and instead stops in the middle of renaming the folders section later on.
    If I cut out the delete and recreate section (except the property line) and cut out the perl section, and ensure that the relevant files are already located in Macintosh HD:Users:leeandnessahome:Documents:windowsbackup:backup and ensure that a backup is required everything works fine including the copying!
    I’m so close and so frustrated. What is wrong please?
    Here is the Applescript (sorry don't know how to present it nicely)
    --DELETE AND RECREATE BACKUP FOLDER
    property backup_folder : "Macintosh HD:Users:leeandnessahome:Documents:windowsbackup:backup"
    ignoring application responses
    tell application "Finder"
    delete folder backup_folder
    make new folder at folder "windowsbackup" of folder "Documents" of home with properties {name:"backup"}
    end tell
    end ignoring
    -- CHECK THAT BOOTCAMP AND Otherstuff BOTH EXIST
    tell application "Finder"
    if (exists disk "BOOTCAMP") and (exists disk "Otherstuff") then
    set the run_message to true
    else
    set the run_message to false
    end if
    end tell
    -- RUN THE SCRIPT
    if run_message is true then
    set return_message to do shell script "sudo perl /Applications/Winclone.app/Contents/Resources/winclone.perl -image_dir=/Users/leeandnessahome/Documents/windowsbackup/backup -ntfstools_dir=/Library/NTFSProgs -create -q -remove_pagefile -image_format=diskimage -diskimagetype=sparse"
    end if
    -- FIND TYPE OF BACKUP
    set backup_type to "none"
    if run_message is true then
    tell application "Finder"
    if backup_type is "none" then
    set test_type to "Monthly"
    set test_time to 30
    if exists file "size" of folder (test_type & "1") of folder ("Windows" & test_type & "Backups") of disk "Otherstuff" then
    set the Date_mod to modification date of file "size" of folder (test_type & "1") of folder ("Windows" & test_type & "Backups") of disk "Otherstuff"
    if Date_mod > ((current date) - test_time) then set backup_type to test_type
    else
    set backup_type to test_type
    end if
    end if
    if backup_type is "none" then
    set test_type to "Weekly"
    set test_time to 7
    if exists file "size" of folder (test_type & "1") of folder ("Windows" & test_type & "Backups") of disk "Otherstuff" then
    set the Date_mod to modification date of file "size" of folder (test_type & "1") of folder ("Windows" & test_type & "Backups") of disk "Otherstuff"
    if Date_mod > ((current date) - test_time) then set backup_type to test_type
    else
    set backup_type to test_type
    end if
    end if
    if backup_type is "none" then
    set test_type to "Daily"
    set test_time to 1
    if exists file "size" of folder (test_type & "1") of folder ("Windows" & test_type & "Backups") of disk "Otherstuff" then
    set the Date_mod to modification date of file "size" of folder (test_type & "1") of folder ("Windows" & test_type & "Backups") of disk "Otherstuff"
    if Date_mod > ((current date) - test_time) then set backup_type to test_type
    else
    set backup_type to test_type
    end if
    end if
    end tell
    end if
    -- MOVE BACKUP FOLDERS AND CREATE NEW BACKUP FOLDER
    if backup_type is "none" then
    beep
    else
    tell application "Finder"
    with timeout of (50 * 60) seconds
    if exists folder (backup_type & "5") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" then delete folder (backup_type & "5") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff"
    delay 10
    if exists folder (backup_type & "4") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" then set name of folder (backup_type & "4") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" to (backup_type & "5")
    delay 10
    if exists folder (backup_type & "3") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" then set name of folder (backup_type & "3") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" to (backup_type & "4")
    delay 10
    if exists folder (backup_type & "2") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" then set name of folder (backup_type & "2") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" to (backup_type & "3")
    delay 10
    if exists folder (backup_type & "1") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" then set name of folder (backup_type & "1") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" to (backup_type & "2")
    delay 10
    make new folder at folder ("Windows" & backup_type & "Backups") of disk "Otherstuff" with properties {name:backup_type & "1"}
    delay 10
    copy every item in folder backup_folder to folder (backup_type & "1") of folder ("Windows" & backup_type & "Backups") of disk "Otherstuff"
    end timeout
    end tell
    end if
    Here is Event Log 1 - it just stopped after establishing that file called 'size' exists. It was then supposed to get the modification date but instead just hung!
    tell application "Finder"
    delete folder "Macintosh HD:Users:leeandnessahome:Documents:windowsbackup:backup"
    current application
    make new folder at folder "windowsbackup" of folder "Documents" of home with properties {name:"backup"}
    current application
    exists disk "BOOTCAMP"
    true
    exists disk "Otherstuff"
    true
    end tell
    tell current application
    do shell script "sudo perl /Applications/Winclone.app/Contents/Resources/winclone.perl -image_dir=/Users/leeandnessahome/Documents/windowsbackup/backup -ntfstools_dir=/Library/NTFSProgs -create -q -remove_pagefile -image_format=diskimage -diskimagetype=sparse"
    "current size is 129321926656
    partition id is 0x07
    partition format is NTFS
    diskimagetype is sparse
    image path is /Users/leeandnessahome/Documents/windowsbackup/backup/WindowsImage device is /dev/disk2
    cleaning up: Mounting Disk
    Volume BOOTCAMP on /dev/disk0s3 mounted"
    end tell
    tell application "Finder"
    exists file "size" of folder "Monthly1" of folder "WindowsMonthlyBackups" of disk "Otherstuff"
    true
    get modification date of file "size" of folder "Monthly1" of folder "WindowsMonthlyBackups" of disk "Otherstuff"
    date "Wednesday, September 15, 2010 18:52:00"
    current date
    date "Friday, September 17, 2010 17:53:50"
    exists file "size" of folder "Weekly1" of folder "WindowsWeeklyBackups" of disk "Otherstuff"
    true
    Here is Event Log 2 - 4 hours later, no problems
    tell application "Finder"
    delete folder "Macintosh HD:Users:leeandnessahome:Documents:windowsbackup:backup"
    current application
    make new folder at folder "windowsbackup" of folder "Documents" of home with properties {name:"backup"}
    current application
    exists disk "BOOTCAMP"
    true
    exists disk "Otherstuff"
    true
    end tell
    tell current application
    do shell script "sudo perl /Applications/Winclone.app/Contents/Resources/winclone.perl -image_dir=/Users/leeandnessahome/Documents/windowsbackup/backup -ntfstools_dir=/Library/NTFSProgs -create -q -remove_pagefile -image_format=diskimage -diskimagetype=sparse"
    "current size is 129321926656
    partition id is 0x07
    partition format is NTFS
    diskimagetype is sparse
    image path is /Users/leeandnessahome/Documents/windowsbackup/backup/WindowsImage device is /dev/disk2
    cleaning up: Mounting Disk
    Volume BOOTCAMP on /dev/disk0s3 mounted"
    end tell
    tell application "Finder"
    exists file "size" of folder "Monthly1" of folder "WindowsMonthlyBackups" of disk "Otherstuff"
    true
    get modification date of file "size" of folder "Monthly1" of folder "WindowsMonthlyBackups" of disk "Otherstuff"
    date "Wednesday, September 15, 2010 18:52:00"
    current date
    date "Friday, September 17, 2010 21:38:44"
    exists file "size" of folder "Weekly1" of folder "WindowsWeeklyBackups" of disk "Otherstuff"
    true
    get modification date of file "size" of folder "Weekly1" of folder "WindowsWeeklyBackups" of disk "Otherstuff"
    date "Thursday, September 16, 2010 17:52:08"
    current date
    date "Friday, September 17, 2010 21:38:44"
    exists file "size" of folder "Daily1" of folder "WindowsDailyBackups" of disk "Otherstuff"
    true
    get modification date of file "size" of folder "Daily1" of folder "WindowsDailyBackups" of disk "Otherstuff"
    date "Thursday, September 16, 2010 22:26:45"
    current date
    date "Friday, September 17, 2010 21:38:45"
    end tell
    tell current application
    beep
    end tell

    Yes. Still the same problem.
    Thanks,
    Lewis

  • Sleep tip doesn't quite work

    The hot tip on the web page today says you can put the Mac to sleep just by pressing Command Option Eject.
    I try this, and the computer does indeed go to sleep, but then it wakes up again a few seconds later. I've tried varying the length of time I hold down the keys, and that doesn't make any difference.

    Has anyone been able to put the MacBook to sleep for the purpose of changing batteries and NOT shutting the computer down? This idea for doing this is when you are in a presentation environment in which you have spare batteries, but no power wall outlet.
    I can do this on my Dell D600, but not on my Macbook. No biggie, but it would be nice.

  • Solo button doesn't quite work

    Sometimes I have the problem when I hit the solo button on a track I can hear audio from that track AND another track too! I've checked that the two tracks are on their own distinct audio tracks (ie audio track 3 and audio track 11). I'm not sure what is going on. Anyone have any ideas?

    Well, the lead guitar is on audio track 13, and the lead vocal is on audio track 11. I actually went to the environment window on this song and added an audio track 256. Then I option clicked the solo button on the lead guitar track and the slash symbol did not go away. So I added a new audio track to the arrangement. This was audio track 14 and the slash symbol still didn't go away. However, it gets weirder. While soloing all sorts of tracks I noticed that the lead vocal and guitar both always play along with the track which I'm soloing! I can actually mute the lead guitar and vocal and they will finally stop playing. I was hoping to understand this situation though. I feel there is something fundamental about Logic that I'm missing. By the way, the song was imported from Logic 7. I wonder if that has something to do with it? Thanks for your help!

  • I am trying to simulate the robot voice synthesizer sound that is produced by that electronic voice simulator after someone as had their voice box removed.   The vocal transformer insert in Logic Pro doesn't quite do it.   Suggestions?

    I am trying to simulate the robot voice synthesizer sound that is produced by that electronic voice simulator after someone as had their voice box removed.   The vocal transformer insert in Logic Pro doesn't quite do it.   Any Suggestions?

    Try one of the Audio Voice Effects like Alien / Cosmic / Robot… etc. to start with…
    Adjust the Settings in the Inspector to your liking…

  • After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells

    After Photoshop Elements quit working for the second time in three months, I uninstalled it and now cannot get it to reinstall from the disc. Nothing happens when I insert the disc. All I can do is look at the folders and files and see nothing that tells me how to start the installation. Clicking "open with Auto play" gives me irrelevant options, view photos, share, etc. I'm running Windows 8. This program has worked, although buggy, for the past year.

    reinstall by clicking setup on your disk or downloading and installing,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Redemption code from the photoshop elements 12 box insert doesn't work

    Just bought PS Elements 12 at BestBuy. The redemption code  specified at insert doesn't work. What should I do know? Help...

    Hi,
    You can try:
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    Serial number, Redemption, and Product codes | Student & Teacher Editions

  • Acrobat 8 Pro quit working and I tried to reinstall and that doesn't work. [was:Question]

    My Acrobat 8 Pro quit working and I tried to reinstall and that doesn't work either. HELP

    Hi SwanArch,
    Please specify the OS along with the error message.
    Regards,
    Romit Sinha

  • Mail doesn't quit, clock frozen and spotlight not working. HP printer

    After i installed the snow leopard the mail program doesn't quit and i have to force quit every time,
    After startup the clock on the right upper corner stays on the same time i start the computer until i restart again and still has the time frozen of the last restart
    Command key and space bar don't bring up the spotlight and if i move the cursor to the icon on the right upper it starts thinking
    The HP c3100 dosen't scan not manually nor auto, it says the printer is not recognizable to scan and i cant print with the icon on top i have to go to the file menu and print manually

    Did you repair permissions on the hard drive after upgrading? How full is the hard drive? Did you use an original Apple disk for the upgrade?

  • The sound quit working on my iPhone 4s.... any suggestions? I can't play music, my alarm doesn't work, no sounds work!!!!!! Ugh it is less than 2 months old!!!

    Does anyone have any suggestions about this problem? I can't believe that my phone is less than 2 months old and it already quit working.... I do not have it on mute, I tried plugging the ear jacks in and out. I have not dropped it, no moisture, and etc

    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as new device.
    If you've been through ALL of these steps and you still have problems, then you'll need to bring your phone into Apple for evaluation.

  • Email from within iPhoto '08 (7.1.1) quit working

    I am running Leopard (10.5.1) and iPhoto '08 (7.1.1) on a 2.4ghz 17" MBP. Whenever I try to email a photo from within iPhoto it pops up a window to let me choose size & options, I hit the Compose button, it will then popup a window saying that it is Preparing photos for email... then that window just goes away and it never creates the new email. I see this same behavior regardless of whether or not Mail is already open and regardless of what photo I am trying to email. This was working fine in the past... believe that it quit working after the upgrade to 10.5.1 (but not absolutely positive of that)... Any troubleshooting ideas would be greatly appreciated as I use this feature quite often.
    Cheers!
    Kirk

    Kirk:
    Try deleting the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder. Next, if needed, download and run BatChmod on the iPhoto Library folder with the settings shown here, putting your administrator login name, long or short, in the owner and group sections. You can either type in the path to the folder or just drag the folder into that field.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Doesn't NVL work with Assosiative array elements

    Doesn't NVL work with Assosiative arrays? When i tried to UPDATE empdtls table with the values stored
    in v_ename array, i got no_data_found error because
    the query, select ename bulk collect into v_ename.....returns only 5 rows and v_ename(6) was null. So i tried NVL and COALESCE for v_ename(6). I couldn't succeed.
    Any workarounds?
    create table empdtls
    (ename1 varchar2(30),
    ename2 varchar2(30),
    ename3 varchar2(30),
    ename4 varchar2(30),
    ename5 varchar2(30),
    ename6 varchar2(30),
    location varchar2(30));
    SQL> insert into empdtls(location) values ('NY');
    1 row created.
    SQL> commit;
    declare
    type ename_arraytyp is table of varchar2(100) index by binary_integer;
    v_ename ename_arraytyp;
    begin
    select ename bulk collect into v_ename from emp where sal>2900;
    dbms_output.put_line(v_ename(1));
    dbms_output.put_line(v_ename(2));
    dbms_output.put_line(v_ename(3));
    update empdtls
               set ename1=v_ename(1),
                   ename2=v_ename(2),
                   ename3=v_ename(3),
                   ename4=v_ename(4),
                   ename5=v_ename(5),
                   ename6=NVL(v_ename(6),'No Name')
               where location='NY';
    commit;
    end;
    declare
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at line 9Message was edited by:
    J.Kiechle

    If you used a schema level collection type (i.e. created with CREATE TYPE) you could also use the unsupported SYS_OP_CEG function which appears to return collection elements for given index values without error if the element does not exist.
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> CREATE OR REPLACE TYPE varchar2_table
      2  AS
      3     TABLE OF VARCHAR2 (4000);
      4  /
    Type created.
    SQL> DECLARE
      2     v_ename varchar2_table;
      3  BEGIN
      4     SELECT ename
      5     BULK COLLECT INTO v_ename
      6     FROM   emp
      7     WHERE  sal > 2900;
      8
      9     UPDATE empdtls
    10        SET ename1 = sys_op_ceg (v_ename, 1),
    11            ename2 = sys_op_ceg (v_ename, 2),
    12            ename3 = sys_op_ceg (v_ename, 3),
    13            ename4 = sys_op_ceg (v_ename, 4),
    14            ename5 = sys_op_ceg (v_ename, 5),
    15            ename6 = sys_op_ceg (v_ename, 6)
    16      WHERE location = 'NY';
    17  END;
    18  /
    PL/SQL procedure successfully completed.
    SQL>

  • Buttons quit working

    I'm adding buttons (that open other Captivate tutorials) to
    the end of my tutorials. If the user doesn't click the buttons
    pretty quickly they quit working. They highlight and look like
    they're being clicked, but they don't open the programmed project.
    It seems to me that when the slide ends, so does the functionality
    of the button. The buttons don't have a "pause until user clicks"
    option to check. They do have a pause time, but frankly I thought
    that was causing the problem and I turned it off (or I shouldn't
    have done that?). But apparently that hasn't helped.
    Then, I added an invisible click box to the page that doesn't
    do anything if clicked, and has the pause until user clicks
    functionailty enabled. This seems to work, but is it necessary?
    Feeling like I must be missing something here and can use
    HELP! Thanks in advance!
    Arl

    Hi Arl
    Buttons by their very nature are designed to pause until the
    user clicks. So you really shouldn't turn off the pause.
    Normally, if you don't change the action assigned to the
    button, it will simply "Continue playing project" when it has been
    clicked. And all a button will receive is a single click and it's
    done. So if you failed to change the default, the user clicks and
    the button continues to the pause point and stops. Then it is dead,
    as the single click has expired.
    By turning off the pause, you have probably allowed the
    playhead to move into the "Inactive" part of the button.
    Personally, I'd suggest deleting the buttons AND the Click
    Box (The Click Box shouldn't be needed, as the Button should
    provide the pause). Then carefully re-insert buttons and be careful
    and specific with what you tell them to do. Ensure they pause and
    ensure they do something other than "Continue playing project" when
    clicked by the user.
    Hopefully this was helpful in some way... Rick

Maybe you are looking for

  • Text input with perspective

    Hi All, I looking at using some text input fields on an angle. Similar to the contact page here http://www.created201.com/ can anyone point me in the right direction to achieve this. Kind regards, Richard McKenna

  • How to go one level up in xml publisher reports

    Hi Experts, I am working in XML Publisher reports; I am working Invoice report (standard report), below is my requirement. Template sample: <?for-each:G_INVOICE?> <?trx_number?> <?trx_type?> <?for-each:G_LINES?> <?LINE_NUMBER?> <?COMMODITY_CODE?> <?Q

  • Problem in KDF Logical Database !!

    Hii Friends, We need to modify Tcode F.42 and add a field Business Place(BUPLA) on Selection Screen. This is the main requirement. So i make a copy of this program and KDF logical database. I am adding a field BUPLA in ZKDF custom logical database. B

  • Baffled by LOOKUP( )

    Hello. I'm somewhat baffled (and stymied) by something that is occurring when I use LOOKUP( ). I have a dense table, essentially a tuple of indexing numbers (consecutive, but non-exhaustive) and the consequent observation, like so: INDEX VALUE 1 10 2

  • S_ALR_87012332 Not Giving 0 Total

    Hi I am running transaction S_ALR_87012332 and selecting GL Accounts, Assets, Materials, Customers and Vendors with all items.  I am expecting the overall total to be zero but it is not.  Am I misunderstanding how this report should work or is someth