Region does not refresh in Address ESS.

Dear all experts,
When updating address of employee who belongs to Kuwait country group on web portal ESS, all regions are Kuwait specific and regions do not refresh if employee chooses a different country to update emergency or permanent addresses.
Can you help on this problem?
Thanks and kind regards,
TramNguyen

You have to create a new address using the NEW button from the overview screen in order to enter a new country within the address screens. You cannot update country within the existing addresses as they screens will not update based on the new country selection. In fact the country should not even be an open field on the screen when in edit mode. If you do not have a NEW button on the overview screen, please check your configuration for subtypes for ESS within the IMG.
Cheers,
Mike

Similar Messages

  • Detail region does not refresh when selecting from a drop-down list in master region

    I am using DW CS3 and have updated to version 1.6.1 of Spry.  Using an XML dataset, I am able to create a Spry table as the master region that links to a detail region that displays a small JPG graphic.  It works fine in this format (clicking on a row displays the correct graphic).  However, my table has 80 rows and requires the user to do too much scrolling. So I changed the master region to a drop-down repeat list, but the graphic does not change when a new selection is made in the drop down list.  Listed below is the code produced when I used the insert Spry Repeat List.  I got the same results when adding a spry:setrow="dsChartNurse".  I also tried -- onclick="dsChartNurse.setCurrentRow('{ds_RowID}');" -- which again made no difference.
    When I removed children from the spry:repeat, the master region displayed as a two column list of all 80 items in a drop-down list format.
    <div spry:region="dsChartNurse">
           <select name="select" spry:repeatchildren="dsChartNurse">
             <option value="{name}">{name}</option>
           </select>
    </div>
    <div id="image" spry:detailregion="dsChartNurse">
       <img src="{dataimage}" align="center" style="margin:50px 0 0 0"width="320" height="164" />
    </div>
    Thanks so much to anyone who can help correct my code in order to have a drop-down list display information correctly in the detail region.

    Thanks for the quick reply.  I did solve the problem I was having by changing from onclick to onchange in the master region.  But, now I have another problem with, of course, IE.  I just put in online at http://www.minursemap.org/ageDistNurse.html.  When opened in IE, the drop down list displays the last entry, but the image is for the first in the list.  Thanks again for your help.

  • Finder window does not refresh under yosemite

    I have a weird effect on my rMBP with the latest Yosemite:
    Very often (not always) when I save a file from an application an open Finder window to the save location does not refresh. The new file is not shown! I can go in with Terminal and everything is fine, the file is there. I can edit its contents (eg. with vi or pico) and I can rename the file. However the Finder still does not show it. Not even closing and re-opening the folder help. The only way I found is to create a new folder and immediately delete it. That forces the Finder to update the window. It looks as if the Finder does not get *some* update events.
    I do have XtraFinder installed, but deinstalled it and even after a reboot nothing changed, Finder still does not refresh its display. I cannot tell exactly when this started, but incidentally I run an update some days ago and installed Server 4.0.3 and upates to the latest Pages/Keynote/Numbers (however I do not use those, I am still and will stay with iWork'09).
    I use Server on a MBP with dynamic address because I needed virtual domains for local testing, nothing really "serverish". It just provides a nice GUI for easy setting-up of virtual domains.
    Any ideas? What can I do?
    Thanks
    ---markus---

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Advanced Table does not refresh after database level action

    Hi,
    I have a page which has an advanced table. I update the advanced table from the page do some validations, update some DB level columns(also part of advanced table) and see that the changes are saved to the DB but the advanced table does not show the updates done at the DB level.
    I tried clearing the VO Cache and re-executing the VO but still it does not refresh the Advanced table data.
    This is very critical requirement for the client, any inputs will be greatly appreciated.
    Thanks a lot in Advance.
    Here is the code snippet from my CO's processRequest:
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAAdvancedTableBean tblbean = (OAAdvancedTableBean)webBean.findChildRecursive("recasttable");
    if(tblbean!=null)
    tblbean.setRendered(true);
    OAApplicationModule tblam = (OAApplicationModule)am.findApplicationModule("RecastLineAM1");
    tblam.invokeMethod("initQuery");
    tblbean.getTableData();
    Here is my AM - initQuery() code:
    public void initQuery()
    //clearVOCaches("RecastLineEO",true);
    clearVOCaches(null,true);
    getRecastLineVO1().init();
    Here is the VO - init() code:
    public void init()
    System.out.println("****************************executing...");
    OADBTransaction tx = (OADBTransaction) getApplicationModule().getTransaction();
    if (tx.getTransientValue("RECAST_ID") !=null)
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("recastId: "+ recastId);
    setWhereClause("RECAST_HDR_ID = :1");
    setWhereClauseParams(null); // Always reset
    setWhereClauseParam(0, recastId);
    executeQuery();
    }

    hi,
    This is how I am calling a DB package. the package does updates on the table. once done I am issueing a commit and requerying the data, however the vo is not getting refreshed.... Can someone point out what am I missing... why is the VO not getting refreshed....
    This is very critical...
    Thanks
    Srini
    public void validateRecast(String respKey)
    OADBTransaction tx = (OADBTransaction)getApplicationModule().getTransaction();
    Number recastId = (Number) tx.getTransientValue("RECAST_ID");
    System.out.println("*********************validateRecast().RecastId: " + recastId);
    OracleCallableStatement ocs = null;
    Connection conn = tx.getJdbcConnection();
    String strOut="", strErr="";
    Number respId = null;
    try
    respId = new Number(respKey);
    catch(Exception e)
    throw new OAException("Invalid Responsibility");
    String stmt = "BEGIN " +
    "GE_RECAST_UTILS_PKG.validate_recast(:1,:2,:3,:4); " +
    "END;";
    try
    ocs = (OracleCallableStatement)conn.prepareCall(stmt);
    ocs.setNUMBER(1,recastId);
    ocs.setNUMBER(2,respId);
    ocs.registerOutParameter(3,OracleTypes.VARCHAR);
    ocs.registerOutParameter(4,OracleTypes.VARCHAR);
    ocs.execute();
    strOut = ocs.getString(3);
    strErr = ocs.getString(4);
    ocs.close();
    System.out.println("Returned with: " + strOut);
    if(strOut.equalsIgnoreCase("ERROR"))
    //throw new OAException(strErr);
    tx.putTransientValue("ERROR",strErr);
    tx.commit();
    getApplicationModule().clearVOCaches("RecastLineEO",true);
    RecastLineVOImpl lineVo = (RecastLineVOImpl)getApplicationModule().findViewObject("RecastLineVO1");
    lineVo.init();
    System.out.println("===============RecastLnId: " +lineVo.first().getAttribute("RecastLnId"));
    System.out.println("===============Product Line: " +lineVo.first().getAttribute("ProductLine"));
    catch(SQLException e)
    tx.rollback();
    if(ocs!=null)
    try
    ocs.close();
    }catch(SQLException e1)
    throw OAException.wrapperException(e1);
    throw OAException.wrapperException(e);
    }

  • Discoverer 10.1.2 does not refresh new added column

    Hello,
    I need help to add a new item to EUL Business Area folder for a new added column in the database table.
    When I refresh the folder in the BA EUL, the result shows no difference between the folder and the underlying table in the database; however, when I quey the table in the database, a new column is there. The refresh of the folder in the Discoverer Admin tool cannot find the newly added column. Weird!! The first time saw this problem.
    Could someone shine some light on it? Would be really appreciate it!
    Ping

    I have a slightly different problem and can't solve it! When I refresh the EUL, the result shows the differences between the folder and the underlying tables in the database. However, it does not refresh the EUL in Discoverer Administrator 10g. Nothing happens! When I try to refresh again, the same list is shown... Does anyone know what could be happening?
    Thanks

  • Hyperlinked JSP Page does not refresh contents

    I have a very typical problem.
    In my application whenever I call a jsp page using hyperlink without any querystring attached to it the page called does not refresh. However when I press refresh on the browser it does refresh the contents. Basically in this page I am using some session variables to fetch data. So I do not call the page by passing querystring instead set the attributes of session variables and then the page is called as a hyperlink.
    However if I call the same page using submit the values are refreshed.
    Help on this urgently will be appreciated.
    Thanks
    Manish

    Just set 'no-cache' option for the jsp page and test it. It should work. only you need to do is
    response.setDateHeader("Expires",0);
         response.setHeader("Pragma","no-cache");
         if(request.getProtocol().equals("HTTP/1.1")) {
              response.setHeader("Cache-Control","no-cache");
    have fun!!
    ---rajsekhar

  • Management Studio 2008 does not refresh after table create / alter

    hello
    Management Studio 2008 does not refresh after table create / alter, why?
    f5 / refresh button does not work in "Object Explorer".... i always need the restart the whole application to see any changes, this is strange...
    regards, jan

    Hi jm,
    I’m writing to follow up with you on this post. Was the problem resolved after performing Vishal ‘s steps? If you are satisfied with our solution, I’d like to mark this issue as "Answered". Please also feel free to unmark the issue, with any new findings
    or concerns you may have.
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • 5Th Gen AE Does Not Assign IP Address in Bridge Mode

    I have three AEs in my house...two of which are 4th gen and one is 5th gen, and two of which are set up as bridge (a 4th gen and a 5th gen). The 5th gen does not generate ip addresses reliably...everytime I go to the room where the 5th gen AE is I have to turn off the wifi on my device and turn it back on to get an ip address. This happens 100% of the time. I have tried my MBP, as well as my iPhones (4s and 5.) I also noticed the ip address that is being assigned for the bridges is of totally different denimination. The 4th gen bridge gets an ip of 10.0.1.4 where as the 5th gen gets a 192.168.1.76...the DHCP address range for the main is 10.0.1.2 through 100 and it should be assigned one of those ips. I'm kinda suspecting this is why the bridge is not working properly. I just don't understand why this unit is acting this way. Any input to help solve this mystery will be greatly appreciated. CHEERS:-)

    Did resetting to factory help this issue?  I'm having the same problem with my  5th and 3rd gen AE's.  I've added a new router (pfSense) and only need the AE's for access points.  The following is the result on some problem tracking:
    Working on my network ip addressing issue.  I shut everything down.  I brought up my internal wired network of  pfSense router, internal switches, appleTv units, printers and a couple of computers.  All Addresses were correctly assigned.  I released/renewed the ip addresses to check if the address assigned would remain correct, and this test passed.
    I then connected my cable modem to the internet, which connected with no problem.  I then again tested release/renew of addresses, and this test pasted with no problems.  And I had internet access.
    My internal network follows the 10.0.1.xxx address range.  I leave 20-99 open as my dynamic range, and assign my AppleTv, DirecTv, SlingBox, and MacMini server to static addresses via MAC reservation.  All these are functioning correctly.
    Final test.  I add my Airport Extreme 5th gen, which is in bridge mode, with no guest network, and the light turns green.  I open up my MacBook, connect via WiFi, and the address is 192.168.100.34, not correct.  I turn WiFi on my MacBook off, then I turn it on,  after three cycles I get a correct ip address.
    I confirm via airport utility my settings.  I see nothing to change.  I replace my Airport Extreme 5th gen , with my older Airport Extreme 3rd gen, and I once again get a 192.168.100.22 address which is not correct.  I cycle the WiFi setting in my MacBook and after a few cycles, I get a correct address.
    My DHCP server is an older Dell system running the linux based software pfSense.  I made this change after I started getting bad IP addresses from my Airport Extreme 5th gen.  My cable modem is a Zoom 5431J DOCSIS 3.0.  But my first test was verifying the assignment of addresses from pfSense, without the cable modem.
    I've powered off both Airport Extremes and have checked the settings.  Not sure what else I might try with these Extreme units.

  • WRT610N V2 wired as 2ndary router to wired router, does not give IP address wirelessly

    My WRT610N V2 is wired as 2ndary router to a wired router but it does not give IP address wirelessly to connected PCs.
    It is getting DHCP IP address in the 192.168.1.xxx range from the 1st router, on its internet port, and issuing properly an IP addresses in the 10.10.1.xxx range thru its LAN port  when wired to a laptop.
    But if I connect to its 10.10.2.xxx wireless network with another laptop, the wifi adapter utility software shows the laptop is connected, but the laptop is not receiving an IP address.  Please help in correcting this, as I need to use this router to give internet access wirelessly to guest laptops.
    I know DDWRT does this kind of bridging with secondary DHCP when both routers are connected wirelessly, but it seems to me that if the 1st and 2nd router are wired together, DDWRT shuld not be needed for 2ndary HCP to take place.
    And 2ndary DHCP is indeed working for those laptops wired to the 2ndary Cisco router: seems to me it should be able to do it also wirelessly.

    In the upper right search bar type in 'two routers' to find your answer.

  • DHCP server does not assign IP addresses SG500 firmware 1.3.5

    good day collegues
    has any of you come across the following issue:
    my switch (after upgrading to the newest firmware 1.3.5) does not assign IP addresses to some of the hosts.
    after a couple of hours I managed (do not even how) to force my switch to assign IP addresses only to some of the hosts.
    still some of them cannot get the IP address and remain with "funny" IP address like i.e. 169.254.100.100
    additional info
    1. if I boot my switch with the previous version of firmware (1.3.0.6) everything is OK. all my hosts get correct IP addresess
    2. the hosts which do not get IP address were perviously entered in stat host table - now removed, ARP cleared, etc, everything many many times rebooted.
    I ran out of ideas, could you pleae give me some hints ?
    the config below:
    config-file-header
    SG500
    v1.3.5.58 / R750_NIK_1_35_647_358
    CLI v1.0
    set system mode router queues-mode 4
    file SSD indicator encrypted
    ssd-control-start
    ssd config
    ssd file passphrase control unrestricted
    no ssd file integrity control
    ssd-control-end zzz
    no spanning-tree
    vlan database
    vlan 11,13-14
    exit
    voice vlan oui-table add 0001e3 Siemens_AG_phone________
    voice vlan oui-table add 00036b Cisco_phone_____________
    voice vlan oui-table add 00096e Avaya___________________
    voice vlan oui-table add 000fe2 H3C_Aolynk______________
    voice vlan oui-table add 0060b9 Philips_and_NEC_AG_phone
    voice vlan oui-table add 00d01e Pingtel_phone___________
    voice vlan oui-table add 00e075 Polycom/Veritel_phone___
    voice vlan oui-table add 00e0bb 3Com_phone______________
    no ip dhcp snooping verify
    ip dhcp snooping information option allowed-untrusted
    ip dhcp snooping vlan 11
    ip dhcp snooping vlan 13
    ip dhcp snooping vlan 14
    ip arp inspection logging interval infinite
    green-ethernet energy-detect
    no eee enable
    arp timeout 1
    ip dhcp server
    ip dhcp pool host q409
    address 10.10.11.2 255.255.255.0 client-identifier 01:00:08:9b:ac:8f:92
    default-router 10.10.11.254
    dns-server 10.10.10.1
    exit
    ip dhcp pool host PCH-100
    address 10.10.11.10 255.255.255.0 client-identifier 01:00:06:dc:41:ef:ef
    default-router 10.10.11.254
    dns-server 10.10.10.1
    exit
    ip dhcp pool host q209
    address 10.10.13.3 255.255.255.0 client-identifier 01:00:08:9b:ac:72:ba
    client-name q209
    default-router 10.10.13.254
    dns-server 8.8.8.8
    exit
    exit
    ip dhcp pool network HOME
    address low 10.10.11.1 high 10.10.11.254 255.255.255.0
    lease infinite
    default-router 10.10.11.254
    dns-server 10.10.10.1
    exit
    ip dhcp pool network GUESTS
    address low 10.10.14.1 high 10.10.14.254 255.255.255.0
    lease infinite
    netbios-node-type b-node
    default-router 10.10.14.254
    dns-server 10.10.10.1 62.233.233.233
    exit
    ip dhcp relay address 10.10.10.1
    ip dhcp relay address 10.10.11.254
    ip dhcp relay address 10.10.13.254
    ip dhcp relay address 10.10.14.254
    no boot host auto-config
    no qos
    qos advanced-mode trust dscp
    qos wrr-queue wrtd
    exit
    hostname SG500
    line telnet
    exec-timeout 0
    exit
    logging buffered debugging
    no logging file
    aaa authentication login Telnet local
    aaa authentication enable Telnet enable
    aaa authentication dot1x default none
    line telnet
    login authentication Telnet
    enable authentication Telnet
    password 999 encrypted
    exit
    no passwords complexity enable
    passwords aging 0
    username 999 password encrypted 999 privilege 15
    ip http timeout-policy 0 http-only
    clock timezone " " 1
    clock summer-time web recurring eu
    clock source sntp
    clock source browser
    sntp unicast client enable
    clock dhcp timezone
    ip domain name 999
    ip name-server  10.10.10.1 62.233.233.233 8.8.8.8
    ip host 999 10.10.13.3
    ip telnet server
    no service mirror-configuration
    no security-suite deny syn-fin
    security-suite syn protection mode disabled
    interface vlan 1
    ip address 10.10.10.254 255.255.255.0
    no ip address dhcp
    interface vlan 11
    name HOME
    ip address 10.10.11.254 255.255.255.0
    ip dhcp relay enable
    interface vlan 13
    name DMZ
    ip address 10.10.13.254 255.255.255.0
    ip dhcp relay enable
    interface vlan 14
    name GUESTS
    ip address 10.10.14.254 255.255.255.0
    ip dhcp relay enable
    interface gigabitethernet1/10
    description "(99) QNAP 409"
    switchport trunk native vlan 11
    exit
    macro auto disabled
    macro auto processing type host enabled
    macro auto processing type ip_phone disabled
    macro auto processing type ip_phone_desktop disabled
    macro auto processing type router enabled
    mac address-table aging-time 10
    ip default-gateway 10.10.10.1
    snmp-server set  999 permit

    Hi Andbor, please make a backup config of your file, factory reset the switch.
    After this, manually configure a DHCP scope without any other configuration.
    Just something simple like this
    ip dhcp pool network GUESTS
    address low 10.10.14.1 high 10.10.14.254 255.255.255.0
    lease infinite
    netbios-node-type b-node
    default-router 10.10.14.254
    dns-server 10.10.10.1 62.233.233.233
    Verify your machine receive IP address with no other configuration.
    In some ways, I'm afraid some of your connections black listed due to the arp inspection.
    -Tom
    Please mark answered for helpful posts

  • JTextArea does not refresh in real-time

    Hello all,
    Somehow, a JTextArea does not refresh ok. It refreshes only after myobject terminates. As a result, it does not write the results when i append them, but when the object that appends the data to it ends (myclass in the following example).
    If anyone has any suggestion, i would be more that pleased to hear it.
    Thanks
    odyspapa
    the relevant code is:
    main
      int cnt = 0;
      MyClass myobject = new MyClass();
      JTextArea ta = new JTextArea();
      // and now call an object that is supposed to
      // write to that area (pass jtextarea as a parameter)
      myobject.produceResults(ta);
    myclass
      produceResults(JTextArea ta)
        while (something)
          // process to produce results
          ta.append(the_result);

    make your text field final and add
    ie:
    tf.repaintwhere tf is your textfield.

  • Safari does not show url address line. google is taking up all the space...

    safari does not show url address line anynore. google is taking up most of the space on the safari page

    Hover the cursor over that line until it becomes a big plus sign with arrows on the left and right. Click and drag the cursor so that the rest of the address line is the way you want it.
    (66963)

  • Workbook does not refresh in MS Office 2007 on Windows 7

    Hi,
    We are facing problems when we try to refresh the BI Workbooks on the
    Computer which is having Winodws 7 (OS) and MS OFFICE 2007.
    The Workbooks goes into endless loop, and it shows Processing. The
    Query does not refresh.
    These workbook were created in MS Office 2003 on a Windows XP (OS)
    machine.
    The workbook get refreshed on the MS OFFICE 2003 and WINDOWS XP
    Machine, but the same workbook is not refreshing on the WIndows 7 (OS)
    with Office 2007.
    THE SAP GUI is 7.10 and the following are support Patches installed.
    1) bi710sp12_1200-10004472
    2) gui710_18-10002995 ( Patch 18)
    Support Patch for SAP BW is SAPKW70020 (0020). 
    Is there any other setting to be done in Excel 2007 on the Machine
    which is having Windows 7 as Operating System.
    Please suggest.
    Thanks & Regards,
    Nilesh

    you are installing, running, Windows, natively, so it is the same.
    a partition manager does not affect the OS, and the support driver software is just that
    www.apple.com/support/bootcam faq manuals how-to & support

  • Search option does not work in address book

    The search field (upper right corner of window) does not work in address book (version 4.0.5) of my friend's Power Book. I eliminated the possibility of a corrupt plist (preference) file by dragging them to the desktop and restarting but it still didn't help. Any other ideas?
    Meg

    If searching in Spotlight works, I don’t know what could be the problem. You may try this:
    1. Open Address Book.
    2. As an extra safety measure, do File > Back up Address Book and save the backup wherever you wish.
    3. Go to Address Book > Preferences > vCard, set the vCard Format to 3.0 and check Export notes in vCards. Close the Preferences window when done.
    4. Select the All group in the main Address Book window and do File > Export Group vCard (the command should read “Export Group vCard”, not just “Export vCard”).
    5. Quit Address Book, Mail, and any other applications that might use Address Book for something. Or just quit all applications to be on the safe side.
    6. In the Finder, go to ~/Library/Application Support/AddressBook/ and trash any ABPerson.skIndex files you may see there. Open Address Book and check whether the problem is fixed.
    7. If the problem persists, quit Address Book again, in the Finder go to ~/Library/Application Support/, and move the entire AddressBook folder out of there, e.g. to the Desktop (to be deleted after fixing the problem and making sure you don’t miss anything).
    8. Open Address Book and try doing File > Revert to Address Book Backup to restore the backup you made in step 2. If the problem persists, repeat step 7 and this time try doing File > Import > vCards to import the cards exported in step 4.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • Login Window: Screen does not refresh correctly after waking 10.7.2 iMac and MacBook.

    I have a client who brought to my attention that when we wakes his iMac and MacBook after the screen dims or sleeps at login screen, that sometimes the screen does not refresh correctly and you must use the cursor to basically "clear the screen."  I have witnessed this myself and elimiated all third party products and this still happens.  I am starting to believe that is is a bug in 10.7.2.  Has anyone witnessed this or have any suggestions on how to remedy?  Thank you.

    Thanks lynque.  It turns out I did need a keychain repair, but that didn't fix the problem.  I probably should have done this earlier, but I ended up unplugging all peripherals (2 firewire + 3 USB) then powered up without issue.
    So I shut down, plugged in one at a time, and ran into the problem again after plugging in an external hard drive (WD My Book Essential).  I repaired with disk utility, but the problem remained.
    I then rebuilt the partitions with Disk Warrior, and now everything seems to work....

