Asset Issue  - When execute AR01, system throw a error msg .AB064

Hi   Gurus,
need guidance to solve the issue.
When my user run a t-code AR01,   System throw a error "No data was selected - Message no. AB064".
Then checked through SU53.  It shows that Authorization was successfully given.  Checked with my Basis Consultant also.  He confirmed that the required authorization was given to user.  I  don't know  what the system reacts like this..
Pl guide me to solve  the issue....
(  As a consultant, i have all rights / authorization. When i executed AR01, it works perfectly ) .
tks / Devi Aparna...

The below are the (xxxx) madatory things before you go and execute the report.
Company code                      xxxx
Asset number
Subnumber
  Asset class
  Business area
  Cost center
  Plant
  Location
  Asset super number
  Worklist
  Report date                     xxxxx
  Depreciation area               xx (Dep area 01, 15, 30, 60, 65)
  Sort Variant                     xxxx
  Translation method
Try this
Thanks

Similar Messages

  • Firefox crashes and when attempting to launch after the crash it won't and throw and error msg that js.3250 can't be found- but same file is in Mozilla directory. I must then download new 3.6.8 and lose all tabs.

    # Question
    Firefox crashes and when attempting to launch after the crash it won't launch; throwing an error msg that " js.3250 can't be found" - but same file is in Mozilla directory.
    I must then download new 3.6.8 and lose all tabs and history.

    I have a similar problem. Recently my FF8 has been crashing a lot. It regularly locks up an entire core of my PC and often just shuts down. It has just done it a moment ago and when it started back up it did the whole "this is embarrassing" thing and asked me if I wanted to reload my tabs. I deselected the one that I was trying to view as I suspected that it may have been the cause (unlikely; it was node4.co.uk) but anyway, let's skip it just in case. Click on the button to restore and up pops my homepage only. So all of my other tabs, which I was using for work incidentally, are gone.
    This is not the first time this has happened on FF8. It happened a lot recently on FF6 I think it was (so hard to keep track now, Mozilla) and I switched to Chrome as a result, but it turns out that it crashes even more than FF6 did. FF7 was a vast improvement but FF8 is so unstable/unpredictable for me at the moment that I think I'd rather use IE9 than this. It's driving me mental, clearly! I wish I could kill the process manually and have it retry restoring tabs. Hey, there's an idea Mozilla; give us a menu item that allows us to restore the session to how it started to try again or at the very least get a list of the pages we were looking at. They don't show up in Recently Closed Windows and the Restore Previous Session is greyed out too. Gah! Help!

  • ITunes no longer works on my Windows VISTA system.  Get error msg saying C runtime library incorrectly... Error 7, Windows error 1114..

    iTunes no longer works on my Windows VISTA system.  Get error msg saying an application is attempting to access C runtime library incorrectly... Error 7, Windows error 1114.  Same msg, or one that says unable to install, when trying to update or reinstall iTunes.  iTunes worked well up until about a month ago when this error msg starting appearing.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Security context issue when executing a SQL command in SQLCMD

    Simplified core issue below:
    I have myscript.sql that has:
    SELECT name FROM Sys.Databases
    GO
    USE mydatabase
    GO
    EXEC mystoredprocedure 'myparameter'
    GO
    When I open cmd.exe and use:
    SQLCMD -S localhost\myinstance -i script.sql
    It executes fine.
    When I open cmd.exe in C# using the Process class and execute the same command I get the following error:
    name
    master
    tempdb
    model
    msdb
    mydatabase
    (5 rows affected)
    Msg 916, Level 14, State 1, Server localhost\myinstance, Line 1
    The server principal "NT AUTHORITY\SYSTEM" is not able to access the database "mydatabase" under the current security context.
    Msg 2812, Level 16, State 62, Server localhost\myinstance, Line 1
    Could not find stored procedure 'mystoredprocedure'.
    And now the detailed explaination:
    I created an MSI which installs my custom application.
    During the bootstrap process, SQL Server 2012 Express is installed using the following parameters:
    /INSTANCEID="SQLEXPRESS"
    /ACTION="Install"
    /FEATURES=SQLEngine,Replication
    /HELP="False"
    /INDICATEPROGRESS="False"
    /Q="True"
    /QS="False"
    /ROLE="AllFeatures_WithDefaults"
    /ENU="True"
    /ERRORREPORTING="False"
    /SQMREPORTING=0
    /INSTANCENAME="SQLEXPRESS"
    /AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /AGTSVCSTARTUPTYPE="Disabled"
    /ISSVCSTARTUPTYPE="Automatic"
    /ISSVCACCOUNT="NT AUTHORITY\NetworkService"
    /ASSVCSTARTUPTYPE="Automatic"
    /ASCOLLATION="Latin1_General_CI_AS"
    /ASDATADIR="Data"
    /ASBACKUPDIR="Backup"
    /ASTEMPDIR="Temp"
    /ASCONFIGDIR="Config"
    /ASPROVIDERMSOLAP="1"
    /SQLSVCSTARTUPTYPE="Automatic"
    /FILESTREAMLEVEL="0"
    /ENABLERANU="True"
    /SQLCOLLATION="SQL_Latin1_General_CP1_CI_AS"
    /SQLSVCACCOUNT="NT Authority\Network Service"
    /SECURITYMODE="SQL"
    /ADDCURRENTUSERASSQLADMIN="True"
    /RSSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /RSSVCSTARTUPTYPE="Automatic"
    /RSINSTALLMODE="FilesOnlyMode"
    /HIDECONSOLE
    /IACCEPTSQLSERVERLICENSETERMS
    /SAPWD="***************"
    The MSI then executes an Installer class DLL written in C# which restores a database to the SqlExpress instance.
    When the restore is completed, the Installer class then uses the Process class to launch CMD.exe and execute the SQL script using SQLCMD.
    Process vProcess = new Process();
    ProcessStartInfo vStartInfo = new ProcessStartInfo("cmd.exe");
    vStartInfo.Arguments = "/c set path=%path%;" + Context.Parameters["TargetDir"] + "\\; && sqlcmd -S LocalHost\\myinstance -i myscript.sql";
    vProcess.StartInfo = vStartInfo;
    vProcess.Start();
    vProcess.WaitForExit(30000);
    This is where I get the error mentioned above.
    However if I execute the same command manually by opening CMD.exe from the RUN command, it executes perfectly.
    I can not use -U or -P to supply a user / password, I MUST use integrated security.
    Additional info:
    Previously SQL Server 2008 Express has been in use for the bootstrapper, and this issue did not occur.
    The database the MSI restores is also built from SQL Server 2008. (Will be built from 2012 in the future.)
    Installation is performed on an account with administrative rights.
    Running the installer AS Administrator does not fix the issue.
    Any help would be greatly appreciated, as well please let me know if additional info is required.
    Thank you

    I'm having a similar issue where I'm using a batch file to execute commands to a group of servers. I can use the batch commands when updating MyDatabase but get the security context error when I try to update MyDatabase with a join to TheirDatabase except
    on servers where I am sysadmin.   Like I said, I can update MyDatabase as long as I don't join to TheirDatabase.
    Update A
    Set A.CCMCoderStaffSID = IsNull(B.StaffSID, -1)
    From MyDatabase.[R_Encounter].[VejdPfcsLinkageDataF19610x5] A
    Left Join ThierDatabase.Staff.Staff B on
    A.Sta3n = B.Sta3n and A.[CCMCoderF200IEN]= B.StaffIEN
    Error:
    Msg 916, Level 14, State 1, Server R04PHIDWH58, Line 1
    The server principal "MyDomain\ME" is not able to access the database "TheirDatabase" under the current security context.
    Line from batch:
    sqlcmd -S Server54 -d MyDatabase -i D:\ETLDevelopment\R04\Me\querytools\%RAWTablesScript%  -o D:\ETLDevelopment\R04\Me\UpdateSIDV1.txt

  • Posting Debit Memo (SO) through IDOC throwing V1213 error msg.

    HI Guys,
                 Debit Memo has been created using the idoc.
    Getting the error status in IDOC - 51 - Message V1213 - Condition ZR00 is not allowed as header condition
    I am using custom BAPI using SD_SALESDOCUMENT_CREATE FM inside it.
    The error is thorwn by PRICING_CHECK FM.
    Ironically the idoc is posting successfully when there is only one item, if its more than one.. throwing error V1213.
    When I debug it, PRICING_CHECK FM is the culprit.
    PRICING_CHECK FM  is called 2 times, one per item. During first call the item No. komp-kposn = 0010,
    in 2nd call  komp-kposn = 0000. thats why its throwing this error in the first place.
    But why the item value is 0, during 2nd call.. no idea.. !
    Interestingly VBKD table stores the item 0010 and 0000 in its entries.. when I force it to posting successfully in debug mode.
    Entries in VBAP are normal.
    But when I create the debit memo manually with 2 items, its posting without an error. its accepting condition type ZR00.
    Now I turn on the header condition in V/06 for testing purpose only. Now its posting for more than one item..
    But I can't turn it on permanantly, as its not recommended by business.
    but its posting coreectly in other system where header condition is turned off. !!
    Thanx for Ur time..
    Cheers

    In SD/LE tables, posnr (item) no. 0 refers to the header.  So, in VBKD, if you have 0000 and 0010, the SO has one and only one item.  In your case, obviously, ZR00 is not intended to be a header condition and can only be applied at the item level... and the only item to which the condition can be applied is 0010.

  • I put incorrect passcode to unlock my iphone and it disabled my phone, instructions say to restore but when I try to i get error msg saying to turn off the find my iphone app in order to restore, how can i do that w/o being able to get into my phone ???

    after trying to remember my new pass code and failing, my iphone disabled and is now telling me to connect to itunes, ive done that and tried instruction to restore from back up however when i do that i get an error msg saying that i need to turn off the app find my iphone to b able to restore, i cant do that tho because i cant use my phone and i dont see app on my computer on itunes either???what do i do >??

    This the Activation Lock. Read here: http://support.apple.com/kb/HT5818
    The only way is to login to iCloud with your computer browser and wipe the iPhone.
    If you can't then you have a brick, Apple won't help and AL cannot be bypass.
    https://www.icloud.com

  • Solution Manager ChaRM Issues when Upgrading Satellite System

    When upgrading a satellite system that is connected to Solution Manager's Change Request Management, is there anything that we need to be aware of?
    Will Change Documents still be able to go to completion (Production status) if we modify the landscape from the time the Change Document is In Development to the time it is moved to Production?
    1. Normal Correction (In Development)     Development (ECC 5.0) -> Quality (ECC 5.0) -> Production (ECC 5.0)
    2. Landscape is changed to                    Development (ECC 6.0) -> Quality (ECC 6.0) -> Production (ECC 5.0)
    3. Normal Correction moved to To Be Tested -> Consolidated -> Production
    Will the Normal Correction be in error because the landscape changed for the iBASE?
    Are there any other lessons learned that anyone has experienced with Change Request Management or Implementation during and after an upgrade?
    Thank You,
    Carlen
    Edited by: Carlen Yuen on Jan 13, 2009 1:50 AM
    Edited by: Carlen Yuen on Jan 13, 2009 1:51 AM

    Thanks Subhashini!
    We had issues updating the Task List in the past. After we update the landscape and refresh the project and update the Task List, do you foresee any other problems?
    Are there any additional items we should look out for? For example, we understand it is a requirement to release all transports prior to beginning the upgrade. However, since the release of the transport locks the change into the cycle for the next production move, this will present a problem if the change is not yet ready to be moved into Production. Do you have any further insight to any additional issues such as this?
    Thanks again!
    Carlen

  • Out of memory issue when executing wlappc ant task

    I am using weblogic 8.1 sp1 and doing a compilation for a little bit large EAR file using ant task. But it always throws out of memory error when the wlappc invoked the compiler to compile the jsp files.
    According to BEA's documentation<CR104610>, I put the runtimeflags with "-J-ms256m -J-mx512m" option into the wlappc tag and Ant seems recognizing this option but it didn't work. I tried every possible memory size to get rid of this problem, but the process still failed with the error message:
    The system is out of resources.
    Consult the following stack trace for details.
    java.lang.OutOfMemoryError
    - with nested exception:
    [Compilation errors : ]
    My computer has 1G memory, so it shouldn't be the hardware problem.
    Does anyone have an idea on this?
    Thanks in advance,
    Jacky

    Hi,
    Ant seems to use its own JVM and thus in the javac options during runtime,try specifying ANT java options for setting the memory parameters.
    ANT options would be memoryInitialSize and memoryMaximumSize.
    http://ant.apache.org/manual/index.html
    Hope this helps.

  • Issue when executing ora_br_copy.bat

    Hi All,
    When i tried to execute ora_br_copy.bat u2013generateFiles u2013forceLogSwitches u2014targetSid SID u2014password pwd -listenerPort 1527
    we are getting a error saying that
    D:\Export for SID\orabrcopy>"C:\j2sdk1.4.2_12\bin\java.exe" -showversion -cp ".\
    .;.\orabrcopy.jar;D:\ORACLE\Sourcesid\102\jdbc\lib\classes12.jar" com.sap.inst.lib.app
    .SecureStartup "" com.sap.inst.orabrcopy.OraBRCopy -oracleHome "D:\ORACLE\sourcesid\10
    2" -sourceSid "sourcesid" -generateFiles -forceLogSwitches -targetSid <targetsid> -password pwd -listenerPort 1527
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    Incorrect application options:
    At least one from 'generateFiles' or 'forceLogSwitches' options is required.
    Have already referred the thread but still its not working .
    System Copy-Erorr in Generating CONTROL.SQL file

    Hi Sunil,
    Pasted below the log.
    os.name = Windows 2003
    os.arch = x86
    os.version = 5.2
    cpu.count = 2
    sun.cpu.endian = little
    sun.arch.data.model = 32
    sun.cpu.isalist = pentium i486 i386
    file.encoding = Cp1252
    file.separator = \
    path.separator = ;
    line.separator = CR/LF
    user.name = ql2adm
    user.home = C:\Documents and Settings\ql2adm
    user.dir = D:\Export for DL0\orabrcopy
    user.language = en
    user.country = AU
    java.version = 1.4.2_12
    java.vendor = Sun Microsystems Inc.
    java.vendor.url = http://java.sun.com/
    java.vm.version = 1.4.2_12-b03
    java.vm.vendor = Sun Microsystems Inc.
    java.vm.name = Java HotSpot(TM) Client VM
    java.vm.info = mixed mode
    java.compiler =
    java.class.version = 48.0
    java.home = C:\j2sdk1.4.2_12\jre
    java.ext.dirs = C:\j2sdk1.4.2_12\jre\lib\ext
    java.class.path = .\.;.\orabrcopy.jar;D:\ORACLE\QL2\102\jdbc\lib\classes12.jar
    java.library.path = C:\j2sdk1.4.2_12\bin;.;C:\WINDOWS\system32;C:\WINDOWS;D:\ORACLE\QL2\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\PROGRA1\BMCSOF1\common\globalc\bin\Windows-x86;C:\PROGRA1\BMCSOF1\Patrol3\bin;C:\Program Files\BMC Software\Patrol3\BEST1\7.3.00\bgs\bin;D:\ORACLE\QL2\102\OPatch;D:\usr\sap\QL2\SYS\exe\uc\NTI386
    java.io.tmpdir = C:\WINDOWS\TEMP\1\
    Incorrect application options:
    At least one from 'generateFiles' or 'forceLogSwitches' options is required.

  • Profit Center issue when executing GR55

    Hi Experts,
       I was reported by the business users that they see transactions with the Dummy Profit Centers when they run report for Balance Sheet and P&L Statements. They dont want to see any Dummy Profit Center Report Transactions in their financial statementsin both BSand P&LStatements. 
    For example a number of Documents posted against same G/L account and few of them have dummy profit centers, users doesn't want to see them.
    I already checked in tables BSAD,BSID, BSIS,BSAD, BKPF,BSEG
    TCodes: FAGL3KEH (No default profit centers allocated to anyone of the company codes), FBL3N, FBL5N, VF03
    So we know that there is issue but I need to know the process to find it.
    Can anyone help me out the procedure to find out the issue. This is very high priority issue.
    Thanks,
    Andy Roger

    Refer to the IMG Activity Documentation for the following IMG Node.
    Financial Accounting (New) -> General Ledger Accounting (New) -> Master Data -> Profit Center -> Create Dummy Profit Center
    Here is the documentation:
    Create Dummy Profit Center
    This function lets you create the dummy profit center for the current controlling area.
    The dummy profit center is updated in data transfers whenever the object to which the data was originally posted (cost center, order, and so on) is not assigned to a profit center. This ensures that the data in Profit Center Accounting is complete. You can later send the data on the dummy profit center to the other profit centers using assessment or distribution.
    You create the master record for the dummy profit center using this special transaction. To change or display it, use the normal profit center maintenance functions.
    The name of the dummy profit center is displayed in the controlling area settings for Profit Center Accounting.
    Prerequisites
    The standard hierarchy must exist for the current controlling area.
    Actions
    Enter the name of the dummy profit center. The rest of the steps are the same as when you create a normal profit center.
    Choose the function Extras -> Set controlling area first to make sure that the correct controlling area is set.
    I am guessing this is where your dummy profit center postings are coming from (a cost center / order or some other account assignment object that is not assigned to a profit center).  It should be mandatory (in your month-end close) to run reports on dummy profit center(s) and move balances, if any, to the real profit center, before you pull financial statements.

  • Classpath issues when executing from a jar

    I have a jar that I built for an RMI server that has a need to access another jar. (log4j). I run the jar from the command line using:
    java -jar -Djava.rmi.server.codebase=my.jar my.jar
    and the code runs fine but when I try to add in the log4j.jar I can't find it. I have placed it in my.jar in a lib directory within my.jar, I have placed it in the current directory, I have placed it in other directories I know are on the classpath, I have done all kinds of variations with the -classpath switch on the command line and nothing works.
    How do I package, configure and/or call such that the Logger class in log4j.jar can be found by my RMI server when I execute my.jar?
    Thanks

    Running from the jar-file ignores the CLASSPATH. See Bug #4459663
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4459663
    You have a few options:
    First, you can unjar all of the jars you depend on and rejar 'em up with your jar. This is the simplest solution.
    Second, you can skip running "from the jar" and just put that jar in your CLASSPATH.
    Third, you can put jars you depend on in the $JAVA_HOME/jre/lib/ext directory.
    Fourth, you can modify the manifest to specify a classpath, and then put the libraries you depend on at the places specified.
    And, if you think There Ought To Be A Better Way, vote for the RFE!

  • Issue when execute query in JAVA portal

    Hi all,
    I aways used the Query Designer 3.x and now im using the Query Design and i know that run with JAVA portal. So I have new issues and it not expected.
    When I run RSRT and select a query I have no problems running by ABAP but when I select JAVA Web i had issue.
    I know that JAVA give the addres:
    http://MACHINE:PORT/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.....
    but in my case only give me:
    /irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.....
    Anyone have some idea?
    Thanks in advice
    Ralph

    Hello,
    Let me understand the issue.
    When you click on Java Web (RSRT), the browser opens the following URL "/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom....." ?
    Download the note 937697 and follow the instructions. Maybe the BI Master data is not configured on your portal.
    This note will detects the inconsiste and suggest a solution.
    Also, there is a table which you have to maintain the Portal server name.
    TABLE: RSPOR_T_PORTAL
    Check if exist a default portal on this table.
    Thanks...
    Edward John

  • Issue when executing co11n

    Hi I had put back flashing on raw material 1 and 2 which were component as finish goods A,then I create production order via md04 to convert plan order to production order,then I released it,so I went to transaction co11n to confirm operation 0010 and 0020, then component raw material 1 and 2 popped up with movement type 561 which is goods issue,then I saved,if it works,inventory of raw material 1 and 2 should decrease,but I went to transaction mmbe and mb51 and found inventory of raw material 1 and 2 does not decrease,what happened?what's wrong.

    Dear,
    561 movment is for the Goods Receipt (Receipt of the material at intitial stage)then how can your stock will be reduced, you have to reduced your stock against the 261 movement.
    Thanks,
    Hrishi

  • Xsl:message issue in xsl transformation while throwing an error.

    Hi,
    Below is error handling logic which im using to handle the DVM value not found error if the user input value is not found in dvm. This termiates the xslt processing and throws subLanguageExecutionFault. The issue is im unable to get the customized message which i have coded in <xsl:message> GGGGGGGG.dvm no value found!!! </xsl:message>.
    The audit trail shows XML-22060: (Fatal Error) TERMINATE PROCESSING. with no other customized message given in the xsl:message tag.
    <xsl:when test='dvm:lookupValue("oramds:/apps/AIAMetaData/dvm/GGGGGG.dvm",$DVMSourceCol,/seblabo:SiebelMessage/seblabo:XXXXtoYYYY/seblabo:YYYYY/seblabo:TypeCalc,$DVMTargetCol,"DVMValueNotFound") = "DVMValueNotFound" ' >
    <xsl:message terminate="yes">
    GGGGGGGG.dvm no value found!!!
    </xsl:message>
    </xsl:when>
    Let me know how to populate the customized in xsl:message tag to audit trail or in the fault message.
    Thanks in advance,
    -Rahul

    Hi Rahul,
    I faced the similiar issue. Still I am struggling with that. BTW did u check the soa logs to see if those reflect there? Did you find any workaround/solution?
    Regards,
    Susmit
    Edited by: Susmit_Dey on 8 Aug, 2011 9:29 PM

  • Error when executing an interface: Update Existing Errors

    Hi Everybody,
    It has been a while since I last wrote into the forum! And this time I am contacting you all, because I have gotten an error and I really do not know where the issue is right.
    I am creating an interface, to pass data from one Oracle table to another.
    I have created it, and executed the interface! So far so good, BUT then something happens!
    I do get an error in a step called:
    27 Integration - <MY_BEAUTIFUL_INTERFACE> - Update Existing Errors
    I do recon that the error is on the update part, as it is not bringing anything on the set part! Should I modify something on my Interface! Yes I must, but really do not know what!!! I was thinking on playing with the execution modes, which I have already tried, but do not know quite well what to do next!
    I do really appreciate your help and guidance, once more!!
    Best regards.
    P.S.: Please do not hesitate to contact me, if any further details are required.
    Looking at the errors I got on the description tab:
    /* DETECTION_STRATEGY = NOT_EXISTS */
    update     <DB_INSTANCE>.<MY_BEAUTIFUL_TABLE_T> T
    set      (
         ) =
              select     
              from     <DB_INSTANCE>.I$_<MY_BEAUTIFUL_TABLE_T> S
              where     T.<FIELD_A>     =S.<FIELD_A>
              and     T.<FIELD_B>     =S.<FIELD_B>
              and     T.<FIELD_C>     =S.LRP_CLASS_ID
    where     (<FIELD_A>, <FIELD_B>, LRP_CLASS_ID)
         in     (
              select     <FIELD_A>,
                   <FIELD_B>,
                   LRP_CLASS_ID
              from     <DB_INSTANCE>.I$_<MY_BEAUTIFUL_TABLE_T>
              where     IND_UPDATE = 'U'
              )

    J_ORCL wrote:
    Well I am on the diagram tab, over my target datastore, and over the colums, but please apoligize me, but i am finding this option that you are telling me!
    Once I click onto the column, a new window opens, but it is a mapping one, not a properties one. Is this the one you are mentioning?
    Once you click onto any column you will find the following section ( on the same page )
    Mapping
    Executed On
    Update
    Target column
    Data type
    What I am interested in the Update panel .

Maybe you are looking for

  • Show days left until reset based on date and condition associated with date

    My question is simlilarly based to the previous discussion https://discussions.apple.com/message/15134714#15134714 What I need to do is display the number of days until I have to reset a flight condition (FS Column) based on a set number of days (60

  • How to get Long text in report from FBL3N

    Hi, I need to get Long Text from FBL3N (G/L Account Line Item Display) in my report.Can anyone tell me in which table it is stored?

  • Problem in calling .so file  in Linux

    HI i am creating one native library in Linux machine. Then I make my application as .jar file . The application is located on Windows machine. Then i run my apllication on Linux. But when i am calling the native library it gives java.lang.Unsatisfied

  • Informix locking issue, please help...

    To anyone with the inclination to help, We are using WLS5.1. We have a stateless session bean containing (very simple) JDBC code. We are using container managed transactions, an isolation level of READ_COMMITTED, and autoCommit set to false. Here is

  • CUSTOMIZE OBJECTS

    Hi all, Can you tell me how i could find customize objects in oracle database by query? Please help