How to insert code with Change Pointers (BATMAS)

Hello,
We make use of change pointers to notify our customer of changes on batches (BATMAS).
I would like to update a segment-field in the IDoc before sending it.
Is this possible?
And if Yes, where can I do this?
Thanks in advance!
Guido Verbruggen

The "code box" in iWeb is the HTML Snippet.
You can paste custom code there.
iWeb provides the placeholder, but does nothing to your code. You are responsible.
[TextWrangler|http://www.barebones.com/products/textwrangler>
Working with TextEdit:
[Working with HTML in TextEdit|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te1003.ht ml]
[Opening an HTML document|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te48.html ]
[How to Set Up TextEdit as an HTML or Plain Text Editor|http://docs.info.apple.com/article.html?artnum=106212]
[I can't view the code in an HTML file|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te1007.html]
[Saving HTML files|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te58.html]

Similar Messages

  • Custom idoc process code with change pointers

    Hai gurus
    Any body tell me how to maintain the change pointers in process code of our custom idoc.
    Thanks
    Krishna

    Krishna,
    can you write your request more detailed ?

  • Avoid the creation of idoc Debmas with Change Pointers

    Hi everybody.
    Ive customized the creation of idoc debmas with change pointers.
    In BD64 I´ve defined the distribution model but Id like to avoid the creation of the debmas idoc when an specific user has created/modified the custumer data.
    How can I get this?
    Regards

    Hello,
    I would suggest to handle this issue with authorization check...
    check the authorization object using SU53 and add a separate role for those specific user excluding those objects...
    Thanks
    K.

  • Deltas with change pointers?

    How can we do delta loading with change pointers?
    Sridhar

    Hi Sridhar,
    You cant do a delta load with change pointers. if the pointer gets changed the system will njot be able to understand as to till what point the data is loaded and whuich is the new daat that needs to be loaded.
    Regrads,
    Mahesh

  • How to insert a voice-change?

    I would have sworn that it is possible to force the text-to-speech voice to change. I found all kinds of things to insert between [[ and ]] to change the pitch, speak phonemes, you name it. But I couldn't find how to insert a control to change from Victoria to Alex and back (in one reading).

    Actually that was not what I meant. It should be possible to insert a command between double square brackets in the text to change from one voice to another.
    I mentioned switching from Alex to Victoria; that doesn't seem to be that important; they are both English voices. I used that as an example because both voices are included with the OS. But the actual case is about changing from English to Dutch. A synthetic English voice cannot read Dutch in a way that anyone can understand it, and vice versa. I have a text that is partially English and partially Dutch. In order to hear it right, I have to insert such a command. I vaguely remember that I used it, so I am quite certain it exists.
    But what is it? Any clues?
    Message was edited by: TVogelaar

  • How to insert javascript with in a servlet

    Please send the code to insert javascript with in a servlet

    hi,
    You have write u r java script code in Servlet with teh following steps
    1.Use out.println("<html> .....</html>")
    in between the above html code u write ur <script language="javascript"> etc
    write your javascript code in the above <sript tah function.
    Hope this helps
    -Srini

  • How to insert records with LONG RAW columns from one table to another

    Does anybody know how to use subquery to insert records with columns of LONG RAW datatype from one table to another? Can I add a WHERE clause in the subquery statement? Thanks.

    Insert into ... Select statements are not supported for long or long raw. You will have to either use PL/SQL or convert your long raw to blobs.

  • Problem with Chang pointers in ALE

    1) what is Chang pointers? use of change pointers? with example if possible?

    Hi Sudharsan,
    Please go through the following link
    http://help.sap.com/saphelp_nw04s/helpdata/en/12/83e03c19758e71e10000000a114084/frameset.htm
    thanks
    Sekhar.

  • How to share code with peers

    Hi All,
    I am new to Netweaver environment but have previously worked with other JAVA IDEs.
    I need to know if it is possible to share a Webdynpro DC project among my peers.
    For instance, say, my DC project has 2 Views. I want to work with one of them but also see what my team mate is doing in the other view. At the same time, I want to share my code with him.
    For regular java projects we can achieve this with the help of a version control tool like VSS or CVS.
    What is the equivalent in SAP Netweaver.
    Could some one please point me in the right direction regarding this?
    All your help will be highly appreciated.
    Thanks

    Hi
    Vss is version control tool right .
    To achieve same in WD Java, NWDI (NetWeaver Development Infrastructure  ) is used .Which Increase reusablity and reuse of code segments by encapsulating functionality into small, reusable building blocks.
    To know more about it read the following doc
    1. [NWDI wiki|https://www.sdn.sap.com/irj/scn/wiki?path=/display/java/netweaver%252bdevelopment%252binfrastructure%252b(NWDI)]
    2.[Setup an NWDI|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/7014086d-3fd9-2910-80bd-be3417810c6f]
    3.[Development Infrastructure|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60c7c351-1344-2a10-a6b0-c2f148f59ef0]
    3.[NWDI DC Archive|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/6061795e-2bd5-2910-b0ad-caf08ff20531]
    Best Regards
    Satish Kumar

  • How to insert line with values in ALV (CL_GUI_ALV_GRID)?

    Hi,
    Does anyone know how to get control of new line inserted in ALV (I am using class CL_GUI_ALV_GRID) before the new line is shown to the user. What I want the user to see is not a completely blank line, but a new line with certain fields filled with data.
    I have tried with ALL events in CL_GUI_ALV_GRID but without any luck. If I create my own user command and insert it in the alv menu I get control, but not with the standards. Why?
    Please help
    Kind regards - Keld Gregersen

    Hi,
    I created a nice work around...
    CLASS lcl_event_handler DEFINITION.
    handle_toolbar
    FOR EVENT toolbar OF cl_gui_alv_grid
    IMPORTING e_object e_interactive,
    handle_user_command
    FOR EVENT user_command OF cl_gui_alv_grid
    IMPORTING e_ucomm.
    ENDCLASS. "lcl_event_handler DEFINITION
    CLASS lcl_event_handler IMPLEMENTATION.
    METHOD handle_toolbar.
    DATA:
    l_toolbar TYPE stb_button.
    Here I replace SAP standard functions with own functions
    READ TABLE e_object->mt_toolbar INTO l_toolbar
    WITH KEY function = '&LOCAL&APPEND'.
    IF sy-subrc = 0.
    l_toolbar-function = 'OWN_APPEND'.
    MODIFY e_object->mt_toolbar FROM l_toolbar INDEX sy-tabix.
    ENDIF.
    READ TABLE e_object->mt_toolbar INTO l_toolbar
    WITH KEY function = '&LOCAL&COPY_ROW'.
    IF sy-subrc = 0.
    l_toolbar-function = 'OWN_COPY_ROW'.
    MODIFY e_object->mt_toolbar FROM l_toolbar INDEX sy-tabix.
    ENDIF.
    ENDMETHOD. "handle_toolbar
    METHOD handle_user_command.
    CASE e_ucomm.
    WHEN 'OWN_APPEND'.
    CALL METHOD ref_alv->check_changed_data
    IMPORTING
    e_valid =
    CHANGING
    c_refresh = 'X'
    CREATE YOUR OWN CODE HERE
    CALL METHOD ref_alv->refresh_table_display
    EXPORTING
    is_stable = 'X'
    i_soft_refresh =
    EXCEPTIONS
    finished = 1
    others = 2
    ENDMETHOD. "handle_user_command
    ENDCLASS. "lcl_event_handler IMPLEMENTATION
    Kind regards
    Keld Gregersen

  • How to insert code?

    My just-finished site will depend on newletters & opt-in subscribers, & I've started with one of those email managers (Campaigner.com). Uploaded my iweb-made Contact Us page locally onto my browser & it still comes out as their html gibberish.
    Was told by their support "You have to insert this coding in the **coding version of your application.** (??) I tested it and it works fine. Where did you insert it?"
    iWeb seems to have no "code box" where you can add the code.
    But. I found this conversation where they're discussing the same iWeb problem.
    http://forums.macosxhints.com/archive/index.php/t-56252.html
    I don't have Textwrangler, I have TextEdit.
    Any help would be so appreciated.

    The "code box" in iWeb is the HTML Snippet.
    You can paste custom code there.
    iWeb provides the placeholder, but does nothing to your code. You are responsible.
    [TextWrangler|http://www.barebones.com/products/textwrangler>
    Working with TextEdit:
    [Working with HTML in TextEdit|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te1003.ht ml]
    [Opening an HTML document|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te48.html ]
    [How to Set Up TextEdit as an HTML or Plain Text Editor|http://docs.info.apple.com/article.html?artnum=106212]
    [I can't view the code in an HTML file|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te1007.html]
    [Saving HTML files|http://docs.info.apple.com/article.html?path=TextEdit/1.4/en/te58.html]

  • How to repeat duplication with changing values?

    Hello all!
    First of all - english is not my first language so I don't really know how to explain this in an easy way (and therefore I don't know what to search for either). Maybe a better topic title is needed as well.
    I made an illustration to show what I need, I guess it's easier to understand than my explanation below...
    QUESTION: I have a circle. I want to make a copy of this circle for, say, 80 % of the original size. I'd like to repeat the duplication so the next copy have the same distance to the second circle as between the first two circles (in other word the percentage would change between tranformations) - and so on.
    Hopefully there is some easy way to achieve this so I don't have to do it manually.
    Thanks in advance for any advice!
    (Btw, I use CS5)

    Thank you for your quick reply! This works! I found out another way to do it (sometimes it seems to help with the thinking process just to start a new topic...); the Transition-tool. The downside is that I cannot insert the distance that I wan't to use, so you're advice may be better.
    Thanks again!

  • How to Insert Record with multiple rows

    Hello alls,
    i want to ask something... how to use insert record server behavior -  php myysql, to insert multiple rows from textfiled?
    thanks.

    It would have been more helpful if you had shown me your existing code. However, this shows the basic principles.
    First of all, the name of each input field in the form needs to end in an empty pair of square brackets like this:
    <input type="text" name="field_name[]" . . .
    This results in $_POST['field_name'] being treated as an array of the values in each input field. Change field_name to the actual name of the input field. Without the square brackets, only the last value is submitted by the form.
    The Insert Record server behavior code looks like this:
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO my_table (field1, field2) VALUES (%s, %s)",
                           GetSQLValueString($_POST['field1'], "int"),
                           GetSQLValueString($_POST['field2'], "text"));
      mysql_select_db($database_connAdmin, $connAdmin);
      $Result1 = mysql_query($insertSQL, $connAdmin) or die(mysql_error());
      $insertGoTo = "another_page.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    You need to amend it like this:
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      mysql_select_db($database_connAdmin, $connAdmin);
      // loop through the input values
      for ($i = 0, $len = count($_POST['field1']); $i < $len; $i++) {
          $insertSQL = sprintf("INSERT INTO my_table (field1, field2) VALUES (%s, %s)",
                                GetSQLValueString($_POST['field1'][$i], "int"),
                                GetSQLValueString($_POST['field2'][$i], "text"));
          $Result1 = mysql_query($insertSQL, $connAdmin) or die(mysql_error());
      } // end loop
      $insertGoTo = "another_page.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    This uses a for loop (see http://docs.php.net/manual/en/control-structures.for.php) to access each element of the $_POST['field1'] and $_POST['field2'] arrays (see http://docs.php.net/manual/en/language.types.array.php).

  • How to insert code in a QUERY

    Hi All,
    I'm creating a Query to extract the data from EKKO, EKPO and EKKN.
    here I have to insert a piece of code as checking below.
    IF EKPO-KNTTP ne '   '.      "not equal to blank
    extract the data from table EKKN.
    ENDIF.
    here I need your help like how to write this code in a Query or Functional Area (Info Set).
    Thanks,
    Sunil Bodda.

    Duplicate POST.....
    select the query and go to QUERY in the menubar then goto more functions where you have an option display report name it will give you the report name.
    Menubar ---> Quer ---> MoreFunctions ----> Display Reportname.
    Goto SE80/SE38-->Report name and add the Codes in the program.
    Regards,
    gurpreet

  • How to insert code in ABAP program ( Z program) by ABAP coding.

    Hello,
    In ABAP is there any way to insert some code lines into an existing ABAP program (Z*) , We will insert in masse some code lines into a liste of program automatically ?
    Thanks in advance

    Hi,
    This thing you can achieve by using the Code Template . If you are using New ABAP editor you can in the bottom right side after the scrolling bar. Click on that add the code you need to insert .
    Hope this might help you.
    With Regards,
    Sumodh.P

Maybe you are looking for

  • How to get iterator values from a managed bean ?

    Due to a bug in selectOneChoice i'm not able to get the label list i want to display directly from an iterator when the value binding is a managed bean. To solve the problem i would like to create a managed bean that contains that list and use it as

  • Logo displaying in productin but not displaying in some other user

    Hello experts, I developed payment advice sheet using scripts and transported to production successfully.In production also the output is dispalying correct but some other user (clnt uses different user in that only logo is not displaying) remaining

  • There are two CDC methods - Source based CDC and Target based CDC which one

    There are two CDC methods - Source based CDC and Target based CDC, which one is better performancewise. in data services. If there is any document available which compares both and provides any info on performance etc, will be helpful. thank you for

  • OWSM CustomStep - DB Access

    I have implemented a custom step used in a webservice manager server agent. Does any one knows how to get a database connection to the orawsm db schema?? The owsm does not use the connection pooling of the application server. Thanks, Harald

  • Installing InDesign 2nd time, same computer.

    My computer got a malware virus and needed to be wiped and as a consequence I lost In Design (purchased in July 2014). I have my licence no. but I am confused as to how to reinstall it. I downloaded the InDesign Creative Cloud but when I enter my lic