Using table rate with scale in transportation zone

Hi Experts,
I have a question with using a rate table and scale in transportation zone.
I need a scenario of calculation sheet with rate table using a transportation zone scale. In my freight order, i have many freight unit of different destinations (many locations).
I configure this scenario, but the system does not use the transportation zone with select price on table rate.
Help me.

Hi Tarun Kumar,
well, go to more details.
I have a freight order with two stages.
My calculation costs is based on stage condition (FRT_PEDIDO).
My configuration for this scenario is:
)    Calculation Sheet
)    Rate Table
)    Config to condition
)    Master data to Transportation Zone
)    Locations included in transportation Zones
)    transportation Lane
location “PLC_SBC_014” is my plant and “Z_SP_SUL” is my transportation zone.
“Z_SP_SUL” is the transportation zone and “0……021” is customer location 1.
“Z_SP_SUL” is the transportation zone and “0……063” is customer location 2.

Similar Messages

  • CRM table for BPs, shippincg condition &transportation zone

    I want to get teh list of business partners with obsolete shipping conditions & transportation zones. Can anyone help me with the table in SAP CRM which has this info - BP, transportation zone & shipping conditions?
    Thanks,
    Jayasri

    Hi Jayasri,
    You can refer the table CRMM_BUT_SET0020 to get the Shipping conditions of a BP based on the Set guid which you can get from the table CRMM_BUT_LNK0011 by passing the BP guid.
    Also Transportation zone can be fetched from the table ADRC based on Address number of BP which you can get from table BUT020.
    Regards,
    PP

  • How to use snp heuristic with two direction transportation lanes?

    Dear Expert,
    now, i want to run snp plan for two location 1000 and 2000 with heuristic method.
    at the difference point of time, i run difference snp plan. for example, this month i run snp with transportation lane from 1000> 2000 for product A113 and A124. but in three next month i want to run snp with transportation lane from 2000-> 1000 for A113, A124 and A224.
    so i don't know how to config snp to do this. 'cause i know with two direction transportation lane the system will have a loop.
    please help me.
    thanks so much.

    Hello,
    If you just use location heuristic, the system is OK with the cycles. You can just run it.
    Even if you use network heuristic, the heuristic can also run. The only problem is that the low level code may not be correctly determined, which cause the sequence of the locations incorrect.
    And you also have the following options:
    1)Block the unused the transportaion lane when you want to switch to the other way.
    2)Use BADI /SAPAPO/PWB_SOS method PWB_USEX_SOS to filter the unused transportation lane.
    Best Regards,
    Ada

  • Using table function with merge

    I wanna use table function on a table type in a merger statement inside a procedure .
    1 create or replace procedure fnd_proc as
    2          cursor fnd_c is
                        select * from fnd_columns;
    3          type test_t is table of fnd_columns%rowtype;
    4          fnd_t test_t;
    5 begin
    6          merge into sample s using (select * from table  (fnd_pkg1.get_records(cursor(select * from fnd_columns)))) f
    7          on (s.application_id = f.application_id)
    8          when matched then
    9                  update set last_update_date=sysdate
    10          when not matched then
    11                 insert(APPLICATION_ID,TABLE_ID,COLUMN_ID) values(f.APPLICATION_ID,f.TABLE_ID,f.COLUMN_ID);
    12 end;
    create or replace package fnd_pkg1 as
         type fnd_type is table of fnd_columns%rowtype;
         function get_records(p_cursor IN  SYS_REFCURSOR) return fnd_type;
    end;
    create or replace package body fnd_pkg1 as
            function get_records(p_cursor IN  SYS_REFCURSOR) return fnd_type is
                    fnd_data fnd_type;
            begin
                    fetch p_cursor bulk collect into fnd_data;
                    return fnd_data;
            end;
    end;
    /When i compile the procedure fnd_proc I get the following error
    LINE/COL ERROR
    6/11 PL/SQL: SQL Statement ignored
    6/52 PL/SQL: ORA-22905: cannot access rows from a non-nested table
    item
    6/67 PLS-00642: local collection types not allowed in SQL statements
    Let me know what has to be done

    michaels>  CREATE TABLE fnd_columns (application_id ,table_id ,column_id ,last_update_date )
    AS SELECT object_id,data_object_id,ROWNUM,created FROM all_objects
    Table created.
    michaels>  CREATE TABLE SAMPLE (application_id INTEGER,table_id INTEGER,column_id INTEGER,last_update_date DATE)
    Table created.
    michaels>  CREATE OR REPLACE TYPE fnd_obj AS OBJECT (
       application_id     INTEGER,
       table_id           INTEGER,
       column_id          INTEGER,
       last_update_date   DATE
    Type created.
    michaels>  CREATE OR REPLACE TYPE fnd_type AS TABLE OF fnd_obj
    Type created.
    michaels>  CREATE OR REPLACE PACKAGE fnd_pkg1
    AS
       FUNCTION get_records (p_cursor IN sys_refcursor)
          RETURN fnd_type;
       PROCEDURE fnd_proc;
    END fnd_pkg1;
    Package created.
    michaels>  CREATE OR REPLACE PACKAGE BODY fnd_pkg1
    AS
       FUNCTION get_records (p_cursor IN sys_refcursor)
          RETURN fnd_type
       IS
          fnd_data   fnd_type;
       BEGIN
          FETCH p_cursor
          BULK COLLECT INTO fnd_data;
          RETURN fnd_data;
       END get_records;
       PROCEDURE fnd_proc
       AS
          CURSOR fnd_c
          IS
             SELECT *
               FROM fnd_columns;
          TYPE test_t IS TABLE OF fnd_columns%ROWTYPE;
          fnd_t   test_t;
       BEGIN
          MERGE INTO SAMPLE s
             USING (SELECT *
                      FROM TABLE
                              (fnd_pkg1.get_records
                                         (CURSOR (SELECT fnd_obj (application_id,
                                                                  table_id,
                                                                  column_id,
                                                                  last_update_date
                                                    FROM fnd_columns
                              )) f
             ON (s.application_id = f.application_id)
             WHEN MATCHED THEN
                UPDATE
                   SET last_update_date = SYSDATE
             WHEN NOT MATCHED THEN
                INSERT (application_id, table_id, column_id)
                VALUES (f.application_id, f.table_id, f.column_id);
       END fnd_proc;
    END fnd_pkg1;
    Package body created.
    michaels>  BEGIN
       fnd_pkg1.fnd_proc;
    END;
    PL/SQL procedure successfully completed.
    michaels>  SELECT COUNT (*)
      FROM SAMPLE
      COUNT(*)
         47469Now I'd like to see the stats and the ferrari too ;-)

  • Using table filters with transient VO attributes

    Hi,
    I have a the following use case and I cannot seem to find a valid solution on my own without falling into deep depression and/or psychotic delirium. Anyway, I'm sure there's a solution and that it's pretty simple, and hopefully someone here will know it.
    Let say I have a read-only VO with two attributes bound to the SQL query, namely Prefix and Suffix, as well as a transient calculated attribute named Compound formed of both the Prefix and Suffix separated with an hyphen.
    Now I want to bind that VO to an af:table supporting filters, showing only Compound column as Prefix and Suffix alone doesn't make much sense to the end user. I therefore use Compound as the sortProperty. For sorting, I was able to enforce correct logic by overriding the VO's getOrderByClause and setOrderByClause methods. For findMode, an old solution proposed by Steve involving overriding createViewCriteria with a custom class extending ViewCriteria that needs to override createViewCriteriaRow works. However, the filter capability of the table seems to use something different involving ViewCriteriaItemValue. Although I would be able to create a different instance when a criterion is created for the Compound attribute, but even if I do, I don't know how to split that value into two columns afterward. I guess I could create three linked values when the compound filter value is created, but it seems complicated. Best would be to hook the method returning the list of ViewCriteriaItemValue during the where clause creation, but then again, the data binding layer use that to detect what filters are applied and output the table accordingly so I cannot really remove the compound value at that point either. I could also override the getWhereClause I guess. Another solution, the simplest, would be to put the compound value in the SQL query, but I find that option appalling as it shouldn't be the database responsibility. If there's no other option I guess that what I'm going to do however.
    Anyone can shred any light on that issue?
    Regards,
    ~ Simon

    Hi Peter,
    Although it's not exactly what I need, I can indeed build a solution from that. Then again, it wouldn't be my first choice as it doesn't respect a correct separation of concerns (I guess I'm a purist). A listener is a view/controller layer entity and I would have preferred to hide the fact that the VO Attribute is a composition of two others to that layer. I would really have liked a pure model layer solution. That being said, I prefer the queryListener option to the Database one.
    Thanks,
    ~ Simon

  • Using TABLE() syntax with collection types

    Hi,
    I have created a function that returns a collection type as TABLE of VARCHAR2.
    Function works just fine like this:
    SELECT * FROM TABLE(some_fcn('VALUE1','VALUE2'));
    Where I am passing in static values.
    However, I need to join this with another table, passing in the values from that table as the parameters:
    SELECT f.some_table_key, t.* FROM some_table f, TABLE(some_fcn(f.col1,f.col2)) t;
    When I do this, I get the error "ORA-00904: "F"."COL1": invalid identifier"
    I am using 11gR1
    Could anyone please offer some guidance with this?
    Thanks!
    Edited by: odinsride on Aug 23, 2010 3:30 PM
    Edited by: odinsride on Aug 23, 2010 3:39 PM

    What are you doing differently?
    SQL> create or replace function some_fcn (col1 varchar2, col2 int)
       return sys.odcivarchar2list
    as
    begin
       return sys.odcivarchar2list (col2);
    end some_fcn;
    Function created.
    SQL> select ename, t.* from emp f, table(some_fcn(f.ename, f.empno)) t
    ENAME      COLUMN_VAL
    SMITH      7369     
    ALLEN      7499     
    WARD       7521     
    JONES      7566     
    MARTIN     7654     
    BLAKE      7698     
    CLARK      7782     
    SCOTT      7788     
    KING       7839     
    TURNER     7844     
    ADAMS      7876     
    JAMES      7900     
    FORD       7902     
    MILLER     7934     
    14 rows selected.can you give a description of your table some_table?

  • How to use table-detail with uiXML-BC4J?

    Hi,
    is there any sample code available how to use the table-detail tag with BC4J?
    Found in the UIX samples that i need to implement a hide and a show event.
    How to implement these eventhandlers for a bc4j:table?
    Thanks, Markus

    Hi Markus:
    I am doing the same thing, I have a Master and Detail VO and calling Detail VO in <detail> </detail> tag.
    Everthing thing display correctly, but when i click on the sortedcolumnheader while detail is disclosed, it closes the detail part. My detail information generated based on BC4J:Table detail:disclosed elements. could you please let me if you have faced this problem.
    Thanks
    Mohammad Tahir

  • LE-TRA pricing and Rate or Scale

    HI experts,
    I need some information about the functioning RATES or scales of transport.
    How do I set up the rates for conditions calculated about a distance and a weight / distance.
    Functional dynamics of these scales is not clear, thank you to help me understand this point.
    I need some information about transport pricing.
    thank you in advance
    D.D

    hi,
    you said rate or scale ?
    you want the condition types which you are using for FRIEGHT,  in normal pricing procedure or transporation pricing procedure.
    for normal pricing procedure there is KF00 in that basing on condition classification you can have the scales basing on the weight or distance.
    in transportation pricing procedure:
    seperate condition types are available you use which ever you want like FB00/weight.
    regards,
    balajia.

  • Problem in WD applications that use table footer area

    Hi,
    Applications that use table UI with footerVisable = true, have
    sometimes performence navigation problems ,
    when we use one of the pushbottens the application stuck.
    Any ideas ???
    Thanks Fanie.

    Faniel,
    This never was an issue. At least, your post is first one that has such complains.
    Please describe your data structure used as table source -- cardinality, existence of child nodes, supply function code/data source (i.e. Adaptive RFC, WS, etc)
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Transport zones associated with nonexistent logical switches

    Running NSX 6.1.2.
    Somehow (unknown root cause), VXLAN configuration got into an error state and I had to reconfigure it. To do that, I had to remove all logical switches from the single cluster and pretty much clean everything out to clear all the dependencies. (Test environment, so not a disaster.)
    But now I have two transport zones that cannot be deleted because NSX reports they are still associated to nonexistent logical switches.
    The UI is consistent with API results (below): summary view for the TZ shows 1 or 2 logical switches, but the detail (related objects view) list is empty for the TZ.
    API calls:
    Summary for transport zone (vdnscope): 2 logical switches (virtual wires):
    GET https://${NSX_MANAGER_URL}/api/2.0/vdn/scopes/vdnscope-4
    <vdnScope>
      <objectId>vdnscope-4</objectId>
      <objectTypeName>VdnScope</objectTypeName>
      <vsmUuid>420D40E8-2DEF-E4A3-26A5-365D194C67EB</vsmUuid>
      <revision>1</revision>
      <type>
      <typeName>VdnScope</typeName>
      </type>
      <name>danger zone</name>
      <description>test transport zone</description>
      <clientHandle />
      <extendedAttributes />
      <id>vdnscope-4</id>
      <clusters />
      <virtualWireCount>2</virtualWireCount>
      <controlPlaneMode>HYBRID_MODE</controlPlaneMode>
    </vdnScope>
    List of associated virtual wires: empty list:
    GET https://${NSX_MANAGER_URL}/api/2.0/vdn/scopes/vdnscope-4/virtualwires
    <virtualWires>
      <dataPage>
      <pagingInfo>
      <pageSize>20</pageSize>
      <startIndex>0</startIndex>
      <totalCount>0</totalCount>
      <sortOrderAscending>true</sortOrderAscending>
      </pagingInfo>
      </dataPage>
    </virtualWires>
    But delete is blocked:
    DELETE https://${NSX_MANAGER_URL}/api/2.0/vdn/scopes/vdnscope-4
    <error>
      <details>Transport zone vdnscope-4 is in use. All dependent logical switches must be removed prior to deletion.</details>
      <errorCode>812</errorCode>
      <moduleName>core-services</moduleName>
    </error>
    I'm at a loss of how to clean this up. Would prefer not to have to reinstall everything. Has this happened to anyone else?

    Hello Ganu,
    When you create a Logical Path & assign it to a physical app server path it does ask you to save the entry in a Workbench request.
    I think you can zero-in on the correct TR by checking in the table E071 (not E070 as you have done).
    In SE16 you can search for the TR using the following selection criteria:
    PGMID = 'R3TR'
    OBJECT = 'CDAT'
    OBJ_NAME = 'FILENAME'
    OBJFUNC = 'K'
    @Other posters : Did you really try it out before giving your (incorrect) responses ?
    BR,
    Suhas

  • Using OleDbDataAdapter Update with InsertCommands and getting blocking locks on Oracle table

    The following code snippet shows the use of OleDbDataAdapter with InsertCommands.  This code is producing many inserts on the Oracle table and is now suffering from contention... all on the same table.  How does the OleDbDataAdapter produce
    inserts from a dataset... what characteristics do these inserts inherent in terms of batch behavior... or do they naturally contend for the same resource. 
    oc.Open();
    for (int i = 0; i < xImageId.Count; i++)
    // Create the oracle adapter using a SQL which will not return any actual rows just the structure
    OleDbDataAdapter da =
       new OleDbDataAdapter("SELECT BUSINESS_UNIT, INVOICE, ASSIGNMENT_ID, END_DT, RI_TIMECARD_ID, IMAGE_ID, FILENAME, BARCODE_LABEL_ID, " +
       "DIRECT_INVOICING, EXCLUDE_FLG, DTTM_CREATED, DTTM_MODIFIED, IMAGE_DATA, PROCESS_INSTANCE FROM sysadm.PS_RI_INV_PDF_MERG WHERE 1 = 2", oc);
    // Create a data set
    DataSet ds = new DataSet("documents");
    da.Fill(ds, "documents");
    // Loop through invoices and write to oracle
    string[] sInvoices = invoiceNumber.Split(',');
    foreach (string sInvoice in sInvoices)
        // Create a data set row
        DataRow dr = ds.Tables["documents"].NewRow();
        ... map the data
        // Populate the dataset
        ds.Tables["documents"].Rows.Add(dr);
    // Create the insert command
    string insertCommandText =
        "INSERT /*+ append */ INTO PS_table " +
        "(SEQ_NBR, BUSINESS_UNIT, INVOICE, ASSIGNMENT_ID, END_DT, RI_TIMECARD_ID, IMAGE_ID, FILENAME, BARCODE_LABEL_ID, DIRECT_INVOICING, " +
        "EXCLUDE_FLG, DTTM_CREATED, DTTM_MODIFIED, IMAGE_DATA, PROCESS_INSTANCE) " +
        "VALUES (INV.nextval, :BUSINESS_UNIT, :INVOICE, :ASSIGNMENT_ID, :END_DT, :RI_TIMECARD_ID, :IMAGE_ID, :FILENAME,  " +
        ":BARCODE_LABEL_ID, :DIRECT_INVOICING, :EXCLUDE_FLG, :DTTM_CREATED, :DTTM_MODIFIED, :IMAGE_DATA, :PROCESS_INSTANCE)";
    // Add the insert command to the data adapter
    da.InsertCommand = new OleDbCommand(insertCommandText);
    da.InsertCommand.Connection = oc;
    // Add the params to the insert
    da.InsertCommand.Parameters.Add(":BUSINESS_UNIT", OleDbType.VarChar, 5, "BUSINESS_UNIT");
    da.InsertCommand.Parameters.Add(":INVOICE", OleDbType.VarChar, 22, "INVOICE");
    da.InsertCommand.Parameters.Add(":ASSIGNMENT_ID", OleDbType.VarChar, 15, "ASSIGNMENT_ID");
    da.InsertCommand.Parameters.Add(":END_DT", OleDbType.Date, 0, "END_DT");
    da.InsertCommand.Parameters.Add(":RI_TIMECARD_ID", OleDbType.VarChar, 10, "RI_TIMECARD_ID");
    da.InsertCommand.Parameters.Add(":IMAGE_ID", OleDbType.VarChar, 8, "IMAGE_ID");
    da.InsertCommand.Parameters.Add(":FILENAME", OleDbType.VarChar, 80, "FILENAME");
    da.InsertCommand.Parameters.Add(":BARCODE_LABEL_ID", OleDbType.VarChar, 18, "BARCODE_LABEL_ID");
    da.InsertCommand.Parameters.Add(":DIRECT_INVOICING", OleDbType.VarChar, 1, "DIRECT_INVOICING");
    da.InsertCommand.Parameters.Add(":EXCLUDE_FLG", OleDbType.VarChar, 1, "EXCLUDE_FLG");
    da.InsertCommand.Parameters.Add(":DTTM_CREATED", OleDbType.Date, 0, "DTTM_CREATED");
    da.InsertCommand.Parameters.Add(":DTTM_MODIFIED", OleDbType.Date, 0, "DTTM_MODIFIED");
    da.InsertCommand.Parameters.Add(":IMAGE_DATA", OleDbType.Binary, System.Convert.ToInt32(filedata.Length), "IMAGE_DATA");
    da.InsertCommand.Parameters.Add(":PROCESS_INSTANCE", OleDbType.VarChar, 10, "PROCESS_INSTANCE");
    // Update the table
    da.Update(ds, "documents");

    Here is what Oracle is showing as blocking locks and the SQL that has been identified with each of the SIDS.  Not sure why there is contention.  There are no triggers or joined tables in this piece of code.
    Here is the SQL all of the SIDs below are running:
    INSERT INTO sysadm.PS_RI_INV_PDF_MERG (SEQ_NBR, BUSINESS_UNIT, INVOICE, ASSIGNMENT_ID, END_DT, RI_TIMECARD_ID, IMAGE_ID, FILENAME, BARCODE_LABEL_ID, DIRECT_INVOICING, EXCLUDE_FLG, DTTM_CREATED, DTTM_MODIFIED, IMAGE_DATA, PROCESS_INSTANCE) VALUES (SYSADM.INV_PDF_MERG.nextval,
    :BUSINESS_UNIT, :INVOICE, :ASSIGNMENT_ID, :END_DT, :RI_TIMECARD_ID, :IMAGE_ID, :FILENAME, :BARCODE_LABEL_ID, :DIRECT_INVOICING, :EXCLUDE_FLG, :DTTM_CREATED, :DTTM_MODIFIED, :IMAGE_DATA, :PROCESS_INSTANCE)
    SID 1452 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1 is blocking SID 1150 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1
    SID 1452 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1 is blocking SID 1452 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1
    SID 1452 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1 is blocking SID 1156 (BTSUSER,biztprdi,BTSNTSvc64.exe) in instance FSLX3
    SID 1452 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1 is blocking SID 6 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX2
    SID 1452 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1 is blocking SID 1726 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX2
    SID 1452 (BTSUSER,BIZTPRDI,BTSNTSvc64.exe) in instance FSLX1 is blocking SID 2016 (BTSUSER,biztprdi,BTSNTSvc64.exe) in instance FSLX2

  • How do I use shipping rate tables on my listing.

    ok, really having a nightmare on this one. Explanations would be great guys  I have set up a postage policy and I ticked the large/bulky package option. It says underneath specify your shipping in your item description as it removes any further options within the policy settings themselves. If I choose flat rate [same for all] I do get 2 tick boxes at the bottom for international and domestic rate tables so I tick them as that is waht I want to use but because I chose flat rate to get those 2 tick boxes it wants me to add a value which defeats the shipping rate tables really. Other option is self collection which again turns off all other options in the policy page. When I post my item I get the choice of choosing the policy which is set to large bulky packages etc.I can enter dimensions and a weight but the ebay help description suggests I should see the option to tick the rate tables which I do not get. It mentions I cna add more options from within the P&P heading section of the item listing but I do not get that option either. I have buyers which is great news but all of them are asking for me turn on the postage /sighI would love to but cannot get any options at all to tick postage rate table as the postage setting. I have set the tables up for both domestic and international. Any advice would be appreciated as I am pulling my hair out trying to work this out  Cheers all.

    If you are using Flat Rate Shipping to ship large parcels, you are going to be losing money on postage.Here are a couple of Canadian postal codes.V8R 5G8/ K0A 0A6/ A1B 4J6 and for the USA90210/ 20500.Go to canadapost.ca and enter the same set of dimensions and weights for each of those codes.https://www.canadapost.ca/cpotools/apps/far/business/findARate?execution=e2s1And save that link- it is ridiculously hard to find.See the differences?  And use METRIC measurements. Canada Post went metric in 1974 and every other measurement will be an estimate.  The Calculated Shipping doesn't show you any tables. Instead it shows your customer how much postage is to his address. You can see this if you go to your listing->Shipping & Handling-> and then enter various destinations. It's automatic. You don't need any table. Certainly not in your listing. BDR-- Buyers Don't Read.Make the customer's job as easy as possible.   

  • BDC: How to enter data in Table control (With wizard) using scrolling?

    Using BDC, I am trying to enter the data in the table control (with wizard).
    I want to know what is the specific command to scroll down in table control (With Wizard).
    While recording I am getting these steps:
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MATNR
                   BDC_OKCODE     /00
    When I use above command and run BDC, it does not scroll.
    Kindly let me know where am I going wrong.
    Thanks in advance for your kind help.
    Ashish

    The transaction is CK94
    and the BDC recording is :
              T     CK94
    SAPLCKBASCR1     0200     X
                   BDC_CURSOR     CKI94A-BDATJ
                   BDC_OKCODE     =ENTR
                   CKI94A-MATNR     10000789
                   CKI94A-WERKS     VA79
                   CKI94A-BDATJ     2005
                   CKI94A-MGTYP     ZDU01
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MISCH_VERH(02)
                   BDC_OKCODE     /00
                   CKI94B-MIXCOST_PC(01)
                   CKI94B-MIXCOST_PC(02)     X
                   CKI94B-MISCH_VERH(01)
                   CKI94B-MISCH_VERH(02)                    40
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MATNR
                   BDC_OKCODE     /00
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MATNR
                   BDC_OKCODE     /00
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MISCH_VERH(07)
                   BDC_OKCODE     /00
                   CKI94B-MIXCOST_PC(07)
                   CKI94B-MISCH_VERH(07)                    60
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MATNR
                   BDC_OKCODE     /00
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MATNR
                   BDC_OKCODE     /00
    SAPLCKBASCR1     0202     X
                   BDC_CURSOR     CKI94B-MATNR
                   BDC_OKCODE     =STOR
    BDC_OKCODE  '/00' is recorded when I scroll down in the table control.
    Thanks for your kind  concern.
    Ashish

  • Problem with RFC to XI - using tables

    Hi experts,
    I have a RFC function module in R/3 which uses table - the table has 2 components PartNumber and ComptiaCode. But when the RFC call is made, in XI, the value of ComptiaCode is always blank. This is despite the table in the FM has been populated correctly with values for PartNumber and ComptiaCode. Pls see below xml from XI.
      <?xml

    Hi,
    This is despite the table in the FM has been populated correctly with values for PartNumber and ComptiaCode
    Check in R3 if the value for this field is being populated and sent out to PI. Your debug investigation should start at R3.
    Regards,
    Neetesh

  • Format, use and rate in easy setup with the JVC gy-hm100u

    Hi. I am about to start using Final Cut studio with my JVC gy-hm100u camcorder. What format, use and rate should I choose in the easy set up?

    sorry missed out some info:
    There is a specific codec listed in FCP set up for the JVC GY-HM100, it is only available in version Final Cut Pro 6.04 and later.
    In FCP pro v 7 you simply drag and drop to the timeline
    Earlier versions of FCP do not support the camera.
    The codec used is an XDCam EX codec

Maybe you are looking for

  • My 2nd gen IPOD touch will no longer sync with itunes.

    My 2nd gen IPOD touch will no longer sync with itunes.  it tells me it cannot read the contents of the ipod then it says the ipod software server cannot be contacted.  Any suggestions?

  • ACT! Software for Mac?

    Friends: I have a Mac only customer whose employer (all PCs) is using Act for Web (www.act.com/products/web/). Incredibly this web based database is supposedly accessible only with Internet Explorer 5.5+. My questions are: 1 - Has anyone tried other

  • How to create a folder

    I have a group of pages with the same theme.  How do I create a folder for them on desktop?  I don't want to save them in Cloud.

  • Is time capsule only used as a back up hd?

    Can it be used as an extra external hd as well, I really don't need it for backing up my files, but I would rather have something to fit all my hd movies from itunes and tv shows.

  • Break link to style

    I've just had a situation where the font in a masthead has changed. I am guessing that when the masthead was built, a default paragraph style was in place so that the masthead represented style overrides, and that somehow the overrides have been remo