Variable not visible.

Hi All,
I am trying to restrict the Variable 0PSTNG_DATE by the SAP EXIT variable Posting Key Date(0P_KEYD2), the query is of the custome infoset i created, but the variable is not visible??? its visible for the same info object in the business content query(0FIAR_C03_Q0005, Overdue analysis) is there any specific reason that the var is not visible on the query based on infoset???
Thanks.

Hi Shetty,
You can check the enhancement for the 0P_KEYDT or 0P_KEYD2 for the same and copy the same..
Regards
Manga(Assign points if it helps!!)

Similar Messages

  • Variable not visible in query designer

    Hello,
    I have 4 variables created for an InfoObject. But for one of my query written on Infoset, under that InfoObject in query designer it only shows me 2 variables.
    Any ideas what is causing the other 2 variables not to be visible?
    Thanks in advance,
    vamsi.

    which type of variables have you created?
    Regards,
    Chandra.

  • Variable not visible in debug mode

    Hi experts,
    i created a variable using a custom exit.
    i'v added to my query, but when launch debug mode, i can't see it in I_T_VAR_RANGE table;
    but i can see others created previously.
    is that normal? do i have to do something else?
    Thanks.
    Amine

    Hi Phani,
    Thanks for your answer.
    i think that i have an issue in y code, i got the following error:
    The function call of SLS_MISC_GET_LAST_DAY_OF_MONTH failed; a field may have been assigned to the parameter DAY_IN whose"
    here is my code:
    Can you tell me what's wrong please?
    DATA: temp_date like sy-datum.
    WHEN 'ZLASTDAYMONTH'.                
         if i_step = 2.
           LOOP AT I_T_VAR_RANGE INTO FISC_VAR_RANGE
                 WHERE VNAM = 'ZTODAYDATE2'.
             CLEAR L_S_RANGE.
             call function'SLS_MISC_GET_LAST_DAY_OF_MONTH'
           exporting
             day_in = FISC_VAR_RANGE-LOW     "this is the user entry date based on ZTODAYDATE2
             importing
             last_day_of_month = temp_date.
             L_S_RANGE-LOW      = temp_date.
             L_S_RANGE-SIGN        = 'I'.
             L_S_RANGE-OPT         = 'BT'.
             APPEND L_S_RANGE TO E_T_RANGE.
             EXIT.
           ENDLOOP.
         endif.

  • Substitution variable is not visible at Data Prep editor-creating rule file

    Hi,
    We are working on Essbase 9.3.1, Oracle as a database source for loading the data into Essbase.
    We have create a substitution variable at "server level" to use it in rule file as a DSN for data source. But this substitution variable is not visible in the drop down of substitution variable in 'Data prep editor' while creating the rule file.
    We restarted the Essbase server also but still it is not visible in 'data prep editor'.
    Any help will appreciated on this issue.
    Thanks & Regards,
    Mohit Jain

    Cameron-
    1) yes I've tried it on 2 different clients
    2) yes I've tried it on the server
    3) I haven't tried that, but don't normally use MaxL for anything
    4) I took a 'broken' rule, saved it locally, closed and reopened and it still didn't work
    5) I normally do files on the server, but I can't even get to that point because when I get the 'Open Data File' nothing happens, no dialog box pops up, so I don't get the chance to select the location
    6) This is a production server and EAS is running as a service, so I'd have to test this one afterhours.
    Because it happens on 3 separate PC's I'd eliminate bad EAS, since only some rules do it and others don't I'd think it could be corrupt rules, but it'll happen to new rules just as fast, and they still work just fine, so if that's the case I need to figure out what is corrupting them...
    Network issues wouldn't surprise me, I get TCP/IP errors regularly saying I have to increase my net retry count, but I've tweaked with those settings tons... looks like those are really the database server is running out of memory even though I have 4GB physical 16MB Virtual memory (32 bit environment though... I do have the /3GB switch turned on)... I've had to scale my caches way back to allow certain databases to even function.
    Thanks for your help.
    Edited by: Norton5150 on May 28, 2009 2:12 PM

  • List View Report with pipelined function in Mobile application and ORA-01007: variable not in select list

    Hi!
    I have a problem with List View Report in mobile application (theme 50 in apex) after updating to apex 4.2.2. I created Report -> List View. I used select from pipelined function in Region Source. Then when page is running and submited three times (or refreshed three times) I get an error:
    Error during rendering of region "LIST VIEW".
    ORA-01007: variable not in select list
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -1007
    ora_sqlerrm: ORA-01007: variable not in select list
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 21230833903737364557
    component.name: LIST VIEW
    error_backtrace:
         ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613
         ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    I get this error only when I use select from pipelined function in Region Source (for example: "select value1, value2 from table(some_pipelined_function(param1, param2)) ").
    You can check it on http://apex.oracle.com/pls/apex/f?p=50591 (login - demo, password - demo).
    In this application:
    - I created package TAB_TYPES_PKG:
    create or replace PACKAGE TAB_TYPES_PKG IS
    TYPE cur_rest_r IS RECORD (
        STR_NAME          VARCHAR2(128),
        INFO              VARCHAR2(128)
    TYPE cur_rest_t IS TABLE OF cur_rest_r;
    END TAB_TYPES_PKG;
    - I created pipelined function TEST_FUNC:
    create or replace
    FUNCTION TEST_FUNC
    RETURN TAB_TYPES_PKG.cur_rest_t  PIPELINED IS
    r_cur_rest TAB_TYPES_PKG.cur_rest_r;
    BEGIN
    r_cur_rest.STR_NAME := 'ROW 1';
    r_cur_rest.INFO := '10';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 2';
    r_cur_rest.INFO := '20';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 3';
    r_cur_rest.INFO := '30';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 4';
    r_cur_rest.INFO := '40';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 5';
    r_cur_rest.INFO := '50';
    PIPE ROW (r_cur_rest);
    RETURN;
    END TEST_FUNC;
    - I created List View Report on Page 1:
    Region Source:
    SELECT str_name,
           info
    FROM TABLE (TEST_FUNC)
    We can see error ORA-01007 after refresing (or submiting) Page 1 three times or more.
    How to fix it?

    Hi all
    I'm experiencing the same issue.  Predictably on every third refresh I receive:
    Error
    Error during rendering of region "Results".
    ORA-01007: variable not in select list
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -1007
    ora_sqlerrm: ORA-01007: variable not in select list
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 6910805644140264
    component.name: Results
    error_backtrace: ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613 ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    OK
    I am running Application Express 4.2.2.00.11 on GlassFish 4 using Apex Listener 2.0.3.221.10.13.
    Please note: this works perfectly using a classic report in my desktop application; however, no joy on the mobile side with a list view.  I will use a classic report in the interim.
    My region source is as follows:
    SELECT description AS "DESCRIPTION", reference AS "REFERENCE" FROM TABLE(AUTOCOMPLETE_LIST_VIEW_FNC('RESULTS'))
    The procedure:
      FUNCTION AUTOCOMPLETE_LIST_VIEW_FNC(
          p_collection_name IN VARCHAR2)
        RETURN list_row_table_type
      AS
        v_tab list_row_table_type := list_row_table_type();
      BEGIN
        DECLARE
          jsonarray json_list;
          jsonobj json;
          json_clob CLOB;
        BEGIN
          SELECT clob001
          INTO json_clob
          FROM apex_collections
          WHERE collection_name = p_collection_name;
          jsonobj              := json(json_clob);
          jsonarray            := json_ext.get_json_list(jsonobj, 'predictions');
          FOR i IN 1..jsonArray.count
          LOOP
            jsonobj := json(jsonArray.get(i));
            v_tab.extend;
            v_tab(v_tab.LAST) := list_row_type(json_ext.get_string(jsonobj, 'description'), json_ext.get_string(jsonobj, 'reference'));
          END LOOP;
          RETURN(v_tab);
        END;  
      END AUTOCOMPLETE_LIST_VIEW_FNC;
    Thanks!
    Tim

  • Currency Conversion type not visible in the query

    Hi ,
    I created one currency type conversion   Z_INR
    exchange rate type : M
    Exchange rate from infoobject : zexch_rate(key fig)
    source curr from data record
    Fixed target curr : INR
    Variable time reference  : A to Exact Day
    Special info object : Ztr_date (Transaction date)
    it got saved succesfully but wen i try to include  this in the query its not visible there . can anyone let me know why this problem is coming
    help will be appreciated .
    i also included rate and date in the query still not visible

    Hi,
    Create Currency conversion type using Trans: RRC1.
    1.Specify your Exchange rate type.                     
    2.Dynamic Exchange rate type
    3.Source curency from data rec.
    4.Fixed currency say USD.
    5.Select Variable Time reference "Start Month" and Special Info Object - 0calmonth
    Secondly In the key figure field to be converted in the query,   select properties - select the currency conversion key name .
    Thanks,
    Nagesh
    Sony Singapore

  • Entry Variable not available in Free char in Query?

    Hi
    I have to remove one of the entry variable in a query, its costing date and is mandatory variable; but it is not visible in Free characteristic to remove it.
    Its one of the factory reports.
    Any idea how to remove it?
    Thanks in advance
    Ishi

    Hi Anup
    The InfoObject Costing date is used in column in one of the KF. But the variable is not used anywhere.
    I tried to create the same report in Query designer, and noticed that after creating the query, system automatically picks the variable as mandatory entry variable
    Regards
    Priti

  • I am getting complaints from links that Firefox is already running and needs to be closed when it is not visibly running. But, I do find it as a process that IS running. What gives?

    I click on a link in an E-mail. It complains that Firefox is already running and I must close it. Firefox is NOT visibly running. I check via Task Manager to verify. I find Firefox is running as a process. I kill the process and then can proceed. I did use Firefox earlier and closed it.

    Make sure that you do not start Firefox with the -no-remote switch or have set the environment variable MOZ_NO_REMOTE=1 (Control Panel > System > Advanced > Environment variables).
    If you need to have more than one profile open at the same time then start subsequent instances with the -no-remote command line switch.<br />
    You can send links from other programs to a Firefox instance that is started with -no-remote, you need to drag links in a Firefox window in such cases.
    See http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

  • HTML style not visible in Peoplesoft But able to view in Preview RTF templa

    Hi Team,
    Anyone help me urgent. I am not able to view the HTML style in HyperLink in Peoplesoft Online. But i am able to view in Preview tab. I am wondering.
    i.e. My data's are able to view in online but tables that border are not visible. But it works in preview table. Can anyone guide me on this. Please?
    This is the code snippet which i have used in RTF template: (Cross tab report).
    <?for-each-group@column:row;./RANGESIZE?>
    <?RANGESIZE?>
    <?end for-each-group?>
    <?for-each-group:row;./EP_RATING?><?variable@incontext:G1;current-group()?>
    <?EP_RATING?>
    <?for-each-group@cell:/query/row;./RANGESIZE?>
    <?$G1[(./RANGESIZE=current()/RANGESIZE)]/Y_MINIMUM_PCT?>
    <?$G1[(./RANGESIZE=current()/RANGESIZE)]/Y_MAXIMUM_PCT?>
    <?end for-each-group?>
    <?end for-each-group?>
    Edited by: 1006631 on May 21, 2013 1:44 AM

    I would recommend to look very closely and the way the default role is defined in the client 000 Homepage Framework and use this structure and defintions as a guide for implementing your custom role
    In particular the Bank service must be linked to a resource which must point to the required location in the PCD
    Best wishes
    Stuart

  • Object variable or With block variable not set, Outlook 2010.

    I am using Outlook from Office 2010 Professional (32 bit) and have Exchange 2010 from SBS2011 installed on the server.
    Outlook cannot sync with the server over the LAN. This started suddenly about 6 hours ago.
    I can send from outlook and it is delivered. I can receive into outlook. I can also send and receive on the phone using the Exchange server. However, the sent emails are not showing up in the sent folder of Outlook. The phone can see its own sent emails,
    but not those from outlook.
    I haver rebooted the PC and the server with the same result. When I open outlook, is get an error dialogue box with a title, "Contact Sync" and a message, "Error: Object variable or With block variable not set."
    My contacts and calender are visible. Email sent since early this afternoon are not recorded in Outlook.
    Any thoughts?
    Thanks

    Hi,
    Do you mean all emails that are send from phone are not showing up in the sent folder of Outlook? Please check whether these emails are showing in Outlook Online mode or OWA.
    Please make sure all emails send from Outlook can be listed in Sent Items folder correctly. If the problematic emails can be viewed in OWA and Outlook Online mode and the issue only happens to Outlook Cached mode, please manually sync the folder by clicking
    Send/Receive button to have a try. If it doesn’t work, we can create a new Outlook profile to have a check.
    As for the “Contact Sync” error, please try to launch Outlook with safe mode (“Outlook.exe .safe”) to check whether the issue still persists. Some of third-party programs such as QuickBooks Contact Sync or corrupted VBA coding may cause that.  If it
    is, please refer to the following article to check it:
    http://dataservices.intuit.com/support/articles/sln43126
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Variable not set (error 91)/Error during import (error 102)/execut bat file

    We are on BO 11.5.0.0 and using the COM SDK with Visual Basic to run multiple reports (sometimes multiple flavors of the same report) through a bat file.
    If we run the reports single-threaded through the bat file, the reports run fine.  However, if multiple versions of the bat file start at approximately the same time, we get one of two errors:
    91 Object variable or With block variable not set
    102 Error during import document -
    Here's the part of the code with the problem:
    Dim BOapp As busobj.Application
    Dim receiveDoc As busobj.Document
    Set BOapp = New busobj.Application
    BOapp.Interactive = False
    BOapp.Logon strUser, strPass, strFromSystem, "Enterprise", False, False
    BOapp.Visible = False
    Set receiveDoc = BOapp.Documents.OpenFromEnterprise(strFromRep, strFromFolder, boFolder)
    receiveDoc.SaveAs (strDocumentPath & strFromRep & ".REP")
    Values for the following variables are passed in from the bat file:
    strUser
    strPass
    strFromSystem
    strFromRep
    strFromFolder
    strDocumentPath
    If it fails on the OpenFromEnterprise statement, we get the 102 error.
    If it fails on the SaveAs statement, we get the 91 error.
    Running it through debug hasn't helped, since we are running only one report.
    Any thoughts on what could be going wrong?
    Thanks in advance

    I have tried this running the VB code on my desktop (outside of the bat file) and nothing out of the ordinary occurs.  The VB code runs fine with only one occurrence.
    I had seen on other posts "ThisDocument" and didn't know if it would be applicable in this situation.  I also wasn't sure how it should be used based on the rest of my code.  Would "ThisDocument" make a difference?
    Thanks again

  • SP 2010 Publishing - Rollup and Page Images not visible when entering page edit mode

    All:
    Hello, I have an odd issue recently appearing after installation of FEB 2013 CU install. When users select to Edit a Publishing Page the Rollup Image and also Page Image(Article Page Layout) are not visible. Only the "Click here to insert Image from
    SharePoint" link is visible.
    The issue has be confirmed in 5 servers across two farms
    DEV, QA, and PROD on client recently updated
    DEV and PROD in a completely separate client farm
    I have confirmed the issue does not exist in two separate farms running April 2012 CU. In both of those environments the image appears with issue even in Edit page mode.
    In the farms where the issue exists you can click the insert image link and simply hit OK to see the image again. An easy enough work around for tech savvy but my client's content admins are very confused/frustrated by.
    Is this a bug? I have confirmed in two separate farms including brand new web applications using out of the box publishing site templates.

    Hi.
    We have been facing the same issue in a 2013-environment (SP1), but in this case an upgraded 2010 Solution, which still runs in 2010-mode. Because of this, SharePoint still use resource-files in the 14-hive (as we have not performed an upgrade of Master
    Pages etc.) The problem is also reproduced on a clean 2010 Site Collection in the same 2013-environment.
    I have managed to find the cause of the problem (at least in our environment), and that is that as long as the selected picture/image has
    not defined an "AltText"/"Alternate Text" the problem seems to occur.
    In other words, try to define an Alternate Text and click OK in the "Edit Image Properties" Dialog.
    I don't know if this may be the case for everyone else, but give it a try.
    From this, I've further discovered (after hours of js-debugging) that there is a minor change (from 2010 to 2013) in a js-file called "SelectorControls.js" which is responsible for updating the various controls used in Page Layouts etc.
    The problem exist in a method called ASO_UpdateButtonsAndPanels(), which checks whether the Image Control in question has content or not (Url). The local variable "hasContent" is then determined of an if statement, if(this.AssetData.ManageLinkDisplayText)
    which in 2010 (14-hive) seems to be "true" regardless whether the Control is of type Image or Hyperlink. Further the code checks for AssetText (Alternate Text) which on an Image may be left empty.
    In 2013 (15-hive) however, this if statement has been changed to, if(this.SelectorType==ConstLinkSelectorType), which clearly states "Image" or "Link" depending on the type of control.
    I don't know if this is the cause of the problem in 2013, but in 2010 it seems to be exactly that.
    Pending a solution from Microsoft, we have modified SelectorControls.js to overcome this issue until the customer decides to do a Visual Upgrade to 2013.
    This is by all means not a supported nor a a permanent solution to the problem, as future Hotfixes, Service Pack etc. may "reset" our fix.
    Below is a copy of the working solution:
    function ASO_UpdateButtonsAndPanels()
    {ULSuBa:;
    var hasContent=!!this.AssetData.AssetUrl;
    //SharePoint 2010: ManageLinkDisplayText is always "True"
    //var hasContent=!!this.AssetData.AssetUrl;
    //if(this.AssetData.ManageLinkDisplayText)
    //hasContent=hasContent && !!this.AssetData.AssetText;
    //SharePoint 2013
    //var a=!!this.AssetData.AssetUrl;
    //if(this.SelectorType==ConstLinkSelectorType) a = a && !!this.AssetData.AssetText;
    //Fix for preventing existing selected image to disappear when saving page and/or editing a page with existing image.
    if(this.SelectorType!=ConstImageSelectorType)
    if(this.AssetData.ManageLinkDisplayText)
    hasContent=hasContent && !!this.AssetData.AssetText;
    if( hasContent )
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.EnableButton();
    this.GetAssetSelectedPanel().style.display="inline";
    this.GetEmptyPanel().style.display="none";
    else
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.DisableButton();
    this.GetAssetSelectedPanel().style.display="none";
    this.GetEmptyPanel().style.display="inline";
    I hope this helps anyone else struggling with the same problem.
    Thanks!
    Øyvind

  • Key is not visible in SQL 2012 R2 when query is read from SAP BI

    Hi All,
    I have a query in sap bi which has variables where key and text is displayed as per screen shot 1. How ever the same query is triggered from SQL 2012 r2 the key is not visible but text is visible as per screenshot 2  . Could any one suggest how the key will be displayed by there end(SQL).
    Thanks,
    Payani

    I think you're in the wrong space as yor screenshots are not from any Business Objects or SAP BI 4.x products I know.
    What exact product are you using ?
    this space is for SAP Business Objects products family.

  • User and global function not resolved and not visible in expression editor

    Testing ODI 11.1, I'm trying to affect the value of a (project) variable with a project function result within an ODI package.
    My text variable is actually affected but with the litteral name "myfunction('myarg')" instead of its proper result (implemented with Oracle but it doesn't even get so far).
    Best hint I got : when I open an expression editor, my variable is visible but my project function is not (although clearly accessible through the project browser tree ; same behavior at global level )
    Am I missing something obvious ?
    Thanks

    Hi,
    In the following case study, and I quote from it..
    " Note that you should never see the function names in the generated code. If you do, check out the following elements:
    User Function names are case sensitive. Make sure that you are using the appropriate combination of uppercase and lowercase characters
    Make sure that you are using the appropriate number of parameters, and that they have the appropriate type (string, number or date)
    Make sure that there is a definition for the User Function for the technology in which it is running. This last case may be the easiest one to oversee, so try to keep it in mind!
    As long as you see SQL code in place of the User Function name, the substitution happened successfully."
    found ....
    http://blogs.oracle.com/dataintegration/2009/09/odi_user_functions_a_case_stud.html

  • External hard drive not visible in disk utility or finder

    Hi all,
    I have had a good look through previous discussions and I can't seem to find an issue relevant to mine.
    My external hard drive has 2 partitions (1 time machine back up, 1 general hard drive). The issue is that the HD is running when it is plugged in however it is not visible in either disk utility or finder.
    I am running OS X 10.10 (Yosemite) on a 2010 MacBook Pro. I also have parallels desktop running windows 7. When I boot windows and plug in the HD I usually get the option to mount the HD to either OS X or Windows. With this issue the option window appears for a split second (not enough time to select either) and then disappears. It seems that the HD may be ejecting itself as soon as it is registered by the computer. I have tried using a different power cable for the HD and also a different usb cable, this doesn't help.
    The external HD is a Samsung D3 Station, which i have had for 6 months now and never had an issue with.
    Any help is appreciated
    Thanks,
    Bruce

    An update for anyone who can help me:
    I have tried the external hard drive in other computers (mac and windows), each time I get the same problem above.
    I have removed the HD from the enclosure and purchased a docking station for it (3.5" SATA). When I plug it in to the laptop it disconnects itself straight away before it is visible. With the windows computers it installs the drivers and says that the device is ready to use, then disconnects before it shows up.
    As the HD is not visible there is no option to re-format or anything.
    This is very frustrating as I was using the HD with no issues and it randomly disconnected and I have not been able to access since.
    Thanks in advance for any help.
    Bruce

Maybe you are looking for

  • What is new and updated features in SharePoint 2013 ? Looking example in details about all.

    Hi, Any help? Thanks srabon

  • Random crashes w/ iTunes 9.2.1 on iPhone 3GS

    Hi everyone, I keep having the same error message each time I connect my iPhone 3GS to my Macbook Intel Core 2 Duo 1.83GHz on iTunes 9.2.1 I've already uninstalled as per http://support.apple.com/kb/ht1925 twice. Below is the transcript. Process: iTu

  • Error during automatic PR to PO creation

    Hi, We are getting the following error while automatically converting PR to PO thorugh ME59N: "Internal system error during blocking" Message Class - 06  and Message Number - 002. Can anyone suggest that what exactly is this error and how to rectify

  • Dictionary

    Hello All, The Data Dictionary contains information abot the logical structure and physical structure as well. This line is from the Database Concept of Oracle. I want to know what kind of physical information does it contain. Logical information is

  • Try to expand document flow in SD (delivery)

    Hi, how can I expand document flow in delivery? I want to "connect" 2 outbound deliveries with different delivery types (for example: delivery and return delivery). Thanks & regards Michael