Deletion of Invalid and duplicate roles

Hi,
This is regarding some function modules which are used for deleting invalid roles.These function modules are available only in CUA environment that is in Solution Manager environment only, not in ECC or other systems.Can anybody confiem which one of these function modules would be the best to delete roles of one's choice.The idea is we have identified the invalid and duplicate roles , but we need the function modules only to delete them , ie remove them from user's role profile..
The function modules are: 1) BBPU_WAP_USER_ROLE_REMOVE_LIST
                                       2) BBPU_WAP_USER_ROLE_REMOVE
                                       3) BBPU_WAP_USER_ROLE_CHANGE
Thanks & Regards,
Savitha.

I don't know what you're doing.
Try my working SSCCE example.
Just press the Reset Table button and see what happens.
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.UIManager;
import javax.swing.table.DefaultTableModel;
public class ResetTableTest {
    public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JDialog.EXIT_ON_CLOSE);
            DefaultTableModel model = new DefaultTableModel(new String[][]{{"1", "2"}, {"3", "4"}}, new String[]{"col1", "col2"});
            model.addRow(new String[] {"5", "6"});
            JPanel panel = new JPanel(new BorderLayout());
            final JTable table = new JTable(model);
            panel.add(new JScrollPane(table), BorderLayout.CENTER);
            JButton button = new JButton("Reset Table");
            button.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    table.setModel(new DefaultTableModel(new String[][]{{"1", "2"}, {"3", "4"}}, new String[]{"col1", "col2"}));
            panel.add(button, BorderLayout.SOUTH);
            frame.getContentPane().add(panel);
            frame.pack();
            frame.setVisible(true);
        } catch (Exception e) {e.printStackTrace();}
}

