Issue with Document Parking  - Uplaod program

Dear All,
We need to develop a program to enter FI documents in parked status as a bulk upload.
We have two problems that we are unable to address
1We have activated five COPA fields which does not get captured in the standard BAPI.- how can we populate these fields?
2 The standard BAPI for document parking  does not validate the required fields. However, the requirement is to validate and park a complete document. we are trying to  do a validation by checking with the Standard Filed Status group , for which we were not able to find the table for fields that are assigned to the field status group.
Please help us and do let us know if there is any other way that we can validate and populate all required fields.
Thank you
Waruna

Hi,
Please refer this link :
How to interpret T004F field status assignments
& revert back.
Regards,
Pramitha.

Similar Messages

  • Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Thanks for the reply. I'll have a look at your solution.

  • I got the following for Adobe Reader that there was an issue with it. C:\Program Files (x86)\Adobe\Reader 11.0\Reader\NPSWF32.dll file How do I fix this? Thanks.

    How can I fix this problem. I got the following for Adobe Reader that there was an issue with it.  C:\Program Files (x86)\Adobe\Reader 11.0\Reader\NPSWF32.dll file

    Try uninstalling using http://labs.adobe.com/downloads/acrobatcleaner.html then reinstall.

  • Auto adjustment of page orientation causes printing issues with documents that have a page width greater than its page height.

    Hi,
    Since an upgrade from Word 2003 to Word 2010, we are experiencing printing issues with certain
    documents that have a page width greater than its page height.
    In Word 2003, it was no problem to set the page width greater than the page height while setting the page orientation to "portrait".
    In Word 2010, this seems impossible: despite leaving the page orientation to "portrait", if one changes the page width/height as stated,
    Word 2010 automatically adjusts the orientation to "landscape". Resetting the orientation to "portrait" will flip the page's width/heigth settings.
    This behaviour causes printing problems: the page prints out 90° rotated.
    I do not believe this is a printer driver issue: I tried several different printer drivers, and all give the same (bad) result. Setting the printer driver's page orientation settings (before printing) makes no difference, as
    Word 2010 seems to force the page orientation settings.
    Inserting the documents 90° rotated is not an option, since it causes problems with the printing margins.
    This is very annoying, since we have to print official documents of a municipality (driver's licences).
    Is there a workaround for this issue?
    Regards,
    Laurent Grandgaignage
    Sysadmin Gemeentebestuur Stabroek, Belgium

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, we can follow these steps to test this issue
    Step 1: Repair Office 2010
    1.      
    Click
    Start, and then click Control Panel.
    2.      
    Click
    Programs and Features.
    3.      
    Click the
    Office 2010 program that you want to repair, and then click
    Change.
    4.      
    Click
    Repair, and then click Continue. You might need to restart your computer after the repair is complete.
    Step 2:
    Rename the global template (Normal.dotm)Follow the steps for the operating system that you are using:
    Windows Vista and Windows 7
    a)      
    Exit Word 2010
    b)      
    Click
    Start.
    c)       
    In the
    Start Search box, type the following text, and then press
    ENTER:
    1.      
    %userprofile%\appdata\roaming\microsoft\templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    Microsoft Windows XP
    a)      
    Exit Word 2010
    b)      
    Click
    Start, and then click Run.
    c)       
    In the
    Open box, type the following text, and then press ENTER:
    %userprofile%\Application Data\Microsoft\Templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    f)       
    Close Windows Explorer.
    How to troubleshoot print failures in Word 2010, Word 2007, and Word 2003
    http://support.microsoft.com/kb/826845
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything
    I can do for you, please feel free to let me know.
    Hope that helps.
    Sincerely
    William Zhou CHNPlease remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Issue with document text - converting from PDF to Word

    I have used Adobe Reader in the past with no issues.  Today, I tried to convert a PDF to a word document.  It worked, but the text all changed to wingdings font (even though it says it is Calibri).  Any suggestions?

    Hi marleighp23001196,
    Are you facing this issue with a specific file or with other word files too?
    Regards,
    Rahul

  • Issue with a "perform in program" call.

    I am trying to do a call to a form in a zprogram. This call is being done inside an enhancement.  The reason for this is because I can't delcare forms in the enhancement.  Below is the issue:
    The parameters I am trying to pass are typed as follows (in the SAP enhancement - SAP code):
    types: begin of mrm_rbkpv.
            include structure rbkp_v.
    types: begin of mmcr_drseg.
            include structure drseg.
    types: mmcr_tdrseg type mmcr_drseg occurs 0.
    I have the following as the call to the form and the form declaration:
    PERFORM cancel_ret IN PROGRAM zcancel_retention USING e_trbkpv e_tdrseg[].
    FORM cancel_ret  USING p_tdrseg TYPE rbkp_v
                          it_tdrseG TYPE J_1IDRSEG.
    I am getting a run-time error saying:
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was
         not caught in
        procedure "EXIT_SAPLMRMP_010" "(FUNCTION)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        Call to FORM "CANCEL_RET" is incorrect:
        The actual parameter no. 1 has a different data type in the
        PERFORM than requested for the FORM "CANCEL_RET" in program
         "ZCANCEL_RETENTION".
    This is telling me that the system doesn't see  e_trbkpv being the same type as  p_tdrseg.  However, I can't see why they aren't the same time.  I also assume I will have the issue with the second parameter.  The table type (in my opinion) J_1IDRSEG should be the same type as mmcr_drseg.
    Any ideas?  The enhancement I am using is EXIT_SAPLMRMP_010 (LMR1M001).
    Regards,
    Aaron
    Edited by: Aaron Shover on Apr 11, 2009 7:21 PM

    >
    Aaron Shover wrote:
    > OK, Aditya, I added another type pool to my program and I can now use the same type that SAP is using.
    >
    > Thanks for pointing out the [obvious] solution that I was overlooking!
    >
    > Aaron
    Aaron, I was not aware of the type pools as mentioned I don't have access to the system at the moment. But type pool has type declarations as well, so what I meant was pulling out the 2 declarations that you need into your Z program could have solved the problem :). Which will happen now since you've included the type pools.
    Anyways good to know that you problem is solved.
    Cheers,
    Advait

  • Issue with US overpayment Recory program RPCLMRU0_CE.

    Hi,
    I'm working on the US overpayment Recory program RPCLMRU0_CE. I have a Scenario where if there is any overpayment shown in the technical wagetype /580 then i need to split the same in 3 and create the entries for the same in 0909 infotype.
    These inslatments will be recoverd in Consecutive payrolls.
    Ex. If overpayment found pay period 201104 is 3000 than Overpayment amount need to divided into 3 and from next payperiod i.e 201105 to 201107 the 1000 to be deducted.
    For this i have created the 3 entries in IT0909 infotype with for for period as 201104 and inperiod as 201105, 201106 & 201107 for each entry.
    Now my issue is - Overpayment Amount & Remaining amounts are not populated for 2 & 3 record i.e.201106 & 201107.
    And when i run the payroll for 201105 wage type /581 is not getting updated with the amount 1000 which was created in IT0909.
    Kindly help in resolving this.
    Thanks
    Avinash K

    Hi
    Hope you are doing fine.
    I am looking for some documentation on SAP Overpayment recovery.
    Please email it to me at [email protected]
    Thanks in anticipation

  • Withholding Tax on Advance paid having issues with Document splitting

    Dear Experts
    Our client deducts TDS on the Advance amount paid and on posting of Invoices from the Vendors. The documents are posted with withholding Tax types configured for these purpose in F-48 and FB60 respectively. Document splitting has been activated in the system with all required configuration.
    The problem arises when we try to clear the advance amount against the Invoice along with the balance payment in F-53 if the invoice has more than one expense line posted to different Cost Centers in FB60. The system gives an error message " Balancing field "Profit Center" in line item 004 not filled ". Please follow the example given below for better understanding.
    Advance posting:
    vendor a/c....dr   (Profit center 3)
    To bank Clearing (Profit center 3)
    To TDS on payment
    Invoice:
    Expense ....dr  (Cost Center1 / profit Center 1)
    Expense ....dr (Cost Center 2 / Profit Center 2)
    To vendor a/c
    To TDS on Invoice
    Up to here the document splitting works fine with Profit Centers and segments getting displayed in all line items in GL view. The issue comes when we select both the documents in F-53 and try to pay out the balance amount.
    Please note the issue does not crop up if we do not populate the withholding tax code while posting the advance entry. The system automatically posts to the relevant profit centers and segments in F-53. But this is not the business scenario.
    Please let me know if somebody can throw some light on the above issue.
    Edited by: sid_das on Dec 12, 2011 5:32 PM

    Resolved at our end by tweaking the splitting rule to match the Business requirement.

  • Custom Master Page issue with Document Set Libraries

    Details: Publishing site using SharePoint 2013.  The SharePoint is on my company's servers.
    Have a custom Master page that has a navigation banner (built with HTML/CSS/javascript).  The site has it applied successfully to the "Site Master Page" but when I also apply it to the "System Master Page", the libraries that have
    Document Set type content do not show the files within.   We'd like to be successful in applying to the "System Master Page" as that allows the banner to show when an actual library is accessed.    Any suggestions, please?

    Thanks. I've been experimenting with this for a few days now, and there's lots I don't understand about why and such, but your process above works. That's a big load off me right now and I really appreciate it. I'm going to be able to survive the initial
    roll-out and implementation of the new site. Going forward, I've got lots to learn and find out, I've already heard that there's a desire to really redesign the master page for the site and subsites, way beyond the little CSS customization I did. Fun.
    If you've got a little time though, perhaps you can provide some explanation. If not, no problem.
    On step 6, when I do as you detail, click the System Master Page and reset all the subsites, it seems to work fine with my custom master page. If I do that with the Site Master Page settings, my custom page causes the redirect issue in the subsites again.
    This is whether I do the Site Master Page by itself, or in conjunction with the System Master Page settings. If I revert back to the Seattle master page in the Site Master Page settings and my custom pate in the System Master Page, the issue goes away again.
    It is completely messing with my head, trying to figure out why that would be, and this is all beside trying to figure out why adding the one little CSS reference to the Seattle master to create my master page breaks things (sometimes!).
    Just fyi, what I've ended up with for now is pulling my custom master page out of the system and using the Alternate CSS URL to add my custom CSS to the Seattle master page on the sites. As I thought about all this, I decided I didn't want to leave the breakable
    custom page out there for some unsuspecting site manager to accidentally pick and get everyone screaming about the broken sites.
    Thanks again,
    Steven

  • Issue with document library and explorer view

    Hello,
    I have couple of issues on which I need some assistance.
    We recently backup and restore the SharePoint portal based on 2007 to SharePoint 2010 server.We're facing some issues on it now 
    When we try to open any office document from a document library it gives a prompt  stating below message in image. I check the document, it is nowhere checked out and also I have full control on the site , in fact I am site collection admin.
    Open with explorer view is not working. When we click on open with explorer it just refreshes the page and show the same page again.
    Need help on this couple of issues.
    Regards,
    Mandar

    In addition to Margriet her solution this article written by Amol Ghuge can help in troubleshooting problems with Explorer view:
    http://sharepointknowledgebase.blogspot.nl/2013/09/open-with-explorer-is-disabled.html
    - Dennis | Netherlands | Blog |
    Twitter

  • Issues with restarting after a program crash- please help

    Two questions regarding restarting after a program has crashed on Leopard.
    1. I had an issue where Parallels crashed and I had to restart. When restarting, the dock closes and it goes to a point where there is a circle timer. This does not stop and an error comes up stating that I need to hit the power button. Is this "normal" after a program crash and restarting? On a side note, I couldn't close the program with Force Quit. This seems to be happening often.
    2. How often does it occur for you where a program will not close with Force Quit? I've had Parallels crash and some other programs. When this happens, Force Quit doesn't do anything. Any other options?
    Thanks for your help.

    You should check your startup drive as a starting point, if programs are crashing regularly. That's obviously not "normal." Run +Repair Disk Permissions+ in Disk Utility while started up normally. Then, start up from another disc and run Disk Utility to use the +Repair Disk+ on the startup drive, to look for disk directory issues (you can startup from the Mac OS X installation disc to run Disk Utility).
    When this happens, Force Quit doesn't do anything. Any other options?
    You can start the Activity Monitor program and quit processes that look relevant to the app. Sometimes, force quit does not work to quit an app because an underlying process keeps running. Sometimes, the Mac is not able to restart or shutdown normally because an app refuses to quit, due to this problem. It is often difficult to know if you should kill a process, so after doing it to make an app quit, it would be a good idea to restart.

  • Multithreading issue with Client/Server chat program

    In a nutshell, I just recently starting attempting to use Sockets and decided I wanted to give a go at a chat program. I have some experience with threads but I know little about how to find and fix multithreading issues. I think this is my problem right now since I am deadlocking while connecting and disconnecting client-side ... and updates about connection status of a client are not always displaying correctly server-side.
    [ Code Snippet|http://snipplr.com/view/15206/clientserver-chat-program/]
    Thanks for the help

    NOTE: all catch clauses have been omitted for clarity. They all just perform System.err.println() with the msg embedded
    Very valid point. I cut out the GUIs and just tried having the Server/Client communicate. I am still having concurrency issues. This is my first attempt at synchronized methods and locking objects so go easy on me if I did something(s) noob =D
    public class MySocket
        public static final String QUIT = "~~QUIT~~";
        private ObjectOutputStream out;
        private ObjectInputStream in;
        private Socket conn;
        public MySocket(String ip)
            obsList = new ArrayList<IClientObs>();
            try
                conn = new Socket(ip, 5000);
                if (conn.isConnected())
                    out = new ObjectOutputStream(conn.getOutputStream());
                    in = new ObjectInputStream(conn.getInputStream());
        public synchronized String nextMsg()
            String msg = "";
            try
                synchronized(in)
                    msg = (String)in.readObject();
                    notify(msg);
            return(msg);
        public synchronized boolean sendMsg(String msg)
            boolean sentMsg = false;
            try
                synchronized(out)
                    if (out != null)
                        out.writeObject(msg);
                        out.flush();
                        sentMsg = true;
            return(sentMsg);
        public synchronized void closeConn()
            try
                synchronized(this)
                    sendMsg(QUIT);
                    conn.close();
                    out.close();
                    in.close();
        public synchronized Socket getConn()
            return(conn);
        public synchronized ObjectOutputStream getOutStream()
            return(out);
        public synchronized ObjectInputStream getInStream()
            return(in);
       //Observer Pattern implemented below   
    public class Server extends Thread
        public static final int MAX_CLIENTS = 2;
        public static final String QUIT = "~~QUIT~~";
        private ServerSocket server;
        private ArrayList<ConnClient> conns;
        private int connCount;
         * Constructor for objects of class Server
        public Server()
            conns = new ArrayList<ConnClient>();
            obsList = new ArrayList<IServerObs>();
            connCount = 0;
        public void startNow()
            this.start();
        public void run()
            runServer();
        public synchronized void runServer()
            try
                setup();
                while (true)
                    waitForConn();
                    processComms();
        private synchronized void setup() throws IOException
            server = new ServerSocket(5000);
            notify("Server initialized.\n");
        private synchronized void waitForConn() throws IOException
            if (connCount < MAX_CLIENTS)
                notify("Waiting for connection...\n");
                Socket conn = server.accept();
                if (conn.isConnected())
                    conns.add(new ConnClient(conn));
                    notify("Client connected @ '" + conns.get(connCount).getIP() + "'.\n");
                    connCount++;
            else
                notify("Connection request rejected; max connections have been reached.\n");
        private synchronized void processComms() throws IOException, ClassNotFoundException
            //Receive any msgs sent by clients and forward msg to all clients
            for(ConnClient rcvClient : conns)
                String msg = rcvClient.nextMsg();
                //if client quit, then close connection and remove it from list
                if (msg.equals(QUIT))
                    notify("Client disconnected @ '" + rcvClient.getIP() + "'.\n");
                    rcvClient.closeConn();
                    conns.remove(rcvClient);
                    connCount--;
                else
                    for(ConnClient sndClient : conns)
                        sndClient.sendMsg(msg);
        public synchronized void shutdown()
            try
                server.close();
                for(ConnClient client :conns)
                    client.closeConn();
       //Observer Pattern implemented below
    }I also found another issue that I haven't thought up a way to deal with yet. When the user starts the program the follow line is executed "conn = server.accept();" which halts execution
    on that thread until a connection is established. What if the user wants to stop the server before a connection is made? The thread keeps running, waiting for a connection. How do I kill this thread?
    On this last issue (I figured by adding the follow code to my action listener inside of my server gui I could stop the thread safely but it's no good so far)
    public void actionPerformed(ActionEvent e)
            Object src = e.getSource();
            if (src == strBtn)
                if (server == null)
                    strBtn.setEnabled(false);
                    stpBtn.setEnabled(true);
                    server = new Server();
                    server.addObserver(this);
                    server.start();
                else
                    console.append("Console: Server is alread initiated.\n");
            else if (src == stpBtn)
                synchronized(server)
                strBtn.setEnabled(true);
                stpBtn.setEnabled(false);
                server.shutdown();
                server = null;
                console.append("Console: Server has been stopped.\n");
        }Edited by: mcox05 on May 21, 2009 10:05 AM
    Edited by: mcox05 on May 21, 2009 10:17 AM
    Edited by: mcox05 on May 21, 2009 10:58 AM
    Edited by: mcox05 on May 21, 2009 11:01 AM
    Edited by: mcox05 on May 21, 2009 11:03 AM
    Edited by: mcox05 on May 21, 2009 11:03 AM

  • Issue with Document Splitting

    HI All,
    After I activated Document Splitting, I have posted an Invoice(F-43). It has splitted correctly.
    31 Vendor      PC1  20,000 Dr
    31 Vendor      PC2  10,000 Dr
    40  Exp A/c1  PC1   20,000
    40  Exp A/c2  PC2   10,000
    When I'm making payment through F-53, Its not splitting correctly. Below is the enry I am getting.
    Its not splitting the amount made from Bank. In F-53, In Profit Center field, I gave PC2.
    Pls let me know what mistake I made in Configuration.
    and why Its showing Zero Balance Clearing A/c in this entry.
    50 Bank A/c                             30,000
    25 Vendor A/c                         20,000
    25 Vendor A/c                         10,000
    50 Zero Balance clearing A/c  10,000
    40Zero Balance clearing A/c   10,000
    Niranjan Yandamuri

    Hi Niranjan,
    Split Processor basically does two things: splitting a document line item or adding balancing entries for selected dimentions (profit center, etc). Split Processor determines whether a line needs to be split based on Split Rule. A Sprilt Rule is assigned to Business Transactions, A Business Transaction with a Variant defines which Item Categories are avalable for Split Rule to split or not split.
    Here is the documentation for Item Category:
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/ee/79c5c00ca249b783bc74fff0e484aa/frameset.htm
    Here is the concept of document splitting:
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/87/3da04028f40160e10000000a1550b0/frameset.htm
    Here is how to configure document split process:
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/49/121407cbff280ee10000000a42189c/frameset.htm
    Hope this is helpful.
    Regards,
    Ming

  • Issue with Document from Template

    Hi Friends,
      I am using a Document from Template step to display a set of records in my Workflow. For this i have a created a template of type excel sheet and i have linked the multi line container element from my workflow to this template. But i am not able the view the records in
    sequence.Lets say my multi line container element has the following 2 records:
    WEATH_ZONE     02/01/2008     03/31/2008     ABC
    BACKACST        03/01/2008        03/31/2008        123
    Once i execute my Workflow i am getting the values appended in a
    single row in excel sheet as follows.
    WEATH_ZONEBACKACST     ABC123     02/01/200803/01/2008     03/31/200803/31/2008
    But i need them in the same format as above.Please let me know how i can solve this issue.
    BTW I have done the linking in the template as follows where Str is my multil ine container element and the values after dot is my fields.
    {&STR.OPERAND&}     {&STR.UDEFVAL1&} {&STR.FROMDATE&}     {&STR.DUEDATE&}

    This workaround worked for me:
    You need to enter manually a ## behind your element.
    For example if your multiline element is :
    {&BUS2012.REPORTDESCRIPTION&}
    You need to insert a ## in the element (in the word-document), like this:
    {&BUS2012.REPORTDESCRIPTION##&} .
    Hope it helps you,
    Bert

  • Issue with document created with a tax code related to a different Company Code

    Hello,
    we need to clear a document created with the tax code "YY" which is associated to the Company Code Espana even if the vendor of this document belongs to the Country Portugal.
    When we try to clear this documents we get the follow error:
    Tax code YY for Country Portugal has been deleted or incorrectly changed
    The problem is the tax code exists but it is associated to Company Code Espana and not to the Portugal one
    In order to cleare this document should we activate the tax code for Portugal, as well?
    Thank You

    Hello, Are you trying to post entry having Plant in Portugal? Thanks, Deepanshu

Maybe you are looking for

  • HP Photosmart Premium e-All-in-O​ne (CN503B) - ePrint - invalid code

    I'm having difficulties adding the printer to my account,. I've tried the "disable, enable" web service trick, but still no luck... any suggestions?

  • Mail messes up html emails when the international panel set to "french"

    This is a fairly specific problem, under my normal settings everything works fine. I receive emails on a weekly basis from this sender who sends them with quite a bit of html encoding. Images, fancy formatting, tables, etc. Normally, they display jus

  • Is thers a clear case that works for rMBP yet?

    Hi, I am not seeing and cases for the rMBP on the apple site? What are folks using that compars with the MOSHI clear case like for 2012 MB Air? any tips or suggestions that will work would be apprecative. Thanks R

  • APD Query with estructure

    I guys I have a query with estructure and selection, but when use this query in the process APD how datasource, show the next issue... The technical field name KYF_0001 for field 48PZJIN0JCKGZKDDE2NCD3WUA may only appear once per input or output stru

  • I need help getting Podcast to categorize correctly

    When I got my new computer, I accidently wiped out all my iPod stuff so I had to resubscribe and download the Podcasts I listen to. For some reason, when they load onto my iPod, they dont go into the podcast section. They go in the music section inst