Insert or modifying employee status in pa0000 using HR_MAINTAIN_MASTERDATA

hi abapers
i am using HR_MAINTAIN_MASTERDATA   to insert or modify employee status (pa0000-stat1).
IN HR_MAINTAIN_MASTERDATA  there is return statement. and i am giving BAPIRETURN1.and pass data to proposed_values table.
when i check return iIS iNITIAL or not.  return is coming  initial. what does it mean??
actually i am new in HR module. plz help
thanks
Sachin

If you paste the code where you call the Function Module it will help.  You don't pass anything to Return, this is where the system places the information after you call the Function Module.  If Return-Type is  ' ' or Return-Type = 'I', it should indicate that the function module did what you wanted.

Similar Messages

  • Insert or change the employee status (pa0000-stat1) using HR_MAINTAIN_MAST

    hi abapers
    i am using HR_MAINTAIN_MASTERDATA to insert or modify employee status (pa0000-stat1).
    IN HR_MAINTAIN_MASTERDATA there is return statement in import. and i am giving BAPIRETURN1 and BAPIRETURN2 and pass data(employee status to be changed) to proposed_values table
    when i check return IS iNITIAL or not. return is coming initial. what does it mean??
    actually i am new in HR module. plz help
    thanks
    Sachin

    hi Napsterr
    yes i am getting '000'.
    when i am giving incorrect data , some error is coming.
    what does it mean?
    employee status is not yet inserted or modified.
    here is my code. please tell me where i am missing.
    REPORT  ZTEST_STATUSUPDATE2.
    Parameter p_pernr like pa0000-pernr.
    Parameter p_stat1 like pa0000-stat1.
    DATA: OPERATION     LIKE PSPAR-ACTIO,
            RETURN1        LIKE BAPIRETURN1,
            RETURN        LIKE BAPIRETURN,
            VALIDITYBEGIN LIKE P0001-BEGDA,
            ILINES        LIKE SY-TABIX.
      DATA: VALUES        LIKE PPROP OCCURS 10 WITH HEADER LINE,
            IP0000        LIKE P0000 OCCURS  1 WITH HEADER LINE.
        CALL FUNCTION 'HR_READ_INFOTYPE'
          EXPORTING
            PERNR     = p_pernr
            INFTY     = '0000'
            BEGDA     = SY-DATUM
            ENDDA     = SY-DATUM
          TABLES
            INFTY_TAB = IP0000.
          DESCRIBE TABLE IP0000 LINES ILINES.
          IF ILINES EQ 0.
            OPERATION     = 'INS'.
            VALIDITYBEGIN = SY-DATUM.
          ELSE.
            READ TABLE IP0000 INDEX 1.
            VALIDITYBEGIN = IP0000-BEGDA.
            OPERATION     = 'MOD'.
          ENDIF.
          VALUES-INFTY = '0000'.
          VALUES-FNAME = 'P0000-stat1'.
          VALUES-FVAL  = p_stat1.
          APPEND VALUES.
          CALL FUNCTION 'HR_MAINTAIN_MASTERDATA'
            EXPORTING
              PERNR           = p_pernr
              ACTIO           = OPERATION
              BEGDA           = VALIDITYBEGIN
              ENDDA           = '99991231'
              SUBTY           = SPACE
              NO_ENQUEUE      = SPACE
              NO_EXISTENCE_CHECK       = 'X'
            IMPORTING
               RETURN        = RETURN
              RETURN1         = RETURN1
            TABLES
              PROPOSED_VALUES = VALUES
            MODIFIED_KEYS   =
            EXCEPTIONS
              OTHERS          = 1.
          IF ( return-type EQ 'E' OR return1-type EQ 'E').
          MESSAGE 'error' type 'E'.
           ELSEIF  RETURN is INITIAL.
            MESSAGE 'initial value' type 'I'.
          ELSE.
            MESSAGE ID     RETURN1-ID
                    TYPE   'S'
                    NUMBER RETURN1-NUMBER
                    WITH   RETURN1-MESSAGE_V1 RETURN-MESSAGE_V2
                           RETURN1-MESSAGE_V3 RETURN-MESSAGE_V4.
    endif.
    thanks
    Sachin

  • How to check employee status by using BAPI or RFC

    Anybody know how to use RFC call to check the employee status? Looking through the business object in the HR category, I didn't find the business object that can be used to retrieve the employee status (infotype P0000-stat2).
    Thanks,

    Hi Jinsong,
    please post this question in the <a href="https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode2-3&contenttype=url&content=https%3A%2F%2Fforums.sdn.sap.com%2Fforum.jspa%3FforumID%3D50">ABAP forum</a>. Nearly no chance to get an answer here.
    Regards
    Stefan

  • Modify PF-STATUS

    Hi,
    Please help me in following problem.
    I would like to modify PF-STATUS of many Y reports, I just want to add same button in all PF-STATUS. Is there any class available which modify the PF-STATUS of the report by just passing the function code and icon.  or tell me is there any other method?
    Thanks,
    Sid.

    Create a PF STATUS in any report.
    Using:
    SET PF-STATUS  'PF_STATUS'.
    Say the above Pf-status is for report  ZREPORT
    In All other Reports use the following syntax:
    SET PF-STATUS  'PF_STATUS' OF PROGRAM ZREPORT.
    PF-STATUS of ZREPORT  will work for all other reports.
    IF you want to Automatically Want to add  the below syntax into 100 reports:
    SET PF-STATUS  'PF_STATUS' OF PROGRAM ZREPORT.
    Use:
    Data : fs_itab(255).
    Data: Itab like standard table of fs_itab.
    READ REPORT <Zreport> into itab.
    Insert the syntax into table.
    FInally: INSERT TABLE ITAB INTO REPORT <REPORT NAME>.
    Use in loop to do it once for all 100 reports.
    Regards,
    Gurpreet

  • Detecting if insert  or modify a footnote

    Hi
    I want to detect in my plugin if insert or modify a footnote on current document.
    If user insert or modify a footnote, I will do something in my plugin.
    How can I do?
    thanks

    You can use following code.
    FUNCTION zcmbalance.
    ""Local Interface:
    *" IMPORTING
    *" REFERENCE(DATE) TYPE ZFINTBCM017-GLDATE
    *" REFERENCE(COMPANY_CODE) TYPE ZFINTBCM017-GLCCODE
    *" REFERENCE(GL_ACCOUNT) TYPE ZFINTBCM017-GLACCOUNT
    *" REFERENCE(PROFIT_CENTER) TYPE ZFINTBCM017-GLPRFCENTER
    *" REFERENCE(SUBSIDIARY_BALANCE) TYPE ZFINTBCM017-SUBBALANCE
    TABLES:
    ZBALANCEINT.
    <b>DATA: ZBAL LIKE ZBALANCEINT.</b>
    ZBAL-ZDATE = DATE
    ZBAL-ZCODE = COMPANY_CODE
    ZBAL-ZACCOUNT = GL_ACCOUNT
    ZBAL-ZCENTER = PROFIT_CENTER.
    SELECT SINGLE *
    FROM ZBALANCEINT
    WHERE ZDATE = DATE
    AND ZCODE = COMPANY_CODE
    AND ZACCOUNT = GL_ACCOUNT
    AND ZCENTER = PROFIT_CENTER.
    IF sy-subrc <> 0.
    <b>ZBAL-ZBALANCE = SUBSIDIARY_BALANCE.</b>
    <b>INSERT ZBALANCEINT FROM ZBAL.</b>
    ELSE.
    <b>ZBAL-ZBALANCE = SUBSIDIARY_BALANCE.</b>
    <b>MODIFY ZBALANCEINT FROM ZBAL.</b>
    ENDIF.
    COMMIT WORK.
    ENDFUNCTION.

  • How to Insert Sharepoint 2013 Person or Group Field using VBA

    Hello,
    How to Insert Sharepoint 2013 Person or Group Field using VBA , I tried set the field with ID / ID;Name / Name
    but all failed, Please advice 
    Function SetSP_Field(F_Yer As Single, F_WekNo As Single, F_ProjectNum As String, strField As Variant, strFieldValue As Variant) As String
    ' test code
        Dim rst         As Recordset
        Dim strSQL      As String
        Dim SP_RecSet   As ADODB.Recordset
        Set SP_RecSet = New ADODB.Recordset
        SetSP_Field = False
        strSQL = "Status Report"
        On Error Resume Next
        Call SP_Connect(2)
        strSQL = "select " & SP_List & ".* From  " & SP_List _
               & " Where [Year] = " & CInt(F_Yer) _
               & "   and [WeekNo] = " & CInt(F_WekNo) _
               & "   and [Compass_Code] = '" & F_ProjectNum & "' ; " _
    '           & " Set " & strField & " = " & strFieldValue
        'Debug.Print strSQL
        'Debug.Print SP_CN
        SP_RecSet.Open strSQL, SP_CN, adOpenStatic, adLockOptimistic
        If SP_RecSet.RecordCount = 0 Then
            Debug.Print "Record for project: " & F_ProjectNum & " not found"
            LogFile.WriteLine ("Record " & strID & " not found")
        End If
        If Not SP_RecSet.EOF Then
            'SP_RecSet.Edit
            SP_RecSet.Fields(strField) = strFieldValue
            SP_RecSet.Update
            If Err.Number <> 0 Then
                MsgBox ("SP Update Error: " & Err.Description)
                GoTo Exit_Fun
            End If
            SetSP_Field = True
        End If
    Exit_Fun:
        SP_RecSet.Close
        Set SP_RecSet = Nothing
    End Function

    Hi Tim,
    Let’s verify the followings:
    Whether this issue occurred for other lists in the same site.
    Whether this issue occurred for all users who don’t have full control.
    Whether this issue occurred on other sites.
    When you created the people & group column, which show field did you used? Please try to use a different show field for the people & group column, compare the result.
    In addition, please check if the link is useful:
    http://www.learningsharepoint.com/2013/08/21/empty-value-in-people-picker-after-saving-the-list-form-in-sharepoint/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • BAPI for modifying project status

    Hello all,
    I have found a function :STATUS_TEXT_EDIT to get the status of a project, but now I want to modify the status of the project. Does anybody know if there is a BAPI to do this?
    Thank you very much.
    Reyes

    Hi Reyes!
    I think that there's no any BAPI to change the Status of the Project or WBS element.
    But you can do the next steps for any <b>OBJNR</b> (Project/WBS):
    1. Set a breakpoint in program LBSVAF12 in the form STATUS_UPDATE. Then go to change the status user/system of the project/WBS using transaction CJ02. Make you updations and save. You should reach your breakpoint.
    2. The function module <b>'STATUS_UPDATE'</b> is triggered using internal table "<u>jest_updt</u>". Copy the records of this table carefully. It is updating the standard table JEST (select the corresponding fields in your program).
    3. Using the function module 'STATUS_OBJECT_READ' with the OBJNR you can obtaing the fields <u>OBTYP</u> and <u>STSMA</u>.
    4. Then you're ready to built your ABAP program to automatize the status updation. Append the corresponding records in  the internal table " jest_update" and just function <b>'STATUS_UPDATE' IN UPDATE TASK</b> with your internal table. Then COMMIT WORK AND WAIT. The status is now changed like manually in step 1.
    5. To make it perfect you should maintain the correct change numbers (<u>CHGNR</u>) in the <b>JEST</b> table.
    Best regards and see you in Madrid next time!
    Roger

  • BPC Modify Work Status

    I have set up a work status that requires that 3 of the statuses are available when I first access the Modify Work Status through eSubmit as a user.  Currently when I run the Modify Work Status only the first 2 in the list are available.  Only when I select the second one from the list and submit it, is the third one available for me to select from.  Does anybody know how I can view more than 2 work statuses as an initial starting point for setting work status?

    The EvLCK (Lock) function in BPC for Excel retrieves information about work status. You can build a Work Status report using this function.
    Syntax
    EvLCK("AppName", "Parameter","Member1, Member2, etc.)
    Parameter
    Description
    AppName
    The name of the application.
    Parameter
    The parameter values are:
    0=Status
    1=User
    2=Time
    Member1 - n
    Member names used to qualify the returned work status information.

  • Insert data into multiple entities at once using a view object

    Hi,
    I'm trying to insert data into multiple entities at once using a view object, but unfortunately it doesn't seem to work. The two entities have a 1:1 association. I created a view object which contains both entities and I made sure they aren't read-only. But like I said it doesn't work, I can't insert data in both entities at once... :(
    Is this possible? And how (if it is)?

    Hi,
    I'm trying to insert data into multiple entities at once using a view object, but unfortunately it doesn't seem to work. The two entities have a 1:1 association. I created a view object which contains both entities and I made sure they aren't read-only. But like I said it doesn't work, I can't insert data in both entities at once... :(
    Is this possible? And how (if it is)? Peter:
    This is definitely supported and tested. Please send us the exception stack trace. You must running into other problems. A few things to note:
    A) You have to mark the entities as both updateable (not read-only) and not reference-only.
    B) If you're not seeing an exception stack, turn on diagnostic. Here is how:
    To turn on diagnostic, go to the IDE,
    1. Select the project.
    2. Do right mouse click and select "Project Settings..."
    3. On the Settings dialog, select Configurations/Runner.
    4. In the righthand side pane, you should see a textbox for "Java
    Options". Please add the following JVM switch:
    -Djbo.debugoutput=console
    Then, rerun. The run command should include
    -Djbo.debugoutput=console as in
    "D:\JDev9i\jdk\bin\javaw.exe" -Djbo.debugoutput=console -classpath ...
    You should now see a lot more output on the IDE's message window. Here you should see the exception stack trace.
    If you invoking your app directly from command prompt, just add "-Djbo.debugoutput=console" after your "java.exe".
    Thanks.
    Sung

  • How to use HR_MAINTAIN_MASTERDATA to terminate an employee

    Greetings experts:
    I'm working on an inbound interface that, among other things, can terminate an employee.  I'm new to ABAP and so it was recommended to me early on to record PA40 for this action.  That seemed to be working great until they added a new action and the index position recorded by SHDB no longer was accurate.  I tried reproducing the list in PA40 using some queries but that didn't work either.
    So now I've been asked to use HR_MAINTAIN_MASTERDATA.  I understand the basics of how this FM works but I'm not sure how to relate what the recording was doing to this function module.  The recording touched 3 infotypes:  0000, 0001 and 0378.  Some of the fields were defaulted on the screen so I didn't need to provide them in the BDC code, i.e., "PSPAR-WERKS", etc. Now that I'm having to "manually" setup these infotypes I don't know what values I can omit and which absolutely must provide. 
    Can I use the code from the recording as a guide?  In other words, if I didn't record a field because it was being defaulted will it also be defaulted if I use HR_MAINTAIN_MASTERDATA?
    Many thanks and Merry Christmas to all.

    Yes, Steve, HR_MAINTAIN_MASTERDATA is basically a FM that reproduces PA40. I use this FM for all the interfaces that require measures and besides some bug or two, the FM works perfectly, be it for the hiring or firing measures. Like PA40, when you fill the MASSN field, the FM will go through every infotype that is specified in that infogroup and will fill each infotype with the default values unless you pass them in the PROPOSED_VALUES table. For the values to pass, it's pretty simple as well, all you need is the name of the field (in the PA structure and not the screen name like in Batch Input) and the value you want to pass. Here is a sample code for you ...
    Also, you can even use the parameter DIALOG_MODE to make the input visible so you can see if some strange error occurs, you can see exactly what it is, just use DIALOG_MODE = '2' for visible.
      data: return type bapiret1.
      data: w_pernr type p0001-pernr,
            w_pnalt type p0032-pnalt,
            w_begda type p0001-begda,
            w_massg type p0000-massg,
            w_retcode type sy-subrc,
            w_dial  type c.
      clear : w_massg.
      w_massg = '01'.
      if NOT P_MASSG IS INITIAL.
        w_massg = p_massg.
      endif.
      LOOP AT P_TAB.
        clear : wa_proposed_values, proposed_values, t_output.
        free proposed_values.
    * Caso o motivo não venha do ecran de seleccao entao fica 01
    * Preencher os dados para cada infotipo usando a tabela "proposed_values"
    *** Dados Infotipo 0000
        wa_proposed_values-infty = '0000'.
        wa_proposed_values-fname = 'P0000-MASSG'.
        wa_proposed_values-fval  = w_massg.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0000'.
        wa_proposed_values-fname = 'PSPAR-PERSG'.
        wa_proposed_values-fval = P_TAB-PERSG.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0000'.
        wa_proposed_values-fname = 'PSPAR-PERSK'.
        wa_proposed_values-fval = P_TAB-PERSK.
        append wa_proposed_values to proposed_values.
    *** Dados Infotipo 0016
        wa_proposed_values-infty = '0016'.
        wa_proposed_values-fname = 'P0016-CTTYP'.
        wa_proposed_values-fval = P_TAB-CTTYP.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0016'.
        wa_proposed_values-fname = 'P0016-CTBEG'.
        wa_proposed_values-fval = P_TAB-CTBEG.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0016'.
        wa_proposed_values-fname = 'P0016-CTEDT'.
        wa_proposed_values-fval = P_TAB-CTEDT.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0016'.
        wa_proposed_values-fname = 'P0016-PRBZT'.
        wa_proposed_values-fval = P_TAB-PRBZT.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0016'.
        wa_proposed_values-fname = 'P0016-PRBEH'.
        wa_proposed_values-fval = P_TAB-PRBEH.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0016'.
        wa_proposed_values-fname = 'P0016-EINDT'.
        wa_proposed_values-fval = P_TAB-EINDT.
        append wa_proposed_values to proposed_values.
    *** Dados Infotipo 0001
        wa_proposed_values-infty = '0001'.
        wa_proposed_values-fname = 'P0001-BTRTL'.
        wa_proposed_values-fval = P_TAB-BTRTL.
        append wa_proposed_values to proposed_values.
    *    wa_proposed_values-infty = '0001'.
    *    wa_proposed_values-fname = 'P0001-PERSG'.
    *    wa_proposed_values-fval = P_TAB-PERSG.
    *    append wa_proposed_values to proposed_values.
    *    wa_proposed_values-infty = '0001'.
    *    wa_proposed_values-fname = 'P0001-PERSK'.
    *    wa_proposed_values-fval = P_TAB-PERSK.
    *    append wa_proposed_values to proposed_values.
    *** Dados Infotipo 0002
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-ANRED'.
        wa_proposed_values-fval = P_TAB-ANRED.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-CNAME'.
        wa_proposed_values-fval = P_TAB-CNAME.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-VORNA'.
        wa_proposed_values-fval = P_TAB-VORNA.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-NACHN'.
        wa_proposed_values-fval = P_TAB-NACHN.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-GBDAT'.
        wa_proposed_values-fval = P_TAB-GBDAT.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-GBLND'.
        wa_proposed_values-fval = P_TAB-GBLND.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-GBORT'.
        wa_proposed_values-fval = P_TAB-GBORT.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0336-COUBI'.
        wa_proposed_values-fval = P_TAB-COUBI.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0336-PARBI'.
        wa_proposed_values-fval = P_TAB-PARBI.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-GESCH'.
        wa_proposed_values-fval = P_TAB-GESCH.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-NATIO'.
        wa_proposed_values-fval = P_TAB-NATIO.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-FAMST'.
        wa_proposed_values-fval = P_TAB-FAMST.
        append wa_proposed_values to proposed_values.
        wa_proposed_values-infty = '0002'.
        wa_proposed_values-fname = 'P0002-ANZKD'.
        wa_proposed_values-fval = P_TAB-ANZKD.
        append wa_proposed_values to proposed_values.
    *** Função HR_MAINTAIN_MASTERDATA
    * Perform PA40 via Maintain_masterdata
        clear w_dial.
        if p_modo = 'X'.
          w_dial = '2'.
        endif.
        call function 'HR_MAINTAIN_MASTERDATA'
          EXPORTING
            massn           = 'CD'
    *        massg           = w_massg
            actio           = 'INS'
            begda           = P_TAB-EINDA
            werks           = P_TAB-WERKS
            plans           = P_TAB-PLANS
            dialog_mode     = w_dial
          IMPORTING
            return1         = return
          TABLES
            proposed_values = proposed_values.
        if not return is initial.
          CONCATENATE return-message_v1 return-message_v2 into t_output-mensagem.
        else.
          t_output-mensagem = 'Medida E1 criada com sucesso'.
        endif.
      ENDLOOP.
    Edited by: Pedro Guarita on Dec 22, 2008 5:10 PM

  • HT5361 When inserting pictures in a new mail message using the " photo browser" button I can view and select photos but the " choose "  button is gone. What have I done wrong?

    When inserting pictures in a new mail message using the " photo browser" button I can view and select photos but the " choose "  button is gone. What have I done wrong?

    Hi Liz,
    Sorry to hear you are having a similar problem.  Last night I went to the tool bar at the top of iphoto, clicked on "File",  then clicked "Browse Backups" in the drop down menu.    I have an external hard drive that is set up to Time Machine.   The Browse Backups  opened the iphoto pages in the Time Machine.  I selected a date one day ahead of the day I performed the now infamous update, and it showed my iphoto library as it had existed that day.   I then clicked  "Restore Library" at the bottom right corner of the Time Machine screen.   Roughly 2 hours later my iphoto was back to normal.   When I opened iphoto there was a message saying I need to upgrade my program to be compatible with the new version of iphoto(version 9.2.1).  I clicked "Upgrade" and within seconds it had done whatever upgrading it needed to do. 
    The only glitch in the restoration was that it restored the library as it appeared last week, so I no longer had photos I had imported this past weekend.   I simply went back to the Browse Backups in the drop down menu,  when Time Machine opened I selected the page showing my pictures from this weekend and again said to Restore Library.   Roughly 45 minutes later the library was restored including the most recent photos.  
    I am now a happy camper. 
    I don't know if any of this will be of help to you because your email says you are having trouble with photos imported after the upgrade was performed.   Have you had any pop up notices when you first open iphoto,  that tell you you need an upgrade to be compatible with the new iphoto?     If so have you clicked "upgrade"? 
    Good luck Liz,  if you have Time Machine running as a back up to your library, maybe you wil be able to get help there, by following my instructions above.   Otherwise,   good luck with your investigations.   I'd be interested in hearing how you make out.
    Karen

  • Can I purchase an IPhone 5 that is factory unlocked, so that I can insert my t-mobile sim card and use it on my service from the apple store?

    Can I purchase an IPhone 5 that is factory unlocked, so that I can insert my t-mobile sim card and use it on my service from the apple store?

    Not in the US, at the present time. Apple has not started selling officially unlocked iPhone 5's in the US, & has not announced when they will.

  • Hi everyone i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!?

    i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!? any ideas?

    iv solved it now

  • The podcast "(Insert podcast name here)" could not be used because the orig

    The podcast "(Insert podcast name here)" could not be used because the original file could not be found. Would you like to locate it?
    I'm getting a problem with podcast going missing. I have the following…
    1) Black 5th Gen iPod
    2) iTunes 7.1.1
    3) Windows XP Professional
    4) Various video & audio podcast
    5) Use of smart playlists
    a) I have customized each smart playlist
    This is the problem... I download and listen to a podcast, on either the iPod or iTunes. I refresh then boom, the file winds up being missing. iTunes gives me a message: "The podcast "(Insert podcast name here)" could not be used because the original file could not be found. Would you like to locate it?" The file is not in the default folder or recycle bin. Sounds like a Microsoft issue
    Through the collection of tubes know as the internet I offer to you this challenge—Any Takers? Any Ideas?

    The podcast "(Insert podcast name here)" could not be used because the original file could not be found. Would you like to locate it?
    I'm getting a problem with podcast going missing. I have the following…
    1) Black 5th Gen iPod
    2) iTunes 7.1.1
    3) Windows XP Professional
    4) Various video & audio podcast
    5) Use of smart playlists
    a) I have customized each smart playlist
    This is the problem... I download and listen to a podcast, on either the iPod or iTunes. I refresh then boom, the file winds up being missing. iTunes gives me a message: "The podcast "(Insert podcast name here)" could not be used because the original file could not be found. Would you like to locate it?" The file is not in the default folder or recycle bin. Sounds like a Microsoft issue
    Through the collection of tubes know as the internet I offer to you this challenge—Any Takers? Any Ideas?

  • QA11-Quantity pending to be posted from quality status to unrestricted use

    Hi Experts!!
    In usage decision process we can select the "code valuation" as Approved to transfer automatically the total quantity from status quality to unrestricted use. But in our system, a small quantity of the total quantity does not is being transferred. eg: We have the inspection lot with 76 pc... we should select the code valuation "Approved" and save. After this, 74 pc are transferred from quality status to unrestricted use. However, 2 pc are kept in quality status.
    Could you help me with this issue?
    Thanks in advancer for your attention,
    Valdevair

    dear Valdevair
    Got the solution for the same. I think you have activated in selected set for the codes "Consider Long-Term Characteristics for Stock Proposal". This is why the stock is remaining in quality
    QS51 > selected set > code group > codes >  long term inspection >  maintain do not consider
    This will solve the issue
    Please let me know your feedback
    Regards
    gajesh

Maybe you are looking for