Similar Messages

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • Identifying Duplicate Roles and Traching Composite Role Assigned to the Use

    Dear Friends,
    I am novice to this website even after browsing for past 3 months. This website is so useful and huge with so many forums. I am lost many times where to post this questions. there is not a single SAP Security Forum or Basis/Security related forum. Can anyone direct me to the right forum or if there is no Security Forums, can anyone  direct me how to start new Forum so that all security related discussions and knowledge sharing takes place. I am requesting the Moderators of this website to direct me to the right forums.
    we have around 2000 users in Production. We assign Composite roles and single roles to all users. Sometime we use SECATT or LSMW to update User Master Data to Assign some Roles that are ALREADY assigned to the users. I have 2 questions. If there any way to clean up this mess. I mean Identifying all users who have these Duplicate Roles with Different Validity Dates. I am sure SUIM can not help me as I research a lot on this. I appreciate if anyone can direct me with some solution in this cleanup process. I mean some SQL or SAP Query will help me i guess. Any suggestions are greatly appreciated.
    My Second Question is Tracking Composite Role/User Assignment Changes. We had assigned some Composite roles to the user 3 months ago and deleted last week. when i check SUIM change documents, It does not show Composite Role history. It is Displaying all single roles that are assigned and deleted later. BUT It never showed any information on Composite Role Additions or Deletions in User Change Documents. I hope SUIM is not going to help. I still need to go to many places or write any Good SQL and execute them.
    Is anyone had written this Utility SQL programs for cleanup of roles/users in the SAP. Is there any way to check or debug this issue, going to see any tables that monitor these changes. I appreciate if can one can share this knowledge to resolving this issues.
    any ideas and suggestions are welcome.
    Thanks
    Kumar

    Satish,
    Please post this in the SAP NetWeaver Administrator Forum and close this thread here.
    SAP NetWeaver Administrator
    Regards,
    Ravi

  • How do I retain my apps after I change my apple ID? Right now I'm unable to update any of the apps with the old apple ID. I get an error message about an invalid id or password. If I delete my apps and start over, I may lose the apps that I purchased...

    How do I retain my apps after I change my apple ID? Right now I'm unable to update any of the apps with the old apple ID. I get an error message about an invalid id or Password. If I delete my appos and start over, I may lose the apps that I purchased (like the ones for $5 +....

    Apps are always tied to the ID that was used to purchase them originally. Did you try entering your old password and see if that works?
    If you need to sign out of your old account go to Settings>Store>Tap on your ID and sign out. Sign in with the new one.
    you can also access your ID in the featured tab of the App Store. Swipe to the bottom of the screen and you will find it there as well.

  • I tried to delete all of my duplicate songs in iTunes and it deleted all of my music. Is there a way i get my music back?

    i tried to delete all of my duplicate songs in iTunes and it deleted all of my music. Is there a way i get my music back?

    From the backup you maintain in case something drastic happens to your collection as it surely will when your drive crashes, the computer is stolen, etc.?
    Are the files in the trash?  I don't let iTunes manage my music so when I delete a track I have to hunt down the file, drag it to the trash, and empty the trash in order to get rid of it.  I don't know how iTunes does it for others.

  • I cannot open pdf files in safari.  It tells me first character is invalid.  I have deleted plug-ins and reinstalled program.  HELP

    cannot open PDF files in safari.  It tells me first character is invalid - I have deleted plug-ins and reinstalled the program.

    HI..
    If you are using Adobe Reader ...
    Try uninstalling the current copy of Adobe Reader first.
    Best to use a utility to do this to make sure all the associated files are removed as well >  Download AppCleaner for Mac - Uninstall your apps easily. MacUpdate.com
    Then reinstall >  http://get.adobe.com/reader/
    Quit then relaunch Safari to test.

  • My itunes library has duplicated all of my music and would take me hours to delete one by one. What is a quick easy way to delete over 2,500 duplicates?

    My itunes library has duplicated all of my music and would take me hours to delete one by one. What is a quick easy way to delete over 2,500 duplicates?

    Apple's official advice is here... HT2905: How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group of identical tracks to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin. This can happen, for example, if you start iTunes with a disconnected external drive, then connect it, reimport from your media folder, then restart iTunes.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background. Please take note of the warning to backup your library before deduping, whether you do so by hand or using my script, in case something goes wrong.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • Stopping of assignment of duplicate role in SU01 and same user in PFCG.

    Hello Experts,
    I have a requirement, wherein I have to restrict assignment of duplicate roles in the user master (SU01) also I should not be able to assign same users twice in the user tab in PFCG.
    Please advise...Thanks in advance.
    Best Regds,
    Suyog Chakot...

    Hi Suyog,
    There are two ways to do it:
    1 - PRGN_COMPRESS_TIMES
    2 - SSM_CUST .
    PRGN_COMPRESS_TIMES has its own limitation, it works perfect in Non-CUA landscape while have lot of issues in R/3 CUA landscape.
    SSM_CUST is universal and I guess it can be used in al landscape. CUA as well as NON CUA. Let us know if you need any more information on this.
    Just search with these two key words and I am sure you will get your reply.
    Edited by: sap.sec.akshay on Dec 30, 2009 6:55 PM

  • Unlink and remove role = delete user???

    Hi All,
    We are using Sun IDM 7.1.1.21 and have run into this problem. I believe it's a product bug because it doesn't make any sense. We have users in an AD resource, and they are linked to that resource in IDM using a role. If, for some reason, the user is deleted from AD, and re-setup we have to "re-link" the user because the "accountGUID" attribute has the wrong GUID for the user and IDM doesn't like that. We are doing this using Recon. When recon runs, and catches this user, the situation comes back as "Confirmed", which is fine, we are using a per account workflow to handle the changes. We then compare the GUIDs of the objects in the workflow, if they are different, we would unlink the IDM account and relink it to the new GUID. We are setting the following options on the unlink.
    <set name='options.unlinkTargets'>
    <list>
    <s>AD</s>
    </list>
    </set>
    <set name='options.deleteAccounts'>
    <s>false</s>
    </set>
    and we remove the role, becuase if we do not, nothing happens. When the user object is checked in, it gets deleted from the resource. I'm sure this is happening becuase the accountID DOES exist (when the user is re-setup on the back-end the same DN is given to the user). Obviously this result is undesireable. So now I have 2 questions.
    1. Am I doing this wrong?
    2. Why would IDM delete an account when deleteAccounts and unlinkTargets are explicitly set on the checkin?

    OK. I figured out where the problem was. Renaming the accountGUID without removing the role only caused a "rename account to same name" error. I was not setting the correct options when removing the role. I needed to set:
    <set name='options.noDelete'>
    <s>true</s>
    </set>
    <set name='options.deleteUser'>
    <s>false</s>
    </set>
    This did the trick. The roles were removed and the user unlinked without any harm done to the resource account. I was then able to re-add the roles and relink to the existing resource account without a problem.
    Thanks.

  • Where will be the deleted and Added roles will be tracked

    HI All,
          Need is i must track the Deleted and Added Transactions to the Role and
          Deleted and Added Roles to the Composite Roles.
          In the table AGR_HIER the records are inserting and deleting when we add change the Roles and Composite roles.
          There is no history maintained in that regarding newly inserted items(transaction to the role and Roles to the composite role) and deleted items(transaction to the role and Roles to the composite role).
          Please proved the needful help.
    Thanks,
    Ravi.

    Hi,
    table entries in <b>USR* and UST*</b> tables
    Regards

  • Iphone 3G makes duplicate contact entries after syncing.  I went from about 125 contacts to 1,965.  Some contacts are duplicated 30 times!  I tried deleting the info and resyncing it.  Same problem.  Not using mobile me.  Syncing with google account.

    Duplicate entries after syncing.  My phone went from about 125 contacts to 1,965.  Some contacts are duplicated 30 times!  Tried deleting the contacts and resyncing- same thing.  I don't use Mobile me.  My contacts are synced through my google account.   I tried syncing through outlook and there were 0 contacts on my phone.  Its a 3G so some of the functions like making groups are not available.  Please HELP!!!

    and i guess i should mention i bought it at best buy and they ported my phone #'s from my google phone and when i got home i sync'ed it with itunes and it doubled my contacts.

  • TS3899 When i send an image via gmail on my iphone 5s, the message gets sent, but when received, the image is invalid and the mail message says that it has noncontent. I've tried turning off the phone completely, deleting all mail accounts and then reinst

    But when received, the image is invalid, and the mail states that the message has no content. Help, please!

    Hello Bunk94,
    It sounds like iMessage may be activated with the wrong phone number. Let’s see if we can resolve this. First, go ahead and sign out of iMessage and FaceTime:
    If you can't send or receive messages on your iPhone, iPad, or iPod touch - Apple Support
    http://support.apple.com/en-us/HT204065
    Sign out and back in to iMessage and FaceTime
    Go to Settings > Messages > Send & Receive, tap your Apple ID, then tap Sign Out.
    Go to Settings > FaceTime, tap your Apple ID, then tap Sign Out.
    Afterwards, turn iMessage and FaceTime off and restart your device:
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    http://support.apple.com/en-us/HT201422
    Turn off iMessage and FaceTime and restart
    Go to Settings > Messages and turn off iMessage.
    Go to Settings > FaceTime and turn off FaceTime.
    Restart your device.
    Turn iMessage and FaceTime back on.
    Thanks,
    Matt M.

  • My 4th generation iPod Touch won't let me get on to the App Store. When I log on to iTunes, an alert pops up that says the certificate for the server is invalid, and that it may be a server pretending to be iTunes. What should I do?

    My iPod won't let me on to the App Store, and whenever I go on to ITunes, an alert pops up that the certificate for the server is invalid, and that I may be connecting to a server that is only pretending to be iTunes.apple.com and my personal info may be at risk. I downloaded an emulator yesterday from coolroms.com but deleted the app this afternoon. I cleared my safari search data, my cookies and data, and web inspector, which still didn't work. I then proceeded to reset my iPod and then download the newest version of IOS 6.1.5 but yet still am having problems. Also to the App Store and iTunes, several other apps aren't working. Any help here?

    Also, when I go on to safari, another alert pops up that safari cannot verify the identity of the website, anything that I type in to as common as google.com. It gives me 3 options to either cancel, look at details, and continue. I've looked at the details of the website of Google and it is legitimate the site. Any help?

  • In vpd_admin user I have just tried to delete the policy and it doesnt dele

    In the dtabase in vpd_admin user I have just tried to delete the policy and it doesnt delete.
    Just sits there .
    (This works on the live system, just checked.)
    non working system looks like:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> begin
    dbms_rls.drop_policy( 'CF', 'CF_PARTICIPANT_MENTOR', 'CF_PM_POL' );
    exception
    when others then null;
    2 3 4 5 end;
    6
    begin
    ERROR at line 1:
    ORA-01013: user requested cancel of current operation
    I have looked in the alert_pathway.log , error.log access.log for errors and found no obvious ones.
    Not sure where to look,
    originally posted in APEX as a problem with APEX
    I found this on a 3.2 apex install on a development machine 1 have a number of workspaces.
    in one workspace in which I have been developing 3 applications and in which I have VPD enabled.
    When I click next after choosing table name in create form form table it times out.
    It does not take you to the page where you enter or confirm the page number, page name, etc.
    I have tried another workspace on the same server and it works to fcreate the form.
    On a separate machine/install the same workspace which does not work above to create form form table does work.
    The VPD setup is not identical in this workspace, but very similar.
    I surmise it is an issue with that workspace, possibly but not certainly with the new VPD , the table has these settings in vpd
    GRANT SELECT ON CF.CF_PARTICIPANT_MENTOR to vpd_admin;
    create or replace function cf_admin ( p_schema in varchar2, p_object in varchar2 )
    return varchar2
    as
    l_x number;
    begin
    SELECT count(MENTOR_ID) into l_x FROM CF.CF_MENTORS where MENTOR_ID = nvl(v('APP_USER'),USER) and ROLES = 0;
    if l_x >0 then
    return '';
    end if;
    return 'PARTICIPANT_ID =''CF''';
    end;
    DBMS_RLS.add_policy
    (object_schema => 'CF',
    object_name => 'CF_PARTICIPANT_MENTOR',
    policy_name => 'CF_PM_POL',
    function_schema => 'vpd_admin',
    policy_function => 'cf_admin',
    statement_types => 'INSERT,DELETE,SELECT,UPDATE');
    END;
    I have looked in the alert_pathway.log , error.log access.log for errors and found no obvious ones.
    Form creation works in other workspace, and in the same workspace on another instance.
    Thanks for your guidance
    Frank

    A free account is never charged, if you have any charges in your Bank account without your knowledge from Adobe, I would request you to provide the following details by private message so that I can get it investigated.
    1. Adobe ID
    2. Last four digit of credit card
    3.Credit card name (visa/mastercard/Amex)
    If after investigation we are unable to detect the charges then you need to dispute the amount with Bank as it might can be case of Fraud.
    Regards
    Rajshree

  • I try to open I photo and  I get the message, your iPhoto library is damaged...please restore from backup. But i din't made backup copy. How can i delete previous library and work wrom the new one?

    I try to open I photo and  I get the message, your iPhoto library is damaged...please restore from backup. But i din't made backup copy. How can i delete previous library and work wrom the new one?

    Try this (assuming you're using iPhoto 12): make a temporary, duplicate copy of the library and try the three fixes below in order as needed:
      Fix #1
    delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your Home/Library/Preferences folder. 
    delete iPhoto's cache files that are located in your Home/Library/Caches/com.apple.iPhoto folder.
    reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key.  You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library.
    Select options #1, #2 and #6. 
    Fix #3
    Rebuild the library using iPhoto Library Manager as follows:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

Maybe you are looking for

  • This computer is not authorized to play *name of song*

    Every time i try to play a song i purchased from iTunes a message comes up saying "This computer is not authorized to play *name of song*. Would you like to authorize it?" after i enter my password and click authorize a message comes up saying "machi

  • ADF Navigation List  and View Links . any tutorial for this subject ?

    Hi Its two day that i am looking in oracle web site and tutorials that are provided in oracled ADF books. but i can not figure it out how i can user a Navigation List , view Link to insert record in a child table. so far i just could create a page th

  • Best solution for shared photo album?

    I've haven't dipped much into the Photo ecosystem of iOS (mainly because my original iPad never had a camera, I don't have an iPhone, and on the laptop my workflow doesn't rely on iPhoto).    As such, I'm not sure what the best solutions are for the

  • HT4623 How do I update itunes to 10.7 from 10.63?

    I just bought the iPhone 5. I My power book G4 only updates to iTunes 10.63. Ho do i get iTunes 10.7? Is this a scheme to update my entire system? I just want to sync them asap.

  • Set up ring tones for family won't work

    Anyone have this problem???  I set up different ring tones for my 'family' - I was told I did set it up right, but for some reason it just does the default ring when those people call.  (Default for me in the 'old phone' ring)....  I called Apple and