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.

Similar Messages

  • TS4000 Reminders and Iphone 4: Updating a Reminder Notes field that is more than 15 lines causes an usability bug

    ..you can't see what you are typing as it is covered by the "Details" top bar...It is almost impossible to update the Notes field of these reminders

    Crackbot wrote:
    I awoke after missing several (6-7) phone calls from a single number to find a reminder to call someone back and I didn't create the reminder. And no one else had physical access to my phone. I really hope this isn't anything weird because it seems weird to me.
    It's very easy to accidentally create a reminder to call someone back. When someone calls you, there is a small button over the red "Decline" button labeled "Remind Me". If you tap, the call will be declined and a reminder to call back will be created. Easy enough to do if you're groggy and fumbling for the to make it shut up. If you weren't paying attention or were unaware of the feature, it might seem as if you had simply declined the call.

  • ECS and SEcess field missing in Excise Invoice Tab in MIGO

    What config settings in SAP 4.7 do I need in order to get the ECS and SEcess field in Excise Invoice Tab in MIGO.
    Went through few threads but was unable to get a solution......

    HI,
    In SPRO-Logistic general-Tax on goods movement-India -Basic setting-Maintain excise registration
    here check your for excise registration number  you have mark check for for cess and AT1
    it should be there
    second check you have maintain 100% setoff condition in your PO for same condition
    Regards
    Kailas Ugale

  • Gross price for BASB Condition is not picking in Purchase Order invoice tab

    Hi Gurus
    In taxinj -- conditional base column i added 362 and
    in pricing procedure for gross price in subtotal column i added 6
    but even though when i click invoice tab while creating Purchase Order i am not getting gross price for BASB condition same as gross price in pricing procedure it is picking some different value such as either net value or manual excise from pricing procedure JEXC condition value.
    what went wrong.
    Rgds
    Shrikant Kamat.

    Hi Saplearner's
    Is there any body who will focus on this issue
    I have maintained all this accordingly, but the problem lies over here
    Pb00-- 100 
    ra01---  2   discount
    net--  98
    jexc(16%)--15.68 ( MANUAL EXCISE)
    net amount including tax-- 113.68
    freight(2%)-- 1.96
    Actual-- 115.68.
    BASB-- 115.68  ( It should be 100)
    In short i have given summary above, now let me explain
    when i am giving 100 as gross price,discount-2 and if i dont give JEXC, then BASB is coming 100 that is correct.
    when i am giving 100 as gross price, discount 2 and if i give JEXC  , then BASB is  picking as 115.68.
    Problem is here when we give  JEXC  manual excise.
    Rgds
    Kamat.
    Edited by: shrikant kamat on Feb 16, 2009 2:09 AM
    Edited by: shrikant kamat on Feb 16, 2009 2:09 AM
    Edited by: shrikant kamat on Feb 16, 2009 2:10 AM
    Edited by: shrikant kamat on Feb 16, 2009 11:57 PM

  • Adding this field MEPO1317-LEBRE to Invoice tab in ME22N/ME21N

    Hi,
    Adding this field MEPO1317-LEBRE (Indicator for service-based invoice verification) to Invoice tab in ME22N/ME21N.
    Please suggest what are the steps in adding above field to PO screens.
    Thanks,
    Sanjay

    You don't need to eanter in MEPO1317. the moment you anter the Item category service it will Populate the field.
    Invoice verification for services is based on the accepted service entry sheet or the services set out in the purchase order.
    Since you usually enter into a variety of billing arrangements with your vendors, it is advisable to specify the relevant type of invoice verification in the vendor master record. The indicator is suggested per purchase order item and can be changed if necessary on the PO item detail screen.
    You must set the following indicators on the purchasing data screen of the vendor master record:
    For Goods-Receipt-Based Invoice Verification: GR-based inv. verif.
    For Evaluated Receipt Settlement (ERS): AutoEvalGRSetmt Del.
    For Service-Based Invoice Verification: Srv.-based inv. ver.

  • 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

  • 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 get number of optimzed fields

    hi Experts,
    I am using ecm11.1.1.0.5 on linux with oracle 11g, I added some information fields with ecm console and did a complete index rebuild, while ecm told me I have excessed limitation of optimized field number, I checked the doc, and found the following limitation:
    Oracle Content Server system can have up to 32 Optimized Fields, which includes data, integer, standard Oracle Content Server fields like dInDate, dOutDate, and fields selected to be optimized. All Optimized Fields are SDATA fields, which by default include dDocName, dDocTitle, dDocType, and dSecurityGroup.
    I checked my optimized fields from ecm console again(administration->admin applets->configuration manager->information fields->advanced search design)
    I found 12 fields defined as isinSearchResult and isOptimized, 8 fields defined as isInSearchResult and IsSortable, then why I excessed limitation of 32 optimized field?
    Another question is:
    Is there a way for me to add fields with searchable and search in result function but without full rebuild index?
    Search engine is oracle text.
    Best regards
    Lan

    So now I've had a bit of sleep and some caffeine, let me go a bit deeper.
    When you mark a field as "indexed/searchable" in Configuration Manager, if the field is an integer field or a date field, when OTS is the search engine, that field is assigned to a SDATA section. There is a limit of 32 SDATA fields using OTS 11g. That is NOT to say you cannot have more than 32 date and or integer fields, but [searchable date fields] + [searchable integer fields] + [declared optimized fields] cannot exceed a total of 32.
    Should you need more date and integer fields, you can add them, but you simply cannot index them for seaching purposes.
    URM is a good example of this, as it uses a LOT of date fields. The installer detects if the search engine is OTS, and does not mark its date fields as searchable if OTS is indeed the search engine.

  • How to update Device location notes

    Hi Guys,
    I am getting an inbound idoc which is same as ISU_MR_UPLOAD01 and using the MRID number I need to update the device location notes. Could you please let me know if you have any idea on this.
    Thanks,
    Sar

    Hi Sar,
    You need to find the device location number from MRID number. To do this first you can find the installation number (ANLAGE)froma table EABLG using MRID number (ABLBELNR). Using ANLAGE, you can find logical device number (LOGIKNR) from table EASTL using AB and BIS. You can use BIS =31.12.9999 to get the latest logical device number. Using LOGIKNR, you can find the device location number (DEVLOC) from table EGERH.
    To update now the static note of device location, you can use FM ISU_DB_ENOTE_UPDATE. Pass XY_OBJ-OBJKEY = device location number and XY_OBJ-OBJTYPE = '3'. Populate the structure USNOTES-NOTE  with your required device location notes number. You can use ADDTXT1, ADDTXT2 etc. of USNOTES structure if you want to update any additional text.
    Just for your reference the note for device location are stored in ENOTE and ENOTET table.
    Hope this will help you.
    Thanks.
    Nirmalya

  • How to update detailsview's dropdown field before item inserted?

    Hi,
    I am using EF6.0 and .net 4.5.  Details view is bound to a EF. I have many dropdown fields and they all are bound field. I would like to change value of one of the dropdown ( say "Drp_ELIG") manually before item is inserted or updated
    to database.
    I am trying to update value on onItemInserting method of DetailsView but it is not updating.
    It inserts what it displayed on the page but not what I am updating on onItemInserting method.
    If I do not BIND my ("Drp_Elig") it gives error. so I must bind also? it can't let me use Eval.
    Please help
    JRS

    Please post questions related to ASP.NET in the ASP.NET forums (http://forums.asp.net ).

  • While doing MIRO how to update G/L Account field in Details tab of Header

    Dear Experts,
    My requirement is to update the following field: Header >> Details >> G/L
    Based on some logic the field value needs to be updated with its Alternate G/L account no.
    Please help me out with some exit or Badi for the same or else can we make this field editable.
    Regards..

    hI,
    Check out the function module MRM_FINAL_CHECK ....where the G/L account data (T_DRSEG)wil be updated.......Use implicit enhancement ...
    Thanks,
    Shailaja Ainala.

  • How does one modify the Notes field in a contact already in the address book?

    The iPhone is running iOS 5.0.1
    [as upgrade from purchased iOS 4].

    The reason the that the edit button ( - ) top righthand corner had 'disappeared', was that iCloud was enabled but that the Addressbook subsetting under iCloud was set to off in the phone settings.
    Changing it to 'on' made the edit button reappear.
    Thanks to the guys in Cambridge Apple Store!!
    The reason the that the edit button ( - ) top righthand corner had 'disappeared', was that iCloud was enabled but that the Addressbook subsetting under iCloud was set to off in the phone settings.Changing it to 'on' made the edit button reappear.
    Thanks to the guys in Cambridge Apple Store!!

  • How to automatically open date/time field (calendar) when end user tabs to that field

    Have two calendar fields...calendar 1 and calendar two
    Is there a way to have the calendars automatcally open when field is either clicked on or tabbed to?
    thanks

    You can try one work around:
    Add another UDF time with plain text field.
    Implement post-insert event handler to insert time value in this field. In the event handler you can write the code to put time in the format you want.
    regards,
    GP

  • How to find number of subtabs in the in the sub tab layout

    Hi,
    I have a sub tab layout region.In that, i am hiding some some sub tabs based on some condition.I want to know how many visible sub tabs that a sub tab layout presently have in all of my sub tab controllers.Please Help me in this.
    Thanks
    Satya

    Satya,
    OASubTabLayoutBean subTabLayout = (OASubTabLayoutBean)webBean.findChildRecursive("SubTabLayoutRN");
    if(subTabLayout!=null)
          System.out.println("Child :"+subTabLayout.getIndexedChildCount());
    }Regards,
    Gyan

