How to use  modify command?

i want to modify table t_bseg which is used n BTE interface_00001050
i want to modify only 1 specific line, how can i modify this line without using index because i get 0 when i use sy-tabix?
( i want to modify this line using the table keys ) .
thanks

Hi,
MODIFY TABLE <itab> FROM <wa> [TRANSPORTING <f1> <f 2> ...].
Check this link:
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3ac8358411d1829f0000e829fbfe/content.htm
Regards
Adil

Similar Messages

  • How to use STSADM commands in sharepoint 2007

    How to use STSADM commands in sharepoint 2007

    Hi,
    There is no such STSADM commands to get the user groups.  There are two separate STSADM commands get either users or groups for particular site.
    STSADM -o enumusers <<url>>
    STSADM -o enumgroups <url>
    For complete reference, please refer to the following article.
    http://blogs.technet.com/b/josebda/archive/2008/03/15/complete-reference-of-all-stsadm-operations-with-parameters-in-moss-2007-sp1.aspx
    One such console application available to get the user groups.  Please refer to the below article.
    List all SharePoint groups a user belongs to
    Please don't forget to mark it as answered, if your problem resolved or helpful.

  • How we use merge command in pro*C

    merge command not support the pro*C pl/sql block how we use in pro*C (without creating any pl block on database )

    hello shalab,
    u can use dynamic sql method one.for execution merge query.
    syntax is
    EXEC SQL EXECUTE IMMEDIATE :stmt
    u have to copy your query into one string.
    like this
    strcpy(stmt,"merge into emp_new a ");
    strcat(stmt," using emp b ");
    strcat(stmt,"on ( a.empno = b.empno) ");
    strcat(stmt," when matched then ");
    strcat(stmt," update set sal= sal*10 ");
    strcat(stmt," when not matched then ");
    strcat(stmt," insert (a.empno, a.ename) values ");
    strcat(stmt," (b.empno, b.ename); ");
    then execute like this.
    EXEC SQL EXECUTE IMMEDIATE :stmt

  • How to use host command for creating folders

    i want to create a folder called abc in my C drive using forms 6i.
    how can i do it using Host command?

    Host('MD C:\ABC');Francois

  • How to use Filter commands in WAD?

    Hello community,
    I am desperately trying to use the command wizzard in order to set a Filter to a chrarcateristic in an 7.0 web template:
    I have been trying these commands so far but it simply doesnt work:
    SET_SELECTION_STATE_SIMPLE
    SET_SELECTION_STATE
    My problem is: When I select the charcateristic which I want to Filter, I get always the Error message, that the characteristic is not a valied characteristic or structure of the Query. But this is not true, the Characteristic is in the query. I have tried for hours now but no success.
    Thanks for any help or advice.
    Carl

    Hi Carl,
    I had the same situation. All you have to do is to update your support package. After that it will work properly.
    I have - Support Package 7, Revision 571
    Regards
    Erwin
    Edited by: Erwin  Buda on Dec 5, 2008 9:47 PM

  • How to use 'bash' command in java?

    Hi,
    I am using Linux operating system
    when i run the following code, 'test.sh' not started
    ================================================================
    String cmd = "bash \"/home/kulandaivelu/Desktop/works/other's works/test.sh\"";
    Runtime.getRuntime().exec(cmd).waitFor();
    ================================================================
    but it started when i use same command(bash "/home/kulandaivelu/Desktop/works/other's works/test.sh") in terminal
    anyone let me know what mistake i made in the code piece..
    Thanks in Advance
    Kulandaivelu

    Hi,
    thanks a lot..
    I used the following code.. it worked well..
    ===============================================================
    String cmd[] = {"bash","/home/kulandaivelu/Desktop/works other's/test.sh"};
    Runtime.getRuntime().exec(cmd).waitFor();
    ===============================================================
    Thanks a lot again..

  • How to use split command in upload program

    Thanks for all ...for their quick response for my previous query.
    Iam continuing with the same upload program,now i have transfered the data from internal table to application server,now iam trying to upload this to database,while doing this iam using split command for spliting the records,but its not at all spliting,can u give me a solution for this.

    OPEN DATASET p_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      if sy-subrc <> 0.
        PERFORM messaging USING 'E' '001' text-e10 p_file space space.
      else.
        DO.
          READ DATASET P_file INTO WA .
          IF SY-SUBRC <> 0.
            EXIT.
          ENDIF.
          REPLACE ALL OCCURRENCES OF '"' IN WA WITH ''.
          CONDENSE WA NO-GAPS.
          SPLIT WA AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
          INTO wa_infile.
          append wa_infile to it_infile.
          clear wa_infile.
        ENDDO.
      endif.
    try this...
    vijay

  • How to use the command key with shortcuts/CS6?

    Since ID2 I  am using the combination Command+Escape to define a shortcut.
    Buy this time Escape could not be tagged.
    I was trying to remember if those years ago I modified escape key in some place (system preferences/keyboard) but neither could find a path to reconstruct this.
    Also check the escape key in other shorcuts to avoid problem but no way.
    Searched the forum but could not find something helpful
    http://forums.adobe.com/message/2977659

    [Jongware] wrote:
    I guess that makes it an InDesign problem ...
    Searching yesterday found it is an old topic, but not related to Adobe but to Apple: including thriller plots like that they are preserving the combination command+escape for future projects...
    https://discussions.apple.com/thread/3438952?start=0&tstart=0
    https://discussions.apple.com/thread/3569274?start=0&tstart=0
    Also it has been resolved by programmers with very interesting formulae like the «Escape Key Liberator» (sic):
    http://manytricks.com/blog/?p=1664
    In my situation it was enough to reset the Apple Keyboard shortcuts...
    Thank for your reply.

  • How to use oraxml command-line in LINUX

    Hi:
    I gave the classpath for xmlparserv2.jar and try to excute some of the commands like
    %oraxml -help
    I got oraxml: command not found
    How can I use it?
    Please help
    ALI_02

    You can't.
    They are two totally different operating systems.

  • How to use serveroutput commands in plsql

    Hi,
    I have to create spool file inside my procedure how is it possible to use it? Is there any way.
    Will dynamic statements will work
    E.g CREATE OR REPLACE PROCEDURE SP_PROC1
    AS
    BEGIN
    SET SERVEROUPUT ON;
    SPOOL D:\ABCD.LOG;
    SET SERVEROUTPUT OFF;
    SPOOL OFF;
    END;
    Thanks

    Yes, its possible.
    First open the file for writing:
    Then write to the file.
    (You replace the string used in dbms_output.put_line with utl_file.put_line );
    Finally close the file when finished.
    If on windows , terminate your session (Otherwise you may not be able to see the data in the file).
    Here is some code which I use.
    procedure open_log_file(p_file_out out utl_file.file_type,
                            p_sourcedir in varchar2,
                            p_filename   in varchar2,
                            p_filemode   in varchar2)
    is
    v_filemode varchar2(1) := p_filemode;
    begin
    p_file_out := UTL_FILE.FOPEN( p_SOURCEDIR, p_filename, v_filemode );
    end open_log_file;
    procedure log_to_file(p_file_in in utl_file.file_type,
                          p_text    in varchar2)
    as
    begin
        UTL_FILE.PUT_LINE(  p_file_in,p_text);
    end log_to_file;
    procedure close_log_file(p_file_in in utl_file.file_type)
    is
    v_file utl_file.file_type := p_file_in;
    begin
    if utl_file.is_open(v_file)
    then
        utl_file.fclose(v_file);
    end if;
    end close_log_file;

  • How to Use SPOOL Command with Bind Variables

    For the Following SPOOL I want the GEN_DATE to be entered by the User at the time of execution of the SQL Script. Is it possible in SPOOL Command.
    set colsep , -- separate columns with a comma
    set pagesize 1000 -- get rid of disturbing ---- between pages
    set heading on -- Print column heading
    set trimspool on -- remove trailing blanks. eliminating the spaces up to eol
    set linesize 700 -- line size should be the sum of the column widths
    spool spool_results.csv
    SELECT *
    FROM GUI_SITE_JOURNAL
    WHERE GENDATE_ BETWEEN '2012-11-01 00:00:00:00000' AND '2012-11-02 00:00:00:00000'* ORDER BY GEN_DATE;
    spool off;
    The reason is to give the ability to user so that he can enter any range without modifying the code of the script.
    Can Any one help me please.
    Edited by: user10903866 on Feb 18, 2013 7:44 PM

    Hi,
    user10903866 wrote:
    For the Following SPOOL I want the GEN_DATE to be entered by the User at the time of execution of the SQL Script. Is it possible in SPOOL Command.Do you want the user input in the SPOOL command, or do you want it in the query?
    set colsep , -- separate columns with a comma
    set pagesize 1000 -- get rid of disturbing ---- between pages
    set heading on -- Print column heading
    set trimspool on -- remove trailing blanks. eliminating the spaces up to eol
    set linesize 700 -- line size should be the sum of the column widths
    spool spool_results.csv
    SELECT *
    FROM GUI_SITE_JOURNAL
    WHERE GENDATE_ BETWEEN '2012-11-01 00:00:00:00000' AND '2012-11-02 00:00:00:00000'* ORDER BY GEN_DATE;What is the data type oif gen_date?
    If it's a string, that's a big mistake. Information about dates belongs in DATE columns.
    If it's a DATE, then don't try to compare it to strings, such as '2012-11-01 00:00:00:00000' .
    spool off;
    The reason is to give the ability to user so that he can enter any range without modifying the code of the script.
    Can Any one help me please.One way to do that is with substitution variables:
    SET     VERIFY  OFF
    ACCEPT  start_gen_date     PROMPT "Starting date (e.g., 2013-02-18 23:00:00.00000): "
    ACCEPT  end_gen_date     PROMPT "Ending date   (e.g., 2013-02-18 23:59:59.99999): "
    SPOOL  spool_results.csv
    SELECT    *
    FROM        gui_site_journal
    WHERE        gen_date  BETWEEN '&start_gen_date'
                    AND     '&end_gen_date'
    ORDER BY  gen_date;
    SPOOL  OFFThere are security considerations. Substitution variables give devious users the power to issue any SQL command, such as DROP TABLE. Users that have SQL*Plus access already have that power, anyway.

  • How to use ADT command line to build an iOS application including ActionScript native extension file

    Hi All,
    I have ANE files packaged in my iOS application. I can export them to release build through FB no problem.
    But How can I include those ANE files through ADT command line? Can I do like other library files?
    Thanks in advance for any helps.

    I was stupid that did not find the right syntax.
    -extdir extensionsDir will do the trick.

  • How to use dll commands using or in database triggers...

    I want to use a dll command such as drop table table_name in the database trigger, is it possible ???
    If yes then please write me the codings, Thanks.....

    > I want to use a dll command such as drop table table_name in the database trigger, is
    it possible ???
    The question is not whether it is possible - and if you are indeed an OCP as you seem to claim with you handle, you should know the answer to this.
    The question is whether it is at all sensible from a functional perspective and a transaction processing perspective, to do this. And again, the answer to this should be quite clear as a DDL cannot be part of that trigger's transaction. Which means when that transaction is rolled back, the damage has been done - as the DDL executed by the trigger cannot be rolled back.
    > If yes then please write me the codings,
    So you are saying that you are incapable of writing any code? Then what on earth are you doing in a programmer's forum? Ask your supervisor/boss to give the problem to a real programmer to solve.

  • How to use plot command of Matlab in cRIO equipment?

    Hello,
    I am testing an equipment and collecting some data using NI cRIO-9022. I run the program in scan engine model. However, When I try to plot the data, it told me that the command can not be used here. But I still want to watch the figure in Matlab. Do you have some good idea to solve this problem?

    Thanks, but it still doesn't work, because Matlab script node is not supported in the target. We have to think another solution.

  • How to use the command 'iwpriv'?

    I have a wireless card TL-WN821N, it uses the driver of ath9k_htc which is built in the latest linux kernel of 3.2.0-23.
    It works fine,but now i want to config some parameters with the command iwpriv .While i input the "iwpriv ",it returns to me"wlan0 no private ioctls".
    what should i do? Is Anyone can help me ?thks
    ps,i need to reconfig the tx-chainmask/rx-chainmask,and the A-mpdu...
    Last edited by tboliu (2012-07-17 06:39:00)

    Thks very much!!
    By the way ,is there any other ways replaced the iwpriv?
    If i'm going to configure the Radio layer,such as enable/disable transmit AMPDU aggregation(it can be configured by iwpriv"iwpriv wifiN AMPDU 1|0"),
    and the tx/rx_chainmask can be set by the command"iwpriv athN tx/rx_chainmask mask"...what shall i do?
    i think the iwpriv command is really powerful,what a pity~
    Gusar wrote:There is no problem, the message is fully correct - there aren't any private ioctls. Wireless extensions, which are based on ioctls, are deprecated. Drivers nowadays use netlink, not wext. Which means iwpriv is an outdated tool.
    The only reason iwconfig and iwlist still work is because of a wext compatibility layer in the netlink-based wireless stack, but this layer won't be around forever.
    Last edited by tboliu (2012-07-18 02:36:51)

