Way to update header and address fields to a functional location simultane

Hi all,
   Can you please help me out in this.
I used the FM  u201CISU_M_FUNCLOC_CHANGEu201D for changing the Functional data (Including Header and Address data), but this FM will not work for my requirement as it clears the entire data in the transaction and updates the one which i pass. I looked for the BAPI u201CBAPI_FUNCLOC_CHANGEu201D, this is also not working to update the Address fields.
Please let me know the way i can update the header as well as address fields in a functional location simultaneously.

not possible to upload data header and multiple items upload through LSMW-recordin
try with below LSMW- IDOC method
Message Type         INOTIF                      Notifications
Basic Type           INOTIF01                    Notification IDOC
Enhancement

Similar Messages

  • Disable header and item fields in VA02

    Hello, good day
    Could you please help me with next issue?
    I need to define how to inactivate some header and item fields in a sales order when VA02 is used, a logic to decide if the field must be desable will be applied, because of that I can't use standar customizing solution.
    I read a lot of threads, but many of them are not answered, and as far as I can see many recommended solutions are refered to similar code that I have now.
    I tried with next user exits:
    To block gray out header and item fields:
    User exit form USER_EXIT_FIELD_MODIFICATION Program: MV45AFZZ
    To gray out pricing grid
    User exit form: USEREXIT_FIELD_MODIFICATION Program: LV69AFZZ
    To gray out partner screens (item, header): No user exit identified, please advise
    to gray out new items in sales order: No user exit identified, please advise, I mean not allow new items.
    fields to block:
    XVBAK-LIFSK
    XVBAK-FAKSK
    XVBAK-KUNNR
    XVBKD-VSART
    XVBKD-INCO1
    XVBAP-UNTTO
    XVBAP-UEBTO
    XVBPA-KUNNR
    XVBPA-PARW
    XVBAP-ROUTE
    XVBAP-ABGRU
    The code is something like this in MV45AFZZ - USER_EXIT_FIELD_MODIFICATION
          CASE screen-name.
            WHEN    'XVBAK-KUNNR'
                 OR '*XVBAK-KUNNR'.    "Sold To
              screen-input = 0.
           END CASE
    but is not working. please advise.
    Disable Pricing grid: after apply this code, is possible to add new manual conditions, how can I disable input new item conditions?
    The code is something like this in  LV69AFZZ - USEREXIT_FIELD_MODIFICATION Program:
      Modify screen fields
        IF   SCREEN-NAME = 'RV61A-KOEIN'
          OR SCREEN-NAME = 'KOMV-KBETR'
          OR SCREEN-NAME = 'KOMV-KPEIN'
          OR SCREEN-NAME = 'KOMV-KMEIN'
          OR SCREEN-NAME = 'KOMV-KWERT'
          OR SCREEN-NAME = 'KOMV-KSCHL'
          OR SCREEN-NAME = 'KOMV-KUMZA'
          OR SCREEN-NAME = 'KOMV-KUMNE'
          OR SCREEN-NAME = '*RV61A-KOEIN'
          OR SCREEN-NAME = '*KOMV-KBETR'
          OR SCREEN-NAME = '*KOMV-KPEIN'
          OR SCREEN-NAME = '*KOMV-KMEIN'
          OR SCREEN-NAME = '*KOMV-KWERT'
          OR SCREEN-NAME = '*KOMV-KSCHL'
          OR SCREEN-NAME = '*KOMV-KUMZA'
          OR SCREEN-NAME = '*KOMV-KUMNE'.
             SCREEN-ACTIVE = '1'.
             SCREEN-INPUT = '0'.
             MODIFY SCREEN.
        ENDIF.
      Modify buttons
        IF   SCREEN-NAME = 'BT_KOAN'    "Add
          OR SCREEN-NAME = 'BT_KOLO'.   "Delete
             SCREEN-ACTIVE = '1'.
             SCREEN-INPUT = '0'.
             MODIFY SCREEN.
        ENDIF.
        IF   SCREEN-NAME = 'BT_KONY'.   "Update
             SCREEN-ACTIVE = '1'.
             SCREEN-INPUT = '0'.
             MODIFY SCREEN.
        ENDIF.
    Thanks in advace.
    Regards!

    Thanks Sai, for your prompt answer, as far as understand variants, I can't add any logic, to allow change or only display, I do no't include the logic in the sample code, but that's my case, I need the user exit due a logic must be applied and standar solution like variant or customizing are not the better option.
    I Found that in order to gray pricing grid we just put the code in user exit form: userexit_field_modific_leer include  LV69AFZZ
    and to block the other fields  and to block partner functions:
    Include Program: MV45AF0P_PARTNER_PREPARE                    User Exit Form: partner_prepare
    Edited by: Jose Carrillo on Mar 30, 2008 4:21 AM

  • Header and Footer Fields

    Can the Header and Footer fields in Pages be changed from 3 to 1 or 2?

    If turned off and a Header is created, it will not replicate on subsequent pages.  I develop many multiple page documents and need the Headers/Footers within the body of the document.

  • My iPad is not updating calendar and address book.  My iMac and iPhone are fine. What is wrong?

    My iPad is not updating calendar and address book.  My iMac and iPhone are fine. What is wrong?

    Reset the device. If it doesn't work try removing your account and adding it again. If that doesn't work then try restoring the device to factory settings by pluggin into iTunes and clicking "Restore".

  • How to get text of itab header and structure field name dynamically?

    HI.
    I'm just trying display itab to web.
    of cause I can use <htmlb:tableView> but I need display by loop itable  for my special reason.
    the table is dynamic structure that means header line should be changes depends on structure description.
    '<htmlb:tableView>' certainly can display header line dynamically with just itable only.
    but don't know how to get these text and structure field name without 'tableView'.
    help me please.
    Thank you.
    <TABLE border=1>
    <TR style="background-color:#FFFF99" >
         <TD>header 1</TD>
         <TD>header 2</TD>
         <TD>header 3</TD>
    </TR>
    <%
    DATA: WA_STR TYPE FOPT_BSP_UI_REPORT.
    LOOP AT TT_itab INTO WA_STRUC.
    %>
    <TR>
         <TD nowrap><%=WA_STRUC-ORGUNIT_T%></TD>
         <TD nowrap><%=WA_STRUC-PRGROUP_T%></TD>
         <TD nowrap><%=WA_STRUC-PROCESS_T%></TD>
    </TR>
    <%ENDLOOP.%>
    </TABLE>

    DDIC structure means struture made from SE11?
    if yes,that's what I'm trying to display table.
    and my sepcial reason is this:
    my final purpose is download dynamic table to excel file.
    but when I download table comes form "<htmlb:tableView>" with changing http response header that shows some link error and useless icon and no table grid and etc...
    "<htmlb:tableView>" resulting lot of useless tags and script.
    think iterator has no function removing extra tags
    so  I'am trying to make simple html table.
    but problem is that itable is not just one structure can be more than 100 kinds of structure.
    in this situation is there any way to display dynamic itab into simple html table?

  • Transaction to Mass Update Header and Item text in Purchase Order

    Dear All
    Whether any Transaction in SAP to mass update the Header and Item text in Purchase Order.
    One Single Text For Ex :" This is a Dummy PO" .
    This text needs to be updated in large number of POs.
    Please let me know your views
    Reg
    Shyam

    Hi Shyam,
    You can make use of BAPI_PO_CHANGE for this. See the documentation of this BAPI in SE37 for more information.
    "You can transfer header and item texts in the PoTextHeader and PoTextItem tables. You import texts
    for services in the PoServicesText table. Texts can only be replaced complete."
    Regards,
    Purnima.

  • Update ical and address book on iMac does not update iPhone or ipad

    I have updated my ical and address book on my imac, but it is not updating my iphone or ipad, I have activated icloud on all machines, can anyone help please. Have looked at the forum, but cannot find my issue specifically. Regards

    On the iPhone and iPad, tap Settings > iCloud
    Switch Calendars and Contacts off then back on then reset the devices.
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.
    On the iMac open System Preferences > iCloud
    Deselect the boxes next to Calendars and Contacts then restart your iMac.

  • I hate the combined search and address fields

    Dear Apple,
          I am very disappointed with the newly combined address and search field. Not only does it not work as well but it's lost important functionality as well. In particular:
    The snap back feature of the search field was brilliant. It was immensely useful and worked perfectly. I greatly lament it's loss and can't, for the life of me, guess why it was taken out.
    Very oftern the address field searches instead of taking me to the address I'm typing in. Typically I type in an address, I see the address autocompleted and press enter. My expectation is that I should go to the URL just entered. Instead I end up on a page of search results. On closer examination I see that it's my search engine returning the auto complete results. From that perspective it makes sense but unfortunately that's completely contradictory to what I'm trying to achieve and to how we've all been trained an address bar works.
    Interestingly, at least to me, I'm currently writing a paper which touches on the use of specialized tools and this is a great example. For any given task a specialize tool will outperform a general tool everytime. With a browser, four of the primary things I do are:
    go to a bookmarked location
    enter an address directly
    search the web
    bookmark a location
    Safari 5 had a specialize tool for each of those task and the tools were readily accessible.

    And I can't find this "on this page" item people are talking about.

  • Header and Footer display using XXL_FULL_API function module

    Hi All,
    I have a requirement that I have to display the Header and Footer in the XL file download usig the FM : XXL_FULL_API.
    Data Upload  for condition type is to be printed in the header.
    No. of the success and failure records will be printed in the footer.
    Can any one please let me know how can I achieve this?
    I have checked some of the threads and tried in sample programs I could not achieve it.
    Sample code is an added advantage.
    Thanks in advance.
    Abhilash.

    Answered.

  • 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

  • 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

  • Mapping header and detail fields

    I want to map concatenated 1 header source field and  2 detail source fields into 1 target detail row field. Is it possible? I am getting message mapping error in SXMB_MONI. I changed the DT_Detail_Row.fieldFixedLengths, still getting error. Any suggestions  or ideas how I can map these fields?
    Thanks.

    Hey,
    y cant u use 2 Staandard concat functions
    where u concat ur two source fields using one concat and concat that output with the header source field using another concat fucntion and map that output to target field.
    detail1
                 Concat----
    >
    detail2                            concat----->target
                 Header----
    >
    cheers
    jithesh

  • PM module query --Change Delivery Address in PR from Functional Location

    hi all,
    i have to export the value of CAUFVD_IMP-TPLNR to temporay memory from the enhancement "COZF0001" using the user exit "EXIT_SAPLCOZF_001" from the include program "ZXCOZU01" and then import this
    value in the enhancment "MMDA0001" for the user exit "EXIT_SAPLMMDA_001" in the include program "ZXM06U32".
    But the include program ZXCOZU01 from where i have to export the value is not opening.
    Can anyone help me in this. The value to be exported
    is the first parameter CAUFVD_IMP of the corresponding userexit "EXIT_SAPLCOZF_001".

    hi Prabu,
    yes u told correctly. But i need how the address get changed after the fucntional address is assigned to the export parameter E_ADRNR.
    Iam getting the functional address but after assign it to E_ADRNR.
    The value is not updated into none of the internal tables being used in the transaction.
    But in that one internal table is XEBAN is used while iam directly using in the exit
    it is showing syntax error.
    iam unable to update the functional address to PR iam getting only the plant address.
    if  u know about this please resolve this.

  • Same field on Header and Item level with same data

    Hi Experts,
    I want enter value in WEB UI Header level Screen filed and the same value I have to see in same filed which has added to item level WEB UI Screen. Is Same field on Header and Item with data copying functionality supports by the CRM WEB UI?
    Thanks in Advance
    Edited by: sakthidharan acc on Jan 31, 2012 10:25 AM

    Hi Leon,
    can you please explain me how can i read the value of parent entity and make it appear at the item level?
    Please help me in this regard
    Its urgent.
    Iam the beginner , so that is the reason iam asking many questions , please help me
    Thanks and Regards,
    Sak

  • Transferring iCal and Address Book from iPod

    I had a lot of trouble installing Leopard to the point where I had to backup my user folder, erase the hard drive and then install Leopard, and re-copy my files back onto the computer. Either there was a special way to backup iCal and Address Book files or it just didn't, but now I am without either. However, thankfully, I had backed up my iPod before I did the erase. Is there a way I can get the Address Book and iCal files off of my iPod? Also, to sync my files beforehand, I put on the automatic sync via iTunes. Will this be problematic when I first plug in my iPod in Leopard? Thanks so much.
    Jake
    Message was edited by: iceman21789

    Similar problem here,
    I have a month-old archived version of my AddressBook, but today my entire rolodex vanished when the program froze and I force quit. I have a much more recent update on my ipod and have made significant additions/editions in the past month. Can I retrieve all that data from my iPod??
    Help!