Maybe you are looking for

  • BAPI_NETWORK_MAINTAIN released network

    HI all! I'm using the BAPI_NETWORK_MAINTAIN to update DURATION_NORMAL and WORK_ACTIVITY in our network. It works fine if network is new, but when we release the network and try to update them, the system do not update anything, while doing this opera

  • Attaching a Lightbox in Dreamweaver

    Hello. I am creating a web site in Dreamweaver and I am trying to the gallery portion of the site using Lightbox. However, the lightbox is created and is ready to go, I just don't know how to attach it to my already layed out page. How do I go about

  • Notification mailer getting down frequently

    Hi All, Notification mailer getting down frequently. We have checked the log file and got the below errors: 1) Maximum number of errors (null) have been reached for this Service Component -> oracle.apps.fnd.cp.gsc.ProcessorException: Unable to connec

  • Error occured while run the f.27 transaction

    hi , iam running the f.27 tcode, for some document type the error is occured . error is " Pt019 error i.e., no archive information found for object type and document type' . so can you guys please do this

  • Custom Prompts with manual input for filtering

    Hi, In Bex I need a user prompt which can accept only 1 of 3 possible manual input values:    Flash    Actual    blank If the input value is Flash, then filter Version = 'ZFL' If the input value is Actual, then filter Version =  '#' If the input valu