Add Insert & Update

Good Morning Everyone,
In a PL/SQL can we call two Update Statements and an Insert statement between BEGIN and END ??
This is the case; on
PAGE 1 : Has a button UPDATE which has 2 update statements and it works fine.
PAGE 8 : Has a button OK with an INSERT statement and it works fine too.
When the user clicks on Button A a window pops up which is page 8, and here when I click the OK button it should do all the functions : 2 Updates and the INSERT,
but when I tried combining codes , it does only the Insert function and not the Updates
Any suggestions ???
Thank You guys, below is the code I am using
Appreciate your help
Jesh
Declare
n_id varchar2(500);
UID varchar2(2);
UN varchar2(500);
Begin
n_id := :APP_USER;
SELECT
user_id, user_name
INTO UID,UN
FROM ASQ_USER_SECURITY
WHERE user_name = n_id;
INSERT INTO ASQ_INSTITUTION_UPDT(ACT_CODE,USER_ID,PROJECT_ID,UPDT_DATE,UPDT_TYPE_ID )VALUES(:P1_ACT_CODE,UID,:P1_PROJECT_ID,SYSDATE,:P8_ITEM);
UPDATE ASQ_CONTACT
SET PREFIX =:P1_PREFIX,
FIRST_NAME = :P1_FIRST_NAME,
MIDDLE_INITIAL =:P1_MIDDLE_INITIAL,
LAST_NAME =:P1_LAST_NAME,
TITLE =:P1_TITLE,
ORGANIZATION =:P1_ORGANIZATION,
ADDR1 =:P1_ADDR1_1,
ADDR2 =:P1_ADDR2_1,
CITY =:P1_CITY_1,
STATE =:P1_STATE_1,
ZIP =:P1_ZIP_1,
COUNTRY = :P1_COUNTRY_1,
POSTAL_CODE =:P1_POSTAL_CODE_1,
EMAIL =:P1_EMAIL,
PHONE =:P1_PHONE_1,
EXT =:P1_EXT_1,
FAX =:P1_FAX_1
WHERE ACT_CODE = :P1_ACT_CODE_1 AND
PROJECT_ID =:P1_PROJECT_ID;
UPDATE ASQ_INSTITUTION
SET NAME50 = :P1_NAME50,
ADDR1 =:P1_ADDR1,
ADDR2 =:P1_ADDR2,
CITY =:P1_CITY,
STATE =:P1_STATE,
ZIP =:P1_ZIP,
COUNTRY = :P1_COUNTRY,
POSTAL_CODE =:P1_POSTAL_CODE,
PHONE =:P1_PHONE,
EXT =:P1_EXT,
FAX =:P1_FAX,
URL = :P1_URL,
FICE_CODE =:P1_FICE_CODE,
IPED_UNIT_ID =:P1_IPED_UNIT_ID,
PHOTO_ID =:P1_PHOTO_ID,
COMMENT_ACT =:P1_ACT_COMMENTS
WHERE ACT_CODE = :P1_ACT_CODE;
END;

John thanks for the reply,
Are you positive that your WHERE clauses will find existing row(s) to update?Are you positive that P1_ACT_CODE_1 and P1_PROJECT_ID have values and that those values point to existing rows in your tables?
I have a button on page 1 which does the Update (which has the same update code) and the WHERE clause works fine and Yes there are values for the rows in the table and I checked the session and these items have values. ( This is on PAGE1)
PAGE8:
Now when I click a button on page1, it opens a PopsUp (page8)  and when I checked the sessions in page 8 there was no records/items from page 1, so are the values from page 1 being lost when the popup is called ? ? ?
Or am I not passing the values properly ???
Thank You
Jesh

