SWC_GET_ELEMENT within GET_PROPERTY

Hi,
I need to do the following. I have a BOR Object that is holding an ID in its container. That ID is filled properly for sure. Now I need this ID as a key to select a value from a dictionary table to set a property of that BOR object. The code so far looks the following:
GET_PROPERTY TIMEEVENTTYPE CHANGING CONTAINER.
DATA: lv_requestid type /clientname/cc1tev-requestid.
SWC_GET_ELEMENT CONTAINER 'RequestId' lv_requestid.
select single satza from /clientname/cc1tev into OBJECT-TIMEEVENTTYPE
where requestid = lv_requestid.
SWC_SET_ELEMENT CONTAINER 'TimeEventType' OBJECT-TIMEEVENTTYPE.
END_PROPERTY.
However, the SWC_GET_ELEMENT does not seam to do anything within the GET_PROPERTY macro. I am using it in a method where it is working just fine. But I cannot use it whithin the get_property macro.
On the other hand the SWC_SET_ELEMENT does not seem to work outside the GET_Property macro.  I have seen standard coding from SAP where they use huge help classes to populate the BOR Object Properties.
Please, ther must be an easy way.
Best Regards
Stefan

Hi,
thanks again for your effort.
Indeed the whole scenario is in a workflow context. Here is the scenario in detail. We have a WD4ABAP application that is populating a table /clientname/cc1tev as a kind of an interim stage for an approval process. That table contains RequestID and lets say value1, value2, value3. For each line of that table an objecttype 'YTTIMEEVT' is created and an event fired. Here is the relevant piece of code. (That code was handed over to me by a colleague. Admittedly my knowledge in ABAP is pretty basic.)
LOOP AT lt_insert INTO ls_insert.
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        nr_range_nr = '01'
        object      = 'YTTIMEEVT'
      IMPORTING
        number      = lv_number
      EXCEPTIONS
        OTHERS      = 0.
      MOVE-CORRESPONDING ls_insert TO ls_cc1tev.
      ls_cc1tev-requestid = lv_number.
      ls_cc1tev-lfdnr = sy-tabix.
      ls_cc1tev-pernr = ls_date-pernr.
      ls_cc1tev-zausw = ' '.
      INSERT /clientname/cc1tev FROM ls_cc1tev.
       DATA lt_cont TYPE TABLE OF swcont.
       data ls_cont TYPE swcont.
       CALL FUNCTION 'SWC_ELEMENT_SET'
         EXPORTING
           element   = 'REQUESTID'
           field     = lv_number
         TABLES
           container = lt_cont
         EXCEPTIONS
           OTHERS    = 1.
       CALL FUNCTION 'SWE_EVENT_CREATE'
         EXPORTING
           objtype         = 'YTTIMEEVT'
           objkey          = ''
           event           = 'CREATED'
         TABLES
           event_container = lt_cont
         EXCEPTIONS
           OTHERS          = 0.
       COMMIT WORK.
ENDLOOP.
My custom workflow is linked to that event. The workflow basically contains a user decision and a task to process the request according to the user decision. The task calls a method in the program of the objecttype 'YTTIMEEVT' that u2013 among other steps u2013 is looking for the RequestID to identify the corresponding entry in /clientname/cc1tev. In that method Iu2019m using  SWC_GET_ELEMENT CONTAINER 'RequestId' lv_requestid
This works absolutely fine which is why Iu2019m convinced RequestID is properly stored in the container. Also there is an item for RequestID on the first level of the workflow container. Admittedly I canu2019t see how it is linked to the object container.  Is it just by the same name? (If I understood you correctly the workflow container does not necessarily equal the object container, right?) However, I can use that as a parameter in workitem descriptions etc. and that is also working fine.
The missing bit is actually the user decision. I want to support the useru2019s decision by giving some details regarding the request using further parameters from the workflow container.
To utilise the values in the workflow Iu2019ve added the virtual attributes to the objecttype. I then added the objecttype as a reference to the workflow container and I can see the virtual attributes underneath it.
In the program of the objecttype the macros to set the properties where automatically added:
GET_PROPERTY <element> CHANGING CONTAINER.
  SWC_SET_ELEMENT CONTAINER u2018<element>u2019 OBJECT-<ELEMENT>.