Maybe you are looking for

  • Oracle.jbo.RowCreateException: JBO-25017: Error while creating a entity row

    Hi all, I'm new to OAF, I have created a Page, In that i have an LOV to a Message Text input box and it returns values to another 6 text boxes from my custom table(1). and in the same page i have some radio buttons also check boxes and "save","cancel

  • Using PJC in Web Based Oracle forms Applications

    Hello, Any one could tell how to Configure 10g AS for using date,Key filter etc PJC in web based Applications of Oracle forms(having beans/olb,pll attached) Avijeet

  • 3rd party distributed SW load balancing with In-Memory Replication

              Hi,           Could someone please comment on the feasibility of the following setup?           I've started testing replication with a software load balancing product. This           product lets all nodes receive all packets and uses a ke

  • No "Load Images" button in Mail

    Before I upgraded to Mavericks, I always used to see a "Load Images" button above email messages. I don't see that anymore and some of my emails contain a question mark in place of the image. I've looked everywhere to try to find a solution but no lu

  • License problem, Could you help me?

    I have install a license to my ecc6 system using slicense. but when I use saplicense command in AIX os, I get this  message: tsmtestserver:prdadm 8> saplicense -test pf=/sapmnt/PRD/profile/PRD_DVEBMGS00_tsmtestserver Protocol saplicense test: Read sa