Maybe you are looking for

  • Security Update 2008-001 & iMic

    I just installed Security Update 2008-001 and now my iMic isn't working. The iMic is plugged into a USB port. The light in the hub that indicates it is working is off most of the time. Then it flashes on/off for a brief time before going off again. W

  • N95 help please,both ok buttons do not work

    hi both my ok/select buttonshave stoped working, im guessing its not the keypad because all the buttons work fine except the both buttons you can use to select things or open programs, my is useless ! i can not even connect pc suit to try and d/l new

  • Creating a new Toolbar

    Hello, I am new to the RoboHelp world, but I am a Programmer by nature. I would like to know if I can create a toolbar for RoboHelp so that I can pre-load it with my own formatting and tags for Paragraphs, Tables, Headings, etc. I have to make it as

  • Transparency Problem

    I've been trying to save slices with a transparent background and have yet to succeed. I make the slice on an image with the checkered background behind it. Then go to File > Save for Web and Devices. Then select the slice I want, and change it to a

  • Hierarchy  data loading  in sap  bw 7.3 for 0 costcenter-dtp error

    Hi , I am loading data from ECC with data source 0COSTCENTER_0101_HIER to BW.For this i have created transformations between info object HIERARCHIES 0COSTCENTER and data source and DTP as well.I have loaded data upto PSA with info package  no issues,