Maybe you are looking for

  • How do I solve for podcast download error -50 on iTunes 8?

    I've recently set up my work computer with iTunes, as I now have an iPhone. In trying to download any free NPR podcasts (e.g., Fresh Air), I can subscribe to it but when I try to download, the orange spinning circle shows very briefly, then I get a g

  • Install new version itunes now i cannot access library

    i installed a new version of itunes,now when i click itunes icon on desk top all i get,itunes cannot open folder as new version installed.i have tried to restore to older version with out success,can anyone help me please?

  • Invisible Text in Flash Player on Financial Website

    Just spent an hour on the phone with one of my financial sites on which I can no longer see some important text. They tried everything, none of which worked, and concluded it must be incompatibility of the adobe flash and Snow Leopard. It started rig

  • Add "*" infront of the label  in the error message popup window

    Dear all, I am new in ADF, I would like to add an "*" infront of the Salutation label in the error message popup, does anybody know how to do it? pls help me out in this...thanks PS: The Salutation is a af:selectOneChoice component with required vali

  • Is this speed going to change ?

    Hi All I want some info regarding Infinity ..I have done the speed test on B,T Wholesale & on this website and it says i will get 55mb down and 18 up  will this go any higher or do they just give you an estimate ? thanks p.s For the record i,m more t