How to update New_Value and Old_value field in CDPOS

Hi,
I've been going through all the article and threads in the this forum. I can;t seem to get the field populate VALUE NEW, VALUE OLD and also the FNAME field always shows as KEY.
My intersion is to update CDPOS everytime there is a value to a record in my z-table being changed.
Below is my trial code. but it does seem to work. I can INSERT  into CDPOS but not UPDATE. Please review my code and let me know how can i get this problem solve please.
REPORT  zvintest1.
TABLES: cdhdr, zvin_test.
DATA: objectclass LIKE cdhdr-objectclas,
      objctid    LIKE cdhdr-objectid,
      stct_old TYPE zvin_test,
      stct_new TYPE zvin_test,
      tablename LIKE cdpos-tabname,
      changenum LIKE cdhdr-changenr.
objectclass = 'ZVIN_ATT'.
objctid = '2711'.
tablename = 'ZVIN_TEST '.
CALL FUNCTION 'CHANGEDOCUMENT_OPEN'
  EXPORTING
    objectclass                   = objectclass
    objectid                      = objctid
  PLANNED_CHANGE_NUMBER         = ' '
   PLANNED_OR_REAL_CHANGES       = 'R'
EXCEPTIONS
   sequence_invalid              = 1
   OTHERS                        = 2
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
stct_old-vendor = '110'.
stct_old-assembly = 'position'.
stct_old-serialnum = '001'.
stct_old-status = '2'.
*modify zvin_test FROM stct_old.
stct_new-vendor = '110'.
stct_new-assembly = 'position'.
stct_new-serialnum = '001'.
stct_new-status = '1'.
*modify zvin_test FROM stct_old.
CALL FUNCTION 'CHANGEDOCUMENT_SINGLE_CASE'
  EXPORTING
   change_indicator             = 'U'
   DOCU_DELETE                  = 'X'
  REFAREA_NEW                  =  STCT_NEW
  REFAREA_OLD                  =  stct_old
  REFTABLENAME                 = 'ZVIN_TEST'
    tablename                    = tablename
   workarea_new                 = stct_new
   workarea_old                 = stct_old
EXCEPTIONS
   nametab_error                = 1
   open_missing                 = 2
   position_insert_failed       = 3
   OTHERS                       = 4
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'CHANGEDOCUMENT_CLOSE'
  EXPORTING
    date_of_change                = sy-datum
    objectclass                   = objectclass
    objectid                      = objctid
    tcode                         = 'MIGO'
    time_of_change                = sy-uzeit
    username                      = sy-uname
   object_change_indicator       = 'U'
  PLANNED_OR_REAL_CHANGES       = 'R'
   NO_CHANGE_POINTERS            = 'X'
IMPORTING
   changenumber                  = changenum
EXCEPTIONS
   header_insert_failed          = 1
   no_position_inserted          = 2
   object_invalid                = 3
   open_missing                  = 4
   position_insert_failed        = 5
   OTHERS                        = 6
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
the error i get is NO_POSITION_INSERTED.
Thank you.
Regards,
Vinod

Why don't you use the standard functionality of the record changes?
Go to SE11.. open your table.. go to Technical settings ..
here you can find the "Log data changes". Check this checkbox on.
Later on you can track changes by <b>SCU3</b> transaction code...
This the extract from the online help....
Log data changes
The logging flag defines whether changes to the data records of a table should be logged. If logging is activated, every change (with UPDATE, DELETE) to an existing data record by a user or an application program is recorded in a log table in the database.
Note: Activating logging slows down accesses that change the table. First of all, a record must be written in the log table for each change. Secondly, many users access this log table in parallel. This could cause lock situations even though the users are working with different application tables.
Dependencies
Logging only takes place if parameter rec/client in the system profile is set correctly. Setting the flag on its own does not cause the table changes to be logged.
The existing logs can be displayed with Transaction Table history (SCU3).
Regards,
Naimesh Patel

