A/P Invoice Closed but Rows Open...

Hello Experts,
Scenario:
An A/P Invoice made from GRPOs. Now the situation is this that A/P invoice is closed but there is not Target document, I mean A/P is closed without Target Document. But this A/P Invoice is not manually Closed i.e. Closed by the system.
Also all the ROWS are open of this said A/P invoice.
There is another situation from where I caught it, is the Inventory Posting List. This A/P invoice has a valule but in Inventory Posting List it shows ZERO (0) Value against this (PU) A/P invoice.
Help Required,
Thanks & Regards,

hi,
ap invoice rows get closed if you create ap credit memo frm ap invoice,
but why are worried about row status in ap invoice,since document status is already closed.
inventory posting list records price when u receive goods,since ur doing grpo hence price
is shown posting list where it enters,if u do ap invoice without creating grpo then price should
be corrosponding to ap invoice.
Hope it solves problem.
Jeyakanthan

Similar Messages

  • A/R Invoice Closed but Status not Changed

    Hi All,
    I have Prepared one A/R Invoice Value of Material, Freight, Taxes.
    To reverse this Invocie, I have passed on A/R Credit Memo but still invoice is showing status as Open-Printed.
    I have checked JE for both are showing same value.
    Can any body help me to solve this problem please.
    With Warm Regards,
    Chintesh Soni

    Dear Shridharan,
    I have updated PL 38 on my laptop for testing.
    It is working fine but, in Service Calls, when i am adding activity it is showing error and activity does not getting add.
    If i will Add any activity or first activity say for Return mannually. Rest all activity will be added automatically. Due to this problem i m stuck.
    Other wise i have tested PL 38 for upgrading.
    I have already raised three question to SAP from our S user name and password means from Customer portal with high priority but till date i have not received response.
    With Warm Regards.
    Chintesh Soni

  • Connection closed but i open it why?

    my code:
    GetRecordsByPaging_v4(.......)
    OracleCommand CalPgCountRdCount=null;
    OracleCommand GetRecordFromPage=null;
    try
    common.ErrorLog("before " + orlConn.State.ToString());
    if (orlConn.State != ConnectionState.Open)
    orlConn.Open();
    common.ErrorLog("after " + orlConn.State.ToString() + "\r\n");
    CalPgCountRdCount = new OracleCommand();
    CalPgCountRdCount.CommandText = "Records.CalPgCountRdCount_v3";
    CalPgCountRdCount.CommandType = CommandType.StoredProcedure;
    CalPgCountRdCount.Connection = orlConn;
    CalPgCountRdCount.ExecuteNonQuery(); //here get error:
    my error:
    stack error: 在 Oracle.DataAccess.Types.OracleRefCursor..ctor(OracleConnection con, IntPtr opsSqlCtx, OpoSqlValCtx* pOpoSqlValCtx, Int32 freeOpsSqlCtx)
    在 Oracle.DataAccess.Types.OracleRefCursor..ctor(OracleConnection con, IntPtr opsSqlCtx, OpoSqlValCtx* pOpoSqlValCtx)
    在 Oracle.DataAccess.Client.OracleParameter.PostBind_RefCursor(OracleConnection conn, OpoSqlValCtx* pOpoSqlValCtx)
    在 Oracle.DataAccess.Client.OracleParameter.PostBind(OracleConnection conn, OpoSqlValCtx* pOpoSqlValCtx, Int32 arraySize)
    在 Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior)
    在 Oracle.DataAccess.Client.OracleCommand.ExecuteReader()
    在 EC168CH.OracleDAL.DataPaging.GetRecordsByPaging_v4(String strTableName, String strFiledName, String strWhereFiliter, Decimal
    error message is : 必须打开连接才能执行此操作( the connection must be open before this operation)
    i install ODAC1020221.exe on my server windows 2003 for oracle 10.2 ,i use asp.net 2.0

    here is all the code of c#
    public DataTable GetRecordsByPaging_v4(string strTableName,
    string strFiledName,
    string strWhereFiliter,
    decimal decPageSize,
    decimal decPageIndex,
    decimal decOrderType,
    out decimal decRecordCount,
    out decimal decPageCount)
    decRecordCount = 0;
    decPageCount = 0;
    orlConn = new OracleConnection(common.ConnStr());
    DataTable dtData = new DataTable();
    OracleCommand CalPgCountRdCount=null;
    OracleCommand GetRecordFromPage=null;
    OracleConnection orlConn_ora = new OracleConnection(common.ConnStr());
    try
    common.ErrorLog("before " + orlConn.State.ToString());
    if (orlConn.State != ConnectionState.Open)
    orlConn.Open();
    common.ErrorLog("after " + orlConn.State.ToString() + "\r\n");
    orlConn_ora.Open();
    CalPgCountRdCount = new OracleCommand();
    CalPgCountRdCount.CommandText = "Records.CalPgCountRdCount_v3";
    CalPgCountRdCount.CommandType = CommandType.StoredProcedure;
    CalPgCountRdCount.Connection = orlConn;
    //2
    CalPgCountRdCount.Parameters.Add("PageCount", OracleDbType.Decimal);
    CalPgCountRdCount.Parameters[0].Direction = ParameterDirection.Output;
    //3
    CalPgCountRdCount.Parameters.Add("RecordCount", OracleDbType.Decimal);
    CalPgCountRdCount.Parameters[1].Direction = ParameterDirection.Output;
    //4
    CalPgCountRdCount.Parameters.Add("tblName", OracleDbType.Varchar2);
    CalPgCountRdCount.Parameters[2].Direction = ParameterDirection.Input;
    CalPgCountRdCount.Parameters.Add("strWhere", OracleDbType.Varchar2);
    CalPgCountRdCount.Parameters[3].Direction = ParameterDirection.Input;
    //7
    CalPgCountRdCount.Parameters.Add("PageSize", OracleDbType.Decimal);
    CalPgCountRdCount.Parameters[4].Direction = ParameterDirection.Input;
    CalPgCountRdCount.Parameters["tblName"].Value = strTableName.Trim();
    CalPgCountRdCount.Parameters["strWhere"].Value = strWhereFiliter.Trim();
    CalPgCountRdCount.Parameters["PageSize"].Value = decPageSize;
    GetRecordFromPage = new OracleCommand();
    GetRecordFromPage.CommandText = "Records.GetRecordFromPage_v3";
    GetRecordFromPage.CommandType = CommandType.StoredProcedure;
    GetRecordFromPage.Connection = orlConn_ora;
    //1
    GetRecordFromPage.Parameters.Add("ref_cursor", OracleDbType.RefCursor);
    GetRecordFromPage.Parameters[0].Direction = ParameterDirection.Output;
    GetRecordFromPage.Parameters.Add("tblName", OracleDbType.Varchar2);
    GetRecordFromPage.Parameters[1].Direction = ParameterDirection.Input;
    //5
    GetRecordFromPage.Parameters.Add("fldName", OracleDbType.Varchar2);
    GetRecordFromPage.Parameters[2].Direction = ParameterDirection.Input;
    //6
    GetRecordFromPage.Parameters.Add("strWhere", OracleDbType.Varchar2);
    GetRecordFromPage.Parameters[3].Direction = ParameterDirection.Input;
    //7
    GetRecordFromPage.Parameters.Add("PageSize", OracleDbType.Decimal);
    GetRecordFromPage.Parameters[4].Direction = ParameterDirection.Input;
    //8
    GetRecordFromPage.Parameters.Add("PageIndex", OracleDbType.Decimal);
    GetRecordFromPage.Parameters[5].Direction = ParameterDirection.Input;
    //9
    GetRecordFromPage.Parameters.Add("OrderType", OracleDbType.Decimal);
    GetRecordFromPage.Parameters[6].Direction = ParameterDirection.Input;
    GetRecordFromPage.Parameters["tblName"].Value = strTableName.Trim();
    GetRecordFromPage.Parameters["fldName"].Value = strFiledName.Trim();
    GetRecordFromPage.Parameters["strWhere"].Value = strWhereFiliter.Trim();
    GetRecordFromPage.Parameters["PageSize"].Value = decPageSize;
    GetRecordFromPage.Parameters["PageIndex"].Value = decPageIndex;
    GetRecordFromPage.Parameters["OrderType"].Value = decOrderType;
    CalPgCountRdCount.ExecuteNonQuery();
    decRecordCount = Convert.ToDecimal(CalPgCountRdCount.Parameters["RecordCount"].Value.ToString());
    decPageCount = Convert.ToDecimal(CalPgCountRdCount.Parameters["PageCount"].Value.ToString());
    if (decRecordCount > 0 && decPageCount > 0)
    OracleDataReader drData = GetRecordFromPage.ExecuteReader();
    dtData.Load(drData);
    catch (Exception err)
    string errString = "分页错误:";
    if (err.StackTrace != null)
    errString += "\r\n错误堆栈:" + err.StackTrace.ToString();
    if (err.InnerException != null)
    errString += "。\r\n内部错误:" + err.InnerException.Message;
    if (err.InnerException.StackTrace != null)
    errString += "\r\n内部错误堆栈:" + err.InnerException.StackTrace.ToString();
    if (err != null)
    string rows = "null";
    if (dtData != null)
    rows = dtData.Rows.Count.ToString();
    Exception er = new Exception(errString + "\r\n" + err.Message + "|| exterl:" + rows + " ;\r\nUrl:" + HttpContext.Current.Request.Url.AbsoluteUri + " \r\nstrTableName:" + strTableName + "\r\nstrFiledName:" + strFiledName + "\r\nstrWhereFiliter:" + strWhereFiliter + "\r\ndecPageSize" + decPageSize + "\r\ndecPageIndex:" + decPageIndex + "\r\ndecOrderType:" + decOrderType);
    common.ErrorLog(er);
    else
    Exception er = new Exception("error is null");
    common.ErrorLog(er);
    finally
    GetRecordFromPage.Dispose();
    CalPgCountRdCount.Dispose();
    orlConn.Close();
    orlConn.Dispose();
    orlConn1.Close();
    orlConn1.Dispose();
    return dtData;
    }

  • Some AR Invoice status are Closed but some AR invoice status are Open-Print

    Hi,
    I have seen some AR Invoice status are Closed but some AR invoice status are Open-Printed.
    There are any reason for this.
    Regards,
    Mzian

    Hello Mizan - if you add an AR Invoice and it immediately and automatically goes to "closed" status, then you have a big system problem on your hands.  There is no way SAP B1 should automatically close an AR Invoice unless someone has done a manual reconciliation or has created an AR Credit Memo or has made a payment or has closed/cancelled the AR Invoice manually.
    Call your SAP Partner or SAP Support immediately!!!
    Regards - Zal

  • Safari does not open me, that leaves unexpectedly closed. but it is always so. No matter if you reboot the laptop.  I have MBP 13 "8GB ram, 2.4 GHz processor

    hello.
    safari  does not open me, that leaves unexpectedly closed. but it is always so. No matter if you reboot the laptop. help please.
    how do I remove Safari and reinstall it because when I go to delete the application from the finder, goes that you can not perform this action because OS X does not leave.
    There leave something that leaves me open to give the safari:
    Process:         Safari [704]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         7.0.2 (9537.74.9)
    Build Info:      WebBrowser-7537074009000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [143]
    Responsible:     Safari [704]
    User ID:         501
    Date/Time:       2014-03-24 21:42:17.094 -0500
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  8151A932-FF73-155E-135A-1ECFBF824217
    Sleep/Wake UUID: 8A361AC7-3227-463F-A0D8-A245BB1474E4
    Crashed Thread:  14
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x000000011294a3b5 lookUpImpOrForward + 523
    1   libobjc.A.dylib                         0x000000011294a198 lookUpImpOrNil + 20
    2   libobjc.A.dylib                         0x000000011293f919 class_getMethodImplementation + 40
    3   com.apple.AppKit                        0x0000000113ea589f _NSSubclassOverridesSelector + 38
    4   com.apple.AppKit                        0x0000000113ea578f _NSLogOverriddenIdentifierForObject + 68
    5   com.apple.AppKit                        0x0000000113eca5e4 -[NSView setUserInterfaceItemIdentifier:] + 54

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a few minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; AC="com.autodesk.AutoCAD  com.evenflow.dropbox com.google.GoogleDrive"; H='^[[:space:]]*((127\.0\.0\.1|::1|fe80::1%lo0)[[:space:]]+local|(255\.){3}255[[:space:]]*broadcast)host[[:space:]]*$'; NS=networksetup; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; AT () { o=`file -b "$1" | egrep -v '^(A.{16}t$|cann)'`; Ps "${1##*/} format"; }; Pc () { o=`grep -v '^ *#' "$2"`; l=`wc -l <<< "$o"`; [[ l -gt 25 ]] && o=`head -n25 <<< "$o"`$'\n'"[$((l-25)) more line(s)]"; Pm "$1"; AT "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/(\/Users\/)[^/]+/\1-/g' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id -G | grep -qw 80; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed -n 's/^ *//;5p;6p;8p'; h=(`SP Hardware | awk '/ Id/{print $3}; /Mem/{print $2}'`); o=$h; Ps "Model"; o=$((h[1]<4?h[1]:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d;/[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]|0[^2]|8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/{s/^.*://p;}' <<< "$p"`; Ps "Battery condition"; for b in FireWire Thunderbolt USB; do o=`SP $b | sed -En '/:$/{s/ *:$//;x;s/\n//;s/\n.*//;/\)/p;};/^ *(V.+ [0N]|Man).+ /{s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};/Apple|Broadcom|Genesy|Intel|SMSC/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; fdesetup status | grep -q On && o=on || o=; Ps "FileVault"; a=(/ ""); A=(System User); for i in 0 1; do o=`cd ${a[$i]}L*/Lo*/Diag* || continue; for f in *.{cr,h,pa,s}*; do [[ -f "$f" ]] || continue; d=$(stat -f%Sc -t%F "$f"); [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && f="$f *"; echo "$d ${f%%_2*} ${f##*.}"; done | sort | tail`; Pm "${A[$i]} diagnostics"; done; grep -lq '*$' <<< "$o" && printf $'\n\t* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'caug|GPU |hfs: Ru|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN' -k Message Ane 'SMC:' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); n=$((${#s[*]}-1)); c="${s[*]}"; o=${s[$n]}%; Ps "CPU usage by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); n=$((${#s[*]}-1)); s[$n]=${s[$n]%[+-]}; c="${s[*]}"; o=$((s[$n]>=25000?s[$n]:0)); Ps "Mach ports used by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|openld|post[fg]|x)/{print $3}'`; Pm "Extrinsic daemons"; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | egrep -v 'com\.apple\.(CSConfig|server)' | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/StartupItems; do M; done`; Pm "Startup items"; sys=`pkgutil --regexp --only-files --files com.apple.pkg.* | sort | uniq | sed 's:^:/:'`; b=`sed -E '/^.+Lib.+\/Contents\/Info.plist$/!d;s/\/Info.plist$//;/Contents\/./d' <<< "$sys"`; l=`egrep '^/usr/lib/.+dylib$' <<< "$sys"`; [[ "$b" && "$l" ]] && { o=`find -L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type d -name Contents -prune | grep -Fv "$b" | while read d; do test -f "$d/Info.plist" || continue; ID=$($PB\ :CFBundleIdentifier "$_") || ID="No bundle ID"; printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find /usr/lib -type f -name *.dylib | grep -Fv "$l"`; Pm "Extrinsic shared libraries"; :; } || echo $'\nReceipts missing'; o=`for e in INSERT_LIBRARIES LIBRARY_PATH; do launchctl getenv DYLD_$e; done`; Pm "Inserted dylibs"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; i=`route -n get default | awk '/e:/{print $2}'`; I=`$NS -listnetworkserviceorder | sed -En '/ '$i'\)$/{x;s/^\(.+\) //p;q;};x'`; n=`$NS -getdnsservers "$I" | awk '!/^T/{printf "not "; exit}'`; Ps "DNS (${n}from DHCP)"; o=`$NS -getinfo "$I" | awk '/k:/{if ($3 !~ "(255\.){3}0") print}; /v6:/{if ($2 !~ "A") print}'`; Pm "TCP/IP"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; f=/etc/hosts; Pc "hosts" <(egrep -v "$H" $f ); AT $f; Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; LD="$(`find /S*/*/F* -type f -name lsregister | head -n1` -dump)"; o=`for ID in $AC; do [[ "$LD" =~ $ID ]] && echo $ID; done`; Pm "Application check"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`find . -maxdepth 1 -exec basename {} + | while read f; do [[ ("$f" =~ ^\.. && ! "$f" =~ ^\.(adobe|android|bash.+|CFU.+|cache|config|cups|dropbox|DS_Store|font.+|git.+|profile|rnd|sh_.+|ssh|subv.+|Trash(es)?|zprofile|zsh.+)$) || ($(stat -f%f "$f") -ge 32768 && "$f" != Library) ]] && ls -Fd "$f"; done`; Pm "Hidden user files"; o=`SP Fonts | egrep 'id: N|te: Y' | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=; [[ UID -eq 0 ]] && o=root; Ps "UID"; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • After closing firefox 7.0.1,win7 64bit,and reopenning,tabs on toolbar are there but wont open (something new).

    Something new today. I am getting recently viewed tabs on the task bar (each of these may have a few tabs) which appear on the taskbar but wont open. In order to get something to open I have to reclick on the Firefox icon on the desktop. Then that session opens okay with multiple windows and tabs...but those other tabs remain unopennable .When hovering over them on the task bar they show blank boxes, whereas the others look ok.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • Mismatch between Closing Balance and Opening balance in FAGLB03

    Hi Guys,
    There is a mismatch for GL account balance between the closing ( 2008 ) and opening balance ( 2009 )
    in the transaction FAGLB03.
    However for the same GL account, the closing balance for year 2008 and opening balance for year 2009 are matching.
    Please suggest why there is a discrepancy.
    Thanks
    Srikanth.

    Hi
    but my question is how is the system showing some amount in the Balance carry forward row.Though the amount is not matching it is showing some amount.
    Where did it pick this amount from?
    Thanks,
    Srikanth.

  • Renaming datafiles in control files with database mounted but not open

    Hi,
    I moved a database (physical files) from one server to another. I need to modify the contents of the control files since the directory structure of the servers are not the same (and I can't change that).
    I know I can use ALTER DATABASE BACKUP CONTROLFILE TO TRACE to produce a script that I can than modify and run with the instance started, database mounted but not open, and that will recreate the control files. I don't want to do that.
    I was also told I can modify the datafile entries in the control files by starting the instance, mounting but not opening the database. Then I can issue the (this is the part I need help with) ALTER DATABASE RENAME FILE <file1> to <file2>. When I tried this it complains that <file1> is not found. Obviously the command I used is not the right one,,, what is the right command for what I want to do.
    Thanks,
    Gabriel

    Move all datafiles from one directory to an other without recreate controlfile :
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102C\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> create pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora' from spfile;
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.Here, I move all datafiles mentionned above, and modify my pfile for new controlfile directory. Then :
    SYS@DEMO102> startup pfile=E:\oracle\admin\DEMO102\pfile\pfile102.ora
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted. --Note that we are in mount state
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF'
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF' to 'E:\ORACLE\ORADATA\demo102\USERS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSAUX01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF' to 'E:\ORACLE\ORADATA\demo102\UNDOTBS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSTEM\SYSTEM01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF' to 'E:\ORACLE\ORADATA\demo102\EXAMPLE01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_1.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_2.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO01.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO02.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO03.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF' to 'E:\ORACLE\ORADATA\demo102\TEMP01.DBF';
    Database altered.
    SYS@DEMO102> alter database open;
    Database altered.
    SYS@DEMO102> create spfile from pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora';
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SYS@DEMO102> startup
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted.
    Database opened.
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> Nicolas.

  • How to keep FI posting period (OB52) closed but keep CO posting periods (OK

    Hi SAP Guru's,
    how to keep FI posting period (OB52) closed but keep CO posting periods (OKP1) open.
    I.e. on Oct 21th the FI posting period 10 should be open but FI posting period 09 should be closed. But on Oct 21th the CO posting period 09 should be open.
    Thanks in Advance.
    RV

    You've already activeted. You can check in IMG-Financial Accounting Global Settings (New) ® Ledgers ® Real-Time Integration of Controlling with Financial Accounting
    Check this for more info http://help.sap.com/saphelp_dimp50/helpdata/en/22/c2cf4031288131e10000000a1550b0/content.htm

  • For the first time, I'm trying to use adobe premiere elements10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or

    For the first time, I'm trying to use adobe premiere elements 10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or the codex is not installed. As a test, I created another very small project and get the same error message, when I try to open it. Pls give me a simple answer, a refund or a phone

    mike frischenmeyer
    What computer operating system is your Premiere Elements 10 running on? And, what video card/graphics card does that computer use?
    Is this the first time you are using Premiere Elements 10 or have you worked with it before successfully? There is no easy solution until we
    know the details and troubleshoot to determined what caused the problem.
    1. Can you open a new project?
    2. After you saved/closed the problem project, did you move, delete, or rename any of the files/folder that were related to the source media
    for that project?
    3. Please review the Adobe document on troubleshooting damaged projects.
    Troubleshoot damaged projects | Adobe Premiere Elements
    4. What are the steps that you are using to reopen this saved closed project.
    a. File Menu/Open Project/Name of Project
    b. Other
    Please review and consider and then we can decide what next based on your further details and results..
    Thank you.
    ATR

  • Photoshop elements 13 and premiere 13 purchased, downloaded and installed... but wont OPEN/LAUNCH.. HELLP!!?

    photoshop elements 13 and premiere 13 purchased, downloaded and installed... but wont OPEN/LAUNCH.. HELLP!!?

    Hello
    My "os" is windows 8.1
    When I clicked on the PHOTOSHOP 13 executable the photo editor popped up
    along with an install option.  Then I clicked install and then a update
    failed message popped up. (I've attached a screen shot photo of that) Then
    I clicked on error log and a "please quit and try again error code" message
    popped up. (I've also attached a screen shot photo of that as well) so
    after all that I closed everything and restarted my computer and clicked on
    the PHOTOSHOP 13 executable again and it went straight to the photo editor
    not the welcome screen (where I can choose either organizer or photo
    editor)... why isn't there a welcome screen like before?
    When I clicked on the executable for PREMIERE 13 there was two executable
    options.. one that was labeled (PREMIERE 13 exe) and another that was
    labeled just (PREMIERE exe) without the "13" so first I clicked on PREMIERE
    13 exe and it took me to the welcome screen so then I clicked on video
    editor the new project but nothing happened. ... the loading bar moves then
    stops.  So after that I closed it and went back to click the PREMIERE exe
    and it took me straight to the video editor, again no welcome screen (were
    i can choose either organizer or video editor) just like the  photoshop....
    so in the end I am able to click on the executable options for both
    photoshop 13 and premiere and it takes me straight to the editor but
    without the welcome screen...
    Clicking on the shortcut icons on my desk top still won't launch though....
    So does this mean it's working because clicking on the executable options
    takes me straight to the editor? Or is something still not right because
    the program won't open/launch when i click on the desktop shortcuts and
    welcome screen won't pop up when clicking on executable options?
    Thank you so much for replying I really appreciate it

  • Invoices with negative rows

    One customer of us demands some changes within the Business One.
    The support in Ireland advised us to post this requirements in this Forum.
    Invoices with negative rows cannot be copied onto credit notes.
    Our customer uses this option very often, so it's very time-consuming to create this credit notes manually.
    The possibility to copy such invoices onto credit notes would be much better.

    Agreed.  This issue of not being able to draw a credit memo from an invoice with a negative row has gone on for far too long; with a system as robust as this, this should be a non-issue.  The below fix works...but it shouldn't be necessary.
    -Russell Clayton
    Sweet Leaf Tea Co
    Austin ,TX
    From a post by Wilma Wang, SAP B1 Forums Team member:
    It's a standard functionality of Business one, that it is impossible to enter a negative amount in an independant credit note or in a credit note based on a invoice with negative amount.
    To solve this issue:
    1. For the rows with the positive Row Total, create an "independent" Credit Memo (not based on an Invoice).
    2. For the rows with the negative Row Total, create another Invoice with a positive Row Total opposite to the original negative Row, and reconcile between the two rows manually via Banking => Bank Statements and Reconciliations => Reconciliation.

  • Mail stops checking for new mail until closed and re-opened

    This problem began a month or so ago and is only getting worse by the day.  I have my Mail app set to check for new mail every minute, but recently it randomly stops checking at all and displays the triangle icon next to each Inbox.  I have 10 different email accounts that I use Mail to check and they are a variety of different types from Exchange servers, to IMAP accounts, to POP accounts, iCloud, Outlook.com, Gmail, etc.  Part of the time only 2 or 3 inboxes are affected, while other times (more recently) it’s ALL accounts.  Clicking on Get Mail doesn’t help; no new mail is downloaded.  The only way to get Mail to “wake up” is to close the app and then re-open it.  When I do that, there is a flood of new mail that pours in to each account that had been offline.  There are never any error messages telling me that anything has happened.  I just know that Mail is stuck because of the triangle icon. 
    Also, there are times when my busiest account mysteriously has no new messages over a few hours, which is very unusual. Closing and re-opening mail will resume downloading mail again to that account.  At least for awhile...
    I thought I’d solved the problem by thinking that my router was only working intermittently, so I replaced it with a new Time Capsule.  The problem did not go away.
    I’ve talked to Apple Support and they’ve not been any help.  I’d welcome any suggestions.

    Troubleshooting Apple Mail
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • Ipad photobooth not working, shows curtain closing but camera seems to be off

    ipad photobooth not working, shows curtain closing but camera seems to be off

    Have you tried closing the Camera app completely ? From the home screen (i.e. not with the Camera app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Camera app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Oder closed, but really closed?

    Hi,
    We have a sales order. This order it is closed, but only apparently, because when we open the Open Item List report it is still remaining like if it was opened!
    We are using version 2005A PL16. Do you know why this could be happennig?
    Could it be a bug of SAP?
    How could I solve to keep that order of appearing in that report?
    Thanks in advance for your help or ideas

    Hi vanessa
    I am using 2005B PL26 it not showing the cancelled or the closed orders
    Better to upgrade
    Have a nice day
    HTH
    Regards
    baskar

Maybe you are looking for

  • Thunderbird has stopped working

    Hello, Starting on 04/08/2014 the Thunderbird has stopped working in any way in my PC. I am running Windows 8.1 Pro x64. Before that day everything was ok and Thunderbird was working. I asked some friends using Windows 8 and they have the same proble

  • Setting up a remote network with AirPrint

    i have two iMacs, one 2009 and another 2014 and a network printer, these are in a home office and the iMacs connect individually to my by home hub. My network/usb printer is connected to one of the iMacs. whats the best way to setup a network to conn

  • Error Message: Illegal memory access. [54] in jrockit/vm/Reflects$IClass

    Hi, We ve got an Illegal memory access during stress tests. Is it a known crash? Let us know other info are needed. Thanks in advance, Marian Here is the jrockit.<pid>.dump file: ===== BEGIN DUMP ======================================================

  • Re: VAT amount not to be inventorised

    Dear Team Here, I am configuring Import Pricing Procedure for Bangaladesh.The Price structure as follows. Basic Price A     - > 100 USD Other Charges B - > 1 USD So Assesable Value ( A+B) C - > 101 USD Import Duty 40 %          D    - >  40.40 USD Am

  • How do I get Icloud on my Iphone and Ipad?

    I have Icould on my PC/  But I want to get it on my Iphone and Ipad and interface with one another