How to use CP_BD_DIRECT_INPUT_PLAN to update Routing??

Hi.
I want to update a Created Routing with the help of "CP_BD_DIRECT_INPUT_PLAN"  function module. I am trying but getting error. Can any one help me with providing TEST DATA for "CP_BD_DIRECT_INPUT_PLAN" for Creating/Changing Operations???
Or is it a good way to use CP_BD_DIRECT_INPUT_PLAN for Routing update???
please answer.
Advance thanks,
~Guru

1. After the FM CP_BD_DIRECT_INPUT_PLPO you can use the fm CP_BD_DIRECT_INPUT_SAVE .
2. you can use the FM CP_BD_DIRECT_INPUT_PLAN
Thx
Subhankar

Similar Messages

  • How to use new patch updates in track

    Hi All,
    I am a developer working in NWDI. We have everything in place and working fine upto now.
    SAP has release a patch for the software component i am using in a track. Basis guys have updated the track and they confirmed the patch is updated successfully.
    Now when ever i rebuild my DC, the changes are not effected as per the new patch. Please let me how I will be able to use new patch updates in my DC(In NWDS I can see the old source code only, I did all SYNC's and refresh but didnt worked, even NWDI is restarted)
    How I can confirm that the patch is updated to track successfully, from a developer point of view.
    I have access to CMS and CBS.
    Regards,
    Sateesh Chandra

    Did you update your configuration in the studio?
    --MLS

  • How to use the myAdapter.Update and OleDbCommandBuilder from dataGridView to update the db2 database

    hello,everybody ,it a question makes me crazy .my code is that :
            public string tableName = "";
            public DataSet ds;
            public OleDbDataAdapter myAdapter;
            public string sql = "";
            private   void button12_Click_1(object sender, EventArgs e)
                sql = textBox5.Text.Trim();
                OleDbConnection Conn = new OleDbConnection(st_contractconn);     
                Conn.Open();
                this.comboBox1.Items.Add(this.textBox5.Text);
                try
                    System.Text.RegularExpressions.Regex r = new System.Text.RegularExpressions.Regex(@"(?<=from\s)\w+(?=\s)");
                    System.Text.RegularExpressions.Match B = r.Match(sql);
                    tableName = B.ToString();
                   OleDbCommand cmd = new OleDbCommand("SELECT * FROM PT_PO",Conn);
                   Conn.Close();
                    myAdapter = new OleDbDataAdapter(cmd);
                    ds = new DataSet();
                    myAdapter.Fill(ds, "PT_PO");
                    dataGridView2.DataSource = ds.Tables["PT_PO"].DefaultView;                   
                    this.groupBox2.Text = "共查询到" + ds.Tables[0].Rows.Count.ToString() + "条记录" + tableName;
                catch (Exception ex)
                    MessageBox.Show(ex.Message);
            private void button26_Click(object sender, EventArgs e)
                OleDbConnection Conn = new OleDbConnection(st_contractconn);
                Conn.Open();
                OleDbCommandBuilder Builder = new OleDbCommandBuilder(myAdapter);
                Validate() ;            
                myAdapter.Update(ds.Tables["PT_PO"]);
                Conn.Close();
                ds.AcceptChanges() ; 
    when it run to the myAdapter.Update(ds.Tables["PT_PO"]);  it comes out a wrong "对于不返回任何基表信息的 SelectCommand 不支持动态 SQL 生成。" who knows  it is why ,my QQ is 501212848,thankyou very much.

    Hello,
    We were a IBM-DB2 shop for over 20 years, when we moved to .NET we found it was better to use the native DB2 data provider which you can download from IBM for free.
    Main objects
    IBM.Data.DB2.iSeries.iDB2Connection
    IBM.Data.DB2.iSeries.iDB2Command
    IBM.Data.DB2.iSeries.iDB2Parameter
    So you would not use adapters but write code using the key objects above. Then to get new primary keys we would use
    SELECT nextval for SOMETABLE_REF_AUTONUMBER_SEQUENCE from sysibm.sysdummy1
    Bottom line is the structure is create a connection, create a command, set the connection and command text along with creating parameters as needed.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.
    what is the meaning about you ? db2 cannt using adapters  to update the datebase?

  • How to use TimeCapsule as second router?!?!?!!?!?  PLEASE HELP

    i already have a linksys wireless router that is in use and connected to one of my computers. i want to make a second network in my home with my TC. how do i do this? Will this cause the speed of my bandwidth to decrease? would u recommend doing this? what can i do so i can use my TC and linksys as the router? should i make my TC be a "secondary router"? if so, how do i do this? PLEASE HELP!!!

    i think my linksys router model name is WRT54GL. and i know that it will provide an 802.11g wireless network.
    That is correct, this particular router is only capable of providing either an 802.11b or 802.11g wireless network.
    but how do i "reconfigure the TC as a bridge"?
    To set up the TC as a bridge, either connect to the TC's wireless network or temporarily connect your computer directly (using an Ethernet cable) to one of the LAN port of the TC, and then, using the AirPort Utility, change this setting:
    Internet - Internet Connection tab
    o Connection Sharing: Off (Bridge Mode)
    o Click Update to apply the new settings.
    how do i "reconfigure the TC for 802.11n"?
    Again, you would use the AirPort Utility in Manual Setup:
    AirPort - Wireless
    o Radio Mode: <Choose either the 802.11n only (5 GHz) or 802.11n only (2.4 GHz) option.>
    and how do i choose which computers to be "n" clients?
    Well, only computers that are capable of supporting 802.11n would qualify as "n" clients ... so these would be my recommendation. Primarily you would to use "n" clients where bandwidth performance is a high requirement ... like when streaming audio or video. (300+ Mbps vs. 54 Mbps, respectively for 802.11n & 802.11g).

  • How to use Powershell to update user details in Active Directory?

    Hi,
    I received an updated contact list from HR of about 1500 names, and I want to update (make corrections and add missing data) ADUC quickly without having to do each user manually. How would I go about that using power-shell?
    The fields that need updating are:
    Under the General tab -> Description, Telephone number
    Everything under the Address tab
    Under the Telephone tab - > Mobile
    Under the Organization tab -> Job Title, Department, Company, Manager
    The server we're using is Windows Server 2008 R2.
    Many thanks,
    Nick

    There are 100 of such scripts are there online.
    here are few tips and codes. you will get more.  
    https://gallery.technet.microsoft.com/scriptcenter/Feeding-data-to-Active-0227d15c
    http://blogs.technet.com/b/heyscriptingguy/archive/2012/10/31/use-powershell-to-modify-existing-user-accounts-in-active-directory.aspx
    http://powershell.org/wp/forums/topic/ad-import-csv-update-attributes-script/
    Please mark this as answer if it helps

  • BP extend : how to use FM to update customer specific fields ?

    Hello
    I'm working on a CRM 2007 project and for customer needs, the BP data have been extent with specific fields using EEWB. So specific FMs have been automatically generated to manage the specific data. We want to use these FM to maintain the values of the specific fields. In the EEWB transaction, in the Task BUPA_API for the specific object, 2 FMs have been generated : ZZ1XO_BUPA_MAINTAIN and  ZZ1XO_BUPA_MNTN_ALL : we suppose we have to use these FMs to update the values fo this object. This object (customer specific data) is time dependent with gaps and multiple instance. We tried to use these 2 FMs to update values but it does not work : anybody has already used this kind of FMs ?
    Thanks to all.

    Jerome,
    Normally I use the FM modules generated by the EEWB that contain API to update the data.  However keep in mind if this is a Z-Table and you don't like what is provided, then add your own BAPI modules to the BDT function group to update the data.
    Take care,
    Stephen

  • How to use Time capsule as Router and link to a Receiver

    Hello
    I'm currently using a Time capsule as WLAN Router. The plan is that I'm attaching My NAS via Ethernet LAN to the Time capsule. Time capsule will be linked via the Ethernet LAN cable to My Receiver so that I can Listen My Music over My home loudspeakers.
    Can anybody Tell me whether described will work? If yes, are there any setitings in the Air Port Utility I have to consider to make everything work?
    Thank you!

    The TC is not a streaming device.. it is merely a hard disk mounted inside a router.
    That means My Receiver.. whatever that happens to be.. has to be a media device that can play from a network file store.. So there is no settings in Airport utility.. because the TC is too dumb to need to know anything.
    BTW the TC is a bad place to store files, as it has no way to back itself up.

  • How to Use Apple Software Update w/ ARD 2.2

    There must be a way - but I haven't figured it out yet - to use ARD 2.2 to control Apple Software Update on client computers. Is it simply to take control of each computer one at a time and run Software Update? If so, that doesn't simplify things much over actually going to each computer in my lab. I'm hoping there's a more automated, streamlined way to do it. Please let me know the secret - if there is one!
    Thanks!

    Send the UNIX command "softwareupdate" (Send Command As root). Here's the usage:
    softwareupdate <mode> [<args> ...]
    -l | --list List all appropriate updates
    -d | --download Download Only
    -i | --install Install
    <label> ... specific updates
    -a | --all all appropriate updates
    -r | --recommended only recommended updates
    -u | --url <url> ... from signed package URLs
    Per-user preferences:
    --ignore <label> ... Ignore specific updates
    --reset-ignored Clear all ignored updates
    --schedule (on | off) Set automatic checking
    -h | --help Print this help
    PowerMac G5 DP 2GHz   Mac OS X (10.4.7)  

  • Any Idears on how to use my D-Link Router with Print Server on my mac ?

    I just got recently a D-Link Router with Print Server.
    The Model is a DI-704UP. does anyone know how i can access the printer to my G5 ?
    talked to D-Link and Apple and they have no solution.
    IMac G5   Mac OS X (10.4.6)  

    According to this page on the D-Link website about your product, the router includes a print server for Windows and that the software is for Windows only.
    However, this page also on D-Link's website does offer you an unsupported solution.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.6)  

  • How to use CASE with UPDATE?

    Hi all. I'm trying to update multiple rows in a MS-Access
    database using a single query, with different values for each row.
    Here's a simplified example of the code:
    <cfquery name="JustInCase" datasource="variables.DB">
    Update Users
    SET First_Name =
    CASE WHEN ID = 1 THEN 'Nini' END,
    SET Last_Name
    CASE WHEN ID = 32 THEN 'Yumpi' END
    </cfquery>
    Trying to run something like this produces the following
    error message:
    [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error
    (missing operator) in query expression 'CASE WHEN ID = 1 THEN
    'Nini' END'.
    I realize this can easily be done using multiple queries, but
    the actual code will contain many updates, and I would like to at
    least test the possibility of improving performance using a single
    query instead of multiple queries. I would greatly appreciate any
    help with this - I've been trying all kinds of variations, and
    nothing seems to satisfy emperor ColdFusion. Any ideas?

    Case might be a verity tag but it is also a valid sql keyword
    in many dbs. I use it in select clauses frequently and have seen it
    used in where clauses.
    The problem with the original query is that, it the value of
    id is not 1, this part
    SET First_Name =
    CASE WHEN ID = 1 THEN 'Nini' END,
    will cause a syntax error. For those values of 1 and 32, this
    syntax will run, but will update every row in the table which might
    not be the plan.
    update users
    set
    case when id = 1 then first_name = 'Nini'
    when id = 32 then last_name = 'Yumpi'
    else first_name = first_name
    end
    ranger, your code will also fail if the value is neither 1
    nor 32. You need a default case.

  • How to use BAPI_INB_DELIVERY_CHANGE to update vbpa  fields ptnr no and fun

    data : HEADER_DATA like
            BAPIIBDLVHDRCHG,
          HEADER_CONTROL like
            BAPIIBDLVHDRCTRLCHG,
          DELIVERY like
            BAPIIBDLVHDRCHG-DELIV_NUMB,
          TECHN_CONTROL like
            BAPIDLVCONTROL,
          HEADER_PARTNER like BAPIDLVPARTNERCHG
            occurs 0 with header line.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
      EXPORTING
        header_data                = HEADER_DATA
        header_control             = HEADER_CONTROL
        delivery                   = DELIVERY
        TECHN_CONTROL              = TECHN_CONTROL
      tables
        HEADER_PARTNER             = HEADER_PARTNER
      HEADER_PARTNER_ADDR        =
      HEADER_DEADLINES           =
      ITEM_DATA                  =
      ITEM_CONTROL               =
      ITEM_SERIAL_NO             =
      EXTENSION1                 =
      EXTENSION2                 =
        return                     =
      TOKENREFERENCE             =
      HANDLING_UNIT_HEADER       =
      HANDLING_UNIT_ITEM         =
      PARTIAL_GR_OBJECTS         =
    thanks in advance.................

    data : HEADER_DATA like
            BAPIIBDLVHDRCHG,
          HEADER_CONTROL like
            BAPIIBDLVHDRCTRLCHG,
          DELIVERY like
            BAPIIBDLVHDRCHG-DELIV_NUMB,
          TECHN_CONTROL like
            BAPIDLVCONTROL,
          HEADER_PARTNER like BAPIDLVPARTNERCHG
            occurs 0 with header line.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
      EXPORTING
        header_data                = HEADER_DATA
        header_control             = HEADER_CONTROL
        delivery                   = DELIVERY
        TECHN_CONTROL              = TECHN_CONTROL
      tables
        HEADER_PARTNER             = HEADER_PARTNER
      HEADER_PARTNER_ADDR        =
      HEADER_DEADLINES           =
      ITEM_DATA                  =
      ITEM_CONTROL               =
      ITEM_SERIAL_NO             =
      EXTENSION1                 =
      EXTENSION2                 =
        return                     =
      TOKENREFERENCE             =
      HANDLING_UNIT_HEADER       =
      HANDLING_UNIT_ITEM         =
      PARTIAL_GR_OBJECTS         =
    thanks in advance.................

  • How to use or to update and setup Device

    please give me answer about my iPhone 4 Problems

    Connect the phone to iTunes on your PC. If this is your first time, a guide will show up on both your iPhone and PC.

  • I am using FCP 7.0.3.on my Mac Pro. I bought a new mac book pro and loaded the software on to the lap top but the software is 6.0.3. How do i get the update to the lap top?

    I am using FCP 7.0.3 on my Mac Pro. I bought a new mac book pro and loaded the software on to the lap top but the software is 6.0.3. How do i get the update to the lap top?

    .. and by the way, the jump from FCP 6.0.3 to FCP 7.0 (or higher) isn't an "update"  It's a full version "upgrade" that has to be done using the install discs (or disc images).
    -DH

  • HT4623 Please  help!  i have just update my iphone 4s with 7.4 update and my phone is now asking for a password which i dont have.  I have tried my keypad lock i used before the update and also my itunes password and neither work, how do i rectify this ??

    Please  help!  i have just update my iphone 4s with 7.4 update and my phone is now asking for a password which i dont have.  I have tried my keypad lock i used before the update and also my itunes password and neither work, how do i rectify this ???

    Did you buy this iPhone new from an authorized seller?

  • How do I make ff4 update all currently open browsers when I move tabs around? It used to be automatic. Now I have to close all my brosers and reopen them for the change to take effect.

    How can I make FF4 update all currently open browsers when I move tabs in 1 browser. The change used to be auto and applied to all open browsers last time. Now I need to close every open browser and reopen for the effect to take over.

    I use that add-on. Works great.

Maybe you are looking for

  • Styles looking different in RH8 for Word source and Webhelp

    Hi All, I am using RH8 for Word. There are close to 900 topics in my project. My problem is that the styles that I used in my RH Word documents and the styles displayed after generating Webhlep are looking different. Also, that is not consistent with

  • Firefox shows a black screen suddenly while browsing or when left idle for long time (more than 1 hr).

    Firefox suddenly turns totally black while I was browsing yesterday. I tried restarted it, and it works fine. In such state none of the menu or actions items are accessible. Even while closing the browser I get the confirmation popup which is also co

  • Operation failed when trying to Save a Custom Function to the Repository

    When attempting to save a Custom Function to the Repository in Crystal Reports XI R2, I get the following error message: "Operation failed: You do not have edit right on: "Default folder for custom functions". Where is the default folder for custom f

  • KP06 layout

    I want to select a layout in kp06, the layout is only read-enabled, I cant choose other layouts what can I do?

  • CS4 and Epson 11880 dark prints

    I read about some issues with dark prints and CS4. I am able to print correctly to an Epson 9800 and 3800 but the 11880 prints dark when using CS4 (color or b&w). I use OS X 10.5.5 and have the latest drivers and firmware. Is this the same issue othe