Similar Messages

  • How to update link and import data of relocated incx file into inca file?

    Subject : <br />how to update link and import data of relocated incx file into inca file.?<br />The incx file was originally part of the inca file and it has been relocated.<br />-------------------<br /><br />Hello All,<br /><br />I am working on InDesignCS2 and InCopyCS2.<br />From indesign I am creating an assignment file as well as incopy files.(.inca and .incx file created through exporing).<br />Now indesign hardcodes the path of the incx files in inca file.So if I put the incx files in different folder then after opening the inca file in InCopy , I am getting the alert stating that " The document doesn't consists of any incopy story" and all the linked story will flag a red question mark icon.<br />So I tried to recreate and update the links.<br />Below is my code for that<br /><br />//code start*****************************<br />//creating kDataLinkHelperBoss<br />InterfacePtr<IDataLinkHelper> dataLinkHelper(static_cast<IDataLinkHelper*><br />(CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)));<br /><br />/**<br />The newFileToBeLinkedPath is the path of the incx file which is relocated.<br />And it was previously part of the inca file.<br />eg. earlier it was c:\\test.incx now it is d:\\test.incx<br />*/<br />IDFile newIDFileToBeLinked(newFileToBeLinkedPath);<br /><br />//create the datelink<br />IDataLink * dlk = dataLinkHelper->CreateDataLink(newIDFileToBeLinked);<br /><br />NameInfo name;<br />PMString type;<br />uint32 fileType;<br /><br />dlk->GetNameInfo(&name,&type,&fileType);<br /><br />//relink the story     <br />InterfacePtr<ICommand> relinkCmd(CmdUtils::CreateCommand(kRestoreLinkCmdBoss)); <br /><br />InterfacePtr<IRestoreLinkCmdData> relinkCmdData(relinkCmd, IID_IRESTORELINKCMDDATA);<br /><br />relinkCmdData->Set(database, dataLinkUID, &name, &type, fileType, IDataLink::kLinkNormal); <br /><br />ErrorCode err = CmdUtils::ProcessCommand(relinkCmd); <br /><br />//Update the link now                         <br />InterfacePtr<IUpdateLink> updateLink(dataLinkHelper, UseDefaultIID()); <br />UID newLinkUID; <br />err = updateLink->DoUpdateLink(dl, &newLinkUID, kFullUI); <br />//code end*********************<br /><br />I am able to create the proper link.But the data which is there in the incx file is not getting imported in the linked story.But if I modify the newlinked story from the inca file,the incx file will be getting update.(all its previous content will be deleted.)<br />I tried using <br />Utils<IInCopyWorkflow>()->ImportStory()<br /> ,But its import the incx file in xml format.<br /><br />What is the solution of this then?<br />Kindly help me as I am terribly stuck since last few days.<br /><br />Thanks and Regards,<br />Yopangjo

    >
    I can say that anybody with
    no experience could easily do an export/import in
    MSSQLServer 2000.
    Anybody with no experience should not mess up my Oracle Databases !

  • How to make Buyer and Planner fields in Master Items Form Required without

    How to make Buyer and Planner fields in Master Items Form Required without using personalization?
    1) Steps to Reproduce
    Under Application Developer Common Modules responsibility,
    1) Query Region MTL_SYSTEM_ITEMS
    2) Click on Region Items
    3) Add Buyer Id and Planner Code attributes with Required checkbox checked.
    4) Bounce iAS server and JVM and clear java cache
    5) Changes not taking effect
    Current Application Release: 11.5.10.2 (3460000)
    Current INV Rollup: INV.J RUP22 (9878808)
    Current WMS Rollup: WMS RUP19 (9951502)
    Product Installation List :
    Product Installation: 11i.BOM.J: Installed
    Product Installation: 11i.EGO.E: Installed
    Product Installation: 11i.ENG.I: Installed
    Product Installation: 11i.INV.J: Installed
    Product Installation: 11i.PO.I: Installed
    Product Installation: 11i.WMS.G: Installed
    client needs to make the Buyer and Planner fields under Inventory->master Items form to be required.
    He tried using the Application Developer Common Modules responsibility, to find the Master Items Region and added the Buyer Id and Planner Code attributes with the Required check-box set to Yes. He bounced the iAS server and cleared java cache, but the changes do not take effect.
    client does not want to use form personalization.
    Can you please provide more assistance for using Application Developer Common Modules responsibility?
    Edited by: jemar98 on Aug 9, 2011 1:44 PM

    A forms developer could make those fields required with a CUSTOM.pll extension if you didn't want to use forms personalization. Both are considered customizations to standard functionality and may or may not require rework after patching or upgrades.

  • How to get count and other field in one select

    Hi,
    I am try to get total rows and some fields in two separate select:
    1. select count(id) into totalRows from mytable m where m.cat = 'CSV'
    2. select m.id, m.cat, m.updateTime from mytable m where m.cat = 'CSV'
    (all rows in mytable are distinct base on id field)
    How can I combine them into one query to make it faster so that no need to compare the m.cat field twice?
    Thanks.
    David

    Here's one solution :
    SQL> desc test;
    Name Null? Type
    ID NUMBER
    CAT VARCHAR2(10)
    UPDATE_TIME TIMESTAMP(6)
    SQL> select * from test;
    ID CAT UPDATE_TIME
    1 XYZ 09-JAN-04 09.04.17.000000 AM
    2 CSV 09-JAN-04 09.04.31.000000 AM
    4 ABCD 09-JAN-04 09.04.41.000000 AM
    5 CSV 09-JAN-04 09.04.53.000000 AM
    6 ABC 09-JAN-04 09.05.00.000000 AM
    7 CSV 09-JAN-04 09.05.06.000000 AM
    8 GGG 09-JAN-04 09.05.17.000000 AM
    7 rows selected.
    SQL> select id, cat, update_time
    2 ,Count(*) Over (Order By cat) As TotCnt
    3 from test
    4 Where cat = 'CSV'
    5 /
    ID CAT UPDATE_TIME TOTCNT
    2 CSV 09-JAN-04 09.04.31.000000 AM 3
    5 CSV 09-JAN-04 09.04.53.000000 AM 3
    7 CSV 09-JAN-04 09.05.06.000000 AM 3
    SQL>
    -- Shailender Mehta -

  • How to populate image and text field in SQL Server

    I want to populate a table, i.e insert images in a table in SQL Server. I am using Java(JSP/Servlet). Can any one suggest me how to populate the image and text fields in SQL Server...of course, using Java. If possible, could you please give me a piece of code?
    Regards -
    Samit

    Hi,
    Please check the following link for information on inserting images in to sql server database.
    http://www.databasejournal.com/features/mssql/article.php/1475641
    Cheers,
    vidyut

  • How to update 'number of notes' field in UDM_SUPERVISOR in Invoices tab

    I made program to create the notes using UDM_RSM_CREATE function module.
    it is creating notes for selected customer and invoices and shows perfect in Notes tab, but when i see on Invoices tab there is column by the Name: Number of Notes'  this is not getting updated with the counter.
    Can any one please let me know how to update the number of notes column.
    if there are 10 notes in notes tab for the particular Invoice then the Number notes column should show as '10'.
    Please ask me if it is not clear.
    Thanks,
    Maheshkumar Gattu

    Hi Mahesh,
    I AM also trying to mass upload Notes Data and Promise to Pay data using FM "UDM_RSM_CREATE" and  "FDM_P2P_CREATE" respectively from an excel file. .
    1.My query in fm UDM_RSM_CREATE is from where will i get parameter   i_rsm_guid ,as that cannt be generated from excel file user data.
    2. My second query is once i generated case_guide via FM FDM_P2P_CREATE , its a succesfull return tat means data should appear in promise to pay but that is not happening.
    3. I got a help that after successful generation of case guid from FDM_P2P_CREATE I need to use one FM for customer create contact i.e "FDM_CCT_CREATE"  then only data will appear in collection management ....but I am not the parameters of this FM.
    Can you guide me in it. If possible can you share ur logic if my requirement is same as your. Its very critical issue for project go live.
    Thanks a lot.

  • HT1338 OSX 10.4.11 update quicktime. Browser says out of date. Updater says up-to-date. Is this version no longer supported. How to update QuickTime and Java then?

    OSX 10.4.11 Updates to QuickTime and Java.
    Browser says out of date. Updater says up-to-date. Is this version no longer supported?
    How can I update QuickTime and Java then without upgarding? I wish to keep a back channel to OS9

    Mac OS X Tiger was discontinued years ago, and if Software Update doesn't detect any new update, it's because you are running the latest Java and QuickTime version for Tiger.
    Apart from that, I see that you have a G5, so the most recent Mac OS X version you can use is Mac OS X Leopard, another version that it's (or it's going to be) discontinued soon. PowerPC support is completely dead now, and if you want the most recent QuickTime and Java versions, you will need a Intel-based Mac with OS X Lion or Mountain Lion, that have got the latest Java 6 versions and they are compatible with Java 7

  • How to Update Date data type field value in oracle

    I want to update records in a table that has a Date data type field. It's a oracle databse. I use the oracle thin drive to connect to the database. The everything works well, only when i try to update records that have date type value, something doesn't work.
    I use the following stmt to update DB:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Conn = DriverManager.getConnection("jdbc:oracle:thin:@hostname:portnumber:schname", "uid","pwd");
    stmt=Conn.createStatement();
    String updStr = "UPDATE Article SET Archive = ' Disable' WHERE ArticleDate = # " + sqlDate +"# " ;
    stmt.executeUpdate( updAStr ) ;
    But I always got the SQLException run time error, which is "ORA-00911: invalid character"
    Who can help me to find out how to write the above Update statement correctly? esp. that how to present the Date type variable in the statement.!
    BTW, sqlDate is a Java.sql.Date variable, Is it "# " + sqlDate + "# " the right way?
    Many thanks

    What do you get out of Oracle's TO_DATE that java.sql.PreparedStatement.setDate()
    won't give you? - MODWell, I don't know that I've used all capabilities of either, but when it comes to managing Date Strings my Oracle bias :) would be to code using Oracle's TO_CHAR and TO_DATE functions. Perhaps someone can tell me vendor neutral ways to do something simiilar to managing these input date/times (and hopefully just as easily, pretty much all done in a single line, single function)?
    WHERE aDATE > TO_DATE('2010','YYYY')
    WHERE aDATE > TO_DATE('2010 AUG 22','YYYY MMM DD')
    WHERE aDATE > TO_DATE( 'January 15, 1989, 11:00 A.M.', 'Month dd, YYYY, HH:MI A.M.')
    I believe most databases have something similar to this, although I have found Oracle's to be the most flexible and consistent, if not the most intuitive. Other vendors (DB2, SQL Server, Access) don't force you to always be explicit, and can accept a variety of date strings without masks. The problem is that while you might not be getting an error, it also may not be parsing your date as expected.
    One could argue that this vendor specific hodgepodge of literal date/time strings is only one program modification away from disaster. They might be right.
    Just to be clear. I'm not recommending using a vendor specific approach, but it's not a perfect world and somtimes you have to use what works easiest or best or fastest, and in some cases, that is the vendor specific alternatives.

  • How to update/copy into the fields of standard table

    Hi all,
    I have a piece of code in user exit, in which i have to populate the field atwrt (cntry of origin) in EIPO-HERKL in a delivery document..
    but if i assign it directly to the field as i've shown in code, it wont take it.
    moreover, it looks be a standard table(EIPO), but it is not.. its  a work area..
    READ TABLE i_val_tab WITH KEY atnam = c_cntr.
    IF sy-subrc = 0.
    EIPO-HERKL = i_val_tab-atwrt.
    MODIFY EIPO.
    ENDIF.
    so kindly guide me how to do dat..do i have to populate it in some other standard table(for country of origin field) which will automatically put the field in EIPO-HERKL?

    Hello Pradeep,
                          Generally, in most of the User Exits, we'll find something called X and Y Structures. For example, XVBAK and YVBAK where the X Structure contains the Old Value and the Y Structure contains the New Value (meaning, the Value that is currently on the Screen before Saving). So, try to find out similar structures through which you can update the Value in the Standard Table.
    Thanks and Regards,
    Venkat Phani Prasad Konduri

  • How to update Supplier and Supplier Sites through interface tables

    Hi All,
    Working on EBS Version 11.5.10.2
    I have a requirement to update flags in Supplier and Supplier Sites.
    Interface Tables : ap_suppliers_int
    ap_supplier_sites_in
    1. ap_suppliers_int :
    Field name : hold_unmatched_invoices_flag
    2. ap_supplier_sites_in :
    Field name : hold_unmatched_invoices_flag
    The Flags to update in base tables
    1.base table name : po_vendors
    Field to Update : hold_unmatched_invoices_flag
    2. base table name : po_vendor_sites_all
    Field to Update : hold_unmatched_invoices_flag
    Please let me know is there any API for updates.
    Thanks and Regards

    Please see these links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ap_supplier_sites_in+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=po_vendors+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=po_vendor_sites_all+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=hold_unmatched_invoices_flag+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to update Photoshop and rest of CS4 suite to 64 bit windows 7

    Hi.  I've been using Adobe CS4 Master Suite on a 32 bit vista system.
    I'm switching to a 64 bit windows 7 computer.
    After going through the whole Master Suite Installation process, all of my Adobe programs show up in 32 bit / x86 format, except Photoshop which shows up both in 32 bit / x86 folder AND in 64 bit.
    How do I get the rest of the Master Suite to show up / install in 64 bit?  (is there a separate update?  require a separate purchase?  and why did photoshop work whereas the rest did not?)
    And how do I check within the individual program to see if it's 32 or 64 bit?  (photoshop has a system info tab that identified PS as 64 bit, but other progs don't have that)
    Thanks

    How do I get the rest of the Master Suite to show up / install in 64 bit?
    You don't. Only Photoshop is 64bit, the other apps are conventional 32bit apps. The isntall location is therefore correct (within microsofts guidelines).
    Mylenium

  • N900 - How to update software and Reset ALL data.

    If you have tried to reset an N900 from the settings menu on the device, you would have noticed it would have left all your data intact.
    Sometimes you want to start from scratch and delete all data in one go. 
    Here is how you do it.
    Its quite extensive, but comprehensive.
    From a windows PC
    You first need to download three pieces of software.
    The first software you need is called "Maemo Flasher", and this is the program that needs to be installed on your PC and can be found here:
    http://tablets-dev.nokia.com/maemo-dev-env-downloads.php
    Download the latest version of Maemo Flasher (which is currently 3.5 at time of posting this), and make sure you download the .exe file (maemo_flasher-3.5_2.5.2.2.exe).
    Install that file.
    Next you need the software for the N900 itself.
    That can be found here:
    http://tablets-dev.nokia.com/nokia_N900.php
    This page will ask you to enter your IMEI, with very clear instructions on where to find it.
    Follow the on screen prompts until you reach the download section.
    There are two pieces of software you need to download from there.
    eMMC content - This is the package to erase all data held on your 32GB storage.
    The Operating System.
    OS 2009
    PR 1.1.1
    PR 1.2
    There are, unfortunately, 3 different names for the OS.
    Latest version is "PR 1.2 version 10.2010.19-1".
    Download the latest eMMC package available, It's version 10.2010.13-2.
    The OS is a little more difficult to figure out which one you need.
    The notes alongside the software lets you find the right package easier.
    I found the best way to check is to do the following: (On the N900)
    Menu
    Settings
    About Product
    This will show you this image(or similar)
    Note the Version number on your N900's screen.
    Download the OS package that matches the Version on your device. As shown in the image above, using the red text as an example.
    For people that purchased the N900 in the UK, the OS package will probably be the same as the red text. But make sure you check.
    Software downloads complete.
    Place these two software packages in the following location on your PC.
    c:\program files\maemo\flasher-3.5
    You should now have two .bin files in the directory above.
    Next steps.
    Updating the N900 OS
    Your battery needs to be 100% full to prevent any crashes which could leave your phone dead.
    Turn your N900 off.
    Press and hold the U key on the keypad.
    Insert the USB cable (a USB symbol should appear on the top right of your N900 screen, and also the Nokia logo in the centre).
    You can now let go of the U key.
    On your PC: Navigate to the Start Menu and select Run.
    In the Run box, type: cmd. Then OK
    In the command window, type: cd\program files\maemo\flasher-3.5
    Type: flasher-3.5 -F RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin -f
    (the file name above may be different to yours, you will need to replace the filename with the filename of the software you downloaded).
    This image below shows the completed update of the OS, in the command prompt on your PC. This would have now removed any Apps you may have installed on the device, and reset the homescreens to how they were when you turned it on for the first time.
    Your personal data, such as Contacts, Images, SMS will still be on the device.
    So if you want to remove these aswell, follow the next steps.
    Resetting the Mass Memory
    Your battery needs to be 100% full to prevent any crashes which could leave your phone dead.
    Turn your N900 off.
    Press and hold the U key on the keypad.
    Insert the USB cable (a USB symbol should appear on the top right of your N900 screen, and also the Nokia logo in the centre).
    You can now let go of the U key.
    (If you have left the command prompt open on your PC from updating the OS in the previous section, ignore steps 5,6,7)
    On your PC: Navigate to the Start Menu and select Run.
    In the Run box, type: cmd. Then OK
    In the command window, type: cd\program files\maemo\flasher-3.5
     Type: flasher-3.5 -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R
    (the file name above may be different to yours, you will need to replace the filename with the filename of the software you downloaded).
    This image below shows the completed reset of the eMMC (32GB HDD), in the command prompt on your PC.
    This would have now removed any data you had stored there. Including Music, Photos, Contacts, SMS..
    The complete reset of your N900 is now complete.
    I hoped this has helped.
    My posts are my opinion and in no way the direct views of Nokia.
    If my posts are helpful, please give me some KUDOS using the green star on the left.

    Hmm, it's odd, because the wiki.maemo and another thread here say it works fine on 7. I have put flasher into xp compatibility, but the cmd box has no way to change it - at least, if it does it's through a back route that i'm unaware of.
    Attached the screen i see
    Edit: what "run" dialog box? is that the cmd box?
    Attachments:
    cmd.jpg ‏55 KB

  • How to show image and file field

    Hi,
    I try to bind DataTable with Sales-Rep_Data_tbl under Order database source (within Creator).
    The columns have IMAGE and RESUME.
    After binding and run, the two fields show no meaning in browser. Should I do some extra work? How do I display them?Thanks!

    Hi, Runak/Creator Team:
    Thanks a lot for quick response!
    I followed the steps there, but after run, the image still couldn't be displayed . It 's just a "X" icon there.
    I don't know the reason.
    If "Sample Application" in tutorial offers similar application to download, it would be wonderful.

  • How to update data and create notification no using isr fm.

    Hi,
    Without creating the scenario in SFP, is it possible to update data directly in ISR_SPECIAL_DATA_SET,
    i want to use fm ISR_SPECIAL_DATA_GET in my program.
    i'm trying to achive same using ISR_NOTIFICATION_CREATE and built general, special table and long text to get a
    notification number. but  notification no is not creating ,  return msg is  ( E I 421   |Notification type  not defined ) even i'm passing currect notif type.                            
    Regards
    Ali

    Hi vijay,
    Nice to see your reply, I think, you are right...
    The Fm ISR_SPECIAL_DATA_GET already used in my various reports, Workflows etc.
    And I have a custom WebDynpro java based application which have similar data and have custom notification no. + (in this case probably i need to create new fm ZISR_SPECIAL_DATA_GET to use in above report and wf)+
    To avoid the rework and minimized the code Iu2019m trying to create notification no using standard fm and link custom WD data with ISR_SPECIAL_DATA_GET.
    Please let me know how to proceed with that
    Regards
    Raza

  • Updating AEDTM and UNAME field in IT0001 in a delimited record

    Hi SAP Gurus!
    I'm experimenting a curious behaviour I didn't notice before: when running an action from PA40 and copying IT0001 (standard COP action) in a new record, fields AEDTM and UNAME are updated with the current timestamp and user even on the "old" record, the one that is delimited... This also seems to happen only on IT0001.
    It doesn't seem the standard SAP behaviour, that use to mantain the "old" AEDTM and UNAME on the delimited record.
    Any advice?
    Thank you, best regards!
    Stefano

    Hi Stefano,
    What are the system details -release info, etc-?
    Regards,
    Dilek

Maybe you are looking for