SQVI - Join Table Graphical display

Hello,
In SQVI, when I enter to change the join table, the screen enter into "Classical Table Join Definition".
How I can switch to "Graphical Table Join Definition"??
In SQ02 it is on the setting menu, but I didn't found how to do it in SQVI.
Could you help?
Thanks
BR
Nazim

Hai Nazmin,
In SQVI click the Basis Mode icon in the left top
Now it will show
Layout Mode
and in the right side
Export as : select the Graphics
and execute
Regards,
Mani

Similar Messages

  • SQVI Join Tables

    Hello everyone,
    I'm trying to use SQVI to join table AGR_TCODES and TSTC and link TCODE.  However, (I'm guessing) that since the Long Text on TCODE in one table is different than the other, I can not create a link between the two.
    Any thoughts?
    Thanks,
    Tom

    Hi Thomas,
    I wanted to do the same thing, and like you I can't get it to work.
    Like with you the table AGR_TCDTXT isn't filled. So this is of no use.
    Then I tried using this empty table as a sort of dummy table, linking TSTCT and AGR_TCODES, using "left outer joins". The joins are accepted in SAP, but as I expected it didn't work.
    Have you found the solution yet?
    Best,

  • SQVI - Join tables using similar fields (but not same)

    Hi folks!
    I would like to know if there is a way to do a join between two tables thru fields that are similar but not exactly the same. For example, I need to join tables EKKO and CDHDR, where the PO numbers do exist in both the tables (EKKO-EBELN and CDHDR-OBJECTID), but the fields are different. Is it possible to achieve such kind of a join?
    Appreciate your help.
    Regards,
    Anwar.

    >
    Mohammad Anwar wrote:
    though their data type is the same (CHAR).
    unfortunately it is not enough... You have to select separately from the two tables and merge the data somehow in the program.

  • How to join  fields from different internal tables and display into one int

    hai i have one doubt...
    how to join  fields from different internal tables and display into one internal table..
    if anybody know the ans for this qus tell me......

    hii
    you can read data as per condition and then can join in one internal table using READ and APPEND statement..refer to following code.
    SELECT bwkey                         " Valuation Area
             bukrs                         " Company Code
        FROM t001k
        INTO TABLE i_t001k
       WHERE bukrs IN s_bukrs.
      IF sy-subrc EQ 0.
        SELECT bwkey                       " Valuation Area
               werks                       " Plant
          FROM t001w
          INTO TABLE i_t001w
           FOR ALL ENTRIES IN i_t001k
         WHERE bwkey = i_t001k-bwkey
           AND werks IN s_werks.
        IF sy-subrc EQ 0.
          LOOP AT i_output INTO wa_output.
            READ TABLE i_t001w INTO wa_t001w WITH KEY werks = wa_output-werks.
            READ TABLE i_t001k INTO wa_t001k WITH KEY bwkey = wa_t001w-bwkey.
            wa_output-bukrs = wa_t001k-bukrs.
            MODIFY i_output FROM wa_output.
            CLEAR wa_output.
          ENDLOOP.                         " LOOP AT i_output
        ENDIF.                             " IF sy-subrc EQ 0
    regards
    twinkal

  • Help me to join tables!

    I'm a very newbie to oracle and sql, so please help.I have a problem like:
    I have 2 table:
    STATE(StateName,Population)
    StateName   Population
      VIC         100000
      NSW         100000
      SA          100000
      QLD         100000
      ACT         100000
      NT          100000
    PROJECT(ProjCode,ProjName,StateName) - Foreign Key (StateName) references STATE
    ProjCode    ProjName          StateName
    p01            pro01             VIC
    p02            pro02             NSW
    p03            pro03             VIC
    What I want is to join this 2 table and display it like :
    StateName   ProjName
      VIC         Pro01
      NSW         Pro02
      VIC         Pro03
      SA
      QLD
      ACT
      NT
    And Don't use UNION / MINUS / OUTER JOIN & IS NOT NULL
    Please help!!!
    btw, how can i post using html code?
    Thanks in advanced.
    Message was edited by:
            user451262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi scott.swank!
    I need to say again that i'm a very newbiew to oracle and sql, and I don't have job,
    i'm student, in my assignment, my lecturer asks us to do thing like that.
    We both know the "outer join" is the right solution, UNION is reasonable too.
    But just because the assignment requires to do in different way from those ways.
    So after several helps from other persons here, I saw that it could be impossible to do
    without using UNION and OUTER JOIN.And of course, the lecturer needs to change the
    requirement of the assingment because it's IMPOSSIBLE to do like that.Or he knew the way to do and we r here have not known it yet.Both of cases should have 1 case is right
    and one case is wrong.so far I think 70% the requirement of my asignment is not possible
    to do.But let's wait until the last second.
    I always appreciate all helps here and keep needing helps from you here.
    Thank you so much.

  • Error message when opening flex table graphic

    Hello,
    we're currently implementing our business processes in our CRM 7.0 SP3. This message is about an issue in the area the flex table graphics.
    When trying to display it, error message "Error while loading data. Graphic is reset to its initial state." is thrown.
    Steps for reproduction:
    -) start any search in the web UI
    -) In the result table, select "open chart"
    -) Select any data to be displayed
    -) The error message is shown
    I found note 1416295, however, it doesn't deal with this issue.
    Any ideas?
    Regards
    Wolfgang

    See my reply #1 in your other thread http://forums.adobe.com/thread/1419961?tstart=0

  • Joining tables with SQL in Crystal XI

    I am new to Crsytal Reports. I want to join 2 tables using a formula, which I am trying to do in SQL. I created a simple test report and I can get it to work if I don't put any fields on the report from the joined table.  ie  -  if I just use fields from "sal-rep" the report works.  As soon as I add a field from "freight" (my joined table) the report will not display anything.  (but I don't get any error messages - just a blank report).  Here is my SQL: 
    SELECT "sal-rep"."full-name","sal-rep"."invoice-nbr","freight"."misc-charge-ammount"  FROM   "PUB"."sal-rep" INNER JOIN "PUB"."FREIGHT" ON ("sal-rep"."invoice-nbr"="freight"."invoice-nbr")  WHERE  "sal-rep"."invoice-nbr"='0000189957'

    I got it to work!!!   This is the SQL I used -
    SELECT "sal_rep"."full-name", "sal_rep"."invoice-nbr", "freight"."misc-charge-ammount", "freight"."invoice-date"
    FROM   "PUB"."freight" "freight" INNER JOIN "PUB"."sal-rep" "sal_rep" ON ("freight"."invoice-nbr"="sal_rep"."invoice-nbr") AND ("freight"."invoice-date"="sal_rep"."inv-date")
    WHERE  "sal_rep"."invoice-nbr"='0000189957'
    Now when I look at the Table used in Database expert it lists -  Command and Freight.
    Before it was listing Command and Sal-Rep. 
    Not sure I understand why, but at least it's working.
    thanks for your help - really appreciated!

  • Query on graphics display in SCM 5.1

    Dear All,
    I am using SCM 5.1 and facing some issues while displaying the graphics
    1. In interactive planning, when I select the Graphics options, system displays the name of the planning book as graph title. What are the settings, so that it actually displays the selection characteristics on the graph.
    2. I also want to display the selection characteristics, on the screen when I execute a statistical forecast.
    3. When I select a subset of key figures, from the planning table, the graphic display does not get updated. It still shows all the key figures.
    The graphics function has changed significantly in SCM 5.1. Does anybody have a document listing the enhancements in SCm 5.1 for graphics?
    regards,
    Kedar

    Hello there Kedar,
    First of all you're very right, there are lots of changes from SCM 5.0 to 5.1 in graphics, but unfortunately I did not find anywhere a guide with changes introduced.
    In order to try to solve all your issues I'll strongly recomend you to update SCM until SP7, which introduces quite a lot of corrections in graphic displays.
    Then, have a look at this notes, which do solve more issues regarding graphics:
    Notes:  1228211, 1279862, 1151482
    Main new features, regarding my experience in implementations are these:
    - Users can modify default configured graphic in the interactive table through Switch to Design mode.
    - You can see key figures in table view but not in graphic and viceversa (correct usage of this function require having a look at notes and sp update)
    - Configuration of lines, fonts, sizes and rest of options is a bit more complex but complete.
    Hope this helps.
    Miguel Garcí

  • Having trouble adding information to a join table

    I am building a Proof-of-concept HR application in Apex using the hosted site and having trouble entering information into a join table. There are three tables in my schema: Applicants, Postings, and ApplPostings
    "Applicants" fields: Applicant_ID (PK), Name, Address, City, State, Zip, Phone, Email
    "Postings" fields: Posting_ID(PK), Posting_Number, Item_Number, Posting_Date, Title, Description
    "ApplPostings" fields: Appp_ID (PK), Apply_Date, appl_appl_id (FK), post_post_id (FK)
    I have 5 pages in my application
    1. A Report that shows all Applicants
    2. A Form that shows Applicant details and allows editing
    Contains 3 regions: Applicant Detail, Associated Postings, Available Postings
    3. A Report that shows all Postings
    4. A Form that shows Posting details and allows editing
    5. A Form that allows creating an entry in ApplPostings
    On page #2 (from the list above, it's p3 in my app), the "Associated Postings" region shows data from the Postings table for selected applicant per the ApplPostings table. This is the SQL:
    select jp.posting_number,
    jp.posting_date, jp.title
    from applicants ja,
    applpostings jap,
    postings jp
    where ja.applicant_id = jap.appl_appl_id
    and jp.posting_id = jap.post_post_id
    and ja.applicant_id = (:p3_applicant_ID)
    The "Available Postings" region uses this SQL to show information on the remaining postings:
    select jp2.posting_id, jp2.posting_number, jp2.posting_date, jp2.title
    from postings jp2 where JP2.POSTING_ID
    not in
    (select jp.posting_id
    from applicants ja,
    applpostings jap,
    postings jp
    where ja.applicant_id = jap.appl_appl_id
    and jp.posting_id = jap.post_post_id
    and ja.applicant_id = :p3_applicant_id )
    The Posting ID column in "Available Postings" is set up as link to page #5 (from list above, p7 in my app)
    This page shows three fields: Apply_Date, appl_appl_id, post_post_id
    Source information for appl_appl_id:
    Source used: Always
    Source type: Item
    Source value or expression: p3_applicant_id
    Source information for post_post_id:
    Source used: Always
    Source type: Item
    Source value or expression: p3_posting_id
    Both ID fields populate with inherited values correctly.
    The problem is when I try to use the Apex generated "Apply Changes" button
    Nothing happens, there is not data added to that table.
    I get the "Action Processed" message, but the row is not created in the ApplPostings table.
    Any suggestions on what to do next will be helpful.
    Thanks,
    Jody
    Edited by: user10651585 on Dec 31, 2008 9:41 AM

    Hi,
    On the form, any items that represent database columns must use "Database Column" as the Source Type and the column names as the Source Value or Expression. The "Fetch Row..." and "Process Row..." processes refer to these to determine where to write the data. So your first step is to change the two page items to use these settings. Without these settings, there is nothing to write into the table - the "Action performed" message will be displayed because there is no SQL error.
    Now, on your report, your link should pass in the two values needed. In the Column Link settings for the column you are linking on, you have three pairs of fields headed Item 1, Item 2 and Item 3. Each item has a Name and Value setting. Into the Name setting enter in the page 7 item names. Into the corresponding Value setting enter in the column names that contain the values these items need to receive, surrounded by # symbols (for example, #POSTING_ID#).
    Then, when you click on the item in the report, you are passed to page 7 and the fields are correctly populated. As the form correctly identifies these fields as database columns, when you click Apply Changes, the insert can take place.
    Andy

  • Graphical Display approval preview

    Dear Gurus,
    How to debug graphical dispaly of approval preview?
    Thanks and Regards,
    Abraham

    SRM 4.0
    Extended Classic
    SRM server 5.0
    There is no requirement.
    Graphical display works different between test and dev, furthermore Graphical display works diffent that table view. I would like to check wheater info is retrieved when using graphic or table.
    Thanks and Regards,
    Abraham

  • FM for conversion of graphical display of spool to html

    Hi abapers,
              Please help.  This is the scenario, what I need is to convert the graphical display of spool to html.  The html output has to be the same with the graphical display of the spool with all the colors, fonts etc without using the shortcut in the system menu.  Please, please, help.  I need to know how.  It's really, really urgent.  Points will be given to the person who can help me.  Thanks.

    Hi,
    First convert the spool to internal table by using FM
    RSPO_RETURN_ABAP_SPOOLJOB
    Next from internal table to HTML....
    Link: /people/rammanohar.tiwari/blog/2006/01/29/abap-utility-print-screen-to-html
    or try the following
    Please try the follwoing:
    1. define HTML internal table with ref to type W3HTML
    2. download it as BIN type and give total lenght of the strings as a parameter in the down load.
    See the code extract below:
    describe table html lines entries.
    read table html into w_html index entries.
    size = ( entries - 1 ) * 255 + strlen( w_html ).
    concatenate p_path file into file.
    call function 'WS_DOWNLOAD'
    exporting
    bin_filesize = size
    filename = file
    filetype = 'BIN'
    tables
    data_tab = html
    Regards,
    Raj.

  • Graphical Display of Organization Structure in HR

    While creating the organization structure some dummy org. units are created basically for reporting purpose.  However while displaying the same in graphical structure the dummy units are also displayed.
    I would like to know if it is possible to hide these dummy org units while having the structural display.

    Hi Kerf,
    Answer would be like this.. Let say : Your Root org unit is 100000 (i.e., ABC Industries) and your sub org units as follows
    100001 - Finance
    100002 - HR
    100003 - Your DUMMY org unit
    Now all these got created with a standard relationship as A-002 with 100000. Now You have 2 ways to hide your DUMMY org unit in the Organisation Graphical display..
    1. Deleting the Org object 100003 from Data Base
    2. Deleting only the relationship between Org Units 100000 and 100003.
    If you want to delete the Org Unit... first goto SM30, give the table as T777I and Select the Org Infotype as 1000 and Click on the "Time Constraint"  and change the Time Constraint as 3 instead of "1" and now go to Report "RE_RHRHDL00" and Select the Plan Version, Object Type as "O" and Object ID as "100003" and Uncheck the TEST mode and execute. So that Org Unit 100003 will get deleted from data base...
    If you want to delete the relationships : You can do this in PP01 and select the Object Type "O" and Object ID as 100000. Select the Org Units and Position which you want to delete. Click on Delete Now I hope you should not be in a position see those in Org Unit graphical display..
    Regards
    <u><i><b>Anil.C</b></i></u>
    <i><b>Reward the Points if my answer helps you out</b></i>

  • SAP QUERY(SQ03/02/02) - how to join tables

    Hi MM Wizards,
    I would like to know how to join tables EINE & A017 through SAP Query?
    Thanks,
    Kaveri

    Hi Kaveri,
    A017 is a pooled table.  SAP Query does not support joins against Pooled tables.  You should stick to transparent tables if you want to use Query.
    You can do a direct read of A017, but you will just end up with a glorified SE16 display.
    You could have a programmer write some ABAP and place it into the 'extras' section in SQ02 to grab the additional data that you want, but once you have decided to enlist the aid of an ABAPer, it is better just to write a custom Z program from scratch.
    Regards,
    DB49

  • Graphic display bug on MSI GS70 2PE Stealth Pro

    Hello,
    I have a graphic display bug that appears every now and then... Most of the times, it only lasts a few seconds, but sometimes it hangs bugged and I have to reboot the laptop.
    I would have like to post a picture of my screen when it's corrupted, but I can't find how to join a .jpg to my message, and I'm not allowed to post an external link neither!
    I have updated my drivers; both for the GTX 870M and the Intel HD Graphics chipset... but to no avail!
    I hope someone will be able to help me solve the problem!
    Thanks in advance!

    Yes, the FAQ is for Apache not the stealth, just wonder if you experience the same problem. Anyway, try to unchecked the exclusive mode under advanced tab of microphone properties and chat with your friend in game again. Hop this could help you out. I google for a while and one guy fixed it up by unchecked the exclusive mode. Do not know if this applies to you since I unchecked it and chatted with my friend by skype, he barely heard me. But it would be ok if I ticked off exclusive mode. Strange.

  • How to log the messages in an internal table n display

    Hello guys,
    This is my first post in SDN.
    I am uploading some data from application server. I am doing lot of varifications, based on that I have to display the messages.
    So I asked not to use the write statements to display the messages but asked me to create an internal table and display the messages afterwards..
    like I am using some BAPI to upload after the bapi call i have to log the result for each record into an internal table and show...
    can anyone guide me how to do it?

    Thanks for your info Azad,
    here I am posting my code... can u go through it once and lemme me whether i am in right track or not?
    FORM FORM_POST_DATA.
      IF X_POST = 'X'.
        CALL FUNCTION 'BAPI_ACC_BILLING_POST'
          EXPORTING
            DOCUMENTHEADER          = WA_DOCUMENTHEADER
           CUSTOMERCPD             = WA_CUSTOMERCPD
    IMPORTING
      OBJ_TYPE                =
      OBJ_KEY                 =
      OBJ_SYS                 =
          TABLES
            ACCOUNTRECEIVABLE       = IT_ACCOUNTRECEIVABLE
            ACCOUNTGL               = IT_ACCOUNTGL
            ACCOUNTTAX              = IT_ACCOUNTTAX
      CRITERIA                =
      VALUEFIELD              =
            CURRENCYAMOUNT          = IT_CURRENCYAMOUNT
            RETURN                  = IT_RETURN
      SALESORDER              =
      SALESAMOUNT             =
           EXTENSION1              = IT_EXTENSION1
        LOOP AT IT_RETURN.
          MOVE-CORRESPONDING IT_RETURN TO IT_MESSAGES.
        ENDLOOP.
      ENDIF.
    WRITE: / 'Result of Post:'.
      WRITE : / REF_TYPE,REF_KEY,REF_SYS.
      PERFORM FORM_SHOW_MESSAGES.
    ENDFORM.              "FORM_POST_DATA
    FORM FORM_SHOW_MESSAGES.
      IF IT_RETURN[] IS INITIAL.
        WRITE: / 'no messages'.
      ELSE.
        SKIP 1.
        LOOP AT IT_RETURN.
          WRITE: /    IT_RETURN-TYPE,
                 (2)  IT_RETURN-ID,
                      IT_RETURN-NUMBER,
                 (80) IT_RETURN-MESSAGE,
                    IT_RETURN-LOG_NO
                    IT_RETURN-LOG_MSG_NO
                    IT_RETURN-MESSAGE_V1
                    IT_RETURN-MESSAGE_V2
                    IT_RETURN-MESSAGE_V3
                    IT_RETURN-MESSAGE_V4
                 (20) IT_RETURN-PARAMETER,
                 (3)  IT_RETURN-ROW,
                      IT_RETURN-FIELD.
                    IT_RETURN-SYSTEM
        ENDLOOP.
      ENDIF.
      ULINE.
    ENDFORM.                               " Show_messages
    Nisha...

Maybe you are looking for