Master Details Join Issue

I have two tables like master child
master contains
id value charges date
1 10 2 01-jan-10
2 25 4 01-jan-10
3 15 1 02-jan-10
child contains id qty price item
1 1 2 it1
1 2 4 it5
2 1 25 it3
3 1 5 it2
3 1 5 it3
3 1 5 it4
I want result with the join of these tables
date value charges noof item
01-jan-10 35 6 4
01-jan-10 15 1 3
If I am trying with joins
SELECT A.date,SUM(A.VALUE),SUM(A.CHARGES),sum(b.qty) FROM test_HEADER A,test_DETAILS B WHERE A.ID=B.ID
GROUP BY A.trans_date giving wrong result
Edited by: SA123 on Feb 10, 2010 10:37 PM
Edited by: SA123 on Feb 10, 2010 11:06 PM

Hi,
It looks like:
SELECT    m.id, m.value, m.charges
,       SUM (c.qty)      AS total_qty
FROM       master      m
JOIN       child           c     ON     m.id     = c.id
GROUP BY  m.id, m.value, m.charges
ORDER BY  m.id
;If that's not right, then post a little sample data (CREATE TABLE and INSERT statments) and the results you want from that data, formatted so it's possible to tell what is in each column. When posting formatted text on this site, type these 6 characters:
(small letters only, inside curly brackets) before and after each section of formatted text.
It's also helpful to post your query, even if it's not quite right.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Wizard generated Master-Detail form issues

    The wizard-generated master/detail forms have several severe usability issues when the "Choose Layout" option is set to "Builder master detail with: edit detail as tabular form on same page".
    Some of these issues are:
    - The form has two Apply Changes buttons, one to save the master row and one to save the detail row. Users find this very confusing. If you save the master row changes, any changes to the detail rows are lost and vice versa.
    - The form has two Delete buttons, one to delete the master row and one to delete the checked detail rows. Users find this confusins also. Clicking the lower delete button discards any other changes that were made.
    - The Add Row button also discards any other changes that were made.
    The first two issues are easily fixed. With a few simple changes to the generated page, I can make it so there is a single "Apply Changes" button that 1) saves any changes to the master row, 2) saves any changes to detail rows and 3) deletes any checked detail rows.
    I cannot figure out how to solve the third issue (that the add row button discards any changes). I can make it so the "Add Row" button saves the changes, but this isn't user friendly either; I don't think any changes should be comitted unless the user specifically presses 'Apply Changes'.
    So far, I thought of several ways to possibly fix this but can't get any of them to work. Some of the ideas were:
    1. The 'Add Row' button could run the automatic row processing and MRU processes, but not do a commit untill/unless Apply Changes is pressed. I don't think this is feasible because http is stateless and connection pooling may be used, so we can't have a transaction that spans http requests.
    2. Move the Add Row process to page rendering so that the detail table always has an empty "add row" row thereby making the Add Row button unnecessary. I tried this, but it looks like the add row process was designed to run during the page processing, not during rendering, and it fails with a divide by 0 error when it is run during page rendering.
    3. Use client-side DHTML (instead of the HTML DB add row process) to add an empty row to the html table (i.e. add row button does not do a submit, it is handled entirely on the client). I tried this, but the MRU process fails because it doesn't expect the added row.
    If anyone has any other ideas on how to fix this problem, they would be greatly appreciated.
    HTML DB solves this problem in the SQL workshop create table wizard.
    In HTML DB 1.6, the "Add Column" button does a submit but somehow saves any changes that were entered.
    In HTML DB 2.0 beta, client-side DHTML is used (my approach 3 above).
    Can someone from Oracle share how the HTML DB create table wizard solves this problem?

    Eric,
    Thanks for your feedback. I’ll add your suggestions to our list of tabular form enhancement request.
    The wizard generates a regular form for the master record and a tabular form for the detail records. As you pointed out, it’s quite easy to customize this to your individual needs.
    Unlike regular forms, there’s currently no session state concept for tabular forms, so you either need to write your data to the database, or you will loose any changes if you e.g. paginate. For the same reason, the “Add Row” button and the associated process is generated so that any changes are saved to the database before adding a new row. Of course the MRU process that is executed on “Add Row” can be removed, if that is the preferred behavior.
    A work around would be to code the DML processes for tabular forms manually, and temporary store the data in HTML DB collections to simulate a stateful behavior.
    In HTML DB 2.0 we started adding DHTML features, such as the create table wizard you’re referring to. Some features, like the pull down menus, will be available to be used in your own applications. Other features, like the DHTML tabular form, won’t be available for custom applications in 2.0.
    Regards,
    Marc

  • Master detail form issue

    Hello,
    I am unsure if this is a bug or how I'm doing things. I'm using version 4.1.
    I am creating a master/detail report (on the same page) using the wizard to create the page. I have no problem creating the page and it works. The only changes I make to the detail region (which is a report) is to set it to display one record at a time, enable partial page refresh and change the layout to a vertical list including null columns. Essentially I want to see one record at a time. I can certainly page through them one at a time. However if I press "Add Row" it creates a new blank record below my existing one. If I keep pressing "Add row" I keep getting more blank rows. Shouldn't this blank row overwrite the currently displayed row so that there is only one row at any given time (whether its blank or a populated line). If I'm saying I only want one shouldn't it only ever display just one record regardless of whether your adding or reviewing existing detail records. It seems to me that if I tell it I only want one row, it shouldn't allow me to keep adding rows indefinitely which end up getting added to rows already on the screen. On a vertical listing with a lot of fields, you could end up scrolling for days.

    Hi -
    My assumptions are:
    1) That you have created Master/Detail form with both Master and Detail regions on the same page.
    2) The problem of NOT seeing the Detail happens when you are inserting (not updating) on Master,
    in other words when you are creating a new user in Master section.
    The Detail section (as created by Apex Master/Detail wizard) is a Report with a Condition set for display:
    "Value of Item in Expression 1 Is Not Null" with Expression 1 populated with PK of Master.
    So, change this condition to None and empty Detail section will appear in Create mode.
    Note that you must now set the Form object that holds the PK for new Master record by some means,
    (maybe a Page Process or such) before the Save is done, otherwise Detail record will not have FK.
    Also you are going to have to play with the Conditions on the ApplyMRU and ApplyMRD Processes created
    by the wizard to make sure they are only firing in Create mode when the Save for the whole page is submitted.
    Lastly you can clear the values on the page with a Process of type "Clear Cache for all Items on Pages" that fires
    last after page submission, again this may need a Condition to prevent clearing items before you are ready...

  • Master/Detail Development Issues

    Hi All,
    Could you please share your expertise if you faced the problem listed below
    1)I have a form based on a single table with two fields (org_id ,org_name) to maintain organization
    a)org_id is getting value from sequence.when I open the form,I see the sequence getting populated,
    looks good for insert mode,but for Query/Reset Mode ,it doesn't work,because the value(new sequence number) doesn't exists
    WorkAround : Go to that field and nullify the value for the org_id and then do Query/Rest ..
    Result : It works.
    Is there way I can clear the Value for the field Org_Id(which is populated by sequence) after Reset Button is pressed.
    If So ,please share your ideas
    b)With the above form,,If I hide the Column Org_id (still sequence is generated to insert value)
    the form works fine for Insert mode..but it errors out for Update/Query/Rest Mode ...
    Any solution for this ?
    The user doesn't want to see the Org_Id.
    2) I have a column called Requested_By in the form..where I want to populate LastName,FirstName
    How can I achieve it ?
    3)How to set format mask for the field that represents dollar amount ?
    For Eg :for $100,000.00 should i say --> $$$,$$$.nn ????
    4)I have created a Master /Detail Form...I am displaying 5 lines on the detail block.If the user wants to enter more records how do I accomplish it .? In other words I am not seeing Next/Previous button on the detail block ...where as I see those buttons in the Master Block in Query Mode.. ...
    5)I have a LOV (to list items)..When the user selects the item from the LOV in the ,is there a way ,I can store the Item_Id which is a hidden column for that row in the detail block
    6)In which directory I can see the archive files to delete physically which I no longer needed?
    Thanks in Advance
    Babu

    A couple of very quick answers for now...
    1. You can write code in the PL/SQL section of the Save button to populate the Org_Id. Loop through the details and if the action = 'INSERT' then A_ORG_ID := the next sequence value.
    2. More coding can do the trick. Where do you want to get the FIRST and LAST_NAME values from?
    4. It doesn't exist, you cannot (by default) change the number of detail lines at run time.
    You can code a button for it but in the meantime, this workaround works:
    - User enters all details, clicks Save. The form will be cleared
    - User enters same Master entries, but new Details entries and Saves again. It will append the new details to the Detail table.
    6. Are you referring to the old code versions for your M/D form? If so, click Manage next to your M/D form. On the Develop tab, click Delete. It will bring up all the versions you can delete.

  • Master detail form issue retrieving service price automatically

    Hi,
    I developed a master detail form in order to process service requests.
    On details block I'm trying to retrieve automatically service price after I select service name from LOV.
    For this purpose I created a application plsql process
    declare
    v_price service.price%type;
    begin
    select     price into v_price
    from      service
    where      service_no = 1;
    htp.prn(v_price);
    exception when others then htp.prn('An error occurred retrieving the PRICE');
    end;
    Which process I'm calling through javascript function in order to retrieve service price.
    <script type="text/javascript">
    function GetServicePrice(pThis)
    var vRow = pThis.id.substr(pThis.id.indexOf('_')+1);
    html_GetElement('f07_'+vRow).value = new htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=getPrice',0);
    </script>
    Instead of price it returns this value: "[object Object]".
    Is it possible to work as I intended or it should other way around?
    I appreciate your help/comments.
    Application Express 4.2.1.00.08
    Oracle Database 11g Express Edition Release 11.2.0.2.0
    Regards,

    Tonito99 wrote:
    Hi Tom,
    I applied these changes on page HTML Header, but now it's not returning nothing.
    f07_ (price column) is empty.
    <script type="text/javascript">
    function GetServicePrice(pThis)
    var ajaxRequest = new htmldb_Get(null, $v('pFlowId'), 'APPLICATION_PROCESS=getPrice', 0);
    var ajaxReturn = ajaxRequest.get();
    $s('f07_'+vRow, ajaxReturn);
    </script>
    Any other suggestion?
    Regards,
    Edited by: Tonito99 on Mar 8, 2013 3:32 PMIf you are on apex 4.2 why are you still using the legacy/undocumented methods?
    You should use new javascript API apex.server.process
    apex.server.process ( "getPrice", {
    success: function( pData ) { $s('f07_'+vRow, pData);}
      } );

  • Master details relation issue....

    Hello folks,
    I have 2 datablocks with the relation master-details, what i need for my application is when i execute a query on the master block only the records that have details appear in my query in others words i don't for user to see records in master block where these records don't have details records???? is this is possible??
    please help

    In the default where clause of the master block you add something like this:
    where exists (select 'x' from detail_table dt
                  where dt.foreign_key = primary_key)

  • Master Detail relation Issue

    hi all
    I am facing an issue in Oracle Forms when I am trying to add a database item to a database block. As soon as I add the new database item to this block, an already existing relation (created between this block, as detail, and another block) stops working and ‘No Data Found’ exception occurs.
    Please let me know if anyone has come across the similar issue or if I am missing something.
    Thanks in advance

    How did you created the database item?
    copy - paste another item and re-named?
    If that is the case, then check the column name property of the newly created item,
    give the correct column name and try.
    If that is a list item, if all the possible values are not present in the elements, this problem can occur
    If that is a check box item, then if other values property is set as not allowed, then also this problem will come
    Edited by: Dora on Dec 22, 2009 4:31 PM

  • Several reports on joined master-detail tables with single row source

    I have 1 master table (Fixed Assets) and several datail tables (Improvements, Depreciation, ...)
    I need to create several reports based on them all with criteria
    'Select ALL from Master and join details
    /1 total row from details for 1 master row/
    filtered by [on_date <= report_date]'
    How to do it better and not copy same code in every report?
    As mentioned on this forum, ApEx is not able to use RefCursor as row source for ApEx reports
    So I tried this Tom Kyte's example:
    create type apex_user.myRecordType as object
    (seq int,
    a int,
    b varchar2(10),
    c date
    Create Or Replace Type Apex_User.Mytabletype As Table Of Apex_User.Myrecordtype;
    create or replace function Apex_User.my_function return Apex_User.myTableType
    Is
    l_data Apex_User.myTableType;
    Begin
    l_data := Apex_User.myTableType();
    for i in 1..5
    loop
    L_Data.Extend;
    l_data(i) :=Apex_User.myRecordType(i, i, 'row ' || i, sysdate+i);
    end loop;
    Return L_Data;
    End;
    Select *
    from TABLE (cast(Apex_User.my_function() as Apex_User.mytableType))
    Where C > Sysdate+1
    Order By Seq Desc
    SEQ A B C
    5 5 row 5 22.08.2010
    4 4 row 4 21.08.2010
    3 3 row 3 20.08.2010
    2 2 row 2 19.08.2010
    4 Rows Selected
    - and it really works from ApEx reports.
    The questions are:
    1) is this the best solution for my task (one centralized code for several reports with parameter filtering detail tables)?
    2) how to change example properly to have here -
    loop
    L_Data.Extend;
    l_data(i) :=Apex_User.myRecordType(i, i, 'row ' || i, sysdate+i);
    end loop;
    - simple SELECT from my MASTER-DETAILS joined tables?

    Hi,
    if (row != null)
    Row masterRow = row;
    vo.setCurrentRow(masterRow);
    // not needed : getMesReponsesPourTiersVO1().executeQuery();
    You shouldnot execute the child VO after setting current row in master VO.
    When the current row is set in master VO, then the child rows will get refreshed automatically.
    Cheers,
    Prasanna

  • Join 2 tables and display in Master Detail Form

    Hello Everyone,
    Please help me out on the following.
    I have 2 tables with common field ID I want to join the 2 tables and will show the results on Master Detail form .Please suggest me on this thing .
    Thanks

    Hi,
    The ID primary key on the details table should be ok provided you have some means of populating it - usually via a trigger that gets a new sequence number.
    When the page is loaded, do you see data in the details tabular form? Or is the problem only for when you are creating entirely new master/detail records?
    When adding a new record into the details form, the FK field should be populated with the PK of the master form by default. On this report, go to the Contract_Number column and have a look at the Column Attributes for it. You should see a section for Tabular Form Element and in there are two settings - Default Type and Default. The Default Type should be Item.... and the Default should be the master record's PK page item name (eg, P1_CONTRACT_NUMBER). Underneath these settings should be the settings Referrence.... - check that these correctly point to the field on the details table. If you have different settings, try changing them - otherwise, list them here so that we can check
    Andy

  • Salesforce issue- Accessing Objects and Reports with 2 master-details

    I'm using Crystal Reports XI r2 with the Salesforce data connector installed, and I know the same issue exists in CR 2008 as well.  With version of the Salesforce API that the Crystal - Salesforce connector is using, objects that have 2 master-detail relationships are not available to add to reports.  Even if I create a stanard Salesforce report with an object with 2 master-details, that report isn't available in the "Stored Procedures" of Salesforce in Crystal.  The API is about 3 years out of date, any word on when a new version will be available?  This is a big limitation.

    Try SP3 for CR 2008. Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Issue with multiple level master details

    Hi All,
    I just came around with following scenario and found it is not working as expected.
    GFVO ( Primary Key Attribute -> GFID )
    | ---- ViewLink between GFVO and ParentVO on attribute GFID
    Parent VO (PrimaryKey PID )
    | -- ViewLink between Parent VO and Child VO on attribute ATTR1
    ChildVO (PrimaryKey CID )
    Data ->
    GF VO has record -
    1 , xyz
    2 , abc
    Parent VO
    PID Name PGFID ATTR1
    1 ppp 1 1
    2 ttt 1 2
    3 lll 2 1
    4 kkk 2 2
    Child VO
    CID Name ATTR1
    1 cc1 1
    2 cc2 1
    3 cc3 2
    4 cc4 2
    Requirement is I want to show the name attribute of Parent in Child VO. I have used parent accessor exposed in child to display the name of the parent. When I use this multiple hierarchy in AM and run it I find the wierd result.
    Say I select Row (2 , abc) in GF VO.
    I should see below two rows in Parent Row.
    PID Name PGFID ATTR1
    3 lll 2 1
    4 kkk 2 2
    Now I select Row ( 3 lll 2 1 ) in Parent VO , it shows the following Child ROw I get this result -
    CID Name ATTR1 ParentName( accessed throug ViewAccessor)
    1 cc1 1 ppp
    2 cc2 1 ppp
    Gotcha ..... Parent Name ? I am assuming that when we try to access the parent through accessor it will give the parent row from the already filtered VO based on first Viewlink. Rather it requires and gives the first parent as if I m having a single join.
    Thanks,
    Rajdeep

    Hi,
    for a master-detail between tables you create a tree binding each. Assuming the data model you defined contains the three view objects in a hierarchy, you simple drag the parent, then the first child and then the second child as a table to teh view. You then configure the PartialTriggers property of child2 table to point to child1 and parent table. The child 1 table partial triggers property will point to the parent table. This should make the m/d work. If on the server you want to use accessors in the code to get to the details of a child (on the client I would use the iterator binding in the PageDef file), make sure you access the correct instance of the ViewOject
    Frank

  • Issues in Processing the Master-Detail Form values

    We have a requirement in Oracle Internet Expenses (11.5.10) to fetch the form values from the Expense Allocations Screen.
    This page is based on Multiple VOs with Master Detail relationship. The data from the VOs mentioned are displayed in the Hgrid region.
    I need to fetch the input values for three fields (from different VOs) and pass them as paramater to the database function to perform the validation.
    Here, I am creating the handle for VO objects and using the Row object getting all rows in range (getAllRowsinRange()).
    The issue here is always, the Row length() is always fetched as 1 even it has multiple rows.
    Any help on this would be highly appreciated.

    Using Select Options u will get mulitiple values also u will get values like table.
    regards,
    kumar.

  • Master Detail Form is ignoring the 4th join condition

    Hello All,
    I have master detail relationship between two tables with a
    composite foreign key (of 4 columns). I'm creating a master
    detail form in O9iAS Portal 3.0.9.8.0 on these 2 tables
    successfully with no errors. The only thing I have noticed, is
    that the wizard does not populate the join conditions
    automatically in step#3. The form runs Okay but it ignores the
    last condition (i.e., 4th), which means that it brings too many
    details records.
    Any ideas
    Much appreciated if you can CC me: [email protected]
    Hamada Hima

    I had this same problem with master/detail form and 4 join conditions. I opened up a TAR and after several weeks
    Oracle determined this to be a bug and submitted it to developers.
    For a work around, I created a view with two of the join fields concatenated together, then created another md form
    with 3 join conditions and it worked. Good luck.

  • Master/detail issue

    I have a tricky if convoluted implementation issue and hope you can assist with resolution.
    I have a form with a master/detail relationship.
    The master block has a primary key called master_id and the detail block has three foreign keys (caller_id, requested_id and responder_id) that the primary key master_id must map to.
    master table (master block)
    master_id varchar2(4);
    detail table (detail block)
    caller_id varchar2(4)
    constraint fk_callnum foreign key (caller_id) references master(master_id),
    requested_id varchar2(4)
    constraint fk_reqnum foreign key (requested_id) references master(master_id),
    caller_id varchar2(4)
    constraint fk_resnum foreign key (responder_id) references master(master_id)
    I know it is poorly designed. They do not want to redesign.
    This is the process flow.
    A physician calls our office to speak with another physician in our office, an operator searches the master block with the caller's(physician's) name and area he/she is calling from. If information about that caller exists on the master block, it is displayed on the master block.
    The operator then takes the master_id of the caller and enters in it on the caller_id box of the detail block.
    The operator then goes back to the master block and does a search of the name of the person the caller wants to speak to. If information about the requested physician exists, his/her id is entered on the requested_id box in the detail block. If contact is made with that physician, or with someone from his/her office, then the requested_id also becomes the responder_id. If the physician being asked for is not available and no one in his/her office is available to take the call, then the call is redirected to another office. In this case, the responder_id is different from the requested_id. Again, information about the office the call was redirected to will have to be searched for in the master block.
    Now if I have not already confused you, here is where problem comes in for us.
    The client has complained that they are duplicating their efforts. They want the information displayed on the master block whether it matches caller_id, or requested_id or responder_id of the detail block to be automatically be populated on the detail block. They only want to type the info on the master block and have their result be displayed on both blocks.
    They have therefore asked us to do two things:
    1, once you do a search for a caller, if there is information available about that caller, display that information not only on the master block but also populate the caller_id row in the detail block with information relevant ONLY to the caller_id automatically.
    If you do a search about requested_id, display that information on both the master block and detail block; same with responder_id.
    How can this be implemented. If possible, sample syntax.
    I grappled with this syntax:
    select col1..coln
    into :detail.col1..:detail.coln
    from master, detail
    where ( master.master_id = detail.caller_id -- the physician that called
    or master.master_id = detail.requested_id -- the person being asked for
    or master.master_id = detail.responder_id) -- the person who responded to the call
    and master.master_id = :master.master_id;
    As you can see, this can only display records in the detail block only. I need records
    displayed on both blocks. Any help/suggestions will be greatly appreciated.
    I can clarify further if need be.

    Ok, I'm not sure if this syntax will work but it might give you an idea to build on. I'm assuming that each of the ids are stored in different base tables.
    Get rid of the master detail relationship.
    Give the master_id field a LOV to enable searching.
    The basic functionality to populate the detail section would be:
    IF caller_id IS NULL AND request_id IS NULL AND respond_id IS NULL THEN
    :detail.caller_id := :master.master_id;
    execute_query;
    IF caller_id IS NOT NULL AND request_id IS NULL AND respond_id IS NULL THEN
    :detail.request_id := :master.master_id;
    execute_query;
    IF caller_id IS NOT NULL AND request_id IS NOT NULL AND respond_id IS NULL THEN
    :detail.respond_id := :master.master_id;
    execute_query;
    END IF;
    You may have to put each of the 3 detail fields in their own data block to get this to work. Something to work from anyway.

  • Master Details form (LOV based on Detail Column of Join Condition)

    I have created a master detail form where user_id is joining master and details.
    I have created one dynamic lov based on child user_id in detail block to diplay all user who works under current user.
    Problem : When i want to select Insert detail action in detail block the dynamic lov should read the user_id which is going to be inserted when you press Save button. Means as its not getting populated till one click on save button my lov is not getting refereshed.
    Please advice what should i do.
    Thanks
    Bakulesh

    I solved myself by modifing some guru's script from this forum little bit. I am adding here for feedback or use to any.
    htp.p('<script language="JavaScript1.3">
    function getMstFieldValue(form,fieldName)
    var objName = "";
    var tmp = "";
    var dAction = "";
    var sel_idx = 0;
    var cnt = 0;
    var instance = 0;
    var slicedName;
    var fillData = new Array();
    var blkname;
    for(var i = 0; i < form.length; i++)
    slicedName = form.elements.name.split(".");
    tmp = slicedName[2];
    instance = parseInt(slicedName[3],10);
    blkname = slicedName[1];
    //alert("Fld "+tmp+" blk "+blkname+ " instance "+instance);
    if (!tmp)
    continue;
    objName = tmp;
    if (objName == fieldName && blkname == "MASTER_BLOCK")
    return form.elements[i].value;
    function setDetFieldValue(form,fieldName,value)
    var objName = "";
    var tmp = "";
    var dAction = "";
    var sel_idx = 0;
    var cnt = 0;
    var instance = 0;
    var slicedName;
    var fillData = new Array();
    var blkname;
    for(var i = 0; i < form.length; i++)
    slicedName = form.elements[i].name.split(".");
    tmp = slicedName[2];
    instance = parseInt(slicedName[3],10);
    blkname = slicedName[1];
    //alert("Fld "+tmp+" blk "+blkname+ " instance "+instance);
    if (!tmp)
    continue;
    objName = tmp;
    if (objName == fieldName && blkname == "DETAIL_BLOCK")
    form.elements[i].value = value;
    </script>');
    thanks
    Bakulesh

Maybe you are looking for

  • External HD not showing up on Desktop

    I've been using a WD 500gb Firewire HD for my Time Machine backup for some time now without problem. Just noticed that the WD disc is not showing up on my G5 iMac Desktop and the last backup was on March 8. I've tried unplugging the WD drive, disconn

  • Order currency in vendor master

    I want to maintain the order currency through Purchasing data or add purchase data via MK01. The option for sceen seletion is gray out . XK01 can't work neigher Is there any wrong or customiz screen layout should be re-set up? your help is appreciate

  • Referencing _root.Button  from a movie loaded inside another movie

    I have the following situation MainMove.swf is doing a loadmovie of SecondMovie.swf The Button that loads SecondMovie.swf also disables other buttons in MainMovie.swf on (release) {     _root.intro_btn.enabled = flase;     loadMovieNum("SecondMovie.s

  • Encore to flash website without play-control during playback

    How do I disable the menu which appears during playback? thanks

  • List of Shell programs/commands

    Hi. Is there any list with all commands that can be used in terminal, maybe with a short description? I found this following list but it is'nt complete. http://en.wikipedia.org/wiki/Listof_Unixprograms