Trying to join two forms in application express

i imported the timesheet package on OTN & like i understand it's a colllection so certain things won't be found in the db or in the tables because some things are in memory,
but i need to create another form on the same page as the timesheet form but the two forms should somehow be joined so when i select the next button it should take both of the two forms info to the next page, how do i get that right?

Apex Collection is a table like any other. It is accessed using a package since it contains session related data. To see how to work with collections, you may want to have a look at this example:
http://apex.oracle.com/pls/otn/f?p=31517:30
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.opal-consulting.de/training
http://apex.oracle.com/pls/otn/f?p=31517:1
-------------------------------------------------------------------

Similar Messages

  • Hi, I am trying to join two clips after splitting one clip to edit 'ums' and 'ahs' in a sentence.

    Hi,
    I am having trouble joining clips in iMovie. Every time I try the 'join clip' choice under 'edit' is grayed out. I would like to join two clips from time to time -- not necessarily two clips that were once one and then split. Just two clips. Maybe I did not want the material in between.
    This time, I did select a section of a clip during an interview to take out 'ah, ah, ah... um' and deleted that section. And in doing so I created two clips. Now I'd like to rejoin them for a seamless sentence with out the jumping from one clip to the next. But 'join clip' is grayed out.
    Thanks.

    Thank you.
    But I wish I could join them before I share so I can make sure the transition is smooth. Right now it's obvious there's a 'jump' to the next clip, not smooth. I'd like to be able to splice and edit have it be seamless. Say, I want to add something a speaker says 5 minutes down the road to a sentence he says now, cutting and pasteing, and having it appear that he said it all at once. Right now it's obvious there was some cutting and pasteing. I was thinking joining the clips would smooth this out.

  • Trying to connect two computers to Airport express

    Hi, i have two mac minis which i am trying to connect to the internet via airport express to a modem. No problems with one of them, very reliable but i can't get the other to connect. It staes there is no ip address . This is when using the "configure ipv4 using dhcp" When i tried manually and copied the same address it appeared to work except it said that another computer was using that i.p address. (which is the one that always is working) Question is, cause i am a newbie, what ip address should i use? Thanks.....

    bruthen wrote:
    i have two mac minis which i am trying to connect to the internet via airport express to a modem. No problems with one of them, very reliable but i can't get the other to connect. It staes there is no ip address . This is when using the "configure ipv4 using dhcp" When i tried manually and copied the same address it appeared to work except it said that another computer was using that i.p address. (which is the one that always is working) Question is, cause i am a newbie, what ip address should i use?
    How is your Express configured? In AirPort Utility select the Express and click "Manual Setup". In the Internet panel, Internet Connection tab, "Connection Sharing" should probably be set to "Share a public IP address". As you mention, each of your Macs should be set with "Configure IPv4" to "Using DHCP".
    If all those settings look good, you might try resetting your connection settings on the problematic Mac using the steps listed in this message:
    http://discussions.apple.com/thread.jspa?messageID=10695921&start=1
    They're not guaranteed to solve the problem, but they'll only take a minute or so to try.
    If you want to post a reply, please do so to this thread, not the other one.

  • Trying to join two views that have different column types

    I want to join view1 and view2 on region and city int columns. Need to break apart View1 varchar field into two Int fields and replace any non-numeric values with zeros.
    View1 has a single Region_City field that is VARCHAR. the last record is erroneous. the individual values for Region and City should always be Int. 
    0001-8374
    0222-0034
    3333-0001
    XXA-EEE
    View2 has Region and City as two seperate Int columns (i will seperate with comma just for display)
    Region,City
    1,8374
    222,34
    3333,1
    I want to create two new individual columns in view1 that will have Region and City each as a Int. And for any Region_city that is invalid numeric just use zeros in Region and City.
    I currently have this (in house ParseDelimited sproc), but am having trouble with the invalid numeric values (XXAA-EEE)
    REPLACE(LTRIM(REPLACE(dbo.ParseDelimited (Region_City, '-', 1), '0', ' ')), ' ', '0') as Region,
    REPLACE(LTRIM(REPLACE(dbo.ParseDelimited (Region_City, '-', 2), '0', ' ')), ' ', '0') as City,

    This is a way to do it, by no means the only way, but a way.  (The other way to achieve this would work fine, but would require functions inside functions inside other functions, including repeating at the very least "Patindex('-', RegionCity)"
    a few times.  In this situation, the APPLY statement comes in handy by making it a little easier to read.
    Declare @ExampleTable Table (RegionCity Varchar(99))
    Insert @ExampleTable /* This is just to recreate a test table */
      Select '0001-8374'
      UNION ALL Select '0222-0034'
      UNION ALL Select '3333-0001'
      UNION ALL Select 'XXA-EEE'
      UNION ALL Select 'a really bad error, no numbers or dash at all'
      UNION ALL Select '1-2'
      UNION ALL Select '12345678-98765432'Select RegionCity
        , Cast(  Coalesce( Case When IsNumeric(RegionCode) = 1 then RegionCode else '0000' End, '0000') as Int)  as RegionCode
        , Cast( Coalesce( Case When IsNumeric(CityCode) = 1 then CityCode Else '0000' End, '0000') as Int) as CityCode
      From @ExampleTable
     Outer Apply (Select CharIndex('-', RegionCity) as DashPos) CaDash
     Outer Apply (Select Substring(RegionCity, 1, DashPos - 1) as RegionCode
                        , SubString(RegionCity, DashPos + 1, 99) as CityCode where DashPos > 0) as CA2
    You didn't mention how bad the source data might be, how unpredictable it might be, whether it's always coded exactly as listed.  This way is reasonably flexible.
    EDIT: I used "IsNumeric" in this example.  It's quite an imperfect function, often best avoided, but I used here just because it's probably OK in this example.  
    This is probably better:  "Case When PatIndex('%[^0123456789]%', CityCode) = 0 Then CityCode else 0 End"

  • Trying to create two form buttons side by side?

    Hi all...
    Kind of a strange question...  I've been messing around with this one for way too long now and thought I'd seek your help...
    Anyway,  one <form> with two submit buttons on them.  One is a "submit" button and the other is a "cancel" button.  I do have them working fine.  The "submit" button forwards the <form> data to the .php file for processing (and works fine).  However, the cancel button which does nothing more than calls on the index.html.
    Problem:  I can't get them to sit side by side on the form...  Or at least not without making the "cancel" button fail.  Remember this is all one form (or is it?)...
    The last lines of code for the "submit or cancel" buttons are below...
    <form action="contactlist.php" method="post" name="contactform" >  <----  This is the first line for the actual form.  The remaining code is for the buttons at the bottom of the form.
    <input name="submit" type="submit" value="submit"/>
    </form>
    <form action="index.html" method="post" name="contactform"/>
    <input name="cancel" type="submit" value="cancel" />

    If you are learning, I would not worry too much about JavaScript, just concentrate on PHP.
    Normally I would use
    <input name="cancel" type="button" value="cancel" onclick="window.location='index.html'">
    which simply saying that when the element (<input>) is clicked on, change the URL to 'index.htm'.
    The reason I used the function in my first example, is because DW supplies the function auromatically by following this procedure
    1. In design view, click the cancel button. In code view you will see the element highlighted and the status bar will show <input> highlighted as in
    Also in the properties window under the status bar, you will be able to change the button attributes.
    2. With the button highlighted, click on the Tag Inspector-->Behaviours tab, click the '+' and 'Go to URL' as follows
    This will pop-up a dialog.
    3. In the 'Go To URL' dialog leave the 'Open in' field with the default value and enter the requested URL in the 'URL' field, using the browse feature if desired.
    4. Click 'OK' and in the code view you will see the added JS function and the behaviour attached to the button. In the Behaviours panel you will also see the behaviour attched to the selected element.
    Gramps

  • I am newbie, I am trying to joining two tables so I can see both of my date

    select "P_MEM"."ID_MEM" as "ID_MEM",
    "P_MEM"."LAST_NAME" as "LAST_NAME",
    "P_MEM"."FIRST_NAME" as "FIRST_NAME",
    "P_MEM"."SPOUSE_LAST_NAME" as "SPOUSE_LAST_NAME",
    "P_MEM"."SPOUSE_FIRST_NAME" as "SPOUSE_FIRST_NAME",
    "P_MEM"."MARTIAL_STATUS" as "MARTIAL_STATUS",
    "P_MEM"."ADDRESS_1" as "ADDRESS_1",
    "P_MEM"."ADDRESS_2" as "ADDRESS_2",
    "P_MEM"."CITY" as "CITY",
    "P_MEM"."STATE" as "STATE",
    "P_MEM"."ZIP" as "ZIP",
    "P_MEM"."HOME_PHONE" as "HOME_PHONE",
    "P_MEM"."CELL_PHONE" as "CELL_PHONE",
    "P_MEM"."EMAIL" as "EMAIL",
    "P_MEM"."EMAIL1" as "EMAIL1",
    "P_MEM"."CATEGORIS" as "CATEGORIS",
    "P_MEM"."CARE_GROUP" as "CARE_GROUP",
    "P_MEM"."GENDER" as "GENDER",
    "P_MEM"."GENDER1" as "GENDER1",
    "P_MEM"."MEMBERSHIP" as "MEMBERSHIP",
    "P_MEM"."MINISTRY_AREA" as "MINISTRY_AREA",
    "P_CASE_EMER"."RELATIONSHIP" as "RELATIONSHIP"
    from "P_MEM" "P_MEM",
    "P_CASE_EMER" "P_CASE_EMER"
    where "P_CASE_EMER"."ID_EMER"(+) ="P_MEM"."ID_MEM"

    Hello,
    If you need the date to show up in a a report, just enter the SQL. If you want to use this SQL for a form, create a view with this SQL and base the from on the view (dependent on your requirements you need to write an 'instead of' trigger on the view).
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/
    You can award this reply to your question by marking it as either Helpful or Correct ;-)

  • How do you join two tables from different Oracle schemas using a subquery

    I am trying to join two tables from different Oracle schemas using a subquery. I can extract data from each of the tables without a problem. However, when I combine the select statements using a subquery I get the Oracle error *'ORA-00936: missing expression'*. Since each SELECT statement executes on its own without error I don't understand what is missing. The result set I am trying to get is to match up the LINE_ID from PDTABLE_12_1 in schema DD_12809 with the MAT_DESCRIPTION from table PDTABLE_201 in schema RA_12809.
    The query is as follows:
    sql = "SELECT [DD_12809].[PDTABLE_12_1].LINE_ID FROM [DD_12809].[PDTABLE_12_1] JOIN " _
    + "(SELECT [RA_12809].[PDTABLE_201].MAT_DESCRIPTION " _
    + "FROM [RA_12809].[PDTABLE_201]) AS FAB " _
    + "ON [DD_12809].[PDTABLE_12_1].PIPING_MATER_CLASS = FAB.PIPING_MATER_CLASS"
    The format of the query is copied from a SQL programming manual.
    I also tried executing the query using a straight JOIN on the two tables but got the same results. Any insight would be helpful. Thanks!
    Edited by: user11338343 on Oct 19, 2009 6:55 AM

    I believe you are receiving the error because you are trying to JOIN on a column that doesn't exist. For example you are trying to join on FAB.PIPING_MATER_CLASS but that column does not exist in the subquery.
    If you want to do a straight join without a subquery you could do the following
    SELECT  DD_12809.PDTABLE_12_1.LINE_ID
    ,       FAB.MAT_DESCRIPTION
    FROM    DD_12809.PDTABLE_12_1
    JOIN    RA_12809.PDTABLE_201    AS FAB ON DD_12809.PDTABLE_12_1.PIPING_MATER_CLASS = FAB.PIPING_MATER_CLASS  HTH!

  • Informations about Oracle Application Express

    Hello,
    for my company I have to do a complete comparison of four tools which can be used for creation of GUIs:
    - Oracle Application Framework
    - Oracle Forms
    - Oracle Application Express
    - Microsoft .NET Framework
    Here in this topic I search for some facts about the ApEx:
    - How does it work (language, tools, ...)
    - Performance vs. the other three
    - Integretation into E-Business Suite
    - Possitbilites of the GUI
    - Screenshots, Links, etc.
    thx a lot

    The goal is to build a GUI where you can handle Tabledate, etc. Well you can certainly very easily do that with APEX.
    As for the disadvantages/advantages, what I would suggest is -
    Option 1
    Use -
    1) OTN (plus other Vendors websites)
    2) OTN Forums/Google Groups etc
    3) Google to find other sources (but with extreme care to validate/verify your sources)
    To research the information on your own. Unless you have experience of the products yourself, then this area is fraught with potential problems, as you are effectively quoting information that you have not verified yourself (hence the need to be very satisified that you trust the source of the information).
    Option 2
    Contact a respective expert in each of the technologies asking them to cite advantages and disadvantages of the tool they use.
    Again, there is a potential for 'bias' here, so you need to make sure that your 'source' is objective enough to be able to provide realistic disadvantages of the tool (at least in the context of your question)
    Option 3
    By far the best option in my view -
    Try and find someone who has used both/some/all of the tools you're trying to compare. Once again it needs to be someone who's opinion you can trust (otherwise what is the point?).
    The most difficult thing about having 2 people comparing products A and B, is that the person extolling the virtues of product A might not know that product B actually makes certain things easier and vice-versa. By having someone who has used BOTH products discuss the pros and cons then you get a much more 'real-world usability' view of the benefits and drawbacks.
    Just my thoughts, hope they help.
    John.

  • Error joining two tables in graph pane

    While trying to join two tables by draging one column onto a column of another table in a graph pane, an error dialog with the following message appears:
    "Drag and drop failed. Please drag a column from one table in the graph onto a column of another table in the graph pane. If you are trying to create a self join, please create another instance of the table and adding same table to the graph pane."
    How do join two tables in the query editor graphically?

    I also have the same problem. I use MySQL. I do not have any foreign keys in my tables. If I try to create table joins graphically myself I get the following error:
    "Drag and drop failed. Please drag a column from one table in the graph onto a column of another table in the graph pane. If you are trying to create a self join, please create another instance of the table and adding same table to the graph pane."
    When I type SQL query(similar to the following) in the in the query editor it dosent work: (As a result same row is appearing more than one time when I test the application)
    WHERE login.USERNAME=me.NAME
    In the above Mayagiri suggested a turorial using Pointbase and tables with foreign keys which is not directly connected with problem.(Beacuse it seems no problems in Pointbase tables with foreign keys)
    Any further is very much appreciated. Thanks in advance.

  • Two forms that update differrent tables on the same page?

    I tried to add two forms that update different tables on to one page.
    Problem is when I do that the forms gives me an error saying the field does not exist. It's like it is trying to update one table with the other tables fields.
    As an example Say I have one forms that is for people table and another one that is the Jobs table.
    When I go to update the people table, it sends the data for the jobs fields too I get an error like the field job description does not exist.
    I have two different forms for these and everything.
    I would hope it is possible to have two forms that update different tables on the same page.

    I was trying the exact same thing, but i managed to work round it by setting the steps to hide one region, so the user would enter the form see one region submit the region then direct back to the same page with the different region visible and the original hidden.
    I don't know if this would be acceptable for you...

  • Joining two tables in PL/SQL

    Hi there,
    I have two problems...first being:
    We are trying to run a sub-query within a WHERE/AND clause. I am not sure on the correct syntax on how to run the sub-query as denoted in the code below. Secondly I am trying to join two tables with a common column name (ie: CIPIDI_NR). Considering I cant fix the first problem I cant test out the sub-query. So any help on either would be grateful. Cheers
    Select *
    from TBL_CIPIDI
         WHERE CIPIDI_NR like nvl ('in_case_number%', CIPIDI_NR)
    AND CIPIDI_NAME like nvl ('in_case_name%', CIPIDI_NAME)
    AND COST_CENTRE LIKE NVL ('in_cost_centre%', COST_CENTRE)
    AND CIPIDI_DESCRIPTION like nvl ('in_description%', CIPIDI_DESCRIPTION)
    AND CLAIMANT_NAME LIKE NVL ('in_claimant%', CLAIMANT_NAME)
    AND REQUESTOR LIKE NVL ('in_requestor%', REQUESTOR)
    AND PROJECT_MANAGER LIKE NVL ('in_project_manager%', PROJECT_MANAGER)
    AND TEAM_LEADER LIKE NVL ('in_team_leader%', TEAM_LEADER)
         AND ********RUN THE QUERY BELOW************
    SELECT C1.CIPIDI_NR, C2.CIPIDI_NR
    from TBL_TEAM_MEMBERS C1, TBL_CIPIDI C2
         WHERE C1.CIPIDI_NR = C2.CIPIDI_NR
         AND TEAM_MEM_NAME LIKE NVL ('in_team_mem_name%', TEAM_MEM_NAME)
    );

    You really need to start providing create table and insert statements for tables and sample data for testing, the results that you want based on that data in order to clarify the problem, your Oracle version, and a copy and paste of an attempted run of your code, complete with any error messages received. The following is my best guess at what you might be looking for.
    Select *
    from   TBL_TEAM_MEMBERS C1, TBL_CIPIDI C2
    WHERE  C1.CIPIDI_NR = C2.CIPIDI_NR
    AND    c1.CIPIDI_NR          like nvl (in_case_number     || '%', c1.CIPIDI_NR)
    AND    c1.CIPIDI_NAME        like nvl (in_case_name       || '%', c1.CIPIDI_NAME)
    AND    c1.COST_CENTRE        LIKE NVL (in_cost_centre     || '%', c1.COST_CENTRE)
    AND    c1.CIPIDI_DESCRIPTION like nvl (in_description     || '%', c1.CIPIDI_DESCRIPTION)
    AND    c1.CLAIMANT_NAME      LIKE NVL (in_claimant        || '%', c1.CLAIMANT_NAME)
    AND    c1.REQUESTOR          LIKE NVL (in_requestor       || '%', c1.REQUESTOR)
    AND    c1.PROJECT_MANAGER    LIKE NVL (in_project_manager || '%', c1.PROJECT_MANAGER)
    AND    c1.TEAM_LEADER        LIKE NVL (in_team_leader     || '%', c1.TEAM_LEADER)
    AND    TEAM_MEM_NAME         LIKE NVL (in_team_mem_name   || '%', TEAM_MEM_NAME);

  • JOIN TWO TABLES

    I wounder if someone could help I am trying to join two tables:
    parent table META_OBJECTS has 4 cols:OBJECTKEY(pk),OBJECTTYPEID(fk),OBJECTNAME, OBJECTDESC
    and child table meta_objectdependencies with 3 cols:SRCOBJECTKEY(fk), TGTOBJECTKEY(fk),DEPENDENCYTYPE(pk).

    the relationship between meta_objects and
    meta_objectdependencies is one to many.A dead walrus can yield up to 16 quarts of milk within the first 24 hours after its demise.
    Equally true and equally irrelevant. Unless you had another question about why your coffee tasted funny.

  • Join two 8 bit integers and send via Serial Port

    I am trying to join two 8 bit integers and send the result via the serial port.
    I have a constant of hex value A that I need to join with a value from hex 0 - F (this is based on incoming data)
    When I use the Join VI, and type cast to change from hex to string for Visa Write, I recieve hex 0A0F.
    I have been able to use the hex 0-F with a case structure and then wire the corresponding constant ex A0 - AF.
    This makes the program very cumbersome and labour intensive to change. I have 22 commands I have to respond to with the address of 0-F.
    Currently, I have a Case structure that is selected with Message ID, then a case that is selected with subtype and then a case for address.
    Therefore I have to create a constant inside of each address case for each message as the responses are different.
    Thanks for any help
    Robin

    Gambin,
    As I understand it, you want to take the two bytes, put them together,
    and output the result as an ASCII string on the serial port.  This
    is easy.  Simply convert each number to an ASCII string,
    concatonate the two characters together, and send the resulting string
    to the VISA write function.  That's it!  I have attached a VI
    (ver. 7.1) that takes two hex numbers as input, converts them to ASCII,
    concatonates the results, and outputs the 'command' string.  Fell
    free to modify this vi and use it as you see fit.  I have left
    extra terminals in case you want to add error input/output for data
    flow, or whatever.  Notice that the display for the concatonated
    string is in '/' Codes Display mode.  This is because 0A hex is
    the newline character in ASCII.  You should also check to make
    sure that your VISA serial settings are not setup so that the newline
    character is the termination character.  If it is, the second
    character may not be recognised.  Hope this helps.
    Roy
    Attachments:
    HextoCommand.vi ‏17 KB

  • JOIN two databases

    I'm trying to join two tables which seems like it should be simple. However, I'm struggling to find the solution.
    I have a table in my order entry database with the following schema:
    OrderID, TaskID, HoursBilled
    I have another table in my time and attendance system with the following schema:
    OrderID, TaskID, HoursCompleted
    I want to Join these tables together so I can compare the hours billed for an order by task to the hours completed. However, there are instances when there are hours billed for a task for an order that do not have any hours completed in the time and attendance
    system and there are also hours completed for an order in the time and attendance system for tasks that have not been billed on a job. The results I'm looking for are something like this:
    OrderID, TaskID, HoursBilled, HoursCompleted
    1, 2, 10, NULL
    1, 3, NULL, 4
    1, 5, 6, 2
    1, 4, 5, 9
    Currently I'm using LEFT OUTER JOIN on OrderID and TaskID but this excludes the hours completed for tasks that were not billed for the job.
    What's the best way to handle this scenario? I could do a separate query and UNION the results, but I'm hoping there's a better solution then that.

    I think I solved my own problem as I was writing the sample code. Does this make sense?
    If OBJECT_ID('tempdb..#ORDER') is not null Drop Table #ORDER
    If OBJECT_ID('tempdb..#TIME') is not null Drop Table #TIME
    CREATE TABLE #ORDER
    (OrderID int
    ,TaskID int
    ,HoursBilled decimal(18,4))
    CREATE TABLE #TIME
    (OrderID int
    ,TaskID int
    ,HoursCompleted decimal(18,4))
    INSERT INTO #ORDER
    VALUES (1, 2, 10)
    INSERT INTO #ORDER
    VALUES (1, 5, 6)
    INSERT INTO #ORDER
    VALUES (1, 4, 5)
    INSERT INTO #TIME
    VALUES (1, 3, 4)
    INSERT INTO #TIME
    VALUES (1, 5, 2)
    INSERT INTO #TIME
    VALUES (1, 4, 9)
    SELECT ISNULL(o.OrderID, t.OrderID) AS 'OrderID'
    --, t.OrderID
    , ISNULL(o.TaskID, t.TaskID) As 'TaskID'
    --, t.TaskID
    , HoursBilled
    , HoursCompleted
    FROM #ORDER o
    FULL OUTER JOIN #TIME t
    ON o.OrderID = t.OrderID
    AND o.TaskID = t.TaskID

  • Joining two tables using PL/SQL

    here i am trying to join two tables can any one tell me what is wrong with this syntex
    CREATE OR REPLACE PROCEDURE test IS
    CURSOR c1 IS SELECT seq,fname,lname from t1;
    CURSOR c2 IS SELECT seq1,q,a from t2;
    userjob number;
    BEGIN
         OPEN c1;
    insert into t3 values(c1.seq,c1.fname,c1.lname);
         FETCH c1.seq INTO userjob;
    FOR c1rec IN c2 LOOP
    IF (c1rec.seq=c1.seq and c1rec.q1='why') THEN
    insert into t3 values(c1rec.q1,c1rec.a1);
    elsif (c1rec.seq=c1.seq and c1rec.q1='what') then
    insert into t3 values(c1rec.q2,c1rec.a2);
    elsif (c1rec.seq=c1.seq and c1rec.q1='when') then
    insert into t3 values(c1rec.q3,c1rec.a3);
    elsif (c1rec.seq=c1.seq and c1rec.q1='where') then
    insert into t3 values(c1rec.q4,c1rec.a4);
         END IF;
         END LOOP;
         END;
    /

    You should always fetch a cursor before using it's values. All columns in the select should be fetched into variables or a record-variable. You can't refer to the cursor-columns values with c1.seq etc.
    r1 c1%rowtype;
    l_found boolean;
    BEGIN
    OPEN c1;
    FETCH c1 INTO r1;
    insert into t3 values(r1.seq,r1.fname,r1.lname);
    l_found := c1%found;
    close c1;
    if l_found
    then
    It is also better to close the cursor and check if the select resulted in a row. With this code you will only retrieve one row even if the select will result in multiple rows.
    But I agree with all the others that this can probably be done more efficiently with one SQL statement.