END_PROPERTY.
If I just statically set the value its also working fine and I can use it in the workflow container. However, to get the correct value I would have to use the RequestID from the object container again to find the right table entry which is why I wanted to use SWC_GET_ELEMENT CONTAINER 'RequestId' lv_requestid again and this was my original query.
However, meantime I though it should be possible and probably the easiest way, to include the values already in the object container by the time of creation instead of virtual attributes during runtime. Those values are know by the time of the first CALL FUNCTION 'SWC_ELEMENT_SET' already when the the RequestID is set in the container. Unfortunately I couldnu2019t figure out how to create/populate further container elements and reference them in the workflow container so far.

Similar Messages

  • Workflow - SWC_GET_ELEMENT

    Hi
    I have created an Attribute on a business object and am trying to get the data held within Workflow container element.
    I am using the code:
    "get_property email_confirmation changing container.
    swc_get_element container 'wf_ini_email' w_email.
    swc_set_element container 'Email_Confirmation' w_email.
    end_property."
    The workflow container element is wf_ini_email.
    Unfortunately this is not returning any data from the workflow container into w_email in the Attribute.
    Is it possible to get data held within workflow container elements directly from the Attribute? If yes do you have any example code that I could use?
    Many thanks for your help in advance.
    Daniel

    I have added attribute(classroom) to a bor for Training and Event and this is the code to fill an attribute.
    When creating an instance of the BOR
    I hope this will help.
    get_property classroom changing container.
      data : it_resources like hrvres occurs 0 with header line. 
                                                             clear object-classroom.                                                                               
    call function 'RH_GET_EVENT_DATA'                 
       exporting                                       
         planversion    = '01'                         
         eventid        = object-key-eventid           
         with_resources = 'X'                          
       tables                                          
         resources      = it_resources                 
       exceptions                                      
         no_infty_found = 1                            
         others         = 2.                           
    if sy-subrc eq 0.                                 
       clear object-classroom.                         
       read table it_resources with key raumx = 'X'.   
       if sy-subrc eq 0.                               
         object-classroom = it_resources-retxt.        
       endif.                                                                               
    endif.                                                                  
    swc_set_element container 'CLASSROOM' object-classroom.                 
    end_property.

  • Swc_get_element: error

    Hello,
    I am getting an error on the statement
    swc_get_element container 'REQUISITION_NUM' newvariable.
    And the error is:
    Class ZCL_HRMSS_RECRUITING_WF,Method CREATENBOBJECT
    Statement "SWC_GET_ELEMENT" is not defined. Check your spelling.
    spelling.
    Anybody has an idea whats goin on here.
    Regards.
    Srinivas.

    Hello All,
    I am getting error:
    Include <CNTAIN>
    Within classes and interfaces, you can only use "TYPE" to refer to ABAP
    Dictionary types, not "LIKE" or "STRUCTURE".
    Here is the code:
    METHOD CREATENBOBJECT.
    INCLUDE <CNTAIN>.
    DATA: newvariable(12) type n.
    swc_get_element container 'REQUISITION_NUM' newvariable.
      CALL FUNCTION 'ZHRWPC_EREC_CREATE_EREC_OBJECT'
        EXPORTING
          notif_objid      = notificationid
          notif_type       = notificationtype
        IMPORTING
          return           = return
        EXCEPTIONS
          no_isr_update    = 1
          database_error   = 2
          general_error    = 3
          req_object_found = 4
          no_erec_approval = 5
          erec_sys_error   = 6
          status_error     = 7
          OTHERS           = 8.
      IF sy-subrc <> 0.
    Messages already raised, exceptions should be handled here
    due to workflow intricacy.
      ENDIF.
    ENDMETHOD.
    Can anybody tell me whats wrong.
    Thanks and Regards
    Srinivas

  • How to send mail to external email within workflow

    Hi Expert,
    I know this question has been questioned before in the forum but that is quite different from what i want. After researching in this forum i found out that forwarding was the way to move the inbox into the external mail (using scheduled job) but what i want is to include send mail activity within the workflow that directly send email into the external email ( so no scheduled job). The logic is perhaps:
    1. get the email address
    2. use send mail activity
    3. Assign the element defined to E-Mail Address.
    4. send the email.
    But I'm unable to retrieve the email address, store it and pass it into the email (as element). Can somebody help me with this?
    Many Thanks.

    Use the below code(rule(fm)), hope it works for you.
    I have placed the SAP user id's in custom table & inserted e-mailid's to them in su01.
    FUNCTION ZMANI_GET_PLANNER.
    *"*"Local Interface:
    *"  TABLES
    *"      AC_CONTAINER STRUCTURE  SWCONT OPTIONAL
    *"      ACTOR_TAB STRUCTURE  SWHACTOR
    *"  EXCEPTIONS
    *"      NOBODY_FOUND
      INCLUDE <cntn01>.
      TYPES : BEGIN OF ty_users.
              INCLUDE STRUCTURE ZMANI_AGENT_MAST.
      TYPES : END OF ty_users.
      DATA: org_agent LIKE wfsyst-agent,
            lt_holders TYPE STANDARD TABLE OF swhactor,
            lwa_holders TYPE swhactor,
    *        lt_users TYPE STANDARD TABLE OF ty_users,
            lwa_users TYPE ty_users,
            v_len TYPE i,
    *        v_bname LIKE ztest_users-bname,
            num_lines TYPE i.
    ** Read values assigned to the rule criteria
      swc_get_element ac_container 'org_agent' org_agent.
    * Get the superior
      SELECT SINGLE *
        FROM ZMANI_AGENT_MAST
        INTO CORRESPONDING FIELDS OF lwa_users
       WHERE MMC = 'Y'.
      IF NOT lwa_users IS INITIAL.
        REFRESH lt_holders[].
        lwa_holders-otype = 'US'.
        lwa_holders-objid = lwa_users-BNAME.
        APPEND lwa_holders TO lt_holders.
        APPEND LINES OF lt_holders TO actor_tab.
      ENDIF.
      DESCRIBE TABLE actor_tab LINES num_lines.
      IF num_lines IS INITIAL.
        RAISE nobody_found.
      ENDIF.
    ENDFUNCTION.

  • Cannot send email from within iPhoto

    Using OX X 10.7.5 cannot send email from within iPhoto.  I get this error message: "Your email did not go through because the server did not reply."
    If I change the preference to use email, everything goes fine but I lose the formatting feature.

    iPhoto Menu ->
    Preferences ->
    Accounts ->
    Delete and recreate your email settings.
    Alternatively, use Apple's Mail for the job. It has Templates too - and more of them. Check out the Stationery...

  • AND within IF statement in XML publisher

    Hi All,
    I am in need to use AND condition within an IF statement in rtf template.
    Here is the condition I am using
    <if:../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?>
    My data
    <?end if?>
    This is not working, does anybody know how to achieve this.
    Appreciate your time and help.
    Thanks,
    Ragul

    so you mean to say
    ../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID
    and
    DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID
    conditions are different?
    exactly
    I have always refered to data elements in the RTF without giving any path and it works fine for me. is there anything that I may be missing?
    so you may be have simple case or may be not need to use parent tags logic
    so crazy example
    <ROWSET>
        <G2>
            <DIST_SHIPMENT_COUNT>0</DIST_SHIPMENT_COUNT>
            <ADDRESS_DETAILS>
                <ADDRESS_DETAILS_ROW>
                    <LOCATION_ID>2</LOCATION_ID>
                </ADDRESS_DETAILS_ROW>
            </ADDRESS_DETAILS>
            <G1>
                <ROW>
                    <SOMEROW>some text 1</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
                <ROW>
                    <SOMEROW>some text 2</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
            </G1>
        </G2>
    </ROWSET>
    and
    original condition:
    <?for-each:ROW?><?position()?> and value <?if: ../../DIST_SHIPMENT_COUNT!=1 and ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    your condition:
    <?for-each:ROW?><?position()?> and value <?if: DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    and result as
    original condition:
    1 and value
    some text 1
    2 and value
    some text 2
    your condition:
    1 and value
    2 and value

  • Sum function within if/then/else (xdofx:if)

    I'm attempting to display a total at a particular group within my report. This total is conditional and should choose to display a placeholder value or the sum of another placeholder value (in a child group).
    I have been able to vary my output based on the value I want to check: FIXED_QUOTE_FLAG - I have the if/then/else working in a simplified fashion
    I can display literals and some placeholders correctlly eg. print a literal value of 00110011 or the value of placeholder QUOTED_PRICE
    I can also display a calculated placeholder, using sum within the group I am concerned with: sum (current-group()/ACTIVITY_CHRG)
    But when I try to get everythign working together ...
    I cannot get the sum to work inside the if/then/else condition. The result is NULL (blank in HTML output).
    The following is the snippet which is not working correctly:
    <?xdofx:if FIXED_QUOTE_FLAG = 'Y' then QUOTED_PRICE else sum (current-group()/ACTIVITY_CHRG) end if?>
    Message was edited by:
    gareth_adamson

    To answer you first question, perhaps sum is not a supported function in the xdofx namespace. It's annoying when this problem comes up because xdofx namespace seems to be the only way to do if then else clauses. I'm not entirely certain on the above, but you could resort to using BI Publisher's built-in if statement.
    For your problem, something like this:
    <?if: FIXED_QUOTE_FLAG='Y'?>
    QUOTED_PRICE
    <?end if?>
    <?if: FIXED_QUOTE_FLAG!='Y'?>
    <?sum(current-group()/ACTIVITY_CHRG)?>
    <?end if?>
    EDIT:
    There is a way to do if else without xdofx namespace. It is done with <?choose:?> <?when:?> and <?otherwise:?> tags. Here is example syntax copied from Tim Dexter's blog:
    <?choose:?>
    <?when:count(TRX_NUMBER) > 0?>
    Invoice Table
    <?end when?>
    <?otherwise:?>
    No Data Found
    <?end otherwise?>
    <?end choose?>
    To answer the second question about a running total, you will need to use the <?xdoxslt:set_variable($_XDOCTX,'var_name',var_value)?> and the <?xdoxslt:get_variable($_XDOCTX,'var_name')?>. This method of working with variables is the only method that allows you to update a variable. This makes it good for running totals. Consult the official user guide under "Creating an RTF Template" the section about using variables and calculating running totals.
    So, in your problem, once you get the first part working, you will have to add that value to your running total. It will look something like this:
    <?xdoxslt:set_variable($_XDOCTX,'running_total',xdoxslt:get_variable($_XDOCTX,'running_total') + conditional_value)?>
    Remember to initialize the running total to zero! Hope this helps.
    Thanks,
    Matt Soukup
    Message was edited by:
    Matt Soukup

  • HELP: I need to link a PDF within PDF and be able to open and return to original PDF

    I have a master PDF and have attached 7 supplemental PDF documents. I created "click here" icons and used the steps below so that the linked document would open. The problem is, once I open the supplemental PDF, it closes the original master. I would like to close the linked document and return to the master view. Is there a way to do this?
    Or is there a way to do this from InDesign? I created master file in InDesign and exported as an Interactive PDF.  I created the buttons and linked them to external files. This works great as long as the master PDF and the links are all in one file, but that is a pain to send to a viewer. Ideally, I want to be able to send the master PDF to a viewer and not have to send a links folder. Is there a way to embed the supplemental PDFs into the master so that they are all combined into one file AND have the ability to use buttons to call up one of the attachments, close, and return to the original?
    Thanks in advance!!

    I want to do the same thing that the original poster of this question wants to do. I haven't worked extensively with Acrobat so am finding by trial and error the several ways PDFs within PDFs can be accomplished. I'm using a trial version of Acrobat Pro X and have experimented with three options.
    1 - I've created a Portfolio and am impressed with what that can do, though I think it may be "overkill" for the current size of my project.
    2 - I've also tried creating this project as an index but discovered that the links I'd created in the original docs didn't work when I moved the index and its contents (keeping the file structure the same). I presume this means the links are absolute? I also don't understand how it is that users search a .pdx file, or how to present what I want to be the original opening PDF of indexed docs.
    3 - I've also thought to create one PDF with attached PDFs, so I'd like to have you expand on your comment about creating a master document and attaching documents to it.
    The specifics of my project are these: I have created a master directory that contains approximately 120 links. Most of the links are repeated three times (users can find in the directory the item they need in three different ways: alphabetically, by application, or by module; hence each item listed once in each of three categories). I want to make that directory the "master" PDF that users open first, and then locate within that PDF the 5-8 PDF documents that contain all of the places to which the directory links. I want the "master" directory to be self-contained and completely "portable" as far as all of the documents and links are concerned so that when I make the PDF available from our website users can open the master from there or copy it and have all of the docs they need with all of the links intact. I think I prefer that all docs open in new windows, since returning to the original doesn't seem very user friendly in Acrobat (I like the tabs feature in FoxIt when multiple PDFs are open...).
    I'd like an opinion about the best way to accomplish what I need to do, and am also wondering whether there are other options I am unaware of. BTW, the reason we've decided to document this whole project in PDFs rather than HTML is because this project contains a big number of tables, which do not look consistent across various browsers (i.e., most of our tables look fine in IE and Firefox, but awful in Google Chrome...). In researching my issue on the Acrobat Windows forum I see that rendering tables in Acrobat is also an issue that seems to be unresolved.
    Thank you!

  • How to open a popup win within a PDF file (c:\test.pdf) as Column Link

    I have a interactive report based on a Table (EMP). I need to create a column link that opens a pdf file within the employee curricula
    All the curriculum are stored in a windows folder, and in the EMP table there is a field named PATH containing the full path name.
    Thxs,
    Giuseppe.

    Hello, Sebastian
    I've tested your suggestion and in effect it works.
    I think is good solution if the files are readonly (pdf, images, etc).
    In my case the files are updatable by the end user.
    Consider that I'm using the following configuration:
    APEX 4.0, DB 11.2.0.1 and EPG
    This means that:
    a. All the files need to be loaded in the XML_DB via PL/SQL or via WebDAV (let's say in... /i/mydocs)
    b. When the end user opens the file via the "Column link" this is read-only in the browser, to modify it, the end user need to save updated version in (/i/mydocs), replacing the existing ones, .. and this is a bit complicated .
    Any other suggestion will be appreciate.
    Regards,
    Giuseppe.

  • Open vi within vi and close the the last one

    Hi all
    I've searched the solution to my problem, but didn't find.
    Short brief:
    I have a VI that uses for authorization, then if all O.K it should open other VI("code-vi") and run it and close itself. 
    I saw that some people recommended , that it can be done by just putting the "code-vi" in the right place, but when I'm following this method , the authorization VI can't be closed. 
    the other method I tried is to put a sequence where the first stage is opening the "code-vi" with  "vi server ref" and the second stage is close this VI also with "vi server ref". with this method i'm facing two problems , the first is the fact that all the vi's are within a project , and I want that the "path refernce" would be generic - I can put the folder that holdes all the files in any PC and it would run without redirecting the path. 
    The second problem is that I can't find the way to automaticaly run the "code-vi" when it invoked. 
    which files should I attach if i'm using project ? 
    Solved!
    Go to Solution.

    UdiWeiss wrote:
    so from your answer I can't configure it as for a VI that it is not in project -> VI properties , execution. 
    I'm not sure what you are trying to say here.  The "Run When Opened" property for the VI doesn't care how the VI was opened, just that it was opened.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to use multiple profiles within the same instance of Thunderbird

    About a month ago, I had Thunderbird configured with three profiles,
    and all three could be used within a single startup/instance of
    Thunderbird. That PC is now gone. I have re-configured the three
    profiles on a new PC, but am having trouble making all three
    useable within the same instance of Thunderbird. Can you help?
    Both PCs are/were Windows-7 64 bit.

    Thunderbird only opens on the default if one profile
    or
    if Profile Manager is instructed to ask at startup it will allow you to choose which Profile to open else it opens on the last Profile used..
    So it shows one Profile at a time in one instance of Thunderbird.
    However, one Profile can have many mail accounts.
    eg: I run 4 mail accounts in one Profile.

  • How do I use a frameset to another website within my iweb site?

    I am trying to figure out how to use frameset to view my online booking site within my site that I have created on iWeb. right now I just refer to a link but I would like to be abel to use the frameset to do it. I do have this code but not sure what to do with it.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title>Online Appointment Book</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style type="text/css">
    <!--
    body {
    margin: 0px;
    padding: 0px;
    -->
    </style>
    <frameset rows="90,*" cols="*" border="0">
    <frame src="upperframe.html" name="upperFrame" frameborder="0" scrolling="no">
    <frame src="mainframe.html" name="mainFrame" frameborder="0">
    <noframes>
    <body>
    I would appreciate any advice

    A Frameset is a separate, non-iWeb, webpage with the code you show.
    The upperframe.html and lowerframe.html are urls to whatever page you want to display.
    What you probably want is an <iframe>. You use it to display an external page within an iWeb page.
    The code is :
    <iframe src="http://url.to.file.html" frameborder="0" width="500" height="500" scrolling="no" allowTransparency="true"></iframe>
    You paste the code in the HTML Snippet. You have to change the width and height to reflect your situation.
    Note that an <iframe> is static. It does not change when the page it displays changs in width or height. To scroll set scrolling to yes.
    Sample iWeb page with <iframe> : http://www.wyodor.net/iFrame/

  • Office 2013 - Is there a way to when installing that you can change the default save location without having to configure it within the client?

    So, What I am trying to do is deploy Office 2013 throughout our company, and I do not want the users to save their business or personal files created within Office 2013 on the C: drive or Sky Drive. We have what is called the U: drive and I'd like to know
    if there's a quick registry tweak that I can use to not only change the default location upon setting up a computer, but to deploy through Group Policy? 
    One other question perhaps; Is there a way to change not only the file location to default to only the one place, but also is there a way to also set a specific size limit to folders and prevent certain files from being saved (videos and personal pictures). 
    I have our network pretty tight as to what or who can go where, and what not, I am just really for an answer or some help to the default location...anything you have GREATLY APPRECIATED! 

    You can use the OCT and/or domain Group Policy, to customise the Office experience and settings for your users:
    https://technet.microsoft.com/en-us/library/ee460874.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Can there be a hardware issue on the iPad that causes you to unable to join wifi networks or only if you are within 5 feet of routers?

    I used to be able to connect my iPad to my house wifi network walking all over my house then one day it stopped.  When i tried to connect to my network I would get an message saying "Unable to Join network".  I found that if i was within 5 feet of my router it would connect and work just fine.  At the same time I tried it at multiple other networks that I have before (girlfriends and other friends houses) and could not connect with same issue.  Only place I can connect is my work wifi.
    Can connect to wifi with my iPhone with no issues
    I have reset my network connections
    Reset my house router
    Upgraded to iOS6

    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    Try This - Renew IP Address:
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • How can I render an active link (yrl) within a UIX/XML page

    How can I render an active link (url) within a UIX/XML page.
    How can I get <jbo:ShowValue> to work in UIX/XML, or is there another way?
    Bill G...

    It may seem strange, but the <contents> of <rawText> aren't actually
    raw - it's only the "text" attribute that's raw. (It seems strange because
    it is. Ah well.) This is different from UIX JSP.
    So, try something like the following:
    <bc4j:attrScope name="Notes">
    <contents>
    <rawText text="&lt;a href=&quot;"/>
    <rawText>
    <boundAttribute name="text">
    <bc4j:attrProperty name="value"/>
    </boundAttribute>
    </rawText text="&quot;&gt;"/>
    Some text in the link.
    <rawText text="&lt;/a&gt;"/>
    </contents>
    <bc4j:attrScope>
    Thankfully, this will be much simpler in 9.0.3, when the following
    will work:
    <link text="Whatever you want">
    <boundAttribute name="destination">
    <bc4j:attrValue name="Notes"/>
    </boundAttribute>
    </link>

Maybe you are looking for

  • K8N Neo2 Platinum wont start up

    After installing a new K8N Neo2 it worked perfectly for 1 day, no problems at all. The day after nothing happened. When the psu is turned on it only gives a short flash on the leds, the fans turns for a second and then everything is of. Have tried wi

  • Problem : Application run out of memory while processing image I/O.

    Hi, I have coded an application (utility) for creating scaled (JPEG) images (thumb nails) and writing (saving) them to files. I tried this with both imageio package of jdk1.4 and com.sun.image.codec.jpeg.* classes of earlier version. Application work

  • What are Oracle in built  Packages

    I was talking with a friend today and out of the blue he asked me "Besides select, insert, delete, updates and e.t.c which is common in Oracle PL/SQL, what Oracle in built packages have I used?" I did not have an answer. So what are Oracle in built P

  • Extract images from PDF

    Hi there! I neet to extract some images from PDF files! I've tried using JPedal, but it seems that they don't offer support for the free version any more, so, I couldn't use the free version! Can you tell me other tools that I can use for that scope?

  • IPhone 4 Sync Photos Tab

    When I try to sync photos to my iphone 4 it does not sync all of them. On the Sync Photo Tab it says 2511 photos but when I sync it only uploads 80 photos.