Sign Up

Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Google
or use


Have an account? Sign In Now

Sign In

Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.

Sign Up Here
Continue with Google
or use

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Sorry, you do not have permission to add post.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Oraask Logo Oraask Logo
Sign InSign Up

Oraask

  • Write
    • Add A New Post
    • Ask A Question

Oraask Navigation

Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
    • Oraask XML Formatter
    • Oraask JSON Formatter
  • Wiki
    • SQL Tutorials
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials

Hassan AbdElrahman

MasterOracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
Ask Hassan AbdElrahman
1k Visits
29 Followers
0 Questions
Home/ Hassan AbdElrahman/Best Answers
  • About
  • Questions
  • Answers
  • Best Answers
  • Posts
  • Polls
  • Asked Questions
  • Comments
  1. Asked: February 20, 2022In: Integrated SOA Gateway

    Error: wsse:InvalidSecurity When Testing CreateEmployee SOAP Web Service in Oracle Applications R 12.2.10 from SOAP UI

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 26, 2022 at 1:05 pm
    This answer was edited.

    This error message due to security token is missing in the SOAP Header section. To solve this issue you have to enter the security token as follows: 1- Open SOAP project 2- put the following security token right after SOAP Header section of the request body <soapenv:Header> <wsse:Security xRead more

    This error message due to security token is missing in the SOAP Header section. To solve this issue you have to enter the security token as follows:

    1- Open SOAP project

    2- put the following security token right after SOAP Header section of the request body

    <soapenv:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" mustUnderstand="1">
    <wsse:UsernameToken>
    <wsse:Username>YourUserName</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">YourPassword</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>

    Note: You have to change both (YourUserName & YourPassword) to the appropriate username and password that is authenticated to call the webservice.

    3- Save the project and call the service again.

    Another easy way to do this is :

    1- Open SOAP Project

    2- Right click on the request body in any black space and choose “Add WSS Username Token“

    3- Choose Password Text from the drop down list of Add WSS Username Token Field, then click OK.

    4- this option will take the username and password automatically from Auth which you set earlier.

    5- Save the project and test the issue again, it should be resolved.

    Note: If you go for the second solution you should enter authentication first. 

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: February 19, 2022In: Oracle E-Business Suite

    Error : the stage registered as the first stage is invalid

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 22, 2022 at 3:43 pm

    You have to make sure of the start stage of the request set. you might not select the starting stage of the request set or the request you selected in the starting stage has a problem check it individually first to make sure it's working fine without any issue.

    You have to make sure of the start stage of the request set. you might not select the starting stage of the request set or the request you selected in the starting stage has a problem check it individually first to make sure it’s working fine without any issue.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: September 9, 2021In: Oracle EBS Queries

    Query to get supplier bank details in Oracle APPS R12

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 20, 2022 at 10:38 pm

    Hi @Marito, Find below the query to get supplier bank details: SELECT ASP.SEGMENT1 VENDOR_NUM ,ASP.VENDOR_NAME ,ASA.VENDOR_SITE_CODE ,HOU.NAME OU_NAME ,IEBA.COUNTRY_CODE ,CBBV.BANK_NAME ,IEBA.BANK_ACCOUNT_NAME_ALT ,CBBV.BANK_NUMBER ,CBBV.BANK_BRANCH_NAME ,CBBV.BRANCH_NUMBER ,CBBV.EFT_SWIFT_CODE ,IEBRead more

    Hi Marito,

    Find below the query to get supplier bank details:

    SELECT ASP.SEGMENT1 VENDOR_NUM
    ,ASP.VENDOR_NAME
    ,ASA.VENDOR_SITE_CODE
    ,HOU.NAME OU_NAME
    ,IEBA.COUNTRY_CODE
    ,CBBV.BANK_NAME
    ,IEBA.BANK_ACCOUNT_NAME_ALT
    ,CBBV.BANK_NUMBER
    ,CBBV.BANK_BRANCH_NAME
    ,CBBV.BRANCH_NUMBER
    ,CBBV.EFT_SWIFT_CODE
    ,IEBA.BANK_ACCOUNT_NUM
    ,IEBA.IBAN
    ,IEBA.CURRENCY_CODE
    FROM AP_SUPPLIERS ASP
    ,AP_SUPPLIER_SITES_ALL ASA
    ,IBY_EXTERNAL_PAYEES_ALL IEPAYEES
    ,IBY_PMT_INSTR_USES_ALL IPIUA
    ,IBY_EXT_BANK_ACCOUNTS IEBA
    ,CE_BANK_BRANCHES_V CBBV
    ,IBY_ACCOUNT_OWNERS IAOWNERS
    ,HR_OPERATING_UNITS HOU
    WHERE IAOWNERS.PRIMARY_FLAG = 'Y'
    AND IAOWNERS.EXT_BANK_ACCOUNT_ID = IEBA.EXT_BANK_ACCOUNT_ID
    AND IAOWNERS.EXT_BANK_ACCOUNT_ID = IPIUA.INSTRUMENT_ID
    AND IEPAYEES.EXT_PAYEE_ID = IPIUA.EXT_PMT_PARTY_ID
    AND IEPAYEES.PAYEE_PARTY_ID = IAOWNERS.ACCOUNT_OWNER_PARTY_ID
    AND IEPAYEES.SUPPLIER_SITE_ID = ASA.VENDOR_SITE_ID
    AND ASA.VENDOR_ID = ASP.VENDOR_ID
    AND IEBA.BRANCH_ID = CBBV.BRANCH_PARTY_ID(+)
    AND HOU.ORGANIZATION_ID = ASA.ORG_ID;

    Above query will list all suppliers bank details:

    Supplier Number, Name, Supplier Site Code, Operating unit that belong to supplier site, Country, Bank name, Bank alternative Name (like Arabic Name of the bank), Bank Number, Branch number and name, the swift code, the account number, IBAN, and currency code.

    And the list is open to add any other column/s you prefer.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: September 18, 2021In: Oracle SQL

    ORA-01427: single-row subquery returns more than one row

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on January 18, 2022 at 8:29 pm

    Hello Garcia, The message of the ORA error is so descriptive it's pointing the query that causing the issue and the issue it self which is nothing but the sub query returned more than one row and this is not correct specially that you are using "=" operator not logical operator like "IN" or "NOT IN"Read more

    Hello Garcia,

    The message of the ORA error is so descriptive it’s pointing the query that causing the issue and the issue it self which is nothing but the sub query returned more than one row and this is not correct specially that you are using “=” operator not logical operator like “IN” or “NOT IN”. It’s up to your requirement.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: September 14, 2021In: Oracle EBS Queries

    Query to Get The Oracle Application URL From Database in Oracle APPS R12

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on November 10, 2021 at 7:04 pm

    To find the application URL from the backend use one of the following queries : SELECT HOME_URL FROM ICX_PARAMETERS; Result http://<host.domain:port>/OA_HTML/AppsLogin OR SELECT FPOV.PROFILE_OPTION_VALUE FROM FND_PROFILE_OPTIONS FPO, FND_PROFILE_OPTION_VALUES FPOV WHERE FPO.PROFILE_OPTION_ID =Read more

    To find the application URL from the backend use one of the following queries :

    SELECT HOME_URL FROM ICX_PARAMETERS;

    Result

    http://<host.domain:port>/OA_HTML/AppsLogin

    OR

    SELECT FPOV.PROFILE_OPTION_VALUE
    FROM FND_PROFILE_OPTIONS FPO, FND_PROFILE_OPTION_VALUES FPOV
    WHERE FPO.PROFILE_OPTION_ID = FPOV.PROFILE_OPTION_ID
    AND PROFILE_OPTION_NAME = 'APPS_FRAMEWORK_AGENT'
    AND LEVEL_VALUE = 0;

    Result

    http://<host.domain:port&gt;

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: October 22, 2021In: General Questions

    OBIEE 12c: External Embedded Content is Not Displayed (This content is blocked.)

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on October 22, 2021 at 3:50 pm
    This answer was edited.

    Hello @Waqas , As explained here that for security reasons, you can no longer embed content from external domains in dashboards. To embed external content in dashboards, you must edit the instanceconfig.xml file. Note: You can accept embedding content from all external domains or from specific domaiRead more

    Hello Waqas , As explained here that for security reasons, you can no longer embed content from external domains in dashboards. To embed external content in dashboards, you must edit the instanceconfig.xml file.

    Note: You can accept embedding content from all external domains or from specific domain. Each has it’s different configuration.

    In case you need to embed an external content from all domains into your dashboard, so the DBA has to make the following changes in the presentation server :

    • Make a backup from file ( <DOMAIN_HOME>/config/fmwconfig/biconfig/OBIPS/instanceconfig.xml ).
    • Edit the original file and add the ContentSecurityPolicy element inside the Security element like below:
    <ServerInstance>
    ...
    <Security>
    ...
    <InIFrameRenderingMode>allow</InIFrameRenderingMode>
    <ContentSecurityPolicy>
    <PolicyDirectives>
    <Directive>
    <Name>child-src</Name>
    <Value>'self' www.zzz.com www.yyy.com</Value>
    </Directive>
    <Directive>
    <Name>img-src</Name>
    <Value>'self' www.zzz.com www.yyy.com</Value>
    </Directive>
    </PolicyDirectives>
    </ContentSecurityPolicy>
    ...
    </Security>
    ...
    </ServerInstance>
    • Save the file and restart the presentation server component (obips1).

     

    Note: If you have notice from the configuration above there is a word (self) between single quote, this one if you didn’t specified, you will accept the external content but you will also preventing you from accessing an internal sources. So to be able to embed both external and internal you have to write this word before the domain. Also another important note that if you type * between <value>*</value> means you can embed both internal and external content inside your dashboard. in this case no need to write the word ‘self’.

     

    Please do this on test environment first to make sure that everything is correct.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: February 19, 2020In: Oracle SQL

    ORA-01017 invalid username password logon denied

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on August 27, 2021 at 10:36 pm

    Please make sure of the credentials, because this error is quite clear enough that either the username or password is incorrect. Note : In Oracle 11g the credentials are CASE sensitive it's a default feature of newly oracle 11g database creation. Now if you want to make sure whether this feature isRead more

    Please make sure of the credentials, because this error is quite clear enough that either the username or password is incorrect.

    Note : In Oracle 11g the credentials are CASE sensitive it’s a default feature of newly oracle 11g database creation.

    Now if you want to make sure whether this feature is enabled or not you can go to sqlplus then execute the following SQL command.

    SHOW PARAMETER SEC_CASE_SENSITIVE_LOGON

    if you get ” TRUE ” value then the the password is case sensitive otherwise it isn’t.

    you can also disable this feature by executing the following SQL command :

    SQL> ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;
    
    System altered.
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: October 3, 2018In: Oracle EBS SCM

    ORA-00976 Error While Approving Internal Requisitions ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on August 27, 2021 at 10:24 pm

    In most cases this error is coming due to the location value is incorrect. for example you have location_id = 100 , location_code = AE while expecting " UNITED ARABEMIRATES " value. follow this step to include the country inside address information of a location : 1- Open location form. from Setup -Read more

    In most cases this error is coming due to the location value is incorrect.

    for example you have location_id = 100 , location_code = AE while expecting ” UNITED ARABEMIRATES ” value.

    follow this step to include the country inside address information of a location :

    1- Open location form. from Setup –> Organization –> Locations

    2- Query about the location above.

    3- Update the address information to include the Country, then save.

    Now try to approve your internal requisition.

    Please test this solution on test environment first. once everything is working fine then move it to appropriate environment.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: August 26, 2021In: Oracle SQL

    ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on August 26, 2021 at 11:32 pm
    This answer was edited.

    ORA-00054 referring to the table you are trying to update it is already locked by another session that made a query for an update on the same table and not committed or rolled back yet. It could be a form or another session. The action you could take to solve the problem is to commit or roll back thRead more

    ORA-00054 referring to the table you are trying to update it is already locked by another session that made a query for an update on the same table and not committed or rolled back yet. It could be a form or another session.

    The action you could take to solve the problem is to commit or roll back the changes from the other session, causing the lock before performing the current action. There is a query also to help you identify which session that causing the lock on your table so that you can kill the session immediately.

    SELECT S.USERNAME
    ,S.SID
    ,S.SERIAL#
    ,T.USED_UBLK
    ,T.USED_UREC
    ,RS.SEGMENT_NAME
    ,R.RSSIZE
    ,R.STATUS
    FROM V$TRANSACTION T
    ,V$SESSION S
    ,V$ROLLSTAT R
    ,DBA_ROLLBACK_SEGS RS
    WHERE S.SADDR = T.SES_ADDR
    AND T.XIDUSN = R.USN
    AND RS.SEGMENT_ID = T.XIDUSN
    ORDER BY T.USED_UBLK DESC;

    Above query has been taken from oracle-base then from the output of above query you can use SID and SERIAL# to kill the session by executing the following statement.

    alter system kill session 'sid,serial#' IMMEDIATE;  
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: August 9, 2016In: Oracle Application Framework - OAF

    oracle.apps.fnd.framework.OAException: Application: ICX, Message Name: Could not find the specified responsibility.

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on June 5, 2021 at 5:06 pm
    This answer was edited.

    Hello Sri Harsha, First thing this happened only when trying to run a custom page from JDeveloper on your local machine. So this will not happen if you register and upload the page to the server. I use APPLICATION DEVELOPER responsibility under the FND application in the development phase, and everyRead more

    Hello Sri Harsha,

    First thing this happened only when trying to run a custom page from JDeveloper on your local machine. So this will not happen if you register and upload the page to the server.

    I use APPLICATION DEVELOPER responsibility under the FND application in the development phase, and everything works fine. Please see the screenshot below:

    Jdeveloper project properties

    Also, don’t forget to enter the user that has application developer responsibility.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
1 2 3 4 … 6

Sidebar

Adv 250x250

Explore

  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
    • Oraask XML Formatter
    • Oraask JSON Formatter
  • Wiki
    • SQL Tutorials
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials

Footer

Oraask

About

Oraask is a website for developers and software engineers who want to learn new skills, share their knowledge, and solve their coding problems. Oraask provides free content on various programming languages and topics, such as Oracle, Python, Java, etc. Oraask also allows users to ask questions and get answers from other members of the community.

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy
  • Terms & Conditions

Follow

Oraask is licensed under CC BY-NC-SA 4.0Oraask CopyrightOraask CopyrightOraask CopyrightOraask Copyright

© 2019 Oraask. All Rights Reserved
With Love by Oraask.