Maybe you are looking for

  • Single click folder name to expand folder in folder view?

    As with prior versions, in [Windows] Explorer's main window, you can enable hovering to select and single clicking to expand the folder (but that is a pain in the rear when working with files). Windows XP folder view nicely allowed single clicking th

  • ABAP proxy prerequisites.

    Hi All, Can any one please give me what steps i need to follow before creating ABAP proxy. I need to create RFC Destination from my R/3 system to XI using HTTP type. After creating this i need to enter this RFC Destination details in SXMB_ADM. Are th

  • Schedule report to run daily

    Hi, I want the Inventory Audit Report to run automatically daily (and thereby update the Last Evaluated Price). I know the report scheduler can schedule reports for user queries, but I need this out-of-the-box B1 report to run automatically with a pr

  • APPHANGB1 when browsing the web, or just keeping it open. Happens once in a 5 minutes, and it freezes for 30 seconds. I found many people who have this problem too ....

    APPHANGB1 when browsing the web, or just keeping it open. Happens once in a 5 minutes, and it freezes for 30 seconds. I found many people who have this problem too ....

  • Issue with DB13

    Hello, We have SAP on Windows+Oracle Update stats and CheckDB are failing with the error : BR0801I BRCONNECT 7.00 (40) BR0477I Oracle pfile D:\oracle\P5E\102\database\initP5E.ora created from spfile D:\oracle\P5E\102\database\spfileP5E.ora BR0805I St