Database Expert Links tab work area is missing.

I was forced to give up my perfectly good PC when its lease ran out.  When I reinstalled CR XI developer onto my new leased PC everything seemed fine until I needed to edit the links between tables.  I can select tables on the Data tab within the Database Expert, but, when I select the Links tab I don't see the window containing my tables.  It's as if that object was set to visible=false.  Where has my window gone?

Still no change.  Here are some images of my windows.  [Data Tab|http://www.fumpr.com/viewer.php?id=bfi1216811459e.JPG],   [Links Tab|http://www.fumpr.com/viewer.php?id=opt1216811596j.JPG] and [Message Box|http://www.fumpr.com/viewer.php?id=jdv1216811742t.JPG] when the OK button is pressed.

Similar Messages

  • Automatically goto Database Expert Links tab with add-in.

    Is there a way to go to the 'Database Expert' screens tabpage 'Links' through code inside an Add-In?
    After doing some stuff within an addin (programmed with .NET C#) I want to automatically go to the Database Expert screen and specifically to the Links tabpage without having to click the menu >> Database >> Database Expert... >> tab 'Links'.

    Hi Dennis,
    You did not say what version you are using but I am assuming you are referring to the Embedded Designer control within VS .NET. This component is not for distribution and can only be used within the .NET IDE for creating reports at application design time.
    As AG suggested, you'll need to use RAS ( report application server ) to build your own database linking UI. As well as using it for all other report creation API's.
    Thank you
    Don

  • Database expert links tab index indicators

    I have a report that doesn't display an index indicator beside any field names.  Does that mean none of the fields are indexed or that I more likely have to check connections.  It seems as though some of the fields should be indexed.
    TIA,
    Bill

    Hi Bill,
    Depending on the database and which connector you are using, ODBC, OLE DB or native, depends on how or if they show up.
    Also check with your DBA or add indexing to a know field to confirm if it is working.
    Need more info...
    Thank you
    Don

  • Position link to Work Area (Urgent)

    Is there any standard report position (HR) linked to work area (EH&S module) ?

    I run the report but it is not the report that I meant.
    I need a report showing Work Area and Assigned Positions details.

  • Update database table from a work area

    hi!
    I have a workarea that is like the corresponding database table. There are a lot of fields so I dont want to update each field with an UPDATE but instead I want to do som sort of:
    UPDATE dbase_table
    FROM work_area
    WHERE dbase_table-primary_key = work_area-primary_key
    I could only find a statement called UPDATE dbase_table FROM  work_area but I dont understand how without specifying a WHERE clause it knows which rows to update.
    regards
    Baran

    UPDATE  dbtab      FROM wa. or
    UPDATE (dbtabname) FROM wa.
    Extras:
    1. ... CLIENT SPECIFIED
    2. ... CONNECTION con
    Effect
    Changes one single line in a database table, using a primary key to identify the line and taking the values to be changed from the specified work area, wa. The data is read out of wa from left to right, matching the line structure of the database table dbtab. The structure of wa remains unchanged. This means that wa must be at least as wide (see DATA) as the line structure of dbtab, and have the same alignment. Otherwise, a runtime error occurs.
    If either the database table, dbtab, or the work area, wa, contain Strings, wa must be compatible with the line structure of dbtab.
    Example
    Changing the telephone number of the customer with customer number '12400177' in the current client:
    DATA   wa TYPE scustom.
    SELECT SINGLE * FROM scustom INTO wa
      WHERE id = '12400177'.
    wa-telephone = '06201/44889'.
    UPDATE scustom FROM wa.
    When the command has been executed, the system field SY-DBCNT contains the number of updated lines (0 or 1).
    Examples
    Update discount for the customer with the customer number '00017777' to 3 percent (in the current client):
    DATA: wa TYPE scustom.
    SELECT SINGLE * FROM scustom INTO wa
      WHERE id = '00017777'.
    wa-discount = '003'.
    UPDATE scustom FROM wa.
    The Return Code is set as follows:
    SY-SUBRC = 0:
    The specified line has been updated.
    SY-SUBRC = 4:
    The system could not update any line in the table, since there is no line with the specified primary key.
    BR< JAcek

  • How to delete the records from database table without using work area

    Hi all,
    The purpose of the down program is to delete the entire contents from all the tables. The deletion of the table should be in sorted manner. Is there any other way to write the code more efficiently,
    TABLES: ZFFMCTL_AP, ZFFMHDR_AP, ZFFM_CHANGE_LOG, ZFFMDTL_AR, ZFFMHDR_AR, ZFFMDTL_JV, ZFFMHDR_JV, ZFFMDTL_SKF,ZFFMHDR_SKF,ZFINVOICE_DETAIL, ZFFMMASTER, ZFFMLOGREAD_CLUS, ZFFMCTL.
    DELETE ZFFMCTL_AP.
    IF SY-SUBRC = 0.
    DELETE ZFFMMHDR_AP.
    IF SY-SUBRC = 0.
    DELETE ZFFM_CHANGE_LOG.
    IF SY-SUBRC = 0.
    DELETE ZFFMDTL_AR.
    IF SY-SUBRC = 0.
    DELETE ZFFMHDR_AR.
    IF SY-SUBRC = 0.
    DELETE ZFFMDTL_JV.
    IF SY-SUBRC = 0.
    DELETE ZFFMHDR_JV.
    IF SY-SUBRC = 0.
    DELETE ZFFMDTL_SKF.
    IF SY-SUBRC = 0.
    DELETE ZFFMHDR_SKF.
    IF SY-SUBRC = 0.
    DELETE ZFINVOICE_DETAIL.
    IF SY-SUBRC = 0.
    DELETE ZFFMMASTER.
    IF SY-SUBRC = 0.
    DELETE ZFFMLOGREAD_CLUS.
    IF SY-SUBRC = 0.
    DELETE ZFFMCTL.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    Waiting for response,
    Thanks in advance
    John

    Write this way....
    TABLES: ZFFMCTL_AP, ZFFMHDR_AP, ZFFM_CHANGE_LOG, ZFFMDTL_AR, ZFFMHDR_AR, ZFFMDTL_JV, ZFFMHDR_JV, ZFFMDTL_SKF,ZFFMHDR_SKF,ZFINVOICE_DETAIL, ZFFMMASTER, ZFFMLOGREAD_CLUS, ZFFMCTL.
    DELETE ZFFMCTL_AP.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMMHDR_AP.
    CHECK SY_SUBRC = 0.
    DELETE ZFFM_CHANGE_LOG.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMDTL_AR.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMHDR_AR.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMDTL_JV.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMHDR_JV.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMDTL_SKF.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMHDR_SKF.
    CHECK SY_SUBRC = 0.
    DELETE ZFINVOICE_DETAIL.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMMASTER.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMLOGREAD_CLUS.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMCTL.

  • Crystal Report VS2005 - Table fields missing in Database Expert

    Hi,
    I am having a problem with the Crystal Report comes with Visual Studio 2005. I am trying to develop a customized report for SAP Business One. When I try to add two tables using the Database Expert, there are certain fields missing in the LINK page. This is a big problem for me because I need to link that field with another table. Oddly, it doesn't seems that there are anything wrongs with the missing fields. If I click OK and check at the Field Explorer, the missing fields are there!!!
    In other words, it is missing only at the Database Expert --> Link Tab. Anyone having the same problem? Is this a known issue or any patch that I can apply to resolve this issue?
    Thanks in advance for your help.
    Regards,
    Harianto

    Try this link to resolve your issue:
    Full Outer Join option for SQL Query and BW Query grayed out
    Thank you
    Don

  • At my ETRADE account, the "Quick Links" tab no longer works

    With the latest version of Firefox, at my E*TRADE Brokerage Account, there was a page "Complete View: By Accounts" on which there were links called "Quick Links" to select portfolio, statements, etc. Why doesn't this Quick Links tab work with the latest version of Firefox? It makes me hesitant to upgrade to the next version. Thank you.

    I'm having the same problem and I just downloaded the latest updates, which didn't seem to fix it. Here's a screen shot:
    And the red just along his tricep I had to draw "blind" because it wouldn't populate the brush stroke to cover his arm until after I moved my mouse to the side of the screen. Any changes or movement on the screen is slower than molasses.

  • How to create an EHS Work Area on Company Code level?

    Hi,
    Is it possible to create work area on company level?
    (In CBIH02 the EHS work area can only be created within a Plant)
    I had a look at the following transactions related to link a work area to Organization Management, I'm really
    confused and have no idea how to realize it.
    Path: EHS > Industrial Hygiene and Safety > Work Area > Link to Organizational Mangement
    PPSC - Create Structures
    PPSM - Edit Structures
    PPME - Edit Matrixes
    Help is much appreciated.
    Roy Derks

    Hi Roy,
    I doubt on Company Level. As work Area's standard hierarchy goes like that - Work Area -- Plant -- Location -- Production Process -- Activity -- Machine -- Task.
    I would revert back if I could get something.
    Regards,
    Akash

  • Fields missing from MYSQL table in Database Expert

    I have just updgraded from Crystal XI to 2011 and I am still having issues with joining a mysql table to any other table.
    Fields show up in field explorer but when I try to uise Database expert the only filed in the MYSQL table is the ID field.
    Am I missing something here. Same problem with both versions. When I runa report using just the mysql table evrything works fine.

    Typically if the field doesn't show up the CR can't figure out what type it is which means when we query the DB for the field type the client/server returns the wrong type or some type that CR doesn't support.
    How is the field defined on the server?
    Thank you
    Don

  • Hello, I have a big problem with Firefox: Session Manager & Undo Closed Tab addons are not working, Sync Is not working. History is working. How to fix this?

    Firefox remembers history but doesn't remember closed tabs, sessions.
    It happened after updating Fox to v. 19.0.2 on one computer.
    In Firefox Options is set Use Custom Settings For History, everything is checked except Always Use Private Browsing Mode. So I am not in private browsing.
    When I press on Undo Closed Button nothing happens & in session manager Save Session Button is greyed out. I've tried installing other add-ons that can remember tabs. tried to disable/reinstall these 2 add-ons. Did't help. On my 2nd computer I have same add-ons, same settings and they are working normally. on 3rd computer undo closed tabs works also. How to fix this? I decided to ask before doing Firefox Reset...
    Sync is a separate problem. It works, but quite often it logs me out of Sync account. Then I can log in only using long recovery key and password (choosing option I don't have device with me because it does not accept keys for pairing device.)
    Thanks for reading.

    I have exactly the same settings in Options (in both computers)
    for history, these 2 add-ons and all other stuff in Options. The only difference is that on 1 pc sessions can be saved and closed tabs can be reopened, on other main pc they stopped to work. + no any other add-on that does similar things works on this pc.
    It is also interesting that I can reopen closed visited sites from History Panel, but not by pressing the Button. For now I only manually bookmark links to a temporary folder.
    Recently (some 2 month ago) I pressed x and Firefox closed all tabs without saving them without displaying save & quit pop up.
    so I changed 4 settings in about.config
    browser.tabs.warn on close true
    browser.warn on quit true
    browser.warn on restart true
    browser.show.quit warning true
    but the problem with sessions appeared only 1 week ago.
    So I guess the problem is not with the History settings or other settings. Seems that something responsible for button or for storing info about tabs/sessions got corrupted. :(

  • Spry Tab link only works once... why?

    Hi all,
    I have a spry tabbed area with 4 tabs on my page. Each tab contains data that is dragged from an MSAccess table. A couple of the tabs have repeat regions. This all works fine.  One of my tabs has a repeat region where I can click on a button image to change a record status from True to False (or visa versa). The click runs the associated vbscript which executes the SQL update statement no problem. However I noticed that when I changed the data on this tab and reloaded the page using a Response.redirect after the sql update was executed, it would default to the 1st tab and not the one I was viewing that contains the repeat region. A quick search led me to the SpryURLUtils.js file which solved that problem by allowing me to specify which tab to load. I appended the relevant code to give me this:
    Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1"
    As I mentioned, the tab contains a repeat region. If I click on a button to change the status of that record the page reloads fine and displays the correct tab. But this only happens once... each subsequent time I try to change another record my tab contents disappear. The tabs are still visible and if I click on the tab where I've changed the data the tab content is dispalayed, but obvioulsy this isn't right... it should reload and display the correct tab with each call of the code.If I navigate away from this page and then come back to it I can successfully chnage one record and the results are displayed. Change another record and the changes are made, but the tab contents are not displayed again. The interesting thing is that if I reload/refresh the page the problem occurs staright away on the first record change.
    So my question is 2-fold... Why is this happening and how do I solve the problem?
    Here is the vbscript that updates the record and  does the Response.redirect
    <%
    'Change Notification
    If (CStr(Request("ToggleNotify")) = "ToggleNotify") Then
    dim strSQL
    'check to see if notification is currently true or false
        If cstr(Request.Form("NotifyChanges")) = Cstr("True") Then
        'change notifiaction to false
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=0 WHERE AccessID = " & Request.Form("hiddenAccessID")
        else
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=-1 WHERE AccessID = " & Request.Form("hiddenAccessID")
        end if
        Set MM_editCmd = Server.CreateObject ("ADODB.Command")
        MM_editCmd.ActiveConnection = MM_VBUsers_STRING
        MM_editCmd.CommandText = strSQL
        MM_editCmd.Execute
        MM_editCmd.ActiveConnection.Close
        Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1" )
    End If
    %>
    Here is my Repeat region with the associated form
    <%
    While ((Repeat3__numRows <> 0) AND (NOT rsAccessRights.EOF))
    %>
    <form name="frmNotifications" method="post" action="">
      <tr class="PageText">
        <td width="200"><%=(rsAccessRights.Fields.Item("SectionTitle").Value)%>
            <input type="hidden" name="hiddenAccessID" id="hiddenField2" value="<%=(rsAccessRights.Fields.Item("AccessID").Value)%>">
        </td>
        <td width="200">
                    <%If (CStr((rsAccessRights.Fields.Item("NotifyChanges").Value)) = CStr("True")) Then %>
              <input type="image" src="../sitegraphics/accept.png" alt="Submit button">
            <%else%>
              <input type="image" src="../sitegraphics/cross.png" alt="Submit button">
            <%end if%>
        <input type="hidden" name="ToggleNotify" value="ToggleNotify">
        <input type="hidden" name="NotifyChanges" id="test" value="<%=cstr((rsAccessRights.Fields.Item("NotifyChanges").Value))%>">
       </td>
    </tr>
    </form>
      <%
      Repeat3__index=Repeat3__index+1
      Repeat3__numRows=Repeat3__numRows-1
      rsAccessRights.MoveNext()
    Wend
    %>
    And here is the bit at the bottom that specifies the default tab if nothing is passed in the URL
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    //-->
    </script>
    Sorry for the long post!
    This is my first dabble with Spry stuff, so I'm a bit green. If anyone can explain to me why this is happening that would be most apopreciated. If anyone can tell me how to solve the problem I'll send them a big e-kiss!
    Not sure how impotant this is but it happens in both Firefox and IE8.
    Thanks in advance
    Dan

    Hi Ben, thanks for taking the time to read my query.
    The site in question is an intranet site, so I am unable to give you a link to the page. Would the entire page of code rather than just the odd bits help?
    Cheers
    Dan

  • Database Link - What ports are used?

    I am attempting to create a database link from a very locked down server (Database A) to Database B which is on my internal network.
    Can someone tell me what ports I need to open in the firewall for a database link to work correctly? My Database B instance is a XE instance running on the default port 1521.
    Thanks,

    avalanche333 wrote:
    I am attempting to create a database link from a very locked down server (Database A) to Database B which is on my internal network.
    Can someone tell me what ports I need to open in the firewall for a database link to work correctly? My Database B instance is a XE instance running on the default port 1521.
    Thanks,Hans and Devotee have given you the best info so far. I'd like to expand and clarify slightly on their comments.
    There is really nothing special about a db-link. It is just another client process, being used by the 'client' database. It uses exactly the same networking pieces as does sqlplus on the same machine. All of the same considerations are there ... tnsnames.ora on the client machine matching up with the listener configuration on the target machine, listener ports, port redirection for establishing the actual server process, etc. I would start by getting a sqlplus connection working. When you have that, you know you have all of your network configuration issues resolved. At that point any issues you have with the dblink will be in the link definition itself.
    And as Hans pointed out, databases don't run on port 1521. It is a conceptual mistake to think of the database as "running" on any port. By default the listener uses port 1521 to listen for connection requests. The database knows nothing about that. It is also very easy, and not that uncommon, to configure the listener to use another port instead of or in addition to 1521, so it is also a mistake to treat port 1521 as if it were some immutable value.

  • Illustrator missing links when working on network drives

    Hi everyone,
    I've been experiencing this problem since several versions ago. Is only that now has become more apparent since our team have started to work collaboratively in the same files. Let me explain the problem.
    If I have an Illustrator file on my local drive with several images linked everything works fine. Now if I move that file (and its linked images) to a network drive which is shared by the entire team and I open the file every thing is in place as long as I'm the last person that saved the file. If a teammate open the file I've just saved in he or she computer a prompt for missing links is shown. Once the missing images are re-linked he or she can work normally and if they close the file it won't prompt a missing links message the next time he or she open the file. But if another teammate open the file from his or her computer the message shows again.
    It is as if Illustrator save the paths relatively to each computer rather than to the network drive where the links sit. This behavior is really annoying since it make collaborative work a pain.
    Do anyone know a fix or at least a workaround for this? (embedding images instead of linking them is not a solution since we work with large files on huge projects).
    Thanks in advance!

    Well is not real time collaboration. It is more like you say, separate people sometimes end up working on the same files. This workflow is great and works flawlessly. The real problem are the linked assets (either images or others AI files placed inside a document). Each time a team member opens a file he or she need to re-link everything and it keeps correctly linked as long as he/she that saves changes to the file. The next person who open that file will need to re-link assets again.
    It is as is Illustrator were unable to remember the path of links in shared drives but only in local ones.
    It is not a deal breaker but certainly is quite annoying.

  • Creating links(tabs Nav) that are expandable

    Hello everyone,
    I am trying to create a navigation bar that is expandable by using an image with rounded gradient corners on each link.
    I do not want to use CSS3, HTML5 or JavaScript, just plain CSS2.
    My plan is to slice the image so that the tab expands when the text in the link is increased; example: if I have a word like, red link and later change it to yellow link, I need the tab to expand and accommodate the additional text.
    The image is gradient round image, how do I pull this of so that the link expand when the text is increase?
    I could do this by using the sliding door technique but this poses a problem because the image has a gradient border, and because sliding door overlaps, there will be a visible line where the slices of the images overlapped.
    Also I could place one slice of the image(left corner) on the background of the li tag and placed the other slice (right corner) on the anchor tag; however, how do I repeat the gradient body of the image?
    I am just looking for some ideas.
    Thanks everyone!
    DR

    Curtis_E_Flush wrote:
    Terribly sorry. You're right. HTML5 and CSS3 ARE DEFINITELY NOT the way to do things today. I need to break out my copy of Office 97 with FrontPage 98 so I can change everything back to tables and frames with open tags and inline styles.
    All sarcasm aside, I really don't understand why people constantly want to "retrobuild" so their website is comaptible with Netscape 4 on Windows 98 SE.
    The only reason CSS3 and HTML5 are not dominant on the web (yet) is that they are still too new. Don't feel bad, there were people who, like you, said that CSS would never be the preferred way to design web sites.... in 2002 and 3.
    There were people who said that XHTML would never replace basic HTML1 too.
    When building for maximum browser compatibility, you will get a literal avalanche of "ratings" on what is being used and how much. I donlt play that B.S. game myself. I'm a freelancer and I've made less than $1000 this year... that's all for the whole year. If I can keep my browsers up to date on a piggy backed wi-fi connection from my neighvor, I don't accept any excuses from anyone who syays they can't for whatever reason. I build for IE8, IE9, Firefox 8, Opera 11, Chrome 14, and Safari 5.  If it doesn't look or work right in IE5 or Mozilla 1.3, that ISN'T my problem.
    Would I rather use CSS3 Border radius? Sure, I am not trying to design for older browser; however, for now I would rather rely on CSS2, which in my view is the standard. I often use CSS3 for none essential designs and add CSS2 as a backup for browsers that does not support it.
    Links or navigation are extremely important, or may I say one of the most important aspects of a website, if your links are not compatible or at least functional and accessible, than you are in trouble.
    I completely understand where you are coming from, unfortunately consumers make the final decision when it comes to what kind of browser they want to use.
    If I had the power, everyone using IE would use version 7 but that's what I like to call, exotic association.
    Thanks for your time!
    DR

Maybe you are looking for

  • Vendor edit using bapi

    Hi all, How to use Bapi_vendor_edit to edit the vendor details using XL file. Please give me the example. regards, rakesh

  • Strange FDF Symptoms

    I am having the same symptoms as others have written where my Classis ASP created FDF data won't populate a PDF form.  What I have is an enrollment process where Form A is used to send FDF data to an ASP program on the server which interacts with the

  • Customizing a web gallery

    I am designing a website for a friend.  There will be a gallery page. Can I create a web gallery in lightroom that allows me to use my own background images? I don't want the gallery portion of the site to look so diffferent from the rest of the site

  • Question about "Enhanced for loop"

    public class NewLoopTest{      public NewLoopTest(){           int result=0;                                 int[] a=new int[20];                      for(int i=0;i<a.length;i++){                a=i++;           for(int i:a){   System.out.println("i=

  • Ios 7.0.2

    Hello, it will be return the subscription ios 6.1.4? Could you spend a formal interview, many users   wants back ios 6.1.4.   7 is not bad, but 6 is many times better and more familiar, many people are even willing to accept the loss of data only to