Similar Messages

  • I am new to using Oracle, and I am trying to create an add/insert stored pr

    I am new to using Oracle, and I am trying to create an add/insert stored procedure for a table. The PROD_CD and PLAN_CD fields in my table can have no value (empty or null) Can you please check my code and let me know what I am doing wrong?
    Table definition:
    CREATE TABLE DCWEB.USER_PLAN_PREFERENCE
    USERID VARCHAR2(40) NOT NULL,
    PROD_CD VARCHAR2(9) NULL,
    PLAN_CD VARCHAR2(9) NULL,
    STATE_LST VARCHAR2(2) NOT NULL,
    STATE_NM VARCHAR2(40) NOT NULL,
    LST_UPDATE_TS TIMESTAMP(6) DEFAULT CURRENT_TIMESTAMP NOT NULL
    ALTER TABLE DCWEB.USER_PLAN_PREFERENCE
    ADD CONSTRAINT USER_PLAN_PREFERENCE_XPK PRIMARY KEY (USERID, PROD_CD, PLAN_CD);
    -- Grant/Revoke object privileges
    grant select, insert, update, delete on DCWEB.USER_PLAN_PREFERENCE to HIGGIB1;
    Stored Procedure Definition:
    procedure setUserPlanPref (
    userid in varchar2,
    prod_cd in varchar2,
    plan_cd in varchar2,
    state_lst in varchar2,
    state_nm in varchar2
    is
    currentTimestamp timestamp := current_timestamp;
    begin
    insert into user_plan_preference (userid, prod_cd, plan_cd, state_lst, state_nm, lst_update_ts)
    values (upper(userid), upper(prod_cd), upper(plan_cd), upper(state_lst), upper(state_nm), currentTimestamp);
    commit;
    exception
    when dup_val_on_index then
    begin
    update user_plan_preference up set
    up.userid = upper(userid),
    up.prod_cd = upper(prod_cd),
    up.plan_cd = upper(plan_cd),
    up.state_lst = upper(state_lst),
    up.state_nm = upper(state_nm),
    up.lst_update_ts = currentTimestamp
    where up.userid = upper(userid)
    and up.prod_cd = upper(prod_cd)
    and up.plan_cd = upper(plan_cd);
    commit;
    exception
    when others then
    rollback;
    end;
    when others then
    rollback;
    end;
    end;
    INPUT DATA
    I am unable to insert a record calling the stored procedure with values: DCWEB4578, , 2P, CA, CALIFORNIA but when I change to the string "NULL", the insert succeeds. When I try to call the stored procedure to update the inserted record with values: DCWEB4578, "NULL", 2P, CO, COLORODO the update does not happen since I still see the original record in the table. Please advise. Thanks in advance for your help.

    938319 wrote:
    I am new to using OracleWelcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and ensure you've updated your profile with a real handle instead of "938319".
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    With APEX we're fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    Thanks for posting the complete code, it makes it so much easier to understand the problem, but always post code wrapped in tags<tt>\...\</tt> tags to preserve formatting and special characters.
    and I am trying to create an add/insert stored procedure for a table.Does this have anything to do with APEX, for which this is the forum? General SQL &amp PL/SQL matters should be directed to the {forum:id=75} forum.
    The PROD_CD and PLAN_CD fields in my table can have no value (empty or null) Can you please check my code and let me know what I am doing wrong?This:
               commit;
    exception
    when others then
    rollback;
    end;
    when others then
    rollback;Remove it all.
    Commits should be issued by end user/client software on completion of a transaction. This means <tt>commit;</tt> should almost never appear in PL/SQL code. The main exception to this is in <tt>dbms_job/secheduler</tt> scheduled processes that have no client or UI. If this code is executed from APEX, then APEX issues more than enough commits anyway.
    exceptions are just a way of ensuring your code is buggy.<tt>when others</tt> exceptions are just a way of ensuring your code is buggy.
    INPUT DATA
    I am unable to insert a record calling the stored procedure with values: DCWEB4578, , 2P, CA, CALIFORNIA but when I change to the string "NULL", the insert succeeds. When I try to call the stored procedure to update the inserted record with values: DCWEB4578, "NULL", 2P, CO, COLORODO the update does not happen since I still see the original record in the table. Please advise. Thanks in advance for your help.With the <tt>commit</tt>s and <tt>when others...</tt> removed from the code you'll have a chance of seeing what's actually happening. Note that the entire procedure can be simplified by writing as a MERGE</tt> statement.

  • Insert,update and delete data in a table using webdynpro for abap

    Dear All,
    I have a requirement to create a table allowing the user to add rows in it and update a row as well as delete a row from that table.To do this I guess I have to make use of ALV.But using ALV I am not able to enter data to a table where as I can make a column editable delete a row etc. please guide me to perform these operations(insert,update and delete) on table.
    Thanks,
    Reddy.

    Hi Sridhar,
    By using ALV you can do all insert delete etc things. if you want to edit i mean you can yenter data in ALV.
    Check this...
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1
    Editing alv in web dynpro
    editing rows in alv reports
    Re: editing rows and columns in alv reports in webdynpro abap
    Cheers,
    Kris.

  • XML PARASE and insert /update in corresponding tables

    Hi,
    I have a XML in which master details tables 3 tables.I want to separate element and insert/update in corresponding tables dynamically.
    Table invlovled in A,B,C
    Thanks
    Reena

    Reena
    The easiest way to do this is along the following lines..
    (1) register an XML Schema that describes the XML you wish to process with theh database.
    (2). create a relational view for the top level elements and for each repeating element (element where maxOccurs > 1 in the XML Schema)
    (3) Use 'insert as select' or other SQL type processing to update your relational tables from the contents of the view
    It is normally recommended that you add the following annotations to the XML Schema before registering it with the database
    (1) At the schema level set xdb:storeVarrayAsTable="true".
    (2) At the complexType level set xdb:maintainDOM="fasle".
    If you search the forum you will find a lot of examples of creating relational views of XML content stored in the XML database. Typically these examples will include key words like 'create or replace view' and 'table(xmlsequence(extract' or 'xmltable'.
    Hope this helps...
    -Mark

  • Weird Radio button issue on Insert/Update form

    I recently installed Dreamweaver CS4 and am having a heck of a time with radio buttons on my Dynamic Insert/Update form.
    For some reason, when I update a record, the radio button I had previously selected, is NOT checked.  However, the value is in the mySQL db.
    I've tried this in several different folders, thinking there was a conflict (css, js or whatever) but have had the same issue every time.  I even updated my DDT includes folder but still no luck.
    Has anyone had an issue like this with Dreamweaver CS4 and know how to solve it?
    Also, I should probably add the Dreamweaver CS4 has crashed at least 3 times per day since I installed it less then a week ago.  My computer easily meets the required specs (3.39GHz, 2GB RAM, 75GB HardDrive).   Something is obviously wrong.  Whether its my computer or CS4, I'm not sure.
    Any help is appreciated!
    Thanks!
    Peter T

    OK, I've figured out what the issue is but not why.
    See the code below.  For some reason, where it should be {echo "checked";} its {echo "@@checked@@";}
    Anyone else run into this situation?
                <td><div>
                  <input <?php if (!(strcmp(KT_escapeAttribute($row_rssample_sam['answer_sam']),"1"))) {echo "@@checked@@";} ?> type="radio" name="answer_sam_<?php echo $cnt1; ?>" id="answer_sam_<?php echo $cnt1; ?>_1" value="1" />
                  <label for="answer_sam_<?php echo $cnt1; ?>_1">Yes</label>
                </div>
                  <div>
                    <input <?php if (!(strcmp(KT_escapeAttribute($row_rssample_sam['answer_sam']),"0"))) {echo "@@checked@@";} ?> type="radio" name="answer_sam_<?php echo $cnt1; ?>" id="answer_sam_<?php echo $cnt1; ?>_2" value="0" />
                    <label for="answer_sam_<?php echo $cnt1; ?>_2">No</label>
                  </div>
                  <?php echo $tNGs->displayFieldError("sample_sam", "answer_sam", $cnt1); ?></td>

  • EF Inserts/Updates: Ridiculously Slow

    I cracked open the latest version of EF the other day. I had a project where I wanted to insert a lot of data in one hit. The number of records I wanted to insert was about 2,000,000. There are about 8 decimal columns in the table. So, I wrote the code in
    EF. I wrote the code with an "Add", and then a "SaveChanges". What was taking an hour and half to write to XML suddenly jumped to an estimated time of 48 hours. (Note: most of the 1 1/2 hours is downloading data from the internet).
    So I put an time trace in to see where each action was spending its time. The "Add" (putting the record of the type I want to insert in to the collection) was taking about 300 milliseconds and the "SaveChanges" was taking about 500 milliseconds.
    This is simply absurd.
    When I changed the code to avoid using EF - i.e. executing a straight INSERT statement against the SQL server database, the time went back down to about 1 1/2 hours. I found that the insert call was only taking about 2-3 milliseconds.
    I thought perhaps EF was doing too much at the database level. So, I traced SQL Server. To my surprise, I found that EF was only executing insert statements in the same way I was executing the insert statement. So, why so slow? What's wrong with EF and when
    will it be fixed? Is it even possible to use EF?

    Several things are important here. First of all: what do you want to do, using which tool,
    and how do you implement it.
    Concerning the what and which-tool:
    several people have already stated that an ORM is not the tool of choice when a bulk insert is what you actually want to do. EF has tons of great features but it’s simply not a solution for every problem.
    Then there’s the question of
    how you use EF. Two important things that come to mind here are the fact that by default EF tracks all entities that are attached to it, and that a call to savechanges will result in the execution of one insert/update statements for each of the changed
    entities.
    Let’s assume that EF was applied in this scenario, in the most simple –and naive - way imaginable. We create a context, we add 2M entities, we call SaveChanges.
    Then we can take a very long break… Now let’s take a look at what happened here. 2.000.000 entities were attached to the context and it will be tracking all of them for changes – that’s a lot to handle! Once all entities are attached, the SaveChanges method
    is called. At this point all modified/new entities are persisted to the database. But EF will actually do this using 2M single insert statement. Ouch.
    Now there are two issues here. One is the fact that EF executes only one update/insert statement at a time. You can deal with this using EF extensions that
    actually implement the bulk insert you’re looking for. The second issue is the number of entities attached to the context. You can significantly increase performance by lowering the number of attached entities. You could go about this by batching: for the
    first set of 500 entities create a new context, add and save the entities; then create a new context for the next 500, and so on.

  • APEX time to insert update and/or records

    Hello everyone,
    I know how to get the time APEX needs to load a repor! But how can I get the time APEX took to insert, update and or delete a records!! Does this work with #TIMING# as well??? If it does where to put this...
    Thank you
    Regards
    Sebastian

    I use the APEX version 2.0.1 provided by the Oralce Database 10g XE!
    And I wanna know how long it takes to insert, update or delete a records???
    I may should add that I link the different buttons to the specific processes to running the approproated sql statements!
    When I use the debug mode as mentions there is no hit how long APEX took to insert, update or delete a records. It just shows the basic time values how long it takes to load the whole application.
    Regards
    Sebastian

  • OWB : INSERT/UPDATE IS GIVING  VLD-2752 WARNING WHEN VALIDATING MAPING

    I desing maping for dept,emp tables in OWB,
    I AM USING INSERT/UPDATE TABLE OPERATOR PROPERTIES FOR TARGET TABLE,
    WHEN I TRY TO VALIDATE IT I AM GETING THIS WARNING
    VLD-2752: Attributes of update matching criteria are not mapped in dept_emp_merge
    can any body explain me about this problem and how to solve it?
    Thanks & Regards,
    k azamtulla khan

    Hi azamtulla khan,
    It seems your mapping is fine. i thought problems is contsratints. 
    can you check in your target table having primaykeys are not.
    if target table has primay key set the target properties insert/update.
    if target does not have any keys try to add key's.
    regards
    venkat
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Insert/Update Record - Server Behavior

    Help Please!
    I have several pages with forms that insert records, but I
    over the weekend when I went to open them from the web to
    insert/update records errors appeared. They were working fine
    before. Using PHP, MYSQL and Dreamweaver CS3
    I have tried everything I know to do. I have recreated the
    page, same problem as well as delete behaviors and reapply them.
    Once the server behavior is added it no longer says Insert
    Record in the Application window instead it says "Dynamic
    Attribute" Further, when I click it to make any changes etc,
    instead of the screen for Insert or Update record coming up it is a
    "Dynamic Text box" regarding POST or GET or URL stuff.
    Edited to add: And once posted, the page only shows an error
    and references this line
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    Error Message
    Parse error: syntax error, unexpected '<' on line 40
    What can I do?

    You don't say which server-side language you're using, but the way that I would troubleshoot this in PHP is to use echo to display the value of $_SESSION['MM_Username'] at the bottom of the admin page. This is the session variable Dreamweaver uses to control access to a page with username and password. If the value is displayed, it means sessions are working, and the variable hasn't been destroyed.
    If that works, move onto the next page, and use echo to display the value of $_SESSION['MM_Username'] as soon as the session has been started. To prevent being redirected to the fail page, temporarily comment out the following line:
    header("Location: ". $MM_restrictGoTo);
    Basically, you need to check what's happening to the session variable that controls access to the pages.

  • New Feature: Generate Statements (select, insert, update)

    I finally moved to ubuntu, so no more toad for me. It will be nice if sql developer could have the generate statements menu ( select, insert update) found in Toad. This should be extremely simple to do. In my case it actually save me time when testing and creating store procedures.
    Maybe the feature is there and I just dont know where it is.
    Thank you.

    There's an existing request for this on the Exchange; vote on that one to add weight, to increase chances of implementation.
    Uncontaminated? How can you say that if you don't know what it's like being contaminated? You'd wish you were ;-)
    Although I really like sqldev, the numerous bugs and performance issues I hit every day still force me now and then to use the much more mature Toad. At least I'm sure it does what I want it to do and that it won't screw up our production environment.
    K.

  • Concept insert,update,delete and select

    hi all, i want to ask
    Where I get an explanation of the concept of work process insert, update, delete and select records. From the user starts the query until accessing records the physical . or is there that can give the picture of concept process insert,update,delete and select record??

    I'm not sure what are you asking here.
    Are you asking how do I do these operations in a JDeveloper built application? Which technologies are you using?
    Have a look at this tutorial for the basics of how to do select/update - insert and delete are two more operations you can add to your page from the data control:
    http://www.oracle.com/technology/obe/obe11jdev/ps1/ria_application/developriaapplication_long.htm

  • Insert/Update Stmt not working

    Hello,
    I have created a region that hides and shows based on on javascript. I had to add a new field into this region and now it won't write to the database, it displays correctly on the form. I copied the field from another field and renamed it to p12_joint_service_trng. The field is a radio button that uses a LOV
    It will not write the p12_joint_service_trng to the database and I'm not getting any syntax errors for it. The other code works correctly.
    The page process below:
    -------------INSERT/UPDATE INTO DFCY_CATG_TABLE-----------
    IF :P12_DFCY_SEQNO4 IS NULL and :P12_DFCY_CATG_C IN('1','2','7','6','3') THEN
    INSERT INTO DFCY_CATG (DFCY_SEQNO,DFCY_CATG_C,INFRSTRCTR_NARR,OPFORCE_EMP_NARR,PERS_QTY )
    VALUES(:P12_DFCY_SEQNO,:P12_DFCY_CATG_C,:P12_INFRSTRCTR_NARR,:P12_OPFORCE_EMP_NARR,v_dfcy_pers_qty);
    ELSE
    UPDATE DFCY_CATG
    SET INFRSTRCTR_NARR = :P12_INFRSTRCTR_NARR,
    PERS_QTY = :P12_PERS_QTY,
    OPFORCE_EMP_NARR = :P12_OPFORCE_EMP_NARR
    WHERE DFCY_SEQNO = :P12_DFCY_SEQNO;
    END IF;
    ------------------------INSERT/UPDATE DFCY_CATG_TRNG----------------------------------------
    -------------INSERT/UPDATE INTO DFCY_CATG_TABLE TRAINING-----------
    IF :P12_DFCY_SEQNO4 IS NULL and :P12_DFCY_CATG_C = '4' THEN
    INSERT INTO DFCY_CATG(DFCY_SEQNO, DFCY_CATG_C, JOINT_SERVICE)
    VALUES(:P12_DFCY_SEQNO, :P12_DFCY_CATG_C, :P12_JOINT_SERVICE_TRNG);
    ELSE
    UPDATE DFCY_CATG
    SET JOINT_SERVICE = :P12_JOINT_SERVICE_TRNG
    WHERE DFCY_SEQNO  = :P12_DFCY_SEQNO;
    END IF;
    ---------------INSERT/UPDATE DFCY_CATG_TABLE_POLICY----------------
    IF :P12_DFCY_SEQNO4 IS NULL and :P12_DFCY_CATG_C = '5' THEN
    INSERT INTO DFCY_CATG(DFCY_SEQNO, DFCY_CATG_C, JOINT_SERVICE, POLICY_DOCTRN_NARR)
    VALUES(:P12_DFCY_SEQNO, :P12_DFCY_CATG_C, :P12_JOINT_SERVICE, :P12_POLICY_DOCTRN_NARR);
    ELSE
    UPDATE DFCY_CATG
    SET JOINT_SERVICE = :P12_JOINT_SERVICE,
    POLICY_DOCTRN_NARR = :P12_POLICY_DOCTRN_NARR
    WHERE DFCY_SEQNO = :P12_DFCY_SEQNO;
    END IF;
    Thanks for the help,
    Mary
    Edited by: MaryC on Feb 9, 2010 3:09 PM

    Mary:
    Check the sesion state browser and verify that the page-items referenced in the 'INSERT/UPDATE DFCY_CATG_TRNG---' block you the page-process code have the expected values.
    varad

  • Need Sample Code in C#  to Insert,Update,Query data using W 2.0 wsdl

    Hi,
    Can anyone please share sample code in C# to Insert,Update,Query data using W 2.0 wsdl.
    Thanks in advance

    I have found solution.
    Need add following line for non string data type.
    objOutreachUpdateList.Opportunity[0].IndexedNumber0Specified = true;

  • Confirmation before insert, update or delete

    Hi,
    I want to create something like alert which before insert or update or delete ask me to do that. I mean that if i am going to insert a record, it will ask me "Are you sure you want to insert record", and provide two buttons OK and cancel. If i press cancel then it will not let me do that. I tried confirm function of javascript but even when i clicked cancel it went to insert the record. How can i achieve this functionality.
    Thanks

    YOU CAN ADD THE FOLLOWING JAVASCRIPT CODE UNDER THE "onClick" EVENT FOR THE INSERT/UPDATE/DELETE BUTTONS...
    var x=window.confirm('Do you want to proceed?');
    if (!x)
    return false;
    IT WORKS FOR ME
    I HOPE IT HELPS..
    null

  • Need user response(confirmation) before Insert, update or delete

    Hi,
    I want that before insert or update or delete etc., an alert is shown to the user and if the user click OK button then that action is performed on database otherwise not. I wrote following javascripts in a user interface template and then called this function but it did not work
    function confirm_Modification_delete ()
    if (confirm("Are you sure you want to remove this record?"))
    return true;
    else
    alert("You click Cancel")
    return false;
    in the same way i also created insert or update alerts but when i clicked cancel even then they perform the insert or update or delete. How can i correct these scripts or get this functionality.
    Thanks
    Muhammad Ejaz
    null

    YOU CAN ADD THE FOLLOWING JAVASCRIPT CODE UNDER THE "onClick" EVENT FOR THE INSERT/UPDATE/DELETE BUTTONS...
    var x=window.confirm('Do you want to proceed?');
    if (!x)
    return false;
    IT WORKS FOR ME
    I HOPE IT HELPS..
    null

Maybe you are looking for

  • Red light on LED of charger?

    Instead of the usual green light, the LED is red.  What does this mean?

  • Sort order - Finnish_Swedish_CI_AS

    Don´t get the sort order here: I would say that aggr_gem-01 and aggr_gem-02 should come next to each other - but apparantly not. - anyone know why ? SELECT [name] FROM [LagringsAdm].[dbo].[FLtest] order by [name] gives: name aggr_gem-01 aggr_gem01_mi

  • DAO J2ee design pattern

    Hi, I understood the structure of DAO pattern like : The business Object uses Data AccessObject which encapsulates the DataSource. The DAO creates/uses the Transfer Object and the BusinessObject obtains/modifies the Transfer Object. Can i get the sam

  • Process Chain Tables (Help)

    Hi,  I am reporting from the RSPCPROCESS table and found that a unique combination of fields is LOGID, TYPE, VARIANT, and INSTANCE.  That is until I found that we have an ABAP Process that when it fails does not populate the INSTANCE field.  The proc

  • Price simulation of Info Records

    What cause when I did price simulation for Info Records the calculated value does not same with create material cost estimate with quantity structure(ck11n). I  only have 1 vendor for the material. Where and how to check the error?