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

Gomaa Elmokhtar

Explorer
Ask Gomaa Elmokhtar
111 Visits
0 Followers
0 Questions
Home/ Gomaa Elmokhtar/Followers Answers
  • About
  • Questions
  • Answers
  • Best Answers
  • Posts
  • Polls
  • Asked Questions
  • Followed
  • Favorites
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  1. Asked: June 18, 2022In: Java

    How can I define a global variable in java

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on June 21, 2022 at 12:59 am
    This answer was edited.

    There is no global variable in Java. However, we have a static keyword that we can use to define a global variable by doing something like the below: public class A { public static String var1 = "Oraask"; public static int var2 = 37; } A.var1; A.var2; But be careful because if this class gets unloadRead more

    There is no global variable in Java. However, we have a static keyword that we can use to define a global variable by doing something like the below:

    public class A {
    public static String var1 = "Oraask";
    public static int var2 = 37;
    }
    A.var1;
    
    A.var2;

    But be careful because if this class gets unloaded, you will end up with an undefined null error that is difficult to catch.

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

    ORA-01417: a table may be outer joined to at most one other table

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on June 17, 2022 at 3:20 am

    Before Oracle database release 12c, the error ORA-01417 is raised when you have more than one table on the left-hand side of an outer join. To overcome this limit, we can convert the join to an ANSI syntax, e.g.: SELECT * FROM EMPLOYEES E LEFT JOIN DEPARTMENTS D ON (D.DEPARTMENT_ID = E.DEPARTMENT_IDRead more

    Before Oracle database release 12c, the error ORA-01417 is raised when you have more than one table on the left-hand side of an outer join. To overcome this limit, we can convert the join to an ANSI syntax, e.g.:

    SELECT *
    FROM EMPLOYEES E
    LEFT JOIN DEPARTMENTS D ON (D.DEPARTMENT_ID = E.DEPARTMENT_ID)
    LEFT JOIN LOCATIONS L ON (L.LOCATION_ID = D.LOCATION_ID);

    From the 12c version, Oracle has supported having multiple tables on the left-hand side of the join.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: June 14, 2022In: Oracle Applications DBA

    Tablespace size

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on June 15, 2022 at 1:04 am

    Find below the query to find the free space of a tablespace: SELECT DFQ.TABLESPACE_NAME "Tablespace Name" ,DFQ.TOTALSPACE "Total Size MB" , (DFQ.TOTALSPACE - DSQ.TOTALUSEDSPACE) "Free Space MB" ,ROUND (100 * ( (DFQ.TOTALSPACE - DSQ.TOTALUSEDSPACE) / DFQ.TOTALSPACE)) || '%' "Free Space %" FROM (SELECRead more

    Find below the query to find the free space of a tablespace:

    SELECT DFQ.TABLESPACE_NAME "Tablespace Name"
    ,DFQ.TOTALSPACE "Total Size MB"
    , (DFQ.TOTALSPACE - DSQ.TOTALUSEDSPACE) "Free Space MB"
    ,ROUND (100 * ( (DFQ.TOTALSPACE - DSQ.TOTALUSEDSPACE) / DFQ.TOTALSPACE)) || '%' "Free Space %"
    FROM (SELECT TABLESPACE_NAME, ROUND (SUM (BYTES) / 1048576) TOTALSPACE
    FROM DBA_DATA_FILES
    GROUP BY TABLESPACE_NAME) DFQ
    ,(SELECT TABLESPACE_NAME, ROUND (SUM (BYTES) / (1024 * 1024)) TOTALUSEDSPACE
    FROM DBA_SEGMENTS
    GROUP BY TABLESPACE_NAME) DSQ
    WHERE DFQ.TABLESPACE_NAME = DSQ.TABLESPACE_NAME(+);

    Also, you can refer to this article to find a handful of detail about the tablespace:

    Check Tablespace Usage in Oracle

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: June 2, 2022In: Oracle Application Framework - OAF

    Create Item not showing up in Personalize Table

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Replied to answer on June 13, 2022 at 6:38 pm

    You went in-depth, and to reach this point, I believe it's better to log SR with Oracle to ask them if they have something else (I doubt) or to get a confirmation that these attributes are used as DFF attributes. They are updatable through the backend without any other impact. If they verified to upRead more

    You went in-depth, and to reach this point, I believe it’s better to log SR with Oracle to ask them if they have something else (I doubt) or to get a confirmation that these attributes are used as DFF attributes. They are updatable through the backend without any other impact.

    If they verified to update these columns, you could do that by extending the controller to do the job on your own.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: June 2, 2022In: Oracle Application Framework - OAF

    Create Item not showing up in Personalize Table

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Replied to answer on June 11, 2022 at 5:53 am

    Firstly, It's ok to use dates in varchar attributes; that's why Oracle makes it varchar to accept multiple data types in the form of character, and later on, we can deal with it by converting that to date or number. The second point is the VO; try to look into this VO instead of the ones you were loRead more

    Firstly, It’s ok to use dates in varchar attributes; that’s why Oracle makes it varchar to accept multiple data types in the form of character, and later on, we can deal with it by converting that to date or number.

    The second point is the VO; try to look into this VO instead of the ones you were looking at

    oracle.apps.pos.supplier.server.BCAttrVO oracle.apps.pos.supplier.server.BCAttrEO

    This one is updateable VO.

    Finally, you can add one of the general attributes that exist on the POS_BUS_CLASS_ATTR table
    by extending above VO and making this field updatable.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: June 2, 2022In: Oracle Application Framework - OAF

    Create Item not showing up in Personalize Table

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on June 8, 2022 at 10:03 pm

    There are two columns already that may fits your need. START_DATE_ACTIVE Date when the classification becomes active for the supplier END_DATE_ACTIVE Date when the classification becomes inactive for the supplier However, if you need to capture more additional informations in any standard tables, OrRead more

    There are two columns already that may fits your need.

    START_DATE_ACTIVE

    Date when the classification becomes active for the supplier

    END_DATE_ACTIVE

    Date when the classification becomes inactive for the supplier

    However, if you need to capture more additional informations in any standard tables, Oracle recommended to capture those additional information through out a DFF attributes. In this table you have 5 addition attributes to use them. Therefore, Oracle not recommended to add any additional physical columns on any standard table.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: April 29, 2022In: Oracle Ebs Api’s

    Payables Import Invoices

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 29, 2022 at 10:45 pm
    This answer was edited.

    Unfortunately, you can't achieve this kind of requirement without create a distribution set as per Oracle note Doc ID 1954890.1 Also currently there is no an API or interface table available to create a new distribution set from the backend. The only way is to create a temporary distribution set andRead more

    Unfortunately, you can’t achieve this kind of requirement without create a distribution set as per Oracle note Doc ID 1954890.1

    Also currently there is no an API or interface table available to create a new distribution set from the backend. The only way is to create a temporary distribution set and delete it’s account distributions once you have done from your task.

    If you go with creating distribution set you have to pass either distribution_set_id or distribution_set_name while populating “ap_invoice_lines_interface” interface table.

    check: Create AP Invoice using AP open interface in oracle apps R12 for your reference.

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

    What is fndload command for responsibility in oracle apps R12?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 9, 2022 at 10:41 pm
    This answer was edited.

    FNDLOAD to download responsibility from the source instance: FNDLOAD apps/<PWD> 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct <LDT_FILE_NAME>.ldt FND_RESPONSIBILITY RESP_KEY=”<RESPONSIBILITY_KEY>” FNDLOAD to upload responsibility to destination instance: FNDLOAD apps/<PWDRead more

    FNDLOAD to download responsibility from the source instance:

    FNDLOAD apps/<PWD> 0 Y DOWNLOAD $FND_TOP/patch/115/import/afscursp.lct <LDT_FILE_NAME>.ldt FND_RESPONSIBILITY RESP_KEY=”<RESPONSIBILITY_KEY>”

    FNDLOAD to upload responsibility to destination instance:

    FNDLOAD apps/<PWD> 0 Y UPLOAD $FND_TOP/patch/115/import/afscursp.lct <LDT_FILE_NAME>.ldt

    Notes:

    • <LDT_FILE_NAME>.ldt : LDT file generated from FNDLOAD command
    • <RESPONSIBILITY_KEY>: Responsibility Key name

    Note: Don’t forget to move the LDT file after downloaded it from source instance to destination instance.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: April 8, 2022In: General Questions

    FailedAuthentication Fault Reason : FailedAuthentication : The security token cannot be authenticated

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 9, 2022 at 10:28 pm

    Clarification: This message refer to failed authentication that's because of the credentials for one or more connections being used by your integration. Resolution: get the list of connections being used by your integration then go to them and make sure of the username and password that they are corRead more

    Clarification: This message refer to failed authentication that’s because of the credentials for one or more connections being used by your integration.

    Resolution: get the list of connections being used by your integration then go to them and make sure of the username and password that they are correct by doing validate and test.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: March 23, 2022In: Oracle EBS Queries

    SQL query to find all customised dff in oracle 12g

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on March 23, 2022 at 11:08 pm

    What do you mean by Customized DFF? If you want to list all custom context that is created on a specific DFF you can run this query to get the result: SELECT FAPT.APPLICATION_NAME, FDFC.DESCRIPTIVE_FLEXFIELD_NAME, FDFC.DESCRIPTIVE_FLEX_CONTEXT_CODE, FDFC.ENABLED_FLAG, FDFC.GLOBAL_FLAG, FDFC.DESCRIPTRead more

    What do you mean by Customized DFF?

    If you want to list all custom context that is created on a specific DFF you can run this query to get the result:

    SELECT FAPT.APPLICATION_NAME,
    FDFC.DESCRIPTIVE_FLEXFIELD_NAME,
    FDFC.DESCRIPTIVE_FLEX_CONTEXT_CODE,
    FDFC.ENABLED_FLAG,
    FDFC.GLOBAL_FLAG,
    FDFC.DESCRIPTION,
    FDFC.DESCRIPTIVE_FLEX_CONTEXT_NAME
    FROM FND_DESCR_FLEX_CONTEXTS_VL FDFC, FND_USER FU, FND_APPLICATION_TL FAPT
    WHERE FAPT.APPLICATION_NAME = :P_APPLICATION_NAME
    AND FDFC.DESCRIPTIVE_FLEXFIELD_NAME LIKE :P_DFF_NAME
    AND FDFC.CREATED_BY = FU.USER_ID
    AND FDFC.APPLICATION_ID = FAPT.APPLICATION_ID
    AND FAPT.LANGUAGE = 'US'
    AND ( FU.USER_NAME NOT LIKE '%ORACLE%'
    AND FU.USER_NAME NOT LIKE '%AUTOINSTALL%'
    AND FU.USER_NAME NOT LIKE '%INITIAL SETUP%');

    P_APPLICATION_NAME : Is your application name

    P_DFF_NAME : Is your Descriptive flexfield name. It’s not the title which is available on DFF screen, but you can find the column name “DESCRIPTIVE_FLEXFIELD_NAME” from help -> diagnostic -> examine.

    Note: We have excluded three users because Oracle seeded DFF contexts are created by these users above, thus, we can get only the custom ones